@ni/nimble-angular 5.0.24 → 5.1.0
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 +104 -4
- package/bundles/ni-nimble-angular.umd.js.map +1 -1
- package/directives/menu-button/nimble-menu-button.directive.d.ts +26 -0
- package/directives/menu-button/nimble-menu-button.module.d.ts +9 -0
- package/esm2015/directives/menu-button/nimble-menu-button.directive.js +67 -0
- package/esm2015/directives/menu-button/nimble-menu-button.module.js +19 -0
- package/esm2015/public-api.js +3 -1
- package/fesm2015/ni-nimble-angular.js +80 -1
- package/fesm2015/ni-nimble-angular.js.map +1 -1
- package/package.json +2 -2
- package/public-api.d.ts +2 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, Renderer2 } from '@angular/core';
|
|
2
|
+
import type { MenuButton } from '@ni/nimble-components/dist/esm/menu-button';
|
|
3
|
+
import type { ButtonAppearance, ButtonAppearanceAttribute } from '@ni/nimble-components/dist/esm/menu-button/types';
|
|
4
|
+
import { BooleanValueOrAttribute } from '../utilities/template-value-helpers';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export type { MenuButton };
|
|
7
|
+
/**
|
|
8
|
+
* Directive to provide Angular integration for the menu button.
|
|
9
|
+
*/
|
|
10
|
+
export declare class NimbleMenuButtonDirective {
|
|
11
|
+
private readonly renderer;
|
|
12
|
+
private readonly elementRef;
|
|
13
|
+
get appearance(): ButtonAppearance;
|
|
14
|
+
set appearance(value: ButtonAppearance | ButtonAppearanceAttribute);
|
|
15
|
+
get disabled(): boolean;
|
|
16
|
+
set disabled(value: BooleanValueOrAttribute);
|
|
17
|
+
get contentHidden(): boolean;
|
|
18
|
+
set contentHidden(value: BooleanValueOrAttribute);
|
|
19
|
+
get open(): boolean;
|
|
20
|
+
set open(value: BooleanValueOrAttribute);
|
|
21
|
+
openChange: EventEmitter<boolean>;
|
|
22
|
+
constructor(renderer: Renderer2, elementRef: ElementRef<MenuButton>);
|
|
23
|
+
onOpenChange($event: Event): void;
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleMenuButtonDirective, never>;
|
|
25
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleMenuButtonDirective, "nimble-menu-button", never, { "appearance": "appearance"; "disabled": "disabled"; "contentHidden": "content-hidden"; "open": "open"; }, { "openChange": "openChange"; }, never>;
|
|
26
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import '@ni/nimble-components/dist/esm/menu-button';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./nimble-menu-button.directive";
|
|
4
|
+
import * as i2 from "@angular/common";
|
|
5
|
+
export declare class NimbleMenuButtonModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleMenuButtonModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NimbleMenuButtonModule, [typeof i1.NimbleMenuButtonDirective], [typeof i2.CommonModule], [typeof i1.NimbleMenuButtonDirective]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NimbleMenuButtonModule>;
|
|
9
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { Directive, EventEmitter, HostListener, Input, Output } from '@angular/core';
|
|
2
|
+
import { toBooleanProperty } from '../utilities/template-value-helpers';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Directive to provide Angular integration for the menu button.
|
|
6
|
+
*/
|
|
7
|
+
export class NimbleMenuButtonDirective {
|
|
8
|
+
constructor(renderer, elementRef) {
|
|
9
|
+
this.renderer = renderer;
|
|
10
|
+
this.elementRef = elementRef;
|
|
11
|
+
this.openChange = new EventEmitter();
|
|
12
|
+
}
|
|
13
|
+
get appearance() {
|
|
14
|
+
return this.elementRef.nativeElement.appearance;
|
|
15
|
+
}
|
|
16
|
+
set appearance(value) {
|
|
17
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
18
|
+
}
|
|
19
|
+
get disabled() {
|
|
20
|
+
return this.elementRef.nativeElement.disabled;
|
|
21
|
+
}
|
|
22
|
+
set disabled(value) {
|
|
23
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
24
|
+
}
|
|
25
|
+
get contentHidden() {
|
|
26
|
+
return this.elementRef.nativeElement.contentHidden;
|
|
27
|
+
}
|
|
28
|
+
// contentHidden property intentionally maps to the content-hidden attribute
|
|
29
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
30
|
+
set contentHidden(value) {
|
|
31
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'contentHidden', toBooleanProperty(value));
|
|
32
|
+
}
|
|
33
|
+
get open() {
|
|
34
|
+
return this.elementRef.nativeElement.open;
|
|
35
|
+
}
|
|
36
|
+
set open(value) {
|
|
37
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'open', toBooleanProperty(value));
|
|
38
|
+
}
|
|
39
|
+
onOpenChange($event) {
|
|
40
|
+
if ($event.target === this.elementRef.nativeElement) {
|
|
41
|
+
this.openChange.emit(this.open);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
NimbleMenuButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
46
|
+
NimbleMenuButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleMenuButtonDirective, selector: "nimble-menu-button", inputs: { appearance: "appearance", disabled: "disabled", contentHidden: ["content-hidden", "contentHidden"], open: "open" }, outputs: { openChange: "openChange" }, host: { listeners: { "open-change": "onOpenChange($event)" } }, ngImport: i0 });
|
|
47
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonDirective, decorators: [{
|
|
48
|
+
type: Directive,
|
|
49
|
+
args: [{
|
|
50
|
+
selector: 'nimble-menu-button'
|
|
51
|
+
}]
|
|
52
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
53
|
+
type: Input
|
|
54
|
+
}], disabled: [{
|
|
55
|
+
type: Input
|
|
56
|
+
}], contentHidden: [{
|
|
57
|
+
type: Input,
|
|
58
|
+
args: ['content-hidden']
|
|
59
|
+
}], open: [{
|
|
60
|
+
type: Input
|
|
61
|
+
}], openChange: [{
|
|
62
|
+
type: Output
|
|
63
|
+
}], onOpenChange: [{
|
|
64
|
+
type: HostListener,
|
|
65
|
+
args: ['open-change', ['$event']]
|
|
66
|
+
}] } });
|
|
67
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLW1lbnUtYnV0dG9uLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25pL25pbWJsZS1hbmd1bGFyL3NyYy9kaXJlY3RpdmVzL21lbnUtYnV0dG9uL25pbWJsZS1tZW51LWJ1dHRvbi5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBYyxZQUFZLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBRSxNQUFNLEVBQWEsTUFBTSxlQUFlLENBQUM7QUFHNUcsT0FBTyxFQUEyQixpQkFBaUIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQUlqRzs7R0FFRztBQUlILE1BQU0sT0FBTyx5QkFBeUI7SUFxQ2xDLFlBQW9DLFFBQW1CLEVBQW1CLFVBQWtDO1FBQXhFLGFBQVEsR0FBUixRQUFRLENBQVc7UUFBbUIsZUFBVSxHQUFWLFVBQVUsQ0FBd0I7UUFGM0YsZUFBVSxHQUFHLElBQUksWUFBWSxFQUFXLENBQUM7SUFFcUQsQ0FBQztJQXBDaEgsSUFBVyxVQUFVO1FBQ2pCLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsVUFBVSxDQUFDO0lBQ3BELENBQUM7SUFFRCxJQUFvQixVQUFVLENBQUMsS0FBbUQ7UUFDOUUsSUFBSSxDQUFDLFFBQVEsQ0FBQyxXQUFXLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLEVBQUUsWUFBWSxFQUFFLEtBQUssQ0FBQyxDQUFDO0lBQ2xGLENBQUM7SUFFRCxJQUFXLFFBQVE7UUFDZixPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FBQztJQUNsRCxDQUFDO0lBRUQsSUFBb0IsUUFBUSxDQUFDLEtBQThCO1FBQ3ZELElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxFQUFFLFVBQVUsRUFBRSxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQ25HLENBQUM7SUFFRCxJQUFXLGFBQWE7UUFDcEIsT0FBTyxJQUFJLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUM7SUFDdkQsQ0FBQztJQUVELDRFQUE0RTtJQUM1RSwyREFBMkQ7SUFDM0QsSUFBb0MsYUFBYSxDQUFDLEtBQThCO1FBQzVFLElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxFQUFFLGVBQWUsRUFBRSxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQ3hHLENBQUM7SUFFRCxJQUFXLElBQUk7UUFDWCxPQUFPLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQztJQUM5QyxDQUFDO0lBRUQsSUFBb0IsSUFBSSxDQUFDLEtBQThCO1FBQ25ELElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxFQUFFLE1BQU0sRUFBRSxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDO0lBQy9GLENBQUM7SUFPTSxZQUFZLENBQUMsTUFBYTtRQUM3QixJQUFJLE1BQU0sQ0FBQyxNQUFNLEtBQUssSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLEVBQUU7WUFDakQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDO1NBQ25DO0lBQ0wsQ0FBQzs7c0hBNUNRLHlCQUF5QjswR0FBekIseUJBQXlCOzJGQUF6Qix5QkFBeUI7a0JBSHJDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLG9CQUFvQjtpQkFDakM7eUhBTXVCLFVBQVU7c0JBQTdCLEtBQUs7Z0JBUWMsUUFBUTtzQkFBM0IsS0FBSztnQkFVOEIsYUFBYTtzQkFBaEQsS0FBSzt1QkFBQyxnQkFBZ0I7Z0JBUUgsSUFBSTtzQkFBdkIsS0FBSztnQkFJVyxVQUFVO3NCQUExQixNQUFNO2dCQUtBLFlBQVk7c0JBRGxCLFlBQVk7dUJBQUMsYUFBYSxFQUFFLENBQUMsUUFBUSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBFdmVudEVtaXR0ZXIsIEhvc3RMaXN0ZW5lciwgSW5wdXQsIE91dHB1dCwgUmVuZGVyZXIyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgdHlwZSB7IE1lbnVCdXR0b24gfSBmcm9tICdAbmkvbmltYmxlLWNvbXBvbmVudHMvZGlzdC9lc20vbWVudS1idXR0b24nO1xuaW1wb3J0IHR5cGUgeyBCdXR0b25BcHBlYXJhbmNlLCBCdXR0b25BcHBlYXJhbmNlQXR0cmlidXRlIH0gZnJvbSAnQG5pL25pbWJsZS1jb21wb25lbnRzL2Rpc3QvZXNtL21lbnUtYnV0dG9uL3R5cGVzJztcbmltcG9ydCB7IEJvb2xlYW5WYWx1ZU9yQXR0cmlidXRlLCB0b0Jvb2xlYW5Qcm9wZXJ0eSB9IGZyb20gJy4uL3V0aWxpdGllcy90ZW1wbGF0ZS12YWx1ZS1oZWxwZXJzJztcblxuZXhwb3J0IHR5cGUgeyBNZW51QnV0dG9uIH07XG5cbi8qKlxuICogRGlyZWN0aXZlIHRvIHByb3ZpZGUgQW5ndWxhciBpbnRlZ3JhdGlvbiBmb3IgdGhlIG1lbnUgYnV0dG9uLlxuICovXG5ARGlyZWN0aXZlKHtcbiAgICBzZWxlY3RvcjogJ25pbWJsZS1tZW51LWJ1dHRvbidcbn0pXG5leHBvcnQgY2xhc3MgTmltYmxlTWVudUJ1dHRvbkRpcmVjdGl2ZSB7XG4gICAgcHVibGljIGdldCBhcHBlYXJhbmNlKCk6IEJ1dHRvbkFwcGVhcmFuY2Uge1xuICAgICAgICByZXR1cm4gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQuYXBwZWFyYW5jZTtcbiAgICB9XG5cbiAgICBASW5wdXQoKSBwdWJsaWMgc2V0IGFwcGVhcmFuY2UodmFsdWU6IEJ1dHRvbkFwcGVhcmFuY2UgfCBCdXR0b25BcHBlYXJhbmNlQXR0cmlidXRlKSB7XG4gICAgICAgIHRoaXMucmVuZGVyZXIuc2V0UHJvcGVydHkodGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsICdhcHBlYXJhbmNlJywgdmFsdWUpO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgZGlzYWJsZWQoKTogYm9vbGVhbiB7XG4gICAgICAgIHJldHVybiB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudC5kaXNhYmxlZDtcbiAgICB9XG5cbiAgICBASW5wdXQoKSBwdWJsaWMgc2V0IGRpc2FibGVkKHZhbHVlOiBCb29sZWFuVmFsdWVPckF0dHJpYnV0ZSkge1xuICAgICAgICB0aGlzLnJlbmRlcmVyLnNldFByb3BlcnR5KHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LCAnZGlzYWJsZWQnLCB0b0Jvb2xlYW5Qcm9wZXJ0eSh2YWx1ZSkpO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgY29udGVudEhpZGRlbigpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LmNvbnRlbnRIaWRkZW47XG4gICAgfVxuXG4gICAgLy8gY29udGVudEhpZGRlbiBwcm9wZXJ0eSBpbnRlbnRpb25hbGx5IG1hcHMgdG8gdGhlIGNvbnRlbnQtaGlkZGVuIGF0dHJpYnV0ZVxuICAgIC8vIGVzbGludC1kaXNhYmxlLW5leHQtbGluZSBAYW5ndWxhci1lc2xpbnQvbm8taW5wdXQtcmVuYW1lXG4gICAgQElucHV0KCdjb250ZW50LWhpZGRlbicpIHB1YmxpYyBzZXQgY29udGVudEhpZGRlbih2YWx1ZTogQm9vbGVhblZhbHVlT3JBdHRyaWJ1dGUpIHtcbiAgICAgICAgdGhpcy5yZW5kZXJlci5zZXRQcm9wZXJ0eSh0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudCwgJ2NvbnRlbnRIaWRkZW4nLCB0b0Jvb2xlYW5Qcm9wZXJ0eSh2YWx1ZSkpO1xuICAgIH1cblxuICAgIHB1YmxpYyBnZXQgb3BlbigpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50Lm9wZW47XG4gICAgfVxuXG4gICAgQElucHV0KCkgcHVibGljIHNldCBvcGVuKHZhbHVlOiBCb29sZWFuVmFsdWVPckF0dHJpYnV0ZSkge1xuICAgICAgICB0aGlzLnJlbmRlcmVyLnNldFByb3BlcnR5KHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LCAnb3BlbicsIHRvQm9vbGVhblByb3BlcnR5KHZhbHVlKSk7XG4gICAgfVxuXG4gICAgQE91dHB1dCgpIHB1YmxpYyBvcGVuQ2hhbmdlID0gbmV3IEV2ZW50RW1pdHRlcjxib29sZWFuPigpO1xuXG4gICAgcHVibGljIGNvbnN0cnVjdG9yKHByaXZhdGUgcmVhZG9ubHkgcmVuZGVyZXI6IFJlbmRlcmVyMiwgcHJpdmF0ZSByZWFkb25seSBlbGVtZW50UmVmOiBFbGVtZW50UmVmPE1lbnVCdXR0b24+KSB7fVxuXG4gICAgQEhvc3RMaXN0ZW5lcignb3Blbi1jaGFuZ2UnLCBbJyRldmVudCddKVxuICAgIHB1YmxpYyBvbk9wZW5DaGFuZ2UoJGV2ZW50OiBFdmVudCk6IHZvaWQge1xuICAgICAgICBpZiAoJGV2ZW50LnRhcmdldCA9PT0gdGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQpIHtcbiAgICAgICAgICAgIHRoaXMub3BlbkNoYW5nZS5lbWl0KHRoaXMub3Blbik7XG4gICAgICAgIH1cbiAgICB9XG59XG4iXX0=
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { NimbleMenuButtonDirective } from './nimble-menu-button.directive';
|
|
4
|
+
import '@ni/nimble-components/dist/esm/menu-button';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export class NimbleMenuButtonModule {
|
|
7
|
+
}
|
|
8
|
+
NimbleMenuButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
9
|
+
NimbleMenuButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, declarations: [NimbleMenuButtonDirective], imports: [CommonModule], exports: [NimbleMenuButtonDirective] });
|
|
10
|
+
NimbleMenuButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, imports: [[CommonModule]] });
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, decorators: [{
|
|
12
|
+
type: NgModule,
|
|
13
|
+
args: [{
|
|
14
|
+
declarations: [NimbleMenuButtonDirective],
|
|
15
|
+
imports: [CommonModule],
|
|
16
|
+
exports: [NimbleMenuButtonDirective]
|
|
17
|
+
}]
|
|
18
|
+
}] });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmltYmxlLW1lbnUtYnV0dG9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL25pL25pbWJsZS1hbmd1bGFyL3NyYy9kaXJlY3RpdmVzL21lbnUtYnV0dG9uL25pbWJsZS1tZW51LWJ1dHRvbi5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDL0MsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sZ0NBQWdDLENBQUM7QUFFM0UsT0FBTyw0Q0FBNEMsQ0FBQzs7QUFPcEQsTUFBTSxPQUFPLHNCQUFzQjs7bUhBQXRCLHNCQUFzQjtvSEFBdEIsc0JBQXNCLGlCQUpoQix5QkFBeUIsYUFDOUIsWUFBWSxhQUNaLHlCQUF5QjtvSEFFMUIsc0JBQXNCLFlBSHRCLENBQUMsWUFBWSxDQUFDOzJGQUdkLHNCQUFzQjtrQkFMbEMsUUFBUTttQkFBQztvQkFDTixZQUFZLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztvQkFDekMsT0FBTyxFQUFFLENBQUMsWUFBWSxDQUFDO29CQUN2QixPQUFPLEVBQUUsQ0FBQyx5QkFBeUIsQ0FBQztpQkFDdkMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IE5pbWJsZU1lbnVCdXR0b25EaXJlY3RpdmUgfSBmcm9tICcuL25pbWJsZS1tZW51LWJ1dHRvbi5kaXJlY3RpdmUnO1xuXG5pbXBvcnQgJ0BuaS9uaW1ibGUtY29tcG9uZW50cy9kaXN0L2VzbS9tZW51LWJ1dHRvbic7XG5cbkBOZ01vZHVsZSh7XG4gICAgZGVjbGFyYXRpb25zOiBbTmltYmxlTWVudUJ1dHRvbkRpcmVjdGl2ZV0sXG4gICAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gICAgZXhwb3J0czogW05pbWJsZU1lbnVCdXR0b25EaXJlY3RpdmVdXG59KVxuZXhwb3J0IGNsYXNzIE5pbWJsZU1lbnVCdXR0b25Nb2R1bGUgeyB9XG4iXX0=
|
package/esm2015/public-api.js
CHANGED
|
@@ -19,6 +19,8 @@ export * from './directives/list-option/nimble-list-option.directive';
|
|
|
19
19
|
export * from './directives/list-option/nimble-list-option.module';
|
|
20
20
|
export * from './directives/menu/nimble-menu.directive';
|
|
21
21
|
export * from './directives/menu/nimble-menu.module';
|
|
22
|
+
export * from './directives/menu-button/nimble-menu-button.directive';
|
|
23
|
+
export * from './directives/menu-button/nimble-menu-button.module';
|
|
22
24
|
export * from './directives/menu-item/nimble-menu-item.directive';
|
|
23
25
|
export * from './directives/menu-item/nimble-menu-item.module';
|
|
24
26
|
export * from './directives/number-field/nimble-number-field-control-value-accessor.directive';
|
|
@@ -56,4 +58,4 @@ export * from './directives/tree-item/nimble-tree-item.module';
|
|
|
56
58
|
export * from './directives/tree-view/nimble-tree-view.directive';
|
|
57
59
|
export * from './directives/tree-view/nimble-tree-view.module';
|
|
58
60
|
export * from './testing/async-helpers';
|
|
59
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
61
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL25pL25pbWJsZS1hbmd1bGFyL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxxREFBcUQsQ0FBQztBQUNwRSxjQUFjLGtEQUFrRCxDQUFDO0FBQ2pFLGNBQWMscUZBQXFGLENBQUM7QUFDcEcsY0FBYywyRUFBMkUsQ0FBQztBQUMxRixjQUFjLCtEQUErRCxDQUFDO0FBQzlFLGNBQWMsNERBQTRELENBQUM7QUFDM0UsY0FBYyw2Q0FBNkMsQ0FBQztBQUM1RCxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsd0VBQXdFLENBQUM7QUFDdkYsY0FBYyxpREFBaUQsQ0FBQztBQUNoRSxjQUFjLDhDQUE4QyxDQUFDO0FBQzdELGNBQWMsNkNBQTZDLENBQUM7QUFDNUQsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsdURBQXVELENBQUM7QUFDdEUsY0FBYyxvREFBb0QsQ0FBQztBQUNuRSxjQUFjLHlDQUF5QyxDQUFDO0FBQ3hELGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYyx1REFBdUQsQ0FBQztBQUN0RSxjQUFjLG9EQUFvRCxDQUFDO0FBQ25FLGNBQWMsbURBQW1ELENBQUM7QUFDbEUsY0FBYyxnREFBZ0QsQ0FBQztBQUMvRCxjQUFjLGdGQUFnRixDQUFDO0FBQy9GLGNBQWMseURBQXlELENBQUM7QUFDeEUsY0FBYyxzREFBc0QsQ0FBQztBQUNyRSxjQUFjLG9FQUFvRSxDQUFDO0FBQ25GLGNBQWMsNkNBQTZDLENBQUM7QUFDNUQsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLG9FQUFvRSxDQUFDO0FBQ25GLGNBQWMsNkNBQTZDLENBQUM7QUFDNUQsY0FBYywwQ0FBMEMsQ0FBQztBQUN6RCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxtREFBbUQsQ0FBQztBQUNsRSxjQUFjLGdEQUFnRCxDQUFDO0FBQy9ELGNBQWMseUNBQXlDLENBQUM7QUFDeEQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLHlEQUF5RCxDQUFDO0FBQ3hFLGNBQWMsc0RBQXNELENBQUM7QUFDckUsY0FBYywwRUFBMEUsQ0FBQztBQUN6RixjQUFjLG1EQUFtRCxDQUFDO0FBQ2xFLGNBQWMsZ0RBQWdELENBQUM7QUFDL0QsY0FBYyw0RUFBNEUsQ0FBQztBQUMzRixjQUFjLHFEQUFxRCxDQUFDO0FBQ3BFLGNBQWMsa0RBQWtELENBQUM7QUFDakUsY0FBYyw2REFBNkQsQ0FBQztBQUM1RSxjQUFjLDBEQUEwRCxDQUFDO0FBQ3pFLGNBQWMsa0ZBQWtGLENBQUM7QUFDakcsY0FBYywyREFBMkQsQ0FBQztBQUMxRSxjQUFjLHdEQUF3RCxDQUFDO0FBQ3ZFLGNBQWMsK0NBQStDLENBQUM7QUFDOUQsY0FBYyw0Q0FBNEMsQ0FBQztBQUMzRCxjQUFjLG1EQUFtRCxDQUFDO0FBQ2xFLGNBQWMsZ0RBQWdELENBQUM7QUFDL0QsY0FBYyxtREFBbUQsQ0FBQztBQUNsRSxjQUFjLGdEQUFnRCxDQUFDO0FBQy9ELGNBQWMseUJBQXlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKlxuICogUHVibGljIEFQSSBTdXJmYWNlIG9mIG5pbWJsZS1hbmd1bGFyXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL2JyZWFkY3J1bWIvbmltYmxlLWJyZWFkY3J1bWIuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9icmVhZGNydW1iL25pbWJsZS1icmVhZGNydW1iLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvYnJlYWRjcnVtYi1pdGVtL25pbWJsZS1icmVhZGNydW1iLWl0ZW0tcm91dGVyLWxpbmstd2l0aC1ocmVmLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvYnJlYWRjcnVtYi1pdGVtL25pbWJsZS1icmVhZGNydW1iLWl0ZW0tcm91dGVyLWxpbmsuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9icmVhZGNydW1iLWl0ZW0vbmltYmxlLWJyZWFkY3J1bWItaXRlbS5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL2JyZWFkY3J1bWItaXRlbS9uaW1ibGUtYnJlYWRjcnVtYi1pdGVtLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvYnV0dG9uL25pbWJsZS1idXR0b24uZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9idXR0b24vbmltYmxlLWJ1dHRvbi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL2NoZWNrYm94L25pbWJsZS1jaGVja2JveC1jb250cm9sLXZhbHVlLWFjY2Vzc29yLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvY2hlY2tib3gvbmltYmxlLWNoZWNrYm94LmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvY2hlY2tib3gvbmltYmxlLWNoZWNrYm94Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvZHJhd2VyL25pbWJsZS1kcmF3ZXIuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9kcmF3ZXIvbmltYmxlLWRyYXdlci5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL2ljb25zJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9saXN0LW9wdGlvbi9uaW1ibGUtbGlzdC1vcHRpb24uZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9saXN0LW9wdGlvbi9uaW1ibGUtbGlzdC1vcHRpb24ubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9tZW51L25pbWJsZS1tZW51LmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvbWVudS9uaW1ibGUtbWVudS5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL21lbnUtYnV0dG9uL25pbWJsZS1tZW51LWJ1dHRvbi5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL21lbnUtYnV0dG9uL25pbWJsZS1tZW51LWJ1dHRvbi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL21lbnUtaXRlbS9uaW1ibGUtbWVudS1pdGVtLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvbWVudS1pdGVtL25pbWJsZS1tZW51LWl0ZW0ubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9udW1iZXItZmllbGQvbmltYmxlLW51bWJlci1maWVsZC1jb250cm9sLXZhbHVlLWFjY2Vzc29yLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvbnVtYmVyLWZpZWxkL25pbWJsZS1udW1iZXItZmllbGQuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9udW1iZXItZmllbGQvbmltYmxlLW51bWJlci1maWVsZC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3NlbGVjdC9uaW1ibGUtc2VsZWN0LWNvbnRyb2wtdmFsdWUtYWNjZXNzb3IuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9zZWxlY3QvbmltYmxlLXNlbGVjdC5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3NlbGVjdC9uaW1ibGUtc2VsZWN0Lm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvc3dpdGNoL25pbWJsZS1zd2l0Y2gtY29udHJvbC12YWx1ZS1hY2Nlc3Nvci5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3N3aXRjaC9uaW1ibGUtc3dpdGNoLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvc3dpdGNoL25pbWJsZS1zd2l0Y2gubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90YWIvbmltYmxlLXRhYi5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3RhYi9uaW1ibGUtdGFiLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvdGFiLXBhbmVsL25pbWJsZS10YWItcGFuZWwuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90YWItcGFuZWwvbmltYmxlLXRhYi1wYW5lbC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3RhYnMvbmltYmxlLXRhYnMuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90YWJzL25pbWJsZS10YWJzLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvdGFicy10b29sYmFyL25pbWJsZS10YWJzLXRvb2xiYXIuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90YWJzLXRvb2xiYXIvbmltYmxlLXRhYnMtdG9vbGJhci5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3RleHQtYXJlYS9uaW1ibGUtdGV4dC1hcmVhLWNvbnRyb2wtdmFsdWUtYWNjZXNzb3IuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90ZXh0LWFyZWEvbmltYmxlLXRleHQtYXJlYS5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3RleHQtYXJlYS9uaW1ibGUtdGV4dC1hcmVhLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvdGV4dC1maWVsZC9uaW1ibGUtdGV4dC1maWVsZC1jb250cm9sLXZhbHVlLWFjY2Vzc29yLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvdGV4dC1maWVsZC9uaW1ibGUtdGV4dC1maWVsZC5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3RleHQtZmllbGQvbmltYmxlLXRleHQtZmllbGQubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90aGVtZS1wcm92aWRlci9uaW1ibGUtdGhlbWUtcHJvdmlkZXIuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90aGVtZS1wcm92aWRlci9uaW1ibGUtdGhlbWUtcHJvdmlkZXIubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90b2dnbGUtYnV0dG9uL25pbWJsZS10b2dnbGUtYnV0dG9uLWNvbnRyb2wtdmFsdWUtYWNjZXNzb3IuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90b2dnbGUtYnV0dG9uL25pbWJsZS10b2dnbGUtYnV0dG9uLmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvdG9nZ2xlLWJ1dHRvbi9uaW1ibGUtdG9nZ2xlLWJ1dHRvbi5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3Rvb2xiYXIvbmltYmxlLXRvb2xiYXIuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90b29sYmFyL25pbWJsZS10b29sYmFyLm1vZHVsZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvdHJlZS1pdGVtL25pbWJsZS10cmVlLWl0ZW0uZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy90cmVlLWl0ZW0vbmltYmxlLXRyZWUtaXRlbS5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3RyZWUtdmlldy9uaW1ibGUtdHJlZS12aWV3LmRpcmVjdGl2ZSc7XG5leHBvcnQgKiBmcm9tICcuL2RpcmVjdGl2ZXMvdHJlZS12aWV3L25pbWJsZS10cmVlLXZpZXcubW9kdWxlJztcbmV4cG9ydCAqIGZyb20gJy4vdGVzdGluZy9hc3luYy1oZWxwZXJzJzsiXX0=
|
|
@@ -155,6 +155,7 @@ import '@ni/nimble-components/dist/esm/icons/xmark';
|
|
|
155
155
|
import '@ni/nimble-components/dist/esm/icons/xmark-check';
|
|
156
156
|
import '@ni/nimble-components/dist/esm/list-option';
|
|
157
157
|
import '@ni/nimble-components/dist/esm/menu';
|
|
158
|
+
import '@ni/nimble-components/dist/esm/menu-button';
|
|
158
159
|
import '@ni/nimble-components/dist/esm/menu-item';
|
|
159
160
|
import '@ni/nimble-components/dist/esm/number-field';
|
|
160
161
|
import '@ni/nimble-components/dist/esm/select';
|
|
@@ -4977,6 +4978,84 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImpor
|
|
|
4977
4978
|
}]
|
|
4978
4979
|
}] });
|
|
4979
4980
|
|
|
4981
|
+
/**
|
|
4982
|
+
* Directive to provide Angular integration for the menu button.
|
|
4983
|
+
*/
|
|
4984
|
+
class NimbleMenuButtonDirective {
|
|
4985
|
+
constructor(renderer, elementRef) {
|
|
4986
|
+
this.renderer = renderer;
|
|
4987
|
+
this.elementRef = elementRef;
|
|
4988
|
+
this.openChange = new EventEmitter();
|
|
4989
|
+
}
|
|
4990
|
+
get appearance() {
|
|
4991
|
+
return this.elementRef.nativeElement.appearance;
|
|
4992
|
+
}
|
|
4993
|
+
set appearance(value) {
|
|
4994
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
4995
|
+
}
|
|
4996
|
+
get disabled() {
|
|
4997
|
+
return this.elementRef.nativeElement.disabled;
|
|
4998
|
+
}
|
|
4999
|
+
set disabled(value) {
|
|
5000
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
5001
|
+
}
|
|
5002
|
+
get contentHidden() {
|
|
5003
|
+
return this.elementRef.nativeElement.contentHidden;
|
|
5004
|
+
}
|
|
5005
|
+
// contentHidden property intentionally maps to the content-hidden attribute
|
|
5006
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
5007
|
+
set contentHidden(value) {
|
|
5008
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'contentHidden', toBooleanProperty(value));
|
|
5009
|
+
}
|
|
5010
|
+
get open() {
|
|
5011
|
+
return this.elementRef.nativeElement.open;
|
|
5012
|
+
}
|
|
5013
|
+
set open(value) {
|
|
5014
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'open', toBooleanProperty(value));
|
|
5015
|
+
}
|
|
5016
|
+
onOpenChange($event) {
|
|
5017
|
+
if ($event.target === this.elementRef.nativeElement) {
|
|
5018
|
+
this.openChange.emit(this.open);
|
|
5019
|
+
}
|
|
5020
|
+
}
|
|
5021
|
+
}
|
|
5022
|
+
NimbleMenuButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
5023
|
+
NimbleMenuButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.5", type: NimbleMenuButtonDirective, selector: "nimble-menu-button", inputs: { appearance: "appearance", disabled: "disabled", contentHidden: ["content-hidden", "contentHidden"], open: "open" }, outputs: { openChange: "openChange" }, host: { listeners: { "open-change": "onOpenChange($event)" } }, ngImport: i0 });
|
|
5024
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonDirective, decorators: [{
|
|
5025
|
+
type: Directive,
|
|
5026
|
+
args: [{
|
|
5027
|
+
selector: 'nimble-menu-button'
|
|
5028
|
+
}]
|
|
5029
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
5030
|
+
type: Input
|
|
5031
|
+
}], disabled: [{
|
|
5032
|
+
type: Input
|
|
5033
|
+
}], contentHidden: [{
|
|
5034
|
+
type: Input,
|
|
5035
|
+
args: ['content-hidden']
|
|
5036
|
+
}], open: [{
|
|
5037
|
+
type: Input
|
|
5038
|
+
}], openChange: [{
|
|
5039
|
+
type: Output
|
|
5040
|
+
}], onOpenChange: [{
|
|
5041
|
+
type: HostListener,
|
|
5042
|
+
args: ['open-change', ['$event']]
|
|
5043
|
+
}] } });
|
|
5044
|
+
|
|
5045
|
+
class NimbleMenuButtonModule {
|
|
5046
|
+
}
|
|
5047
|
+
NimbleMenuButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
5048
|
+
NimbleMenuButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, declarations: [NimbleMenuButtonDirective], imports: [CommonModule], exports: [NimbleMenuButtonDirective] });
|
|
5049
|
+
NimbleMenuButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, imports: [[CommonModule]] });
|
|
5050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.5", ngImport: i0, type: NimbleMenuButtonModule, decorators: [{
|
|
5051
|
+
type: NgModule,
|
|
5052
|
+
args: [{
|
|
5053
|
+
declarations: [NimbleMenuButtonDirective],
|
|
5054
|
+
imports: [CommonModule],
|
|
5055
|
+
exports: [NimbleMenuButtonDirective]
|
|
5056
|
+
}]
|
|
5057
|
+
}] });
|
|
5058
|
+
|
|
4980
5059
|
/**
|
|
4981
5060
|
* Directive to provide Angular integration for the menu.
|
|
4982
5061
|
*/
|
|
@@ -6023,5 +6102,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
|
|
|
6023
6102
|
* Generated bundle index. Do not edit.
|
|
6024
6103
|
*/
|
|
6025
6104
|
|
|
6026
|
-
export { NimbleAddIconDirective, NimbleAddIconModule, NimbleArrowDownRightAndArrowUpLeftIconDirective, NimbleArrowDownRightAndArrowUpLeftIconModule, NimbleArrowExpanderDownIconDirective, NimbleArrowExpanderDownIconModule, NimbleArrowExpanderLeftIconDirective, NimbleArrowExpanderLeftIconModule, NimbleArrowExpanderRightIconDirective, NimbleArrowExpanderRightIconModule, NimbleArrowExpanderUpIconDirective, NimbleArrowExpanderUpIconModule, NimbleArrowLeftFromLineIconDirective, NimbleArrowLeftFromLineIconModule, NimbleArrowPartialRotateLeftIconDirective, NimbleArrowPartialRotateLeftIconModule, NimbleArrowRightToLineIconDirective, NimbleArrowRightToLineIconModule, NimbleArrowRotateRightIconDirective, NimbleArrowRotateRightIconModule, NimbleArrowURotateLeftIconDirective, NimbleArrowURotateLeftIconModule, NimbleArrowUpLeftAndArrowDownRightIconDirective, NimbleArrowUpLeftAndArrowDownRightIconModule, NimbleArrowsMaximizeIconDirective, NimbleArrowsMaximizeIconModule, NimbleArrowsRepeatIconDirective, NimbleArrowsRepeatIconModule, NimbleBarsIconDirective, NimbleBarsIconModule, NimbleBellAndCommentIconDirective, NimbleBellAndCommentIconModule, NimbleBellCircleIconDirective, NimbleBellCircleIconModule, NimbleBellIconDirective, NimbleBellIconModule, NimbleBellSolidCircleIconDirective, NimbleBellSolidCircleIconModule, NimbleBlockWithRibbonIconDirective, NimbleBlockWithRibbonIconModule, NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCalendarIconDirective, NimbleCalendarIconModule, NimbleChartDiagramChildFocusIconDirective, NimbleChartDiagramChildFocusIconModule, NimbleChartDiagramIconDirective, NimbleChartDiagramIconModule, NimbleChartDiagramParentFocusIconDirective, NimbleChartDiagramParentFocusIconModule, NimbleChartDiagramParentFocusTwoChildIconDirective, NimbleChartDiagramParentFocusTwoChildIconModule, NimbleCheckDotIconDirective, NimbleCheckDotIconModule, NimbleCheckIconDirective, NimbleCheckIconModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleCircleBrokenIconDirective, NimbleCircleBrokenIconModule, NimbleCircleCheckIconDirective, NimbleCircleCheckIconModule, NimbleCircleIconDirective, NimbleCircleIconModule, NimbleCirclePartialBrokenIconDirective, NimbleCirclePartialBrokenIconModule, NimbleCircleSlashIconDirective, NimbleCircleSlashIconModule, NimbleCircleXIconDirective, NimbleCircleXIconModule, NimbleClipboardIconDirective, NimbleClipboardIconModule, NimbleClockCogIconDirective, NimbleClockCogIconModule, NimbleClockIconDirective, NimbleClockIconModule, NimbleClockTriangleIconDirective, NimbleClockTriangleIconModule, NimbleCloneIconDirective, NimbleCloneIconModule, NimbleCloudUploadIconDirective, NimbleCloudUploadIconModule, NimbleCloudWithArrowIconDirective, NimbleCloudWithArrowIconModule, NimbleCogDatabaseIconDirective, NimbleCogDatabaseIconModule, NimbleCogDatabaseInsetIconDirective, NimbleCogDatabaseInsetIconModule, NimbleCogIconDirective, NimbleCogIconModule, NimbleCogSmallCogIconDirective, NimbleCogSmallCogIconModule, NimbleCogZoomedIconDirective, NimbleCogZoomedIconModule, NimbleCommentIconDirective, NimbleCommentIconModule, NimbleComputerAndMonitorIconDirective, NimbleComputerAndMonitorIconModule, NimbleCopyIconDirective, NimbleCopyIconModule, NimbleCopyTextIconDirective, NimbleCopyTextIconModule, NimbleDashboardBuilderIconDirective, NimbleDashboardBuilderIconModule, NimbleDashboardBuilderLegendIconDirective, NimbleDashboardBuilderLegendIconModule, NimbleDashboardBuilderTemplatesIconDirective, NimbleDashboardBuilderTemplatesIconModule, NimbleDashboardBuilderTileIconDirective, NimbleDashboardBuilderTileIconModule, NimbleDatabaseCheckIconDirective, NimbleDatabaseCheckIconModule, NimbleDatabaseIconDirective, NimbleDatabaseIconModule, NimbleDesktopIconDirective, NimbleDesktopIconModule, NimbleDonutChartIconDirective, NimbleDonutChartIconModule, NimbleDotSolidDotStrokeIconDirective, NimbleDotSolidDotStrokeIconModule, NimbleDownloadIconDirective, NimbleDownloadIconModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleElectronicChipZoomedIconDirective, NimbleElectronicChipZoomedIconModule, NimbleExclamationMarkIconDirective, NimbleExclamationMarkIconModule, NimbleEyeIconDirective, NimbleEyeIconModule, NimbleFancyAIconDirective, NimbleFancyAIconModule, NimbleFileDrawerIconDirective, NimbleFileDrawerIconModule, NimbleFileIconDirective, NimbleFileIconModule, NimbleFileSearchIconDirective, NimbleFileSearchIconModule, NimbleFilterIconDirective, NimbleFilterIconModule, NimbleFloppyDiskCheckmarkIconDirective, NimbleFloppyDiskCheckmarkIconModule, NimbleFloppyDiskStarArrowRightIconDirective, NimbleFloppyDiskStarArrowRightIconModule, NimbleFloppyDiskThreeDotsIconDirective, NimbleFloppyDiskThreeDotsIconModule, NimbleFolderIconDirective, NimbleFolderIconModule, NimbleFolderOpenIconDirective, NimbleFolderOpenIconModule, NimbleForwardSlashIconDirective, NimbleForwardSlashIconModule, NimbleFourDotsSquareIconDirective, NimbleFourDotsSquareIconModule, NimbleFunctionIconDirective, NimbleFunctionIconModule, NimbleGaugeSimpleIconDirective, NimbleGaugeSimpleIconModule, NimbleGridThreeByThreeIconDirective, NimbleGridThreeByThreeIconModule, NimbleGridTwoByTwoIconDirective, NimbleGridTwoByTwoIconModule, NimbleHammerIconDirective, NimbleHammerIconModule, NimbleHashtagIconDirective, NimbleHashtagIconModule, NimbleHomeIconDirective, NimbleHomeIconModule, NimbleHourglassIconDirective, NimbleHourglassIconModule, NimbleIndeterminantCheckboxIconDirective, NimbleIndeterminantCheckboxIconModule, NimbleInfoCircleIconDirective, NimbleInfoCircleIconModule, NimbleInfoIconDirective, NimbleInfoIconModule, NimbleKeyIconDirective, NimbleKeyIconModule, NimbleLaptopIconDirective, NimbleLaptopIconModule, NimbleLayerGroupIconDirective, NimbleLayerGroupIconModule, NimbleLightningBoltIconDirective, NimbleLightningBoltIconModule, NimbleLinkCancelIconDirective, NimbleLinkCancelIconModule, NimbleLinkIconDirective, NimbleLinkIconModule, NimbleListIconDirective, NimbleListIconModule, NimbleListOptionDirective, NimbleListOptionModule, NimbleListTreeDatabaseIconDirective, NimbleListTreeDatabaseIconModule, NimbleListTreeIconDirective, NimbleListTreeIconModule, NimbleLockIconDirective, NimbleLockIconModule, NimbleMagnifyingGlassIconDirective, NimbleMagnifyingGlassIconModule, NimbleMarkdownIconDirective, NimbleMarkdownIconModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleMinusIconDirective, NimbleMinusIconModule, NimbleMinusWideIconDirective, NimbleMinusWideIconModule, NimbleMobileIconDirective, NimbleMobileIconModule, NimbleNotebookIconDirective, NimbleNotebookIconModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimblePasteIconDirective, NimblePasteIconModule, NimblePencilIconDirective, NimblePencilIconModule, NimblePotWithLidIconDirective, NimblePotWithLidIconModule, NimbleQuestionIconDirective, NimbleQuestionIconModule, NimbleRunningArrowIconDirective, NimbleRunningArrowIconModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectModule, NimbleServerIconDirective, NimbleServerIconModule, NimbleShareSquareIconDirective, NimbleShareSquareIconModule, NimbleShieldCheckIconDirective, NimbleShieldCheckIconModule, NimbleShieldXmarkIconDirective, NimbleShieldXmarkIconModule, NimbleSignalBarsIconDirective, NimbleSignalBarsIconModule, NimbleSineGraphIconDirective, NimbleSineGraphIconModule, NimbleSkipArrowIconDirective, NimbleSkipArrowIconModule, NimbleSpinnerIconDirective, NimbleSpinnerIconModule, NimbleSquareCheckIconDirective, NimbleSquareCheckIconModule, NimbleSquareTIconDirective, NimbleSquareTIconModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTIconDirective, NimbleTIconModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabletIconDirective, NimbleTabletIconModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTagIconDirective, NimbleTagIconModule, NimbleTagsIconDirective, NimbleTagsIconModule, NimbleTargetCrosshairsIconDirective, NimbleTargetCrosshairsIconModule, NimbleTargetCrosshairsProgressIconDirective, NimbleTargetCrosshairsProgressIconModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleThreeDotsLineIconDirective, NimbleThreeDotsLineIconModule, NimbleThumbtackIconDirective, NimbleThumbtackIconModule, NimbleTileSizeIconDirective, NimbleTileSizeIconModule, NimbleTimesIconDirective, NimbleTimesIconModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTrashIconDirective, NimbleTrashIconModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, NimbleTriangleIconDirective, NimbleTriangleIconModule, NimbleTrueFalseRectangleIconDirective, NimbleTrueFalseRectangleIconModule, NimbleUnlinkIconDirective, NimbleUnlinkIconModule, NimbleUnlockIconDirective, NimbleUnlockIconModule, NimbleUploadIconDirective, NimbleUploadIconModule, NimbleUserIconDirective, NimbleUserIconModule, NimbleWatchIconDirective, NimbleWatchIconModule, NimbleWaveformIconDirective, NimbleWaveformIconModule, NimbleWebviCustomIconDirective, NimbleWebviCustomIconModule, NimbleWebviHostIconDirective, NimbleWebviHostIconModule, NimbleWindowCodeIconDirective, NimbleWindowCodeIconModule, NimbleWindowTextIconDirective, NimbleWindowTextIconModule, NimbleWrenchHammerIconDirective, NimbleWrenchHammerIconModule, NimbleXmarkCheckIconDirective, NimbleXmarkCheckIconModule, NimbleXmarkIconDirective, NimbleXmarkIconModule, waitForUpdatesAsync };
|
|
6105
|
+
export { NimbleAddIconDirective, NimbleAddIconModule, NimbleArrowDownRightAndArrowUpLeftIconDirective, NimbleArrowDownRightAndArrowUpLeftIconModule, NimbleArrowExpanderDownIconDirective, NimbleArrowExpanderDownIconModule, NimbleArrowExpanderLeftIconDirective, NimbleArrowExpanderLeftIconModule, NimbleArrowExpanderRightIconDirective, NimbleArrowExpanderRightIconModule, NimbleArrowExpanderUpIconDirective, NimbleArrowExpanderUpIconModule, NimbleArrowLeftFromLineIconDirective, NimbleArrowLeftFromLineIconModule, NimbleArrowPartialRotateLeftIconDirective, NimbleArrowPartialRotateLeftIconModule, NimbleArrowRightToLineIconDirective, NimbleArrowRightToLineIconModule, NimbleArrowRotateRightIconDirective, NimbleArrowRotateRightIconModule, NimbleArrowURotateLeftIconDirective, NimbleArrowURotateLeftIconModule, NimbleArrowUpLeftAndArrowDownRightIconDirective, NimbleArrowUpLeftAndArrowDownRightIconModule, NimbleArrowsMaximizeIconDirective, NimbleArrowsMaximizeIconModule, NimbleArrowsRepeatIconDirective, NimbleArrowsRepeatIconModule, NimbleBarsIconDirective, NimbleBarsIconModule, NimbleBellAndCommentIconDirective, NimbleBellAndCommentIconModule, NimbleBellCircleIconDirective, NimbleBellCircleIconModule, NimbleBellIconDirective, NimbleBellIconModule, NimbleBellSolidCircleIconDirective, NimbleBellSolidCircleIconModule, NimbleBlockWithRibbonIconDirective, NimbleBlockWithRibbonIconModule, NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCalendarIconDirective, NimbleCalendarIconModule, NimbleChartDiagramChildFocusIconDirective, NimbleChartDiagramChildFocusIconModule, NimbleChartDiagramIconDirective, NimbleChartDiagramIconModule, NimbleChartDiagramParentFocusIconDirective, NimbleChartDiagramParentFocusIconModule, NimbleChartDiagramParentFocusTwoChildIconDirective, NimbleChartDiagramParentFocusTwoChildIconModule, NimbleCheckDotIconDirective, NimbleCheckDotIconModule, NimbleCheckIconDirective, NimbleCheckIconModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleCircleBrokenIconDirective, NimbleCircleBrokenIconModule, NimbleCircleCheckIconDirective, NimbleCircleCheckIconModule, NimbleCircleIconDirective, NimbleCircleIconModule, NimbleCirclePartialBrokenIconDirective, NimbleCirclePartialBrokenIconModule, NimbleCircleSlashIconDirective, NimbleCircleSlashIconModule, NimbleCircleXIconDirective, NimbleCircleXIconModule, NimbleClipboardIconDirective, NimbleClipboardIconModule, NimbleClockCogIconDirective, NimbleClockCogIconModule, NimbleClockIconDirective, NimbleClockIconModule, NimbleClockTriangleIconDirective, NimbleClockTriangleIconModule, NimbleCloneIconDirective, NimbleCloneIconModule, NimbleCloudUploadIconDirective, NimbleCloudUploadIconModule, NimbleCloudWithArrowIconDirective, NimbleCloudWithArrowIconModule, NimbleCogDatabaseIconDirective, NimbleCogDatabaseIconModule, NimbleCogDatabaseInsetIconDirective, NimbleCogDatabaseInsetIconModule, NimbleCogIconDirective, NimbleCogIconModule, NimbleCogSmallCogIconDirective, NimbleCogSmallCogIconModule, NimbleCogZoomedIconDirective, NimbleCogZoomedIconModule, NimbleCommentIconDirective, NimbleCommentIconModule, NimbleComputerAndMonitorIconDirective, NimbleComputerAndMonitorIconModule, NimbleCopyIconDirective, NimbleCopyIconModule, NimbleCopyTextIconDirective, NimbleCopyTextIconModule, NimbleDashboardBuilderIconDirective, NimbleDashboardBuilderIconModule, NimbleDashboardBuilderLegendIconDirective, NimbleDashboardBuilderLegendIconModule, NimbleDashboardBuilderTemplatesIconDirective, NimbleDashboardBuilderTemplatesIconModule, NimbleDashboardBuilderTileIconDirective, NimbleDashboardBuilderTileIconModule, NimbleDatabaseCheckIconDirective, NimbleDatabaseCheckIconModule, NimbleDatabaseIconDirective, NimbleDatabaseIconModule, NimbleDesktopIconDirective, NimbleDesktopIconModule, NimbleDonutChartIconDirective, NimbleDonutChartIconModule, NimbleDotSolidDotStrokeIconDirective, NimbleDotSolidDotStrokeIconModule, NimbleDownloadIconDirective, NimbleDownloadIconModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleElectronicChipZoomedIconDirective, NimbleElectronicChipZoomedIconModule, NimbleExclamationMarkIconDirective, NimbleExclamationMarkIconModule, NimbleEyeIconDirective, NimbleEyeIconModule, NimbleFancyAIconDirective, NimbleFancyAIconModule, NimbleFileDrawerIconDirective, NimbleFileDrawerIconModule, NimbleFileIconDirective, NimbleFileIconModule, NimbleFileSearchIconDirective, NimbleFileSearchIconModule, NimbleFilterIconDirective, NimbleFilterIconModule, NimbleFloppyDiskCheckmarkIconDirective, NimbleFloppyDiskCheckmarkIconModule, NimbleFloppyDiskStarArrowRightIconDirective, NimbleFloppyDiskStarArrowRightIconModule, NimbleFloppyDiskThreeDotsIconDirective, NimbleFloppyDiskThreeDotsIconModule, NimbleFolderIconDirective, NimbleFolderIconModule, NimbleFolderOpenIconDirective, NimbleFolderOpenIconModule, NimbleForwardSlashIconDirective, NimbleForwardSlashIconModule, NimbleFourDotsSquareIconDirective, NimbleFourDotsSquareIconModule, NimbleFunctionIconDirective, NimbleFunctionIconModule, NimbleGaugeSimpleIconDirective, NimbleGaugeSimpleIconModule, NimbleGridThreeByThreeIconDirective, NimbleGridThreeByThreeIconModule, NimbleGridTwoByTwoIconDirective, NimbleGridTwoByTwoIconModule, NimbleHammerIconDirective, NimbleHammerIconModule, NimbleHashtagIconDirective, NimbleHashtagIconModule, NimbleHomeIconDirective, NimbleHomeIconModule, NimbleHourglassIconDirective, NimbleHourglassIconModule, NimbleIndeterminantCheckboxIconDirective, NimbleIndeterminantCheckboxIconModule, NimbleInfoCircleIconDirective, NimbleInfoCircleIconModule, NimbleInfoIconDirective, NimbleInfoIconModule, NimbleKeyIconDirective, NimbleKeyIconModule, NimbleLaptopIconDirective, NimbleLaptopIconModule, NimbleLayerGroupIconDirective, NimbleLayerGroupIconModule, NimbleLightningBoltIconDirective, NimbleLightningBoltIconModule, NimbleLinkCancelIconDirective, NimbleLinkCancelIconModule, NimbleLinkIconDirective, NimbleLinkIconModule, NimbleListIconDirective, NimbleListIconModule, NimbleListOptionDirective, NimbleListOptionModule, NimbleListTreeDatabaseIconDirective, NimbleListTreeDatabaseIconModule, NimbleListTreeIconDirective, NimbleListTreeIconModule, NimbleLockIconDirective, NimbleLockIconModule, NimbleMagnifyingGlassIconDirective, NimbleMagnifyingGlassIconModule, NimbleMarkdownIconDirective, NimbleMarkdownIconModule, NimbleMenuButtonDirective, NimbleMenuButtonModule, NimbleMenuDirective, NimbleMenuItemDirective, NimbleMenuItemModule, NimbleMenuModule, NimbleMinusIconDirective, NimbleMinusIconModule, NimbleMinusWideIconDirective, NimbleMinusWideIconModule, NimbleMobileIconDirective, NimbleMobileIconModule, NimbleNotebookIconDirective, NimbleNotebookIconModule, NimbleNumberFieldControlValueAccessorDirective, NimbleNumberFieldDirective, NimbleNumberFieldModule, NimblePasteIconDirective, NimblePasteIconModule, NimblePencilIconDirective, NimblePencilIconModule, NimblePotWithLidIconDirective, NimblePotWithLidIconModule, NimbleQuestionIconDirective, NimbleQuestionIconModule, NimbleRunningArrowIconDirective, NimbleRunningArrowIconModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectModule, NimbleServerIconDirective, NimbleServerIconModule, NimbleShareSquareIconDirective, NimbleShareSquareIconModule, NimbleShieldCheckIconDirective, NimbleShieldCheckIconModule, NimbleShieldXmarkIconDirective, NimbleShieldXmarkIconModule, NimbleSignalBarsIconDirective, NimbleSignalBarsIconModule, NimbleSineGraphIconDirective, NimbleSineGraphIconModule, NimbleSkipArrowIconDirective, NimbleSkipArrowIconModule, NimbleSpinnerIconDirective, NimbleSpinnerIconModule, NimbleSquareCheckIconDirective, NimbleSquareCheckIconModule, NimbleSquareTIconDirective, NimbleSquareTIconModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTIconDirective, NimbleTIconModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTabletIconDirective, NimbleTabletIconModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTagIconDirective, NimbleTagIconModule, NimbleTagsIconDirective, NimbleTagsIconModule, NimbleTargetCrosshairsIconDirective, NimbleTargetCrosshairsIconModule, NimbleTargetCrosshairsProgressIconDirective, NimbleTargetCrosshairsProgressIconModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleThreeDotsLineIconDirective, NimbleThreeDotsLineIconModule, NimbleThumbtackIconDirective, NimbleThumbtackIconModule, NimbleTileSizeIconDirective, NimbleTileSizeIconModule, NimbleTimesIconDirective, NimbleTimesIconModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTrashIconDirective, NimbleTrashIconModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, NimbleTriangleIconDirective, NimbleTriangleIconModule, NimbleTrueFalseRectangleIconDirective, NimbleTrueFalseRectangleIconModule, NimbleUnlinkIconDirective, NimbleUnlinkIconModule, NimbleUnlockIconDirective, NimbleUnlockIconModule, NimbleUploadIconDirective, NimbleUploadIconModule, NimbleUserIconDirective, NimbleUserIconModule, NimbleWatchIconDirective, NimbleWatchIconModule, NimbleWaveformIconDirective, NimbleWaveformIconModule, NimbleWebviCustomIconDirective, NimbleWebviCustomIconModule, NimbleWebviHostIconDirective, NimbleWebviHostIconModule, NimbleWindowCodeIconDirective, NimbleWindowCodeIconModule, NimbleWindowTextIconDirective, NimbleWindowTextIconModule, NimbleWrenchHammerIconDirective, NimbleWrenchHammerIconModule, NimbleXmarkCheckIconDirective, NimbleXmarkCheckIconModule, NimbleXmarkIconDirective, NimbleXmarkIconModule, waitForUpdatesAsync };
|
|
6027
6106
|
//# sourceMappingURL=ni-nimble-angular.js.map
|