@ni/nimble-angular 7.5.1 → 8.0.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.
- package/bundles/ni-nimble-angular.umd.js +197 -40
- package/bundles/ni-nimble-angular.umd.js.map +1 -1
- package/directives/combobox/nimble-combobox-control-value-accessor.directive.d.ts +61 -7
- package/directives/list-option/nimble-combobox-list-option.directive.d.ts +29 -0
- package/directives/list-option/nimble-list-option.module.d.ts +6 -4
- package/directives/list-option/{nimble-list-option.directive.d.ts → nimble-select-list-option.directive.d.ts} +4 -5
- package/esm2015/directives/combobox/nimble-combobox-control-value-accessor.directive.js +87 -20
- package/esm2015/directives/combobox/nimble-combobox.directive.js +1 -1
- package/esm2015/directives/list-option/nimble-combobox-list-option.directive.js +70 -0
- package/esm2015/directives/list-option/nimble-list-option.module.js +7 -6
- package/esm2015/directives/list-option/nimble-select-list-option.directive.js +40 -0
- package/esm2015/public-api.js +3 -2
- package/fesm2015/ni-nimble-angular.js +161 -29
- package/fesm2015/ni-nimble-angular.js.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +2 -1
- package/esm2015/directives/list-option/nimble-list-option.directive.js +0 -40
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Directive, NgModule, Input, forwardRef, EventEmitter, Output,
|
|
2
|
+
import { Directive, NgModule, Input, forwardRef, HostListener, EventEmitter, Output, Inject, Optional, Host } from '@angular/core';
|
|
3
3
|
import { CommonModule } from '@angular/common';
|
|
4
4
|
import '@ni/nimble-components/dist/esm/breadcrumb';
|
|
5
5
|
import { RouterLinkWithHref } from '@angular/router';
|
|
6
6
|
import '@ni/nimble-components/dist/esm/breadcrumb-item';
|
|
7
7
|
import '@ni/nimble-components/dist/esm/button';
|
|
8
|
-
import { CheckboxControlValueAccessor, NG_VALUE_ACCESSOR,
|
|
8
|
+
import { CheckboxControlValueAccessor, NG_VALUE_ACCESSOR, SelectControlValueAccessor, NgSelectOption, NumberValueAccessor, DefaultValueAccessor } from '@angular/forms';
|
|
9
9
|
import '@ni/nimble-components/dist/esm/checkbox';
|
|
10
10
|
export { ComboboxAutocomplete } from '@ni/nimble-components/dist/esm/combobox/types';
|
|
11
11
|
import '@ni/nimble-components/dist/esm/combobox';
|
|
@@ -532,38 +532,105 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImpor
|
|
|
532
532
|
}] });
|
|
533
533
|
|
|
534
534
|
/**
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
535
|
+
* @description
|
|
536
|
+
* This symbol instance will be returned when the value input of the Combobox is set
|
|
537
|
+
* to a value not found in the set of options.
|
|
538
|
+
*/
|
|
539
|
+
const OPTION_NOT_FOUND = Symbol('not found');
|
|
540
|
+
/**
|
|
541
|
+
* Control Value Accessor implementation to target combobox inputs.
|
|
542
|
+
* @description
|
|
543
|
+
* The expectation when binding value via 'ngModel', is that the content in each list-option be
|
|
544
|
+
* unique. When this isn't the case the behavior is undefined. Additionally, it is expected
|
|
545
|
+
* that when using 'ngModel' that each list-option bind a value via 'ngValue', and not 'value'.
|
|
546
|
+
*/
|
|
547
|
+
class NimbleComboboxControlValueAccessorDirective {
|
|
548
|
+
constructor(_renderer, _elementRef) {
|
|
549
|
+
this._renderer = _renderer;
|
|
550
|
+
this._elementRef = _elementRef;
|
|
551
|
+
/** @internal */
|
|
552
|
+
this._optionMap = new Map();
|
|
553
|
+
this._compareWith = Object.is;
|
|
554
|
+
}
|
|
555
|
+
/**
|
|
556
|
+
* @description
|
|
557
|
+
* Tracks the option comparison algorithm for tracking identities when
|
|
558
|
+
* checking for changes.
|
|
559
|
+
*/
|
|
560
|
+
set compareWith(fn) {
|
|
561
|
+
if (typeof fn !== 'function') {
|
|
562
|
+
throw new Error(`compareWith must be a function, but received ${JSON.stringify(fn)}`);
|
|
563
|
+
}
|
|
564
|
+
this._compareWith = fn;
|
|
565
|
+
}
|
|
566
|
+
/**
|
|
567
|
+
* Updates the underlying nimble-combobox value with the expected display string.
|
|
568
|
+
* @param value The ngValue set on the nimble-combobox
|
|
569
|
+
*/
|
|
570
|
+
writeValue(value) {
|
|
571
|
+
const valueAsString = this.getValueStringFromValue(value);
|
|
572
|
+
this.setProperty('value', valueAsString !== null && valueAsString !== void 0 ? valueAsString : '');
|
|
573
|
+
}
|
|
574
|
+
/**
|
|
575
|
+
* Registers a function called when the control value changes.
|
|
576
|
+
* @nodoc
|
|
577
|
+
*/
|
|
578
|
+
registerOnChange(fn) {
|
|
579
|
+
this.onChange = (valueString) => {
|
|
580
|
+
var _a;
|
|
581
|
+
const modelValue = (_a = this._optionMap.get(valueString)) !== null && _a !== void 0 ? _a : OPTION_NOT_FOUND;
|
|
582
|
+
fn(modelValue);
|
|
583
|
+
};
|
|
584
|
+
}
|
|
585
|
+
/**
|
|
586
|
+
* Registers a function called when the control is touched.
|
|
587
|
+
* @nodoc
|
|
588
|
+
*/
|
|
589
|
+
registerOnTouched(fn) {
|
|
590
|
+
this.onTouched = fn;
|
|
591
|
+
}
|
|
592
|
+
getValueStringFromValue(value) {
|
|
593
|
+
for (const [optionKey, optionValue] of this._optionMap.entries()) {
|
|
594
|
+
if (this._compareWith(optionValue, value)) {
|
|
595
|
+
return optionKey;
|
|
596
|
+
}
|
|
597
|
+
}
|
|
598
|
+
return undefined;
|
|
599
|
+
}
|
|
600
|
+
/**
|
|
601
|
+
* Helper method that sets a property on a target element using the current Renderer
|
|
602
|
+
* implementation.
|
|
603
|
+
* @nodoc
|
|
604
|
+
*/
|
|
605
|
+
setProperty(key, value) {
|
|
606
|
+
this._renderer.setProperty(this._elementRef.nativeElement, key, value);
|
|
607
|
+
}
|
|
541
608
|
}
|
|
542
|
-
NimbleComboboxControlValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleComboboxControlValueAccessorDirective, deps:
|
|
543
|
-
NimbleComboboxControlValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxControlValueAccessorDirective, selector: "nimble-combobox[formControlName],nimble-combobox[formControl],nimble-combobox[ngModel]", host: { listeners: { "
|
|
609
|
+
NimbleComboboxControlValueAccessorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleComboboxControlValueAccessorDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
610
|
+
NimbleComboboxControlValueAccessorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxControlValueAccessorDirective, selector: "nimble-combobox[formControlName],nimble-combobox[formControl],nimble-combobox[ngModel]", inputs: { compareWith: "compareWith" }, host: { listeners: { "change": "onChange($event.target.value])", "blur": "onTouched()" } }, providers: [{
|
|
544
611
|
provide: NG_VALUE_ACCESSOR,
|
|
545
612
|
useExisting: forwardRef(() => NimbleComboboxControlValueAccessorDirective),
|
|
546
613
|
multi: true
|
|
547
|
-
}],
|
|
614
|
+
}], ngImport: i0 });
|
|
548
615
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleComboboxControlValueAccessorDirective, decorators: [{
|
|
549
616
|
type: Directive,
|
|
550
617
|
args: [{
|
|
551
618
|
selector: 'nimble-combobox[formControlName],nimble-combobox[formControl],nimble-combobox[ngModel]',
|
|
552
|
-
// The following host metadata is duplicated from DefaultValueAccessor
|
|
553
|
-
// eslint-disable-next-line @angular-eslint/no-host-metadata-property
|
|
554
|
-
host: {
|
|
555
|
-
'(input)': '$any(this)._handleInput($event.target.value)',
|
|
556
|
-
'(blur)': 'onTouched()',
|
|
557
|
-
'(compositionstart)': '$any(this)._compositionStart()',
|
|
558
|
-
'(compositionend)': '$any(this)._compositionEnd($event.target.value)'
|
|
559
|
-
},
|
|
560
619
|
providers: [{
|
|
561
620
|
provide: NG_VALUE_ACCESSOR,
|
|
562
621
|
useExisting: forwardRef(() => NimbleComboboxControlValueAccessorDirective),
|
|
563
622
|
multi: true
|
|
564
623
|
}]
|
|
565
624
|
}]
|
|
566
|
-
}] }
|
|
625
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { compareWith: [{
|
|
626
|
+
type: Input
|
|
627
|
+
}], onChange: [{
|
|
628
|
+
type: HostListener,
|
|
629
|
+
args: ['change', ['$event.target.value]']]
|
|
630
|
+
}], onTouched: [{
|
|
631
|
+
type: HostListener,
|
|
632
|
+
args: ['blur']
|
|
633
|
+
}] } });
|
|
567
634
|
|
|
568
635
|
/**
|
|
569
636
|
* Directive for Nimble combobox control Angular integration
|
|
@@ -4970,6 +5037,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImpor
|
|
|
4970
5037
|
|
|
4971
5038
|
// AUTO-GENERATED FILE - DO NOT EDIT DIRECTLY
|
|
4972
5039
|
|
|
5040
|
+
/**
|
|
5041
|
+
* Directive to provide Angular integration for the list option when used with a combobox.
|
|
5042
|
+
*/
|
|
5043
|
+
class NimbleComboboxListOptionDirective {
|
|
5044
|
+
constructor(elementRef, renderer, changeDetector, combobox) {
|
|
5045
|
+
this.elementRef = elementRef;
|
|
5046
|
+
this.renderer = renderer;
|
|
5047
|
+
this.changeDetector = changeDetector;
|
|
5048
|
+
this.combobox = combobox;
|
|
5049
|
+
this._modelValue = undefined;
|
|
5050
|
+
}
|
|
5051
|
+
get disabled() {
|
|
5052
|
+
return this.elementRef.nativeElement.disabled;
|
|
5053
|
+
}
|
|
5054
|
+
set disabled(value) {
|
|
5055
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
5056
|
+
}
|
|
5057
|
+
/**
|
|
5058
|
+
* @description
|
|
5059
|
+
* Tracks the value bound to the option element.
|
|
5060
|
+
*/
|
|
5061
|
+
set ngValue(value) {
|
|
5062
|
+
if (this.combobox) {
|
|
5063
|
+
this._modelValue = value;
|
|
5064
|
+
this.updateComboboxValue(value);
|
|
5065
|
+
}
|
|
5066
|
+
}
|
|
5067
|
+
ngAfterViewInit() {
|
|
5068
|
+
if (this.combobox) {
|
|
5069
|
+
this._currentTextContent = this.elementRef.nativeElement.textContent;
|
|
5070
|
+
this.combobox._optionMap.set(this._currentTextContent, this._modelValue);
|
|
5071
|
+
}
|
|
5072
|
+
}
|
|
5073
|
+
ngOnDestroy() {
|
|
5074
|
+
if (this.combobox) {
|
|
5075
|
+
this.combobox._optionMap.delete(this._currentTextContent);
|
|
5076
|
+
}
|
|
5077
|
+
}
|
|
5078
|
+
updateComboboxValue(value) {
|
|
5079
|
+
this.combobox._optionMap.delete(this._currentTextContent);
|
|
5080
|
+
this.changeDetector.detectChanges();
|
|
5081
|
+
this._currentTextContent = this.elementRef.nativeElement.textContent;
|
|
5082
|
+
this.combobox._optionMap.set(this._currentTextContent, value);
|
|
5083
|
+
}
|
|
5084
|
+
}
|
|
5085
|
+
NimbleComboboxListOptionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleComboboxListOptionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: NimbleComboboxControlValueAccessorDirective, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5086
|
+
NimbleComboboxListOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleComboboxListOptionDirective, selector: "nimble-list-option", inputs: { disabled: "disabled", ngValue: "ngValue" }, ngImport: i0 });
|
|
5087
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleComboboxListOptionDirective, decorators: [{
|
|
5088
|
+
type: Directive,
|
|
5089
|
+
args: [{
|
|
5090
|
+
selector: 'nimble-list-option'
|
|
5091
|
+
}]
|
|
5092
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ChangeDetectorRef }, { type: NimbleComboboxControlValueAccessorDirective, decorators: [{
|
|
5093
|
+
type: Inject,
|
|
5094
|
+
args: [NimbleComboboxControlValueAccessorDirective]
|
|
5095
|
+
}, {
|
|
5096
|
+
type: Optional
|
|
5097
|
+
}, {
|
|
5098
|
+
type: Host
|
|
5099
|
+
}] }]; }, propDecorators: { disabled: [{
|
|
5100
|
+
type: Input
|
|
5101
|
+
}], ngValue: [{
|
|
5102
|
+
type: Input
|
|
5103
|
+
}] } });
|
|
5104
|
+
|
|
4973
5105
|
/**
|
|
4974
5106
|
* Extension of Angular's SelectControlValueAccessor to target the Nimble select control.
|
|
4975
5107
|
*
|
|
@@ -5002,9 +5134,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImpor
|
|
|
5002
5134
|
}] });
|
|
5003
5135
|
|
|
5004
5136
|
/**
|
|
5005
|
-
* Directive to provide Angular integration for the list option.
|
|
5137
|
+
* Directive to provide Angular integration for the list option when used with a select.
|
|
5006
5138
|
*/
|
|
5007
|
-
class
|
|
5139
|
+
class NimbleSelectListOptionDirective extends NgSelectOption {
|
|
5008
5140
|
constructor(elementRef, renderer, select) {
|
|
5009
5141
|
super(elementRef, renderer, select);
|
|
5010
5142
|
this.elementRef = elementRef;
|
|
@@ -5017,9 +5149,9 @@ class NimbleListOptionDirective extends NgSelectOption {
|
|
|
5017
5149
|
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
5018
5150
|
}
|
|
5019
5151
|
}
|
|
5020
|
-
|
|
5021
|
-
|
|
5022
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type:
|
|
5152
|
+
NimbleSelectListOptionDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleSelectListOptionDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: NimbleSelectControlValueAccessorDirective, host: true, optional: true }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5153
|
+
NimbleSelectListOptionDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleSelectListOptionDirective, selector: "nimble-list-option", inputs: { disabled: "disabled" }, usesInheritance: true, ngImport: i0 });
|
|
5154
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleSelectListOptionDirective, decorators: [{
|
|
5023
5155
|
type: Directive,
|
|
5024
5156
|
args: [{
|
|
5025
5157
|
selector: 'nimble-list-option'
|
|
@@ -5038,14 +5170,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImpor
|
|
|
5038
5170
|
class NimbleListOptionModule {
|
|
5039
5171
|
}
|
|
5040
5172
|
NimbleListOptionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleListOptionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5041
|
-
NimbleListOptionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleListOptionModule, declarations: [
|
|
5173
|
+
NimbleListOptionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleListOptionModule, declarations: [NimbleSelectListOptionDirective, NimbleComboboxListOptionDirective], imports: [CommonModule], exports: [NimbleSelectListOptionDirective, NimbleComboboxListOptionDirective] });
|
|
5042
5174
|
NimbleListOptionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleListOptionModule, imports: [[CommonModule]] });
|
|
5043
5175
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleListOptionModule, decorators: [{
|
|
5044
5176
|
type: NgModule,
|
|
5045
5177
|
args: [{
|
|
5046
|
-
declarations: [
|
|
5178
|
+
declarations: [NimbleSelectListOptionDirective, NimbleComboboxListOptionDirective],
|
|
5047
5179
|
imports: [CommonModule],
|
|
5048
|
-
exports: [
|
|
5180
|
+
exports: [NimbleSelectListOptionDirective, NimbleComboboxListOptionDirective]
|
|
5049
5181
|
}]
|
|
5050
5182
|
}] });
|
|
5051
5183
|
|
|
@@ -6240,5 +6372,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
|
|
|
6240
6372
|
* Generated bundle index. Do not edit.
|
|
6241
6373
|
*/
|
|
6242
6374
|
|
|
6243
|
-
export { NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleIconAddDirective, NimbleIconAddModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowURotateLeftDirective, NimbleIconArrowURotateLeftModule, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconCalendarDirective, NimbleIconCalendarModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockModule, NimbleIconClockTriangleDirective, NimbleIconClockTriangleModule, NimbleIconCloneDirective, NimbleIconCloneModule, NimbleIconCloudUploadDirective, NimbleIconCloudUploadModule, NimbleIconCloudWithArrowDirective, NimbleIconCloudWithArrowModule, NimbleIconCogDatabaseDirective, NimbleIconCogDatabaseInsetDirective, NimbleIconCogDatabaseInsetModule, NimbleIconCogDatabaseModule, NimbleIconCogDirective, NimbleIconCogModule, NimbleIconCogSmallCogDirective, NimbleIconCogSmallCogModule, NimbleIconCogZoomedDirective, NimbleIconCogZoomedModule, NimbleIconCommentDirective, NimbleIconCommentModule, NimbleIconComputerAndMonitorDirective, NimbleIconComputerAndMonitorModule, NimbleIconCopyDirective, NimbleIconCopyModule, NimbleIconCopyTextDirective, NimbleIconCopyTextModule, NimbleIconDashboardBuilderDirective, NimbleIconDashboardBuilderLegendDirective, NimbleIconDashboardBuilderLegendModule, NimbleIconDashboardBuilderModule, NimbleIconDashboardBuilderTemplatesDirective, NimbleIconDashboardBuilderTemplatesModule, NimbleIconDashboardBuilderTileDirective, NimbleIconDashboardBuilderTileModule, NimbleIconDatabaseCheckDirective, NimbleIconDatabaseCheckModule, NimbleIconDatabaseDirective, NimbleIconDatabaseModule, NimbleIconDesktopDirective, NimbleIconDesktopModule, NimbleIconDonutChartDirective, NimbleIconDonutChartModule, NimbleIconDotSolidDotStrokeDirective, NimbleIconDotSolidDotStrokeModule, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskStarArrowRightDirective, NimbleIconFloppyDiskStarArrowRightModule, NimbleIconFloppyDiskThreeDotsDirective, NimbleIconFloppyDiskThreeDotsModule, NimbleIconFolderDirective, NimbleIconFolderModule, NimbleIconFolderOpenDirective, NimbleIconFolderOpenModule, NimbleIconForwardSlashDirective, NimbleIconForwardSlashModule, NimbleIconFourDotsSquareDirective, NimbleIconFourDotsSquareModule, NimbleIconFunctionDirective, NimbleIconFunctionModule, NimbleIconGaugeSimpleDirective, NimbleIconGaugeSimpleModule, NimbleIconGridThreeByThreeDirective, NimbleIconGridThreeByThreeModule, NimbleIconGridTwoByTwoDirective, NimbleIconGridTwoByTwoModule, NimbleIconHammerDirective, NimbleIconHammerModule, NimbleIconHashtagDirective, NimbleIconHashtagModule, NimbleIconHomeDirective, NimbleIconHomeModule, NimbleIconHourglassDirective, NimbleIconHourglassModule, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, NimbleIconKeyDirective, NimbleIconKeyModule, NimbleIconLaptopDirective, NimbleIconLaptopModule, NimbleIconLayerGroupDirective, NimbleIconLayerGroupModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareSquareDirective, NimbleIconShareSquareModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleModule, NimbleIconTrueFalseRectangleDirective, NimbleIconTrueFalseRectangleModule, NimbleIconUnlinkDirective, NimbleIconUnlinkModule, NimbleIconUnlockDirective, NimbleIconUnlockModule, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionDirective, NimbleListOptionModule, NimbleMenuButtonDirective, NimbleMenuButtonModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, waitForUpdatesAsync };
|
|
6375
|
+
export { NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxListOptionDirective, NimbleComboboxModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleIconAddDirective, NimbleIconAddModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowURotateLeftDirective, NimbleIconArrowURotateLeftModule, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconCalendarDirective, NimbleIconCalendarModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockModule, NimbleIconClockTriangleDirective, NimbleIconClockTriangleModule, NimbleIconCloneDirective, NimbleIconCloneModule, NimbleIconCloudUploadDirective, NimbleIconCloudUploadModule, NimbleIconCloudWithArrowDirective, NimbleIconCloudWithArrowModule, NimbleIconCogDatabaseDirective, NimbleIconCogDatabaseInsetDirective, NimbleIconCogDatabaseInsetModule, NimbleIconCogDatabaseModule, NimbleIconCogDirective, NimbleIconCogModule, NimbleIconCogSmallCogDirective, NimbleIconCogSmallCogModule, NimbleIconCogZoomedDirective, NimbleIconCogZoomedModule, NimbleIconCommentDirective, NimbleIconCommentModule, NimbleIconComputerAndMonitorDirective, NimbleIconComputerAndMonitorModule, NimbleIconCopyDirective, NimbleIconCopyModule, NimbleIconCopyTextDirective, NimbleIconCopyTextModule, NimbleIconDashboardBuilderDirective, NimbleIconDashboardBuilderLegendDirective, NimbleIconDashboardBuilderLegendModule, NimbleIconDashboardBuilderModule, NimbleIconDashboardBuilderTemplatesDirective, NimbleIconDashboardBuilderTemplatesModule, NimbleIconDashboardBuilderTileDirective, NimbleIconDashboardBuilderTileModule, NimbleIconDatabaseCheckDirective, NimbleIconDatabaseCheckModule, NimbleIconDatabaseDirective, NimbleIconDatabaseModule, NimbleIconDesktopDirective, NimbleIconDesktopModule, NimbleIconDonutChartDirective, NimbleIconDonutChartModule, NimbleIconDotSolidDotStrokeDirective, NimbleIconDotSolidDotStrokeModule, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskStarArrowRightDirective, NimbleIconFloppyDiskStarArrowRightModule, NimbleIconFloppyDiskThreeDotsDirective, NimbleIconFloppyDiskThreeDotsModule, NimbleIconFolderDirective, NimbleIconFolderModule, NimbleIconFolderOpenDirective, NimbleIconFolderOpenModule, NimbleIconForwardSlashDirective, NimbleIconForwardSlashModule, NimbleIconFourDotsSquareDirective, NimbleIconFourDotsSquareModule, NimbleIconFunctionDirective, NimbleIconFunctionModule, NimbleIconGaugeSimpleDirective, NimbleIconGaugeSimpleModule, NimbleIconGridThreeByThreeDirective, NimbleIconGridThreeByThreeModule, NimbleIconGridTwoByTwoDirective, NimbleIconGridTwoByTwoModule, NimbleIconHammerDirective, NimbleIconHammerModule, NimbleIconHashtagDirective, NimbleIconHashtagModule, NimbleIconHomeDirective, NimbleIconHomeModule, NimbleIconHourglassDirective, NimbleIconHourglassModule, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, NimbleIconKeyDirective, NimbleIconKeyModule, NimbleIconLaptopDirective, NimbleIconLaptopModule, NimbleIconLayerGroupDirective, NimbleIconLayerGroupModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareSquareDirective, NimbleIconShareSquareModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleModule, NimbleIconTrueFalseRectangleDirective, NimbleIconTrueFalseRectangleModule, NimbleIconUnlinkDirective, NimbleIconUnlinkModule, NimbleIconUnlockDirective, NimbleIconUnlockModule, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionModule, NimbleMenuButtonDirective, NimbleMenuButtonModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectListOptionDirective, NimbleSelectModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, OPTION_NOT_FOUND, waitForUpdatesAsync };
|
|
6244
6376
|
//# sourceMappingURL=ni-nimble-angular.js.map
|