@ni/nimble-angular 1.0.0 → 1.1.2

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.
Files changed (25) hide show
  1. package/bundles/ni-nimble-angular.umd.js +116 -5
  2. package/bundles/ni-nimble-angular.umd.js.map +1 -1
  3. package/directives/checkbox/nimble-checkbox-control-value-accessor.directive.d.ts +1 -1
  4. package/directives/toggle-button/nimble-toggle-button-control-value-accessor.directive.d.ts +9 -0
  5. package/directives/toggle-button/nimble-toggle-button.directive.d.ts +22 -0
  6. package/directives/toggle-button/nimble-toggle-button.module.d.ts +3 -0
  7. package/directives/toggle-button/nimble-toggle-button.module.ngfactory.d.ts +3 -0
  8. package/esm2015/directives/checkbox/nimble-checkbox-control-value-accessor.directive.js +2 -2
  9. package/esm2015/directives/toggle-button/nimble-toggle-button-control-value-accessor.directive.js +24 -0
  10. package/esm2015/directives/toggle-button/nimble-toggle-button-control-value-accessor.directive.ngsummary.json +1 -0
  11. package/esm2015/directives/toggle-button/nimble-toggle-button.directive.js +53 -0
  12. package/esm2015/directives/toggle-button/nimble-toggle-button.directive.ngsummary.json +1 -0
  13. package/esm2015/directives/toggle-button/nimble-toggle-button.module.js +15 -0
  14. package/esm2015/directives/toggle-button/nimble-toggle-button.module.ngfactory.js +12 -0
  15. package/esm2015/directives/toggle-button/nimble-toggle-button.module.ngsummary.json +1 -0
  16. package/esm2015/ni-nimble-angular.js +2 -1
  17. package/esm2015/ni-nimble-angular.ngsummary.json +1 -1
  18. package/esm2015/public-api.js +3 -1
  19. package/esm2015/public-api.ngsummary.json +1 -1
  20. package/fesm2015/ni-nimble-angular.js +86 -2
  21. package/fesm2015/ni-nimble-angular.js.map +1 -1
  22. package/ni-nimble-angular.d.ts +1 -0
  23. package/ni-nimble-angular.metadata.json +1 -1
  24. package/package.json +2 -2
  25. package/public-api.d.ts +2 -0
@@ -20,6 +20,7 @@ export { TextFieldType } from '@ni/nimble-components/dist/esm/text-field/types';
20
20
  import '@ni/nimble-components/dist/esm/text-field';
21
21
  export { Theme } from '@ni/nimble-components/dist/esm/theme-provider/types';
22
22
  import '@ni/nimble-components/dist/esm/theme-provider';
23
+ import '@ni/nimble-components/dist/esm/toggle-button';
23
24
  import '@ni/nimble-components/dist/esm/tree-item';
24
25
  export { TreeViewSelectionMode } from '@ni/nimble-components/dist/esm/tree-view/types';
25
26
  import '@ni/nimble-components/dist/esm/tree-view';
@@ -128,7 +129,7 @@ NimbleButtonModule.decorators = [
128
129
  * Extension of Angular's CheckboxControlValueAccessor to target the Nimble checkbox control.
129
130
  *
130
131
  * Directive decorator based on CheckboxControlValueAccessor decorator
131
- * https://github.com/angular/angular/blob/master/packages/forms/src/directives/checkbox_value_accessor.ts#L42
132
+ * https://github.com/angular/angular/blob/bbababe5900ea8f4c8fccd88238f6fe08a2ceb63/packages/forms/src/directives/checkbox_value_accessor.ts#L42
132
133
  */
133
134
  class NimbleCheckboxControlValueAccessorDirective extends CheckboxControlValueAccessor {
134
135
  }
@@ -707,6 +708,89 @@ NimbleThemeProviderModule.decorators = [
707
708
  },] }
708
709
  ];
709
710
 
711
+ /**
712
+ * Directive to provide Angular integration for the toggle button.
713
+ */
714
+ class NimbleToggleButtonDirective {
715
+ constructor(renderer, elementRef) {
716
+ this.renderer = renderer;
717
+ this.elementRef = elementRef;
718
+ }
719
+ get appearance() {
720
+ return this.elementRef.nativeElement.appearance;
721
+ }
722
+ set appearance(value) {
723
+ this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
724
+ }
725
+ get disabled() {
726
+ return this.elementRef.nativeElement.disabled;
727
+ }
728
+ set disabled(value) {
729
+ this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
730
+ }
731
+ get contentHidden() {
732
+ return this.elementRef.nativeElement.contentHidden;
733
+ }
734
+ // contentHidden property intentionally maps to the content-hidden attribute
735
+ // eslint-disable-next-line @angular-eslint/no-input-rename
736
+ set contentHidden(value) {
737
+ this.renderer.setProperty(this.elementRef.nativeElement, 'contentHidden', toBooleanProperty(value));
738
+ }
739
+ get checked() {
740
+ return this.elementRef.nativeElement.checked;
741
+ }
742
+ set checked(value) {
743
+ this.renderer.setProperty(this.elementRef.nativeElement, 'checked', toBooleanProperty(value));
744
+ }
745
+ }
746
+ NimbleToggleButtonDirective.decorators = [
747
+ { type: Directive, args: [{
748
+ selector: 'nimble-toggle-button'
749
+ },] }
750
+ ];
751
+ NimbleToggleButtonDirective.ctorParameters = () => [
752
+ { type: Renderer2 },
753
+ { type: ElementRef }
754
+ ];
755
+ NimbleToggleButtonDirective.propDecorators = {
756
+ appearance: [{ type: Input }],
757
+ disabled: [{ type: Input }],
758
+ contentHidden: [{ type: Input, args: ['content-hidden',] }],
759
+ checked: [{ type: Input }]
760
+ };
761
+
762
+ /**
763
+ * Extension of Angular's CheckboxControlValueAccessor to target the Nimble toggle button control.
764
+ *
765
+ * Directive decorator based on CheckboxControlValueAccessor decorator
766
+ * https://github.com/angular/angular/blob/bbababe5900ea8f4c8fccd88238f6fe08a2ceb63/packages/forms/src/directives/checkbox_value_accessor.ts#L42
767
+ */
768
+ class NimbleToggleButtonControlValueAccessorDirective extends CheckboxControlValueAccessor {
769
+ }
770
+ NimbleToggleButtonControlValueAccessorDirective.decorators = [
771
+ { type: Directive, args: [{
772
+ selector: 'nimble-toggle-button[formControlName],nimble-toggle-button[formControl],nimble-toggle-button[ngModel]',
773
+ // The following host metadata is duplicated from CheckboxControlValueAccessor
774
+ // eslint-disable-next-line @angular-eslint/no-host-metadata-property
775
+ host: { '(change)': 'onChange($event.target.checked)', '(blur)': 'onTouched()' },
776
+ providers: [{
777
+ provide: NG_VALUE_ACCESSOR,
778
+ useExisting: forwardRef(() => NimbleToggleButtonControlValueAccessorDirective),
779
+ multi: true
780
+ }]
781
+ },] }
782
+ ];
783
+
784
+ class NimbleToggleButtonModule {
785
+ }
786
+ NimbleToggleButtonModule.decorators = [
787
+ { type: NgModule, args: [{
788
+ declarations: [NimbleToggleButtonDirective, NimbleToggleButtonControlValueAccessorDirective],
789
+ imports: [CommonModule],
790
+ exports: [NimbleToggleButtonDirective, NimbleToggleButtonControlValueAccessorDirective]
791
+ },] }
792
+ ];
793
+
710
794
  /**
711
795
  * Directive to provide Angular integration for the tree item.
712
796
  */
@@ -827,5 +911,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
827
911
  * Generated bundle index. Do not edit.
828
912
  */
829
913
 
830
- export { NimbleButtonDirective, NimbleButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleListboxOptionDirective, NimbleListboxOptionModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, waitForUpdatesAsync };
914
+ export { NimbleButtonDirective, NimbleButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleListboxOptionDirective, NimbleListboxOptionModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, waitForUpdatesAsync, NimbleToggleButtonControlValueAccessorDirective as ɵa };
831
915
  //# sourceMappingURL=ni-nimble-angular.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ni-nimble-angular.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","../../../../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","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 { ThemeProvider } from '@ni/nimble-components/dist/esm/theme-provider';\nimport type { ThemeAttribute } from '@ni/nimble-components/dist/esm/theme-provider/types';\nimport { Theme } from '@ni/nimble-components/dist/esm/theme-provider/types';\n\nexport type { ThemeProvider };\nexport { Theme };\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(): Theme {\n return this.elementRef.nativeElement.theme;\n }\n\n @Input() public set theme(value: Theme | ThemeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'theme', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<ThemeProvider>) {}\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":["waitForUpdatesAsyncOriginal"],"mappings":"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"}
1
+ {"version":3,"file":"ni-nimble-angular.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","../../../../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/toggle-button/nimble-toggle-button.directive.ts","../../../../projects/ni/nimble-angular/src/directives/toggle-button/nimble-toggle-button-control-value-accessor.directive.ts","../../../../projects/ni/nimble-angular/src/directives/toggle-button/nimble-toggle-button.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","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/bbababe5900ea8f4c8fccd88238f6fe08a2ceb63/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 { ThemeProvider } from '@ni/nimble-components/dist/esm/theme-provider';\nimport type { ThemeAttribute } from '@ni/nimble-components/dist/esm/theme-provider/types';\nimport { Theme } from '@ni/nimble-components/dist/esm/theme-provider/types';\n\nexport type { ThemeProvider };\nexport { Theme };\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(): Theme {\n return this.elementRef.nativeElement.theme;\n }\n\n @Input() public set theme(value: Theme | ThemeAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'theme', value);\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<ThemeProvider>) {}\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, Input, Renderer2 } from '@angular/core';\nimport type { ToggleButton } from '@ni/nimble-components/dist/esm/toggle-button';\nimport type { ButtonAppearanceAttribute } from '@ni/nimble-components/dist/esm/toggle-button/types';\nimport type { ButtonAppearance } from '@ni/nimble-components/dist/esm/toggle-button/types';\nimport { BooleanValueOrAttribute, toBooleanProperty } from '../utilities/template-value-helpers';\n\nexport type { ToggleButton };\n\n/**\n * Directive to provide Angular integration for the toggle button.\n */\n@Directive({\n selector: 'nimble-toggle-button'\n})\nexport class NimbleToggleButtonDirective {\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 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 get checked(): boolean {\n return this.elementRef.nativeElement.checked;\n }\n\n @Input() public set checked(value: BooleanValueOrAttribute) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'checked', toBooleanProperty(value));\n }\n\n public constructor(private readonly renderer: Renderer2, private readonly elementRef: ElementRef<ToggleButton>) {}\n}\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 toggle button control.\n *\n * Directive decorator based on CheckboxControlValueAccessor decorator\n * https://github.com/angular/angular/blob/bbababe5900ea8f4c8fccd88238f6fe08a2ceb63/packages/forms/src/directives/checkbox_value_accessor.ts#L42\n */\n@Directive({\n selector:\n 'nimble-toggle-button[formControlName],nimble-toggle-button[formControl],nimble-toggle-button[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(() => NimbleToggleButtonControlValueAccessorDirective),\n multi: true\n }]\n})\nexport class NimbleToggleButtonControlValueAccessorDirective extends CheckboxControlValueAccessor {\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { NimbleToggleButtonDirective } from './nimble-toggle-button.directive';\nimport { NimbleToggleButtonControlValueAccessorDirective } from './nimble-toggle-button-control-value-accessor.directive';\n\nimport '@ni/nimble-components/dist/esm/toggle-button';\n\n@NgModule({\n declarations: [NimbleToggleButtonDirective, NimbleToggleButtonControlValueAccessorDirective],\n imports: [CommonModule],\n exports: [NimbleToggleButtonDirective, NimbleToggleButtonControlValueAccessorDirective]\n})\nexport class NimbleToggleButtonModule { }\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/toggle-button/nimble-toggle-button.directive';\nexport * from './directives/toggle-button/nimble-toggle-button.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\nexport {NimbleToggleButtonControlValueAccessorDirective as ɵa} from './directives/toggle-button/nimble-toggle-button-control-value-accessor.directive';"],"names":["waitForUpdatesAsyncOriginal"],"mappings":"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"}
@@ -2,3 +2,4 @@
2
2
  * Generated bundle index. Do not edit.
3
3
  */
4
4
  export * from './public-api';
5
+ export { NimbleToggleButtonControlValueAccessorDirective as ɵa } from './directives/toggle-button/nimble-toggle-button-control-value-accessor.directive';