@ni/nimble-angular 1.0.0-beta.144 → 1.0.0-beta.148

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -10,48 +10,77 @@ NI-styled UI components for Angular applications
10
10
 
11
11
  ## Getting started
12
12
 
13
- *This guide assumes you have an existing Angular application and are using NPM 7 or greater.*
13
+ The steps to use components from Nimble Angular are similar to using components from any other Angular library. You can see the [Example Client App](/angular-workspace/projects/example-client-app) project for an example.
14
14
 
15
15
  1. Install Nimble Angular from the [public NPM registry](https://www.npmjs.com/package/@ni/nimble-angular) by running `npm install @ni/nimble-angular`.
16
- 2. The steps to use components from Nimble Angular are similar to using components from any other Angular library. You can see the [Example Client App](/angular-workspace/projects/example-client-app) project for an example.
17
- 1. Update your `app.module.ts` to import the module for `NimbleThemeProviderModule` and each component you want to use:
18
- ```ts
19
- import { NimbleDrawerModule } from '@ni/nimble-angular';
20
- import { NimbleThemeProviderModule } from '@ni/nimble-angular';
21
-
22
- @NgModule ({
23
- imports: [
24
- NimbleDrawerModule,
25
- NimbleThemeProviderModule
26
- ]
27
- })
28
- class AppModule {}
29
- ```
30
- 2. Add the `<nimble-theme-provider>` element to your `app.component.html` and set its `theme` attribute. The theme provider has no appearance of its own but defines tokens that are used by descendant components. See [the theming documentation in `nimble-components`](/packages/nimble-components/README.md#theming) for more information.
31
- ```html
32
- <nimble-theme-provider [theme]="theme">
33
- <router-outlet></router-outlet>
34
- </nimble-theme-provider>
35
- ```
36
- 3. Add the component to your `app.component.html` (or to the template for another component in your application):
37
- ```html
38
- <nimble-drawer #drawerReference location="right">This is a drawer</nimble-drawer>
39
- ```
40
- 4. If needed, import the Nimble component's directive and types in `app.component.ts` (or the TypeScript file backing another component) to use its programmatic API:
41
- ```ts
42
- import { NimbleDrawerDirective } from '@ni/nimble-angular';
43
- import { NimbleTheme } from '@ni/nimble-angular';
44
-
45
- @Component({ /* ... */ })
46
- class AppComponent {
47
- public theme: NimbleTheme = NimbleTheme.Light;
48
- @ViewChild('drawerReference', { read: NimbleDrawerDirective }) public drawer: NimbleDrawerDirective;
49
-
50
- public openDrawer() {
51
- this.drawer.show();
52
- }
16
+
17
+ *This guide assumes you have an existing Angular application and are using NPM 7 or greater.*
18
+
19
+ 2. Each application should update `app.module.ts` to import the module for `NimbleThemeProviderModule`. Additionally, import modules for the components you want to use:
20
+
21
+ ```ts
22
+ import {
23
+ NimbleDrawerModule,
24
+ NimbleThemeProviderModule
25
+ } from '@ni/nimble-angular';
26
+
27
+ @NgModule ({
28
+ imports: [
29
+ NimbleDrawerModule,
30
+ NimbleThemeProviderModule
31
+ ]
32
+ })
33
+ class AppModule {}
34
+ ```
35
+
36
+ 3. Each application should add the `<nimble-theme-provider>` element to `app.component.html` and set its `theme` attribute. The theme provider has no appearance of its own but defines tokens that are used by descendant components.
37
+
38
+ ```html
39
+ <nimble-theme-provider theme="light">
40
+ <router-outlet></router-outlet>
41
+ </nimble-theme-provider>
42
+ ```
43
+
44
+ 4. Each application should import the Nimble fonts once in the root `src/styles.scss`. Nimble recommends using SCSS for capabilities such as build time property checking.
45
+
46
+ ```scss
47
+ @import '~@ni/nimble-angular/styles/fonts';
48
+ ```
49
+
50
+ 5. As needed, import the theme-aware design tokens in each SCSS file that will leverage the tokens for other parts of your application (for colors, fonts, etc).
51
+
52
+ ```scss
53
+ @import '~@ni/nimble-angular/styles/tokens';
54
+
55
+ .my-element {
56
+ font-family: $ni-nimble-font-family
57
+ }
58
+ ```
59
+
60
+ See [the theming documentation in `nimble-components`](/packages/nimble-components/README.md#theming) for more information.
61
+
62
+ 6. As needed, add Nimble components to the templates in your application:
63
+
64
+ ```html
65
+ <nimble-drawer #drawerReference location="right">This is a drawer</nimble-drawer>
66
+ ```
67
+
68
+ 7. As needed, import the Nimble component's directive and types in your component scripts to use programmatic APIs:
69
+
70
+ ```ts
71
+ import { NimbleDrawerDirective } from '@ni/nimble-angular';
72
+
73
+ @Component({ /* ... */ })
74
+ class AppComponent {
75
+ @ViewChild('drawerReference', { read: NimbleDrawerDirective }) public drawer: NimbleDrawerDirective;
76
+
77
+ public openDrawer() {
78
+ this.drawer.show();
53
79
  }
54
- ```
80
+ }
81
+ ```
82
+
83
+ Note: Nimble components are exposed in Angular as Angular Directives and have the suffix `Directive`.
55
84
 
56
85
  ### Learn more
57
86
 
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
2
  typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@ni/nimble-components/dist/esm/button/types'), require('@angular/common'), require('@ni/nimble-components/dist/esm/button'), require('@angular/forms'), require('@ni/nimble-components/dist/esm/checkbox'), require('@ni/nimble-components/dist/esm/drawer/types'), require('@ni/nimble-components/dist/esm/drawer'), require('@ni/nimble-components/dist/esm/listbox-option'), require('@ni/nimble-components/dist/esm/menu'), require('@ni/nimble-components/dist/esm/menu-item'), require('@ni/nimble-components/dist/esm/number-field'), require('@ni/nimble-components/dist/esm/select'), require('@ni/nimble-components/dist/esm/tab'), require('@ni/nimble-components/dist/esm/tab-panel'), require('@ni/nimble-components/dist/esm/tabs'), require('@ni/nimble-components/dist/esm/tabs-toolbar'), require('@ni/nimble-components/dist/esm/text-field/types'), require('@ni/nimble-components/dist/esm/text-field'), require('@ni/nimble-components/dist/esm/theme-provider/types'), require('@ni/nimble-components/dist/esm/theme-provider'), require('@ni/nimble-components/dist/esm/tree-item'), require('@ni/nimble-components/dist/esm/tree-view/types'), require('@ni/nimble-components/dist/esm/tree-view'), require('@ni/nimble-components/dist/esm/testing/async-helpers')) :
3
3
  typeof define === 'function' && define.amd ? define('@ni/nimble-angular', ['exports', '@angular/core', '@ni/nimble-components/dist/esm/button/types', '@angular/common', '@ni/nimble-components/dist/esm/button', '@angular/forms', '@ni/nimble-components/dist/esm/checkbox', '@ni/nimble-components/dist/esm/drawer/types', '@ni/nimble-components/dist/esm/drawer', '@ni/nimble-components/dist/esm/listbox-option', '@ni/nimble-components/dist/esm/menu', '@ni/nimble-components/dist/esm/menu-item', '@ni/nimble-components/dist/esm/number-field', '@ni/nimble-components/dist/esm/select', '@ni/nimble-components/dist/esm/tab', '@ni/nimble-components/dist/esm/tab-panel', '@ni/nimble-components/dist/esm/tabs', '@ni/nimble-components/dist/esm/tabs-toolbar', '@ni/nimble-components/dist/esm/text-field/types', '@ni/nimble-components/dist/esm/text-field', '@ni/nimble-components/dist/esm/theme-provider/types', '@ni/nimble-components/dist/esm/theme-provider', '@ni/nimble-components/dist/esm/tree-item', '@ni/nimble-components/dist/esm/tree-view/types', '@ni/nimble-components/dist/esm/tree-view', '@ni/nimble-components/dist/esm/testing/async-helpers'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.ni = global.ni || {}, global.ni['nimble-angular'] = {}), global.ng.core, global.types, global.ng.common, null, global.ng.forms, null, global.types$1, null, null, null, null, null, null, null, null, null, null, global.types$2, null, global.types$3, null, null, global.types$4, null, global.asyncHelpers));
5
- }(this, (function (exports, core, types, common, button, forms, checkbox, types$1, drawer, listboxOption, menu, menuItem, numberField, select, tab, tabPanel, tabs, tabsToolbar, types$2, textField, types$3, themeProvider, treeItem, types$4, treeView, asyncHelpers) { 'use strict';
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.ni = global.ni || {}, global.ni["nimble-angular"] = {}), global.ng.core, global.types, global.ng.common, null, global.ng.forms, null, global.types$1, null, null, null, null, null, null, null, null, null, null, global.types$2, null, global.types$3, null, null, global.types$4, null, global.asyncHelpers));
5
+ })(this, (function (exports, core, types, common, button, forms, checkbox, types$1, drawer, listboxOption, menu, menuItem, numberField, select, tab, tabPanel, tabs, tabsToolbar, types$2, textField, types$3, themeProvider, treeItem, types$4, treeView, asyncHelpers) { 'use strict';
6
6
 
7
7
  /**
8
8
  * Conversion helpers for values coming from template attributes or property bindings
@@ -1313,45 +1313,31 @@
1313
1313
 
1314
1314
  Object.defineProperty(exports, 'ButtonAppearance', {
1315
1315
  enumerable: true,
1316
- get: function () {
1317
- return types.ButtonAppearance;
1318
- }
1316
+ get: function () { return types.ButtonAppearance; }
1319
1317
  });
1320
1318
  Object.defineProperty(exports, 'DrawerLocation', {
1321
1319
  enumerable: true,
1322
- get: function () {
1323
- return types$1.DrawerLocation;
1324
- }
1320
+ get: function () { return types$1.DrawerLocation; }
1325
1321
  });
1326
1322
  Object.defineProperty(exports, 'DrawerState', {
1327
1323
  enumerable: true,
1328
- get: function () {
1329
- return types$1.DrawerState;
1330
- }
1324
+ get: function () { return types$1.DrawerState; }
1331
1325
  });
1332
1326
  Object.defineProperty(exports, 'TextFieldType', {
1333
1327
  enumerable: true,
1334
- get: function () {
1335
- return types$2.TextFieldType;
1336
- }
1328
+ get: function () { return types$2.TextFieldType; }
1337
1329
  });
1338
1330
  Object.defineProperty(exports, 'NimbleTheme', {
1339
1331
  enumerable: true,
1340
- get: function () {
1341
- return types$3.NimbleTheme;
1342
- }
1332
+ get: function () { return types$3.NimbleTheme; }
1343
1333
  });
1344
1334
  Object.defineProperty(exports, 'TreeViewSelectionMode', {
1345
1335
  enumerable: true,
1346
- get: function () {
1347
- return types$4.TreeViewSelectionMode;
1348
- }
1336
+ get: function () { return types$4.TreeViewSelectionMode; }
1349
1337
  });
1350
1338
  Object.defineProperty(exports, 'processUpdates', {
1351
1339
  enumerable: true,
1352
- get: function () {
1353
- return asyncHelpers.processUpdates;
1354
- }
1340
+ get: function () { return asyncHelpers.processUpdates; }
1355
1341
  });
1356
1342
  exports.NimbleButtonDirective = NimbleButtonDirective;
1357
1343
  exports.NimbleButtonModule = NimbleButtonModule;
@@ -1393,5 +1379,5 @@
1393
1379
 
1394
1380
  Object.defineProperty(exports, '__esModule', { value: true });
1395
1381
 
1396
- })));
1382
+ }));
1397
1383
  //# sourceMappingURL=ni-nimble-angular.umd.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ni-nimble-angular.umd.js","sources":["../../../../projects/ni/nimble-angular/src/directives/utilities/template-value-helpers.ts","../../../../projects/ni/nimble-angular/src/directives/button/nimble-button.directive.ts","../../../../projects/ni/nimble-angular/src/directives/button/nimble-button.module.ts","../../../../../node_modules/tslib/tslib.es6.js","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox.directive.ts","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox.module.ts","../../../../projects/ni/nimble-angular/src/directives/drawer/nimble-drawer.directive.ts","../../../../projects/ni/nimble-angular/src/directives/drawer/nimble-drawer.module.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/listbox-option/nimble-listbox-option.directive.ts","../../../../projects/ni/nimble-angular/src/directives/listbox-option/nimble-listbox-option.module.ts","../../../../projects/ni/nimble-angular/src/directives/menu/nimble-menu.directive.ts","../../../../projects/ni/nimble-angular/src/directives/menu/nimble-menu.module.ts","../../../../projects/ni/nimble-angular/src/directives/menu-item/nimble-menu-item.directive.ts","../../../../projects/ni/nimble-angular/src/directives/menu-item/nimble-menu-item.module.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field.directive.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field.module.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select.directive.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select.module.ts","../../../../projects/ni/nimble-angular/src/directives/tab/nimble-tab.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tab/nimble-tab.module.ts","../../../../projects/ni/nimble-angular/src/directives/tab-panel/nimble-tab-panel.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tab-panel/nimble-tab-panel.module.ts","../../../../projects/ni/nimble-angular/src/directives/tabs/nimble-tabs.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tabs/nimble-tabs.module.ts","../../../../projects/ni/nimble-angular/src/directives/tabs-toolbar/nimble-tabs-toolbar.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tabs-toolbar/nimble-tabs-toolbar.module.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field.directive.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field.module.ts","../../../../projects/ni/nimble-angular/src/directives/theme-provider/nimble-theme-provider.directive.ts","../../../../projects/ni/nimble-angular/src/directives/theme-provider/nimble-theme-provider.module.ts","../../../../projects/ni/nimble-angular/src/directives/tree-item/nimble-tree-item.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tree-item/nimble-tree-item.module.ts","../../../../projects/ni/nimble-angular/src/directives/tree-view/nimble-tree-view.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tree-view/nimble-tree-view.module.ts","../../../../projects/ni/nimble-angular/src/testing/async-helpers.ts","../../../../projects/ni/nimble-angular/src/public-api.ts","../../../../projects/ni/nimble-angular/src/ni-nimble-angular.ts"],"sourcesContent":["/**\n * Conversion helpers for values coming from template attributes or property bindings\n */\n\n// Values assigned to directives can come from template attributes, ie <my-element my-number=\"4\"></my-element>\n// or from property bindings, ie <my-element [my-number]=\"someNumber\"></my-element>\n// So setters for our directives accept both string values from template attributes and\n// the expected property type. This file has helpers for common property types.\n// More context: https://v13.angular.io/guide/template-typecheck#input-setter-coercion\n\ntype BooleanAttribute = '' | null;\nexport type BooleanValueOrAttribute = boolean | BooleanAttribute;\nexport type NumberValueOrAttribute = number | string;\n\n/**\n * Converts values from templates (empty string or null) or boolean bindings to a boolean property representation\n */\nexport const toBooleanProperty = (value: BooleanValueOrAttribute): boolean => {\n if (value === false || value === null) {\n return false;\n }\n // For boolean attributes the empty string value is true\n return true;\n};\n\n/**\n * Converts values from templates (empty string or null) or boolean bindings to an Aria boolean\n * attribute representation (the strings \"true\" or \"false\")\n */\nexport const toBooleanAriaAttribute = (value: BooleanValueOrAttribute): 'true' | 'false' => {\n if (value === false || value === null) {\n return 'false';\n }\n // For boolean attributes the empty string value is true\n return 'true';\n};\n\n/**\n * Converts values from templates (number representation as a string) or number bindings to a number property representation\n */\nexport const toNumberProperty = (value: NumberValueOrAttribute): number => {\n // Angular: https://github.com/angular/angular/blob/2664bc2b3ef4ee5fd671f915828cfcc274a36c77/packages/forms/src/directives/number_value_accessor.ts#L67\n // And Fast: https://github.com/microsoft/fast/blob/46bb6d9aab2c37105f4434db3795e176c2354a4f/packages/web-components/fast-element/src/components/attributes.ts#L100\n // Handle numeric conversions from the view differently\n // Since Number(val) https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-number-constructor-number-value\n // and val * 1 https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-applystringornumericbinaryoperator\n // Are identical (use ToNumeric algorithm), went with Number() for clarity\n return Number(value);\n};\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { Button } from '@ni/nimble-components/dist/esm/button';\nimport type { ButtonAppearanceAttribute, ButtonType } from '@ni/nimble-components/dist/esm/button/types';\nimport { ButtonAppearance } from '@ni/nimble-components/dist/esm/button/types';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { Button, ButtonType };\nexport { ButtonAppearance };\n\n/**\n * Directive to provide Angular integration for the button.\n */\n@Directive({\n selector: 'nimble-button'\n})\nexport class NimbleButtonDirective {\n public get appearance(): ButtonAppearance {\n return this.elementRef.nativeElement.appearance;\n }\n\n @Input() public set appearance(value: ButtonAppearance | ButtonAppearanceAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);\n }\n\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public get type(): ButtonType {\n return this.elementRef.nativeElement.type;\n }\n\n @Input() public set type(value: ButtonType) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);\n }\n\n public get contentHidden(): boolean {\n return this.elementRef.nativeElement.contentHidden;\n }\n\n // contentHidden property intentionally maps to the content-hidden attribute\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('content-hidden') public set contentHidden(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'contentHidden', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Button>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleButtonDirective } from './nimble-button.directive';\n\nimport '@ni/nimble-components/dist/esm/button';\n\n@NgModule({\n declarations: [NimbleButtonDirective],\n imports: [CommonModule],\n exports: [NimbleButtonDirective]\n})\nexport class NimbleButtonModule { }\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, CheckboxControlValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's CheckboxControlValueAccessor to target the Nimble checkbox control.\n *\n * Directive decorator based on CheckboxControlValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/checkbox_value_accessor.ts#L42\n */\n@Directive({\n selector:\n 'nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]',\n // The following host metadata is duplicated from CheckboxControlValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleCheckboxControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleCheckboxControlValueAccessorDirective extends CheckboxControlValueAccessor {\n}\n","import { Directive } from '@angular/core';\nimport type { Checkbox } from '@ni/nimble-components/dist/esm/checkbox';\n\nexport type { Checkbox };\n\n/**\n * Directive to provide Angular integration for the checkbox.\n */\n@Directive({\n selector: 'nimble-checkbox'\n})\nexport class NimbleCheckboxDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleCheckboxDirective } from './nimble-checkbox.directive';\nimport { NimbleCheckboxControlValueAccessorDirective } from './nimble-checkbox-control-value-accessor.directive';\n\nimport '@ni/nimble-components/dist/esm/checkbox';\n\n@NgModule({\n declarations: [NimbleCheckboxDirective, NimbleCheckboxControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleCheckboxDirective, NimbleCheckboxControlValueAccessorDirective]\n})\nexport class NimbleCheckboxModule { }\n","import { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2 } from '@angular/core';\nimport type { Drawer } from '@ni/nimble-components/dist/esm/drawer';\nimport type { DrawerLocationAttribute, DrawerStateAttribute } from '@ni/nimble-components/dist/esm/drawer/types';\nimport { DrawerLocation, DrawerState } from '@ni/nimble-components/dist/esm/drawer/types';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { Drawer };\nexport { DrawerLocation, DrawerState };\n\n/**\n * Directive to provide Angular integration for the drawer.\n */\n@Directive({\n selector: 'nimble-drawer'\n})\nexport class NimbleDrawerDirective {\n public get location(): DrawerLocation {\n return this.elementRef.nativeElement.location;\n }\n\n @Input() public set location(value: DrawerLocation | DrawerLocationAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'location', value);\n }\n\n public get state(): DrawerState {\n return this.elementRef.nativeElement.state;\n }\n\n @Input() public set state(value: DrawerState | DrawerStateAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'state', value);\n }\n\n public get modal(): boolean {\n return this.elementRef.nativeElement.modal;\n }\n\n @Input() public set modal(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'modal', toBooleanProperty(value));\n }\n\n @Output() public stateChange = new EventEmitter<DrawerState>();\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Drawer>) {}\n\n public show(): void {\n this.state = DrawerState.Opening;\n }\n\n public hide(): void {\n this.state = DrawerState.Closing;\n }\n\n @HostListener('state-change', ['$event'])\n public onStateChanged($event: Event): void {\n if ($event.target === this.elementRef.nativeElement) {\n this.stateChange.emit(this.state);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleDrawerDirective } from './nimble-drawer.directive';\n\nimport '@ni/nimble-components/dist/esm/drawer';\n\n@NgModule({\n declarations: [NimbleDrawerDirective],\n imports: [CommonModule],\n exports: [NimbleDrawerDirective]\n})\nexport class NimbleDrawerModule { }\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, SelectControlValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's SelectControlValueAccessor to target the Nimble select control.\n *\n * @see NimbleSelectOptionDirective\n *\n * Directive decorator based on SelectControlValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/select_control_value_accessor.ts#L85\n */\n@Directive({\n selector:\n 'nimble-select:not([multiple])[formControlName],nimble-select:not([multiple])[formControl],nimble-select:not([multiple])[ngModel]',\n // The following host metadata is duplicated from SelectControlValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(change)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleSelectControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleSelectControlValueAccessorDirective extends SelectControlValueAccessor {\n}\n","import { Directive, ElementRef, Host, Inject, Input, Optional, Renderer2 } from '@angular/core';\nimport { NgSelectOption } from '@angular/forms';\nimport type { ListboxOption } from '@ni/nimble-components/dist/esm/listbox-option';\nimport { NimbleSelectControlValueAccessorDirective } from '../select/nimble-select-control-value-accessor.directive';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { ListboxOption };\n\n/**\n * Directive to provide Angular integration for the listbox option.\n */\n@Directive({\n selector: 'nimble-listbox-option'\n})\nexport class NimbleListboxOptionDirective extends NgSelectOption {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public constructor(\n private readonly elementRef: ElementRef<ListboxOption>,\n private readonly renderer: Renderer2,\n @Inject(NimbleSelectControlValueAccessorDirective) @Optional() @Host() select: NimbleSelectControlValueAccessorDirective\n ) {\n super(elementRef, renderer, select);\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleListboxOptionDirective } from './nimble-listbox-option.directive';\n\nimport '@ni/nimble-components/dist/esm/listbox-option';\n\n@NgModule({\n declarations: [NimbleListboxOptionDirective],\n imports: [CommonModule],\n exports: [NimbleListboxOptionDirective]\n})\nexport class NimbleListboxOptionModule { }\n","import { Directive } from '@angular/core';\nimport type { Menu } from '@ni/nimble-components/dist/esm/menu';\n\nexport type { Menu };\n\n/**\n * Directive to provide Angular integration for the menu.\n */\n@Directive({\n selector: 'nimble-menu'\n})\nexport class NimbleMenuDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleMenuDirective } from './nimble-menu.directive';\n\nimport '@ni/nimble-components/dist/esm/menu';\n\n@NgModule({\n declarations: [NimbleMenuDirective],\n imports: [CommonModule],\n exports: [NimbleMenuDirective]\n})\nexport class NimbleMenuModule { }\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { MenuItem } from '@ni/nimble-components/dist/esm/menu-item';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { MenuItem };\n\n/**\n * Directive to provide Angular integration for the menu.\n */\n@Directive({\n selector: 'nimble-menu-item'\n})\nexport class NimbleMenuItemDirective {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<MenuItem>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleMenuItemDirective } from './nimble-menu-item.directive';\n\nimport '@ni/nimble-components/dist/esm/menu-item';\n\n@NgModule({\n declarations: [NimbleMenuItemDirective],\n imports: [CommonModule],\n exports: [NimbleMenuItemDirective]\n})\nexport class NimbleMenuItemModule { }\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, NumberValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's NumberValueAccessor to target the number-based inputs.\n *\n * Directive decorator based on NumberValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/number_value_accessor.ts#L43\n */\n@Directive({\n selector:\n 'nimble-number-field[formControlName],nimble-number-field[formControl],nimble-number-field[ngModel]',\n // The following host metadata is duplicated from NumberValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(input)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleNumberFieldControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleNumberFieldControlValueAccessorDirective extends NumberValueAccessor {}","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { NumberField } from '@ni/nimble-components/dist/esm/number-field';\nimport { BooleanValueOrAttribute, NumberValueOrAttribute, toBooleanProperty, toNumberProperty } from '../utilities/template-value-helpers';\n\nexport type { NumberField };\n\n/**\n * Directive to provide Angular integration for the number field.\n */\n@Directive({\n selector: 'nimble-number-field'\n})\nexport class NimbleNumberFieldDirective {\n public get readOnly(): boolean {\n return this.elementRef.nativeElement.readOnly;\n }\n\n // readOnly property maps to the readonly attribute\n // https://github.com/microsoft/fast/blob/46bb6d9aab2c37105f4434db3795e176c2354a4f/packages/web-components/fast-foundation/src/number-field/number-field.ts#L38\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('readonly') public set readOnly(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));\n }\n\n public get min(): number {\n return this.elementRef.nativeElement.min;\n }\n\n @Input() public set min(value: NumberValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'min', toNumberProperty(value));\n }\n\n public get max(): number {\n return this.elementRef.nativeElement.max;\n }\n\n @Input() public set max(value: NumberValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'max', toNumberProperty(value));\n }\n\n public get step(): number {\n return this.elementRef.nativeElement.step;\n }\n\n @Input() public set step(value: NumberValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'step', toNumberProperty(value));\n }\n\n public get placeholder(): string {\n return this.elementRef.nativeElement.placeholder;\n }\n\n @Input() public set placeholder(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'placeholder', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<NumberField>) {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NimbleNumberFieldDirective } from './nimble-number-field.directive';\nimport { NimbleNumberFieldControlValueAccessorDirective } from './nimble-number-field-control-value-accessor.directive';\nimport '@ni/nimble-components/dist/esm/number-field';\n\n@NgModule({\n declarations: [NimbleNumberFieldDirective, NimbleNumberFieldControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleNumberFieldDirective, NimbleNumberFieldControlValueAccessorDirective]\n})\nexport class NimbleNumberFieldModule {}\n","import { Directive } from '@angular/core';\nimport type { Select } from '@ni/nimble-components/dist/esm/select';\n\nexport type { Select };\n\n/**\n * Directive for Nimble select control Angular integration\n */\n@Directive({\n selector: 'nimble-select',\n})\nexport class NimbleSelectDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleSelectDirective } from './nimble-select.directive';\nimport { NimbleSelectControlValueAccessorDirective } from './nimble-select-control-value-accessor.directive';\n\nimport '@ni/nimble-components/dist/esm/select';\n\n@NgModule({\n declarations: [NimbleSelectDirective, NimbleSelectControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleSelectDirective, NimbleSelectControlValueAccessorDirective]\n})\nexport class NimbleSelectModule { }\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { Tab } from '@ni/nimble-components/dist/esm/tab';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { Tab };\n\n/**\n * Directive to provide Angular integration for the tab element.\n */\n@Directive({\n selector: 'nimble-tab'\n})\nexport class NimbleTabDirective {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Tab>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabDirective } from './nimble-tab.directive';\n\nimport '@ni/nimble-components/dist/esm/tab';\n\n@NgModule({\n declarations: [NimbleTabDirective],\n imports: [CommonModule],\n exports: [NimbleTabDirective]\n})\nexport class NimbleTabModule { }\n","import { Directive } from '@angular/core';\nimport type { TabPanel } from '@ni/nimble-components/dist/esm/tab-panel';\n\nexport type { TabPanel };\n\n/**\n * Directive to provide Angular integration for the tab panel.\n */\n@Directive({\n selector: 'nimble-tab-panel'\n})\nexport class NimbleTabPanelDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabPanelDirective } from './nimble-tab-panel.directive';\n\nimport '@ni/nimble-components/dist/esm/tab-panel';\n\n@NgModule({\n declarations: [NimbleTabPanelDirective],\n imports: [CommonModule],\n exports: [NimbleTabPanelDirective]\n})\nexport class NimbleTabPanelModule { }\n","import { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2 } from '@angular/core';\nimport type { Tabs } from '@ni/nimble-components/dist/esm/tabs';\n\nexport type { Tabs };\n\n/**\n * Directive to provide Angular integration for the tabs element.\n */\n@Directive({\n selector: 'nimble-tabs'\n})\nexport class NimbleTabsDirective {\n public get activeid(): string {\n return this.elementRef.nativeElement.activeid;\n }\n\n @Input() public set activeid(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'activeid', value);\n }\n\n @Output() public activeidChange = new EventEmitter<string>();\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Tabs>) {}\n\n @HostListener('change', ['$event'])\n public onChange($event: Event): void {\n if ($event.target === this.elementRef.nativeElement) {\n this.activeidChange.emit(this.activeid);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabsDirective } from './nimble-tabs.directive';\n\nimport '@ni/nimble-components/dist/esm/tabs';\n\n@NgModule({\n declarations: [NimbleTabsDirective],\n imports: [CommonModule],\n exports: [NimbleTabsDirective]\n})\nexport class NimbleTabsModule { }\n","import { Directive } from '@angular/core';\nimport type { TabsToolbar } from '@ni/nimble-components/dist/esm/tabs-toolbar';\n\nexport type { TabsToolbar };\n\n/**\n * Directive to provide Angular integration for the tabs toolbar.\n */\n@Directive({\n selector: 'nimble-tabs-toolbar'\n})\nexport class NimbleTabsToolbarDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabsToolbarDirective } from './nimble-tabs-toolbar.directive';\n\nimport '@ni/nimble-components/dist/esm/tabs-toolbar';\n\n@NgModule({\n declarations: [NimbleTabsToolbarDirective],\n imports: [CommonModule],\n exports: [NimbleTabsToolbarDirective]\n})\nexport class NimbleTabsToolbarModule { }\n","import { Directive, forwardRef } from '@angular/core';\nimport { DefaultValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n/**\n * Extension of Angular's DefaultValueAccessor to target the text-based inputs.\n *\n * Directive decorator based on DefaultValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/default_value_accessor.ts#L72\n */\n@Directive({\n selector:\n 'nimble-text-field[formControlName],nimble-text-field[formControl],nimble-text-field[ngModel]',\n // The following host metadata is duplicated from DefaultValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: {\n '(input)': '$any(this)._handleInput($event.target.value)',\n '(blur)': 'onTouched()',\n '(compositionstart)': '$any(this)._compositionStart()',\n '(compositionend)': '$any(this)._compositionEnd($event.target.value)'\n },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleTextFieldControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleTextFieldControlValueAccessorDirective extends DefaultValueAccessor {}","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { TextField } from '@ni/nimble-components/dist/esm/text-field';\nimport type { TextFieldTypeAttribute } from '@ni/nimble-components/dist/esm/text-field/types';\nimport { TextFieldType } from '@ni/nimble-components/dist/esm/text-field/types';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { TextField };\nexport { TextFieldType };\n\n/**\n * Directive to provide Angular integration for the text field\n */\n@Directive({\n selector: 'nimble-text-field'\n})\nexport class NimbleTextFieldDirective {\n public get readOnly(): boolean {\n return this.elementRef.nativeElement.readOnly;\n }\n\n // readOnly property maps to the readonly attribute\n // See: https://github.com/microsoft/fast/blob/46bb6d9aab2c37105f4434db3795e176c2354a4f/packages/web-components/fast-foundation/src/text-field/text-field.ts#L33\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('readonly') public set readOnly(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));\n }\n\n public get type(): TextFieldType {\n return this.elementRef.nativeElement.type;\n }\n\n @Input() public set type(value: TextFieldType | TextFieldTypeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<TextField>) {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NimbleTextFieldDirective } from './nimble-text-field.directive';\nimport { NimbleTextFieldControlValueAccessorDirective } from './nimble-text-field-control-value-accessor.directive';\nimport '@ni/nimble-components/dist/esm/text-field';\n\n@NgModule({\n declarations: [NimbleTextFieldDirective, NimbleTextFieldControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleTextFieldDirective, NimbleTextFieldControlValueAccessorDirective]\n})\nexport class NimbleTextFieldModule {}\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { NimbleThemeProvider } from '@ni/nimble-components/dist/esm/theme-provider';\nimport type { NimbleThemeAttribute } from '@ni/nimble-components/dist/esm/theme-provider/types';\nimport { NimbleTheme } from '@ni/nimble-components/dist/esm/theme-provider/types';\n\nexport type { NimbleThemeProvider };\nexport { NimbleTheme };\n\n/**\n * Directive for Angular integration for the theme provider\n */\n@Directive({\n selector: 'nimble-theme-provider'\n})\nexport class NimbleThemeProviderDirective {\n public get theme(): NimbleTheme {\n return this.elementRef.nativeElement.theme;\n }\n\n @Input() public set theme(value: NimbleTheme | NimbleThemeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'theme', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<NimbleThemeProvider>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleThemeProviderDirective } from './nimble-theme-provider.directive';\n\nimport '@ni/nimble-components/dist/esm/theme-provider';\n\n@NgModule({\n declarations: [NimbleThemeProviderDirective],\n imports: [CommonModule],\n exports: [NimbleThemeProviderDirective]\n})\nexport class NimbleThemeProviderModule { }\n","import { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2 } from '@angular/core';\nimport type { TreeItem } from '@ni/nimble-components/dist/esm/tree-item';\nimport { BooleanValueOrAttribute, toBooleanAriaAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { TreeItem };\n\n/**\n * Directive to provide Angular integration for the tree item.\n */\n@Directive({\n selector: 'nimble-tree-item'\n})\nexport class NimbleTreeItemDirective {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public get expanded(): boolean {\n return this.elementRef.nativeElement.expanded;\n }\n\n @Input() public set expanded(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'expanded', toBooleanProperty(value));\n }\n\n public get selected(): boolean {\n return this.elementRef.nativeElement.selected;\n }\n\n @Input() public set selected(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));\n // Needed because fast-foundation TreeView sets initial selection with an aria-selected query\n this.renderer.setAttribute(this.elementRef.nativeElement, 'selected', toBooleanAriaAttribute(value));\n }\n\n @Output() public expandedChange = new EventEmitter<boolean>();\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<TreeItem>) {}\n\n @HostListener('expanded-change', ['$event'])\n public onExpandedChange($event: Event): void {\n if ($event.target === this.elementRef.nativeElement) {\n this.expandedChange.emit(this.expanded);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTreeItemDirective } from './nimble-tree-item.directive';\n\nimport '@ni/nimble-components/dist/esm/tree-item';\n\n@NgModule({\n declarations: [NimbleTreeItemDirective],\n imports: [CommonModule],\n exports: [NimbleTreeItemDirective]\n})\nexport class NimbleTreeItemModule { }\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { TreeView } from '@ni/nimble-components/dist/esm/tree-view';\nimport type { TreeViewSelectionModeAttribute } from '@ni/nimble-components/dist/esm/tree-view/types';\nimport { TreeViewSelectionMode } from '@ni/nimble-components/dist/esm/tree-view/types';\n\nexport type { TreeView };\nexport { TreeViewSelectionMode };\n\n/**\n * Directive to provide Angular integration for the tree view.\n */\n@Directive({\n selector: 'nimble-tree-view'\n})\nexport class NimbleTreeViewDirective {\n public get selectionMode(): TreeViewSelectionMode {\n return this.elementRef.nativeElement.selectionMode;\n }\n\n // selectionMode property intentionally maps to the selection-mode attribute\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('selection-mode') public set selectionMode(value: TreeViewSelectionMode | TreeViewSelectionModeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selectionMode', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<TreeView>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTreeViewDirective } from './nimble-tree-view.directive';\n\nimport '@ni/nimble-components/dist/esm/tree-view';\n\n@NgModule({\n declarations: [NimbleTreeViewDirective],\n imports: [CommonModule],\n exports: [NimbleTreeViewDirective]\n})\nexport class NimbleTreeViewModule { }\n","import { processUpdates, waitForUpdatesAsync as waitForUpdatesAsyncOriginal } from '@ni/nimble-components/dist/esm/testing/async-helpers';\n\nexport { processUpdates };\n\n/**\n * Immediately processes all updates in queue.\n *\n * Useful for synchronously testing Nimble elements. Call this in fakeAsync tests to\n * immediately resolve tasks which otherwise would require waiting for an animation\n * frame. This should also be called after every fakeAsync test to clear the internal\n * process queue and allow subsequent tests to run normally.\n */\nexport const waitForUpdatesAsync = waitForUpdatesAsyncOriginal;","/*\n * Public API Surface of nimble-angular\n */\n\nexport * from './directives/button/nimble-button.directive';\nexport * from './directives/button/nimble-button.module';\nexport * from './directives/checkbox/nimble-checkbox-control-value-accessor.directive';\nexport * from './directives/checkbox/nimble-checkbox.directive';\nexport * from './directives/checkbox/nimble-checkbox.module';\nexport * from './directives/drawer/nimble-drawer.directive';\nexport * from './directives/drawer/nimble-drawer.module';\nexport * from './directives/listbox-option/nimble-listbox-option.directive';\nexport * from './directives/listbox-option/nimble-listbox-option.module';\nexport * from './directives/menu/nimble-menu.directive';\nexport * from './directives/menu/nimble-menu.module';\nexport * from './directives/menu-item/nimble-menu-item.directive';\nexport * from './directives/menu-item/nimble-menu-item.module';\nexport * from './directives/number-field/nimble-number-field-control-value-accessor.directive';\nexport * from './directives/number-field/nimble-number-field.directive';\nexport * from './directives/number-field/nimble-number-field.module';\nexport * from './directives/select/nimble-select-control-value-accessor.directive';\nexport * from './directives/select/nimble-select.directive';\nexport * from './directives/select/nimble-select.module';\nexport * from './directives/tab/nimble-tab.directive';\nexport * from './directives/tab/nimble-tab.module';\nexport * from './directives/tab-panel/nimble-tab-panel.directive';\nexport * from './directives/tab-panel/nimble-tab-panel.module';\nexport * from './directives/tabs/nimble-tabs.directive';\nexport * from './directives/tabs/nimble-tabs.module';\nexport * from './directives/tabs-toolbar/nimble-tabs-toolbar.directive';\nexport * from './directives/tabs-toolbar/nimble-tabs-toolbar.module';\nexport * from './directives/text-field/nimble-text-field-control-value-accessor.directive';\nexport * from './directives/text-field/nimble-text-field.directive';\nexport * from './directives/text-field/nimble-text-field.module';\nexport * from './directives/theme-provider/nimble-theme-provider.directive';\nexport * from './directives/theme-provider/nimble-theme-provider.module';\nexport * from './directives/tree-item/nimble-tree-item.directive';\nexport * from './directives/tree-item/nimble-tree-item.module';\nexport * from './directives/tree-view/nimble-tree-view.directive';\nexport * from './directives/tree-view/nimble-tree-view.module';\nexport * from './testing/async-helpers';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Directive","Renderer2","ElementRef","Input","NgModule","CommonModule","CheckboxControlValueAccessor","NG_VALUE_ACCESSOR","forwardRef","EventEmitter","DrawerState","Output","HostListener","SelectControlValueAccessor","NgSelectOption","Inject","Optional","Host","NumberValueAccessor","DefaultValueAccessor","waitForUpdatesAsyncOriginal"],"mappings":"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"}
1
+ {"version":3,"file":"ni-nimble-angular.umd.js","sources":["../../../../projects/ni/nimble-angular/src/directives/utilities/template-value-helpers.ts","../../../../projects/ni/nimble-angular/src/directives/button/nimble-button.directive.ts","../../../../projects/ni/nimble-angular/src/directives/button/nimble-button.module.ts","../../../../../node_modules/tslib/tslib.es6.js","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox.directive.ts","../../../../projects/ni/nimble-angular/src/directives/checkbox/nimble-checkbox.module.ts","../../../../projects/ni/nimble-angular/src/directives/drawer/nimble-drawer.directive.ts","../../../../projects/ni/nimble-angular/src/directives/drawer/nimble-drawer.module.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/listbox-option/nimble-listbox-option.directive.ts","../../../../projects/ni/nimble-angular/src/directives/listbox-option/nimble-listbox-option.module.ts","../../../../projects/ni/nimble-angular/src/directives/menu/nimble-menu.directive.ts","../../../../projects/ni/nimble-angular/src/directives/menu/nimble-menu.module.ts","../../../../projects/ni/nimble-angular/src/directives/menu-item/nimble-menu-item.directive.ts","../../../../projects/ni/nimble-angular/src/directives/menu-item/nimble-menu-item.module.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field.directive.ts","../../../../projects/ni/nimble-angular/src/directives/number-field/nimble-number-field.module.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select.directive.ts","../../../../projects/ni/nimble-angular/src/directives/select/nimble-select.module.ts","../../../../projects/ni/nimble-angular/src/directives/tab/nimble-tab.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tab/nimble-tab.module.ts","../../../../projects/ni/nimble-angular/src/directives/tab-panel/nimble-tab-panel.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tab-panel/nimble-tab-panel.module.ts","../../../../projects/ni/nimble-angular/src/directives/tabs/nimble-tabs.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tabs/nimble-tabs.module.ts","../../../../projects/ni/nimble-angular/src/directives/tabs-toolbar/nimble-tabs-toolbar.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tabs-toolbar/nimble-tabs-toolbar.module.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field.directive.ts","../../../../projects/ni/nimble-angular/src/directives/text-field/nimble-text-field.module.ts","../../../../projects/ni/nimble-angular/src/directives/theme-provider/nimble-theme-provider.directive.ts","../../../../projects/ni/nimble-angular/src/directives/theme-provider/nimble-theme-provider.module.ts","../../../../projects/ni/nimble-angular/src/directives/tree-item/nimble-tree-item.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tree-item/nimble-tree-item.module.ts","../../../../projects/ni/nimble-angular/src/directives/tree-view/nimble-tree-view.directive.ts","../../../../projects/ni/nimble-angular/src/directives/tree-view/nimble-tree-view.module.ts","../../../../projects/ni/nimble-angular/src/testing/async-helpers.ts","../../../../projects/ni/nimble-angular/src/public-api.ts","../../../../projects/ni/nimble-angular/src/ni-nimble-angular.ts"],"sourcesContent":["/**\n * Conversion helpers for values coming from template attributes or property bindings\n */\n\n// Values assigned to directives can come from template attributes, ie <my-element my-number=\"4\"></my-element>\n// or from property bindings, ie <my-element [my-number]=\"someNumber\"></my-element>\n// So setters for our directives accept both string values from template attributes and\n// the expected property type. This file has helpers for common property types.\n// More context: https://v13.angular.io/guide/template-typecheck#input-setter-coercion\n\ntype BooleanAttribute = '' | null;\nexport type BooleanValueOrAttribute = boolean | BooleanAttribute;\nexport type NumberValueOrAttribute = number | string;\n\n/**\n * Converts values from templates (empty string or null) or boolean bindings to a boolean property representation\n */\nexport const toBooleanProperty = (value: BooleanValueOrAttribute): boolean => {\n if (value === false || value === null) {\n return false;\n }\n // For boolean attributes the empty string value is true\n return true;\n};\n\n/**\n * Converts values from templates (empty string or null) or boolean bindings to an Aria boolean\n * attribute representation (the strings \"true\" or \"false\")\n */\nexport const toBooleanAriaAttribute = (value: BooleanValueOrAttribute): 'true' | 'false' => {\n if (value === false || value === null) {\n return 'false';\n }\n // For boolean attributes the empty string value is true\n return 'true';\n};\n\n/**\n * Converts values from templates (number representation as a string) or number bindings to a number property representation\n */\nexport const toNumberProperty = (value: NumberValueOrAttribute): number => {\n // Angular: https://github.com/angular/angular/blob/2664bc2b3ef4ee5fd671f915828cfcc274a36c77/packages/forms/src/directives/number_value_accessor.ts#L67\n // And Fast: https://github.com/microsoft/fast/blob/46bb6d9aab2c37105f4434db3795e176c2354a4f/packages/web-components/fast-element/src/components/attributes.ts#L100\n // Handle numeric conversions from the view differently\n // Since Number(val) https://tc39.es/ecma262/multipage/numbers-and-dates.html#sec-number-constructor-number-value\n // and val * 1 https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-applystringornumericbinaryoperator\n // Are identical (use ToNumeric algorithm), went with Number() for clarity\n return Number(value);\n};\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { Button } from '@ni/nimble-components/dist/esm/button';\nimport type { ButtonAppearanceAttribute, ButtonType } from '@ni/nimble-components/dist/esm/button/types';\nimport { ButtonAppearance } from '@ni/nimble-components/dist/esm/button/types';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { Button, ButtonType };\nexport { ButtonAppearance };\n\n/**\n * Directive to provide Angular integration for the button.\n */\n@Directive({\n selector: 'nimble-button'\n})\nexport class NimbleButtonDirective {\n public get appearance(): ButtonAppearance {\n return this.elementRef.nativeElement.appearance;\n }\n\n @Input() public set appearance(value: ButtonAppearance | ButtonAppearanceAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);\n }\n\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public get type(): ButtonType {\n return this.elementRef.nativeElement.type;\n }\n\n @Input() public set type(value: ButtonType) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);\n }\n\n public get contentHidden(): boolean {\n return this.elementRef.nativeElement.contentHidden;\n }\n\n // contentHidden property intentionally maps to the content-hidden attribute\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('content-hidden') public set contentHidden(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'contentHidden', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Button>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleButtonDirective } from './nimble-button.directive';\n\nimport '@ni/nimble-components/dist/esm/button';\n\n@NgModule({\n declarations: [NimbleButtonDirective],\n imports: [CommonModule],\n exports: [NimbleButtonDirective]\n})\nexport class NimbleButtonModule { }\n","/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global Reflect, Promise */\r\n\r\nvar extendStatics = function(d, b) {\r\n extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n return extendStatics(d, b);\r\n};\r\n\r\nexport function __extends(d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n}\r\n\r\nexport var __assign = function() {\r\n __assign = Object.assign || function __assign(t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n }\r\n return __assign.apply(this, arguments);\r\n}\r\n\r\nexport function __rest(s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n}\r\n\r\nexport function __decorate(decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n}\r\n\r\nexport function __param(paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n}\r\n\r\nexport function __metadata(metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n}\r\n\r\nexport function __awaiter(thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n}\r\n\r\nexport function __generator(thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n}\r\n\r\nexport var __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n}) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n});\r\n\r\nexport function __exportStar(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n}\r\n\r\nexport function __values(o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n}\r\n\r\nexport function __read(o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spread() {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n}\r\n\r\n/** @deprecated */\r\nexport function __spreadArrays() {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n}\r\n\r\nexport function __spreadArray(to, from, pack) {\r\n if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {\r\n if (ar || !(i in from)) {\r\n if (!ar) ar = Array.prototype.slice.call(from, 0, i);\r\n ar[i] = from[i];\r\n }\r\n }\r\n return to.concat(ar || Array.prototype.slice.call(from));\r\n}\r\n\r\nexport function __await(v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n}\r\n\r\nexport function __asyncGenerator(thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n}\r\n\r\nexport function __asyncDelegator(o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n}\r\n\r\nexport function __asyncValues(o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n}\r\n\r\nexport function __makeTemplateObject(cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n};\r\n\r\nvar __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n}) : function(o, v) {\r\n o[\"default\"] = v;\r\n};\r\n\r\nexport function __importStar(mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n}\r\n\r\nexport function __importDefault(mod) {\r\n return (mod && mod.__esModule) ? mod : { default: mod };\r\n}\r\n\r\nexport function __classPrivateFieldGet(receiver, state, kind, f) {\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a getter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot read private member from an object whose class did not declare it\");\r\n return kind === \"m\" ? f : kind === \"a\" ? f.call(receiver) : f ? f.value : state.get(receiver);\r\n}\r\n\r\nexport function __classPrivateFieldSet(receiver, state, value, kind, f) {\r\n if (kind === \"m\") throw new TypeError(\"Private method is not writable\");\r\n if (kind === \"a\" && !f) throw new TypeError(\"Private accessor was defined without a setter\");\r\n if (typeof state === \"function\" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError(\"Cannot write private member to an object whose class did not declare it\");\r\n return (kind === \"a\" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;\r\n}\r\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, CheckboxControlValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's CheckboxControlValueAccessor to target the Nimble checkbox control.\n *\n * Directive decorator based on CheckboxControlValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/checkbox_value_accessor.ts#L42\n */\n@Directive({\n selector:\n 'nimble-checkbox[formControlName],nimble-checkbox[formControl],nimble-checkbox[ngModel]',\n // The following host metadata is duplicated from CheckboxControlValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleCheckboxControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleCheckboxControlValueAccessorDirective extends CheckboxControlValueAccessor {\n}\n","import { Directive } from '@angular/core';\nimport type { Checkbox } from '@ni/nimble-components/dist/esm/checkbox';\n\nexport type { Checkbox };\n\n/**\n * Directive to provide Angular integration for the checkbox.\n */\n@Directive({\n selector: 'nimble-checkbox'\n})\nexport class NimbleCheckboxDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleCheckboxDirective } from './nimble-checkbox.directive';\nimport { NimbleCheckboxControlValueAccessorDirective } from './nimble-checkbox-control-value-accessor.directive';\n\nimport '@ni/nimble-components/dist/esm/checkbox';\n\n@NgModule({\n declarations: [NimbleCheckboxDirective, NimbleCheckboxControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleCheckboxDirective, NimbleCheckboxControlValueAccessorDirective]\n})\nexport class NimbleCheckboxModule { }\n","import { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2 } from '@angular/core';\nimport type { Drawer } from '@ni/nimble-components/dist/esm/drawer';\nimport type { DrawerLocationAttribute, DrawerStateAttribute } from '@ni/nimble-components/dist/esm/drawer/types';\nimport { DrawerLocation, DrawerState } from '@ni/nimble-components/dist/esm/drawer/types';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { Drawer };\nexport { DrawerLocation, DrawerState };\n\n/**\n * Directive to provide Angular integration for the drawer.\n */\n@Directive({\n selector: 'nimble-drawer'\n})\nexport class NimbleDrawerDirective {\n public get location(): DrawerLocation {\n return this.elementRef.nativeElement.location;\n }\n\n @Input() public set location(value: DrawerLocation | DrawerLocationAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'location', value);\n }\n\n public get state(): DrawerState {\n return this.elementRef.nativeElement.state;\n }\n\n @Input() public set state(value: DrawerState | DrawerStateAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'state', value);\n }\n\n public get modal(): boolean {\n return this.elementRef.nativeElement.modal;\n }\n\n @Input() public set modal(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'modal', toBooleanProperty(value));\n }\n\n @Output() public stateChange = new EventEmitter<DrawerState>();\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Drawer>) {}\n\n public show(): void {\n this.state = DrawerState.Opening;\n }\n\n public hide(): void {\n this.state = DrawerState.Closing;\n }\n\n @HostListener('state-change', ['$event'])\n public onStateChanged($event: Event): void {\n if ($event.target === this.elementRef.nativeElement) {\n this.stateChange.emit(this.state);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleDrawerDirective } from './nimble-drawer.directive';\n\nimport '@ni/nimble-components/dist/esm/drawer';\n\n@NgModule({\n declarations: [NimbleDrawerDirective],\n imports: [CommonModule],\n exports: [NimbleDrawerDirective]\n})\nexport class NimbleDrawerModule { }\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, SelectControlValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's SelectControlValueAccessor to target the Nimble select control.\n *\n * @see NimbleSelectOptionDirective\n *\n * Directive decorator based on SelectControlValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/select_control_value_accessor.ts#L85\n */\n@Directive({\n selector:\n 'nimble-select:not([multiple])[formControlName],nimble-select:not([multiple])[formControl],nimble-select:not([multiple])[ngModel]',\n // The following host metadata is duplicated from SelectControlValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(change)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleSelectControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleSelectControlValueAccessorDirective extends SelectControlValueAccessor {\n}\n","import { Directive, ElementRef, Host, Inject, Input, Optional, Renderer2 } from '@angular/core';\nimport { NgSelectOption } from '@angular/forms';\nimport type { ListboxOption } from '@ni/nimble-components/dist/esm/listbox-option';\nimport { NimbleSelectControlValueAccessorDirective } from '../select/nimble-select-control-value-accessor.directive';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { ListboxOption };\n\n/**\n * Directive to provide Angular integration for the listbox option.\n */\n@Directive({\n selector: 'nimble-listbox-option'\n})\nexport class NimbleListboxOptionDirective extends NgSelectOption {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public constructor(\n private readonly elementRef: ElementRef<ListboxOption>,\n private readonly renderer: Renderer2,\n @Inject(NimbleSelectControlValueAccessorDirective) @Optional() @Host() select: NimbleSelectControlValueAccessorDirective\n ) {\n super(elementRef, renderer, select);\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleListboxOptionDirective } from './nimble-listbox-option.directive';\n\nimport '@ni/nimble-components/dist/esm/listbox-option';\n\n@NgModule({\n declarations: [NimbleListboxOptionDirective],\n imports: [CommonModule],\n exports: [NimbleListboxOptionDirective]\n})\nexport class NimbleListboxOptionModule { }\n","import { Directive } from '@angular/core';\nimport type { Menu } from '@ni/nimble-components/dist/esm/menu';\n\nexport type { Menu };\n\n/**\n * Directive to provide Angular integration for the menu.\n */\n@Directive({\n selector: 'nimble-menu'\n})\nexport class NimbleMenuDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleMenuDirective } from './nimble-menu.directive';\n\nimport '@ni/nimble-components/dist/esm/menu';\n\n@NgModule({\n declarations: [NimbleMenuDirective],\n imports: [CommonModule],\n exports: [NimbleMenuDirective]\n})\nexport class NimbleMenuModule { }\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { MenuItem } from '@ni/nimble-components/dist/esm/menu-item';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { MenuItem };\n\n/**\n * Directive to provide Angular integration for the menu.\n */\n@Directive({\n selector: 'nimble-menu-item'\n})\nexport class NimbleMenuItemDirective {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<MenuItem>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleMenuItemDirective } from './nimble-menu-item.directive';\n\nimport '@ni/nimble-components/dist/esm/menu-item';\n\n@NgModule({\n declarations: [NimbleMenuItemDirective],\n imports: [CommonModule],\n exports: [NimbleMenuItemDirective]\n})\nexport class NimbleMenuItemModule { }\n","import { Directive, forwardRef } from '@angular/core';\nimport { NG_VALUE_ACCESSOR, NumberValueAccessor } from '@angular/forms';\n\n/**\n * Extension of Angular's NumberValueAccessor to target the number-based inputs.\n *\n * Directive decorator based on NumberValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/number_value_accessor.ts#L43\n */\n@Directive({\n selector:\n 'nimble-number-field[formControlName],nimble-number-field[formControl],nimble-number-field[ngModel]',\n // The following host metadata is duplicated from NumberValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: { '(input)': 'onChange($event.target.value)', '(blur)': 'onTouched()' },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleNumberFieldControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleNumberFieldControlValueAccessorDirective extends NumberValueAccessor {}","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { NumberField } from '@ni/nimble-components/dist/esm/number-field';\nimport { BooleanValueOrAttribute, NumberValueOrAttribute, toBooleanProperty, toNumberProperty } from '../utilities/template-value-helpers';\n\nexport type { NumberField };\n\n/**\n * Directive to provide Angular integration for the number field.\n */\n@Directive({\n selector: 'nimble-number-field'\n})\nexport class NimbleNumberFieldDirective {\n public get readOnly(): boolean {\n return this.elementRef.nativeElement.readOnly;\n }\n\n // readOnly property maps to the readonly attribute\n // https://github.com/microsoft/fast/blob/46bb6d9aab2c37105f4434db3795e176c2354a4f/packages/web-components/fast-foundation/src/number-field/number-field.ts#L38\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('readonly') public set readOnly(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));\n }\n\n public get min(): number {\n return this.elementRef.nativeElement.min;\n }\n\n @Input() public set min(value: NumberValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'min', toNumberProperty(value));\n }\n\n public get max(): number {\n return this.elementRef.nativeElement.max;\n }\n\n @Input() public set max(value: NumberValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'max', toNumberProperty(value));\n }\n\n public get step(): number {\n return this.elementRef.nativeElement.step;\n }\n\n @Input() public set step(value: NumberValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'step', toNumberProperty(value));\n }\n\n public get placeholder(): string {\n return this.elementRef.nativeElement.placeholder;\n }\n\n @Input() public set placeholder(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'placeholder', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<NumberField>) {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NimbleNumberFieldDirective } from './nimble-number-field.directive';\nimport { NimbleNumberFieldControlValueAccessorDirective } from './nimble-number-field-control-value-accessor.directive';\nimport '@ni/nimble-components/dist/esm/number-field';\n\n@NgModule({\n declarations: [NimbleNumberFieldDirective, NimbleNumberFieldControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleNumberFieldDirective, NimbleNumberFieldControlValueAccessorDirective]\n})\nexport class NimbleNumberFieldModule {}\n","import { Directive } from '@angular/core';\nimport type { Select } from '@ni/nimble-components/dist/esm/select';\n\nexport type { Select };\n\n/**\n * Directive for Nimble select control Angular integration\n */\n@Directive({\n selector: 'nimble-select',\n})\nexport class NimbleSelectDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleSelectDirective } from './nimble-select.directive';\nimport { NimbleSelectControlValueAccessorDirective } from './nimble-select-control-value-accessor.directive';\n\nimport '@ni/nimble-components/dist/esm/select';\n\n@NgModule({\n declarations: [NimbleSelectDirective, NimbleSelectControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleSelectDirective, NimbleSelectControlValueAccessorDirective]\n})\nexport class NimbleSelectModule { }\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { Tab } from '@ni/nimble-components/dist/esm/tab';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { Tab };\n\n/**\n * Directive to provide Angular integration for the tab element.\n */\n@Directive({\n selector: 'nimble-tab'\n})\nexport class NimbleTabDirective {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Tab>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabDirective } from './nimble-tab.directive';\n\nimport '@ni/nimble-components/dist/esm/tab';\n\n@NgModule({\n declarations: [NimbleTabDirective],\n imports: [CommonModule],\n exports: [NimbleTabDirective]\n})\nexport class NimbleTabModule { }\n","import { Directive } from '@angular/core';\nimport type { TabPanel } from '@ni/nimble-components/dist/esm/tab-panel';\n\nexport type { TabPanel };\n\n/**\n * Directive to provide Angular integration for the tab panel.\n */\n@Directive({\n selector: 'nimble-tab-panel'\n})\nexport class NimbleTabPanelDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabPanelDirective } from './nimble-tab-panel.directive';\n\nimport '@ni/nimble-components/dist/esm/tab-panel';\n\n@NgModule({\n declarations: [NimbleTabPanelDirective],\n imports: [CommonModule],\n exports: [NimbleTabPanelDirective]\n})\nexport class NimbleTabPanelModule { }\n","import { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2 } from '@angular/core';\nimport type { Tabs } from '@ni/nimble-components/dist/esm/tabs';\n\nexport type { Tabs };\n\n/**\n * Directive to provide Angular integration for the tabs element.\n */\n@Directive({\n selector: 'nimble-tabs'\n})\nexport class NimbleTabsDirective {\n public get activeid(): string {\n return this.elementRef.nativeElement.activeid;\n }\n\n @Input() public set activeid(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'activeid', value);\n }\n\n @Output() public activeidChange = new EventEmitter<string>();\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<Tabs>) {}\n\n @HostListener('change', ['$event'])\n public onChange($event: Event): void {\n if ($event.target === this.elementRef.nativeElement) {\n this.activeidChange.emit(this.activeid);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabsDirective } from './nimble-tabs.directive';\n\nimport '@ni/nimble-components/dist/esm/tabs';\n\n@NgModule({\n declarations: [NimbleTabsDirective],\n imports: [CommonModule],\n exports: [NimbleTabsDirective]\n})\nexport class NimbleTabsModule { }\n","import { Directive } from '@angular/core';\nimport type { TabsToolbar } from '@ni/nimble-components/dist/esm/tabs-toolbar';\n\nexport type { TabsToolbar };\n\n/**\n * Directive to provide Angular integration for the tabs toolbar.\n */\n@Directive({\n selector: 'nimble-tabs-toolbar'\n})\nexport class NimbleTabsToolbarDirective {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTabsToolbarDirective } from './nimble-tabs-toolbar.directive';\n\nimport '@ni/nimble-components/dist/esm/tabs-toolbar';\n\n@NgModule({\n declarations: [NimbleTabsToolbarDirective],\n imports: [CommonModule],\n exports: [NimbleTabsToolbarDirective]\n})\nexport class NimbleTabsToolbarModule { }\n","import { Directive, forwardRef } from '@angular/core';\nimport { DefaultValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n/**\n * Extension of Angular's DefaultValueAccessor to target the text-based inputs.\n *\n * Directive decorator based on DefaultValueAccessor decorator\n * https://github.com/angular/angular/blob/master/packages/forms/src/directives/default_value_accessor.ts#L72\n */\n@Directive({\n selector:\n 'nimble-text-field[formControlName],nimble-text-field[formControl],nimble-text-field[ngModel]',\n // The following host metadata is duplicated from DefaultValueAccessor\n // eslint-disable-next-line @angular-eslint/no-host-metadata-property\n host: {\n '(input)': '$any(this)._handleInput($event.target.value)',\n '(blur)': 'onTouched()',\n '(compositionstart)': '$any(this)._compositionStart()',\n '(compositionend)': '$any(this)._compositionEnd($event.target.value)'\n },\n providers: [{\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => NimbleTextFieldControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleTextFieldControlValueAccessorDirective extends DefaultValueAccessor {}","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { TextField } from '@ni/nimble-components/dist/esm/text-field';\nimport type { TextFieldTypeAttribute } from '@ni/nimble-components/dist/esm/text-field/types';\nimport { TextFieldType } from '@ni/nimble-components/dist/esm/text-field/types';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { TextField };\nexport { TextFieldType };\n\n/**\n * Directive to provide Angular integration for the text field\n */\n@Directive({\n selector: 'nimble-text-field'\n})\nexport class NimbleTextFieldDirective {\n public get readOnly(): boolean {\n return this.elementRef.nativeElement.readOnly;\n }\n\n // readOnly property maps to the readonly attribute\n // See: https://github.com/microsoft/fast/blob/46bb6d9aab2c37105f4434db3795e176c2354a4f/packages/web-components/fast-foundation/src/text-field/text-field.ts#L33\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('readonly') public set readOnly(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'readOnly', toBooleanProperty(value));\n }\n\n public get type(): TextFieldType {\n return this.elementRef.nativeElement.type;\n }\n\n @Input() public set type(value: TextFieldType | TextFieldTypeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<TextField>) {}\n}\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NimbleTextFieldDirective } from './nimble-text-field.directive';\nimport { NimbleTextFieldControlValueAccessorDirective } from './nimble-text-field-control-value-accessor.directive';\nimport '@ni/nimble-components/dist/esm/text-field';\n\n@NgModule({\n declarations: [NimbleTextFieldDirective, NimbleTextFieldControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleTextFieldDirective, NimbleTextFieldControlValueAccessorDirective]\n})\nexport class NimbleTextFieldModule {}\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { NimbleThemeProvider } from '@ni/nimble-components/dist/esm/theme-provider';\nimport type { NimbleThemeAttribute } from '@ni/nimble-components/dist/esm/theme-provider/types';\nimport { NimbleTheme } from '@ni/nimble-components/dist/esm/theme-provider/types';\n\nexport type { NimbleThemeProvider };\nexport { NimbleTheme };\n\n/**\n * Directive for Angular integration for the theme provider\n */\n@Directive({\n selector: 'nimble-theme-provider'\n})\nexport class NimbleThemeProviderDirective {\n public get theme(): NimbleTheme {\n return this.elementRef.nativeElement.theme;\n }\n\n @Input() public set theme(value: NimbleTheme | NimbleThemeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'theme', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<NimbleThemeProvider>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleThemeProviderDirective } from './nimble-theme-provider.directive';\n\nimport '@ni/nimble-components/dist/esm/theme-provider';\n\n@NgModule({\n declarations: [NimbleThemeProviderDirective],\n imports: [CommonModule],\n exports: [NimbleThemeProviderDirective]\n})\nexport class NimbleThemeProviderModule { }\n","import { Directive, ElementRef, EventEmitter, HostListener, Input, Output, Renderer2 } from '@angular/core';\nimport type { TreeItem } from '@ni/nimble-components/dist/esm/tree-item';\nimport { BooleanValueOrAttribute, toBooleanAriaAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { TreeItem };\n\n/**\n * Directive to provide Angular integration for the tree item.\n */\n@Directive({\n selector: 'nimble-tree-item'\n})\nexport class NimbleTreeItemDirective {\n public get disabled(): boolean {\n return this.elementRef.nativeElement.disabled;\n }\n\n @Input() public set disabled(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));\n }\n\n public get expanded(): boolean {\n return this.elementRef.nativeElement.expanded;\n }\n\n @Input() public set expanded(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'expanded', toBooleanProperty(value));\n }\n\n public get selected(): boolean {\n return this.elementRef.nativeElement.selected;\n }\n\n @Input() public set selected(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selected', toBooleanProperty(value));\n // Needed because fast-foundation TreeView sets initial selection with an aria-selected query\n this.renderer.setAttribute(this.elementRef.nativeElement, 'selected', toBooleanAriaAttribute(value));\n }\n\n @Output() public expandedChange = new EventEmitter<boolean>();\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<TreeItem>) {}\n\n @HostListener('expanded-change', ['$event'])\n public onExpandedChange($event: Event): void {\n if ($event.target === this.elementRef.nativeElement) {\n this.expandedChange.emit(this.expanded);\n }\n }\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTreeItemDirective } from './nimble-tree-item.directive';\n\nimport '@ni/nimble-components/dist/esm/tree-item';\n\n@NgModule({\n declarations: [NimbleTreeItemDirective],\n imports: [CommonModule],\n exports: [NimbleTreeItemDirective]\n})\nexport class NimbleTreeItemModule { }\n","import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { TreeView } from '@ni/nimble-components/dist/esm/tree-view';\nimport type { TreeViewSelectionModeAttribute } from '@ni/nimble-components/dist/esm/tree-view/types';\nimport { TreeViewSelectionMode } from '@ni/nimble-components/dist/esm/tree-view/types';\n\nexport type { TreeView };\nexport { TreeViewSelectionMode };\n\n/**\n * Directive to provide Angular integration for the tree view.\n */\n@Directive({\n selector: 'nimble-tree-view'\n})\nexport class NimbleTreeViewDirective {\n public get selectionMode(): TreeViewSelectionMode {\n return this.elementRef.nativeElement.selectionMode;\n }\n\n // selectionMode property intentionally maps to the selection-mode attribute\n // eslint-disable-next-line @angular-eslint/no-input-rename\n @Input('selection-mode') public set selectionMode(value: TreeViewSelectionMode | TreeViewSelectionModeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'selectionMode', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<TreeView>) {}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleTreeViewDirective } from './nimble-tree-view.directive';\n\nimport '@ni/nimble-components/dist/esm/tree-view';\n\n@NgModule({\n declarations: [NimbleTreeViewDirective],\n imports: [CommonModule],\n exports: [NimbleTreeViewDirective]\n})\nexport class NimbleTreeViewModule { }\n","import { processUpdates, waitForUpdatesAsync as waitForUpdatesAsyncOriginal } from '@ni/nimble-components/dist/esm/testing/async-helpers';\n\nexport { processUpdates };\n\n/**\n * Immediately processes all updates in queue.\n *\n * Useful for synchronously testing Nimble elements. Call this in fakeAsync tests to\n * immediately resolve tasks which otherwise would require waiting for an animation\n * frame. This should also be called after every fakeAsync test to clear the internal\n * process queue and allow subsequent tests to run normally.\n */\nexport const waitForUpdatesAsync = waitForUpdatesAsyncOriginal;","/*\n * Public API Surface of nimble-angular\n */\n\nexport * from './directives/button/nimble-button.directive';\nexport * from './directives/button/nimble-button.module';\nexport * from './directives/checkbox/nimble-checkbox-control-value-accessor.directive';\nexport * from './directives/checkbox/nimble-checkbox.directive';\nexport * from './directives/checkbox/nimble-checkbox.module';\nexport * from './directives/drawer/nimble-drawer.directive';\nexport * from './directives/drawer/nimble-drawer.module';\nexport * from './directives/listbox-option/nimble-listbox-option.directive';\nexport * from './directives/listbox-option/nimble-listbox-option.module';\nexport * from './directives/menu/nimble-menu.directive';\nexport * from './directives/menu/nimble-menu.module';\nexport * from './directives/menu-item/nimble-menu-item.directive';\nexport * from './directives/menu-item/nimble-menu-item.module';\nexport * from './directives/number-field/nimble-number-field-control-value-accessor.directive';\nexport * from './directives/number-field/nimble-number-field.directive';\nexport * from './directives/number-field/nimble-number-field.module';\nexport * from './directives/select/nimble-select-control-value-accessor.directive';\nexport * from './directives/select/nimble-select.directive';\nexport * from './directives/select/nimble-select.module';\nexport * from './directives/tab/nimble-tab.directive';\nexport * from './directives/tab/nimble-tab.module';\nexport * from './directives/tab-panel/nimble-tab-panel.directive';\nexport * from './directives/tab-panel/nimble-tab-panel.module';\nexport * from './directives/tabs/nimble-tabs.directive';\nexport * from './directives/tabs/nimble-tabs.module';\nexport * from './directives/tabs-toolbar/nimble-tabs-toolbar.directive';\nexport * from './directives/tabs-toolbar/nimble-tabs-toolbar.module';\nexport * from './directives/text-field/nimble-text-field-control-value-accessor.directive';\nexport * from './directives/text-field/nimble-text-field.directive';\nexport * from './directives/text-field/nimble-text-field.module';\nexport * from './directives/theme-provider/nimble-theme-provider.directive';\nexport * from './directives/theme-provider/nimble-theme-provider.module';\nexport * from './directives/tree-item/nimble-tree-item.directive';\nexport * from './directives/tree-item/nimble-tree-item.module';\nexport * from './directives/tree-view/nimble-tree-view.directive';\nexport * from './directives/tree-view/nimble-tree-view.module';\nexport * from './testing/async-helpers';","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Directive","Renderer2","ElementRef","Input","NgModule","CommonModule","CheckboxControlValueAccessor","NG_VALUE_ACCESSOR","forwardRef","EventEmitter","DrawerState","Output","HostListener","SelectControlValueAccessor","NgSelectOption","Inject","Optional","Host","NumberValueAccessor","DefaultValueAccessor","waitForUpdatesAsyncOriginal"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ni/nimble-angular",
3
- "version": "1.0.0-beta.144",
3
+ "version": "1.0.0-beta.148",
4
4
  "description": "Angular components for the NI Nimble Design System",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,7 +18,7 @@
18
18
  "@angular/common": "^12.1.0",
19
19
  "@angular/core": "^12.1.0",
20
20
  "@angular/forms": "^12.1.0",
21
- "@ni/nimble-components": "^1.0.0-beta.124"
21
+ "@ni/nimble-components": "^1.0.0-beta.128"
22
22
  },
23
23
  "dependencies": {
24
24
  "tslib": "^2.2.0"
@@ -0,0 +1,4 @@
1
+ // Nimble Angular Fonts SCSS
2
+ // Only @import once in the global styles.scss
3
+
4
+ @import '~@ni/nimble-components/dist/fonts';
@@ -0,0 +1,6 @@
1
+ // Nimble Angular Tokens SCSS
2
+ // Can @import this file in two different ways:
3
+ // - Once per SCSS file that is leveraging the tokens (helpful for autocomplete features, etc)
4
+ // - Once globally in the application styles.scss (less noise per file)
5
+
6
+ @import '~@ni/nimble-components/dist/tokens';