@ni/nimble-angular 14.1.0 → 14.2.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/directives/anchor/nimble-anchor-router-link-with-href.directive.d.ts +19 -0
- package/directives/anchor/nimble-anchor-router-link.directive.d.ts +11 -0
- package/directives/anchor/nimble-anchor.directive.d.ts +20 -0
- package/directives/anchor/nimble-anchor.module.d.ts +11 -0
- package/directives/anchor-base/nimble-anchor-base.directive.d.ts +27 -0
- package/directives/anchor-button/nimble-anchor-button-router-link-with-href.directive.d.ts +19 -0
- package/directives/anchor-button/nimble-anchor-button-router-link.directive.d.ts +11 -0
- package/directives/anchor-button/nimble-anchor-button.directive.d.ts +23 -0
- package/directives/anchor-button/nimble-anchor-button.module.d.ts +11 -0
- package/directives/breadcrumb-item/nimble-breadcrumb-item.directive.d.ts +3 -18
- package/directives/button/nimble-button.directive.d.ts +2 -3
- package/esm2020/directives/anchor/nimble-anchor-router-link-with-href.directive.mjs +29 -0
- package/esm2020/directives/anchor/nimble-anchor-router-link.directive.mjs +19 -0
- package/esm2020/directives/anchor/nimble-anchor.directive.mjs +42 -0
- package/esm2020/directives/anchor/nimble-anchor.module.mjs +21 -0
- package/esm2020/directives/anchor-base/nimble-anchor-base.directive.mjs +73 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button-router-link-with-href.directive.mjs +29 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button-router-link.directive.mjs +19 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button.directive.mjs +59 -0
- package/esm2020/directives/anchor-button/nimble-anchor-button.module.mjs +21 -0
- package/esm2020/directives/breadcrumb-item/nimble-breadcrumb-item.directive.mjs +7 -63
- package/esm2020/directives/button/nimble-button.directive.mjs +1 -3
- package/esm2020/public-api.mjs +10 -2
- package/fesm2015/ni-nimble-angular.mjs +302 -81
- package/fesm2015/ni-nimble-angular.mjs.map +1 -1
- package/fesm2020/ni-nimble-angular.mjs +302 -81
- package/fesm2020/ni-nimble-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +9 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
2
|
import { Directive, Input, NgModule, forwardRef, HostListener, Inject, Optional, Host, EventEmitter, Output, Injectable } from '@angular/core';
|
|
3
|
-
|
|
3
|
+
import { RouterLinkWithHref } from '@angular/router';
|
|
4
|
+
export { AnchorAppearance } from '@ni/nimble-components/dist/esm/anchor/types';
|
|
4
5
|
import { CommonModule } from '@angular/common';
|
|
6
|
+
import '@ni/nimble-components/dist/esm/anchor';
|
|
7
|
+
import '@ni/nimble-components/dist/esm/anchor-button';
|
|
8
|
+
export { BreadcrumbAppearance } from '@ni/nimble-components/dist/esm/breadcrumb/types';
|
|
5
9
|
import '@ni/nimble-components/dist/esm/breadcrumb';
|
|
6
|
-
import { RouterLinkWithHref } from '@angular/router';
|
|
7
10
|
import '@ni/nimble-components/dist/esm/breadcrumb-item';
|
|
8
|
-
export { ButtonAppearanceVariant } from '@ni/nimble-components/dist/esm/button/types';
|
|
9
11
|
import '@ni/nimble-components/dist/esm/button';
|
|
10
12
|
import '@ni/nimble-components/dist/esm/card-button';
|
|
11
13
|
import { CheckboxControlValueAccessor, NG_VALUE_ACCESSOR, SelectControlValueAccessor, NgSelectOption, NumberValueAccessor, NgControl, DefaultValueAccessor } from '@angular/forms';
|
|
@@ -197,50 +199,10 @@ export { TooltipSeverity } from '@ni/nimble-components/dist/esm/tooltip/types';
|
|
|
197
199
|
import '@ni/nimble-components/dist/esm/tooltip';
|
|
198
200
|
import { waitForUpdatesAsync as waitForUpdatesAsync$1 } from '@ni/nimble-components/dist/esm/testing/async-helpers';
|
|
199
201
|
export { processUpdates } from '@ni/nimble-components/dist/esm/testing/async-helpers';
|
|
200
|
-
export { ButtonAppearance } from '@ni/nimble-components/dist/esm/patterns/button/types';
|
|
202
|
+
export { ButtonAppearance, ButtonAppearanceVariant } from '@ni/nimble-components/dist/esm/patterns/button/types';
|
|
201
203
|
export { DropdownAppearance } from '@ni/nimble-components/dist/esm/patterns/dropdown/types';
|
|
202
204
|
export { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';
|
|
203
205
|
|
|
204
|
-
/**
|
|
205
|
-
* Directive to provide Angular integration for the breadcrumb.
|
|
206
|
-
*/
|
|
207
|
-
class NimbleBreadcrumbDirective {
|
|
208
|
-
constructor(renderer, elementRef) {
|
|
209
|
-
this.renderer = renderer;
|
|
210
|
-
this.elementRef = elementRef;
|
|
211
|
-
}
|
|
212
|
-
get appearance() {
|
|
213
|
-
return this.elementRef.nativeElement.appearance;
|
|
214
|
-
}
|
|
215
|
-
set appearance(value) {
|
|
216
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
NimbleBreadcrumbDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
220
|
-
NimbleBreadcrumbDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbDirective, selector: "nimble-breadcrumb", inputs: { appearance: "appearance" }, ngImport: i0 });
|
|
221
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbDirective, decorators: [{
|
|
222
|
-
type: Directive,
|
|
223
|
-
args: [{
|
|
224
|
-
selector: 'nimble-breadcrumb'
|
|
225
|
-
}]
|
|
226
|
-
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
227
|
-
type: Input
|
|
228
|
-
}] } });
|
|
229
|
-
|
|
230
|
-
class NimbleBreadcrumbModule {
|
|
231
|
-
}
|
|
232
|
-
NimbleBreadcrumbModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
233
|
-
NimbleBreadcrumbModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, declarations: [NimbleBreadcrumbDirective], imports: [CommonModule], exports: [NimbleBreadcrumbDirective] });
|
|
234
|
-
NimbleBreadcrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, imports: [CommonModule] });
|
|
235
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, decorators: [{
|
|
236
|
-
type: NgModule,
|
|
237
|
-
args: [{
|
|
238
|
-
declarations: [NimbleBreadcrumbDirective],
|
|
239
|
-
imports: [CommonModule],
|
|
240
|
-
exports: [NimbleBreadcrumbDirective]
|
|
241
|
-
}]
|
|
242
|
-
}] });
|
|
243
|
-
|
|
244
206
|
/**
|
|
245
207
|
* Selectors used for built-in Angular RouterLink directives:
|
|
246
208
|
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
@@ -249,45 +211,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImpo
|
|
|
249
211
|
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
250
212
|
*/
|
|
251
213
|
/**
|
|
252
|
-
* Directive to handle nimble-
|
|
214
|
+
* Directive to handle nimble-anchor RouterLink support.
|
|
253
215
|
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
254
216
|
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
255
217
|
*/
|
|
256
|
-
class
|
|
218
|
+
class NimbleAnchorRouterLinkWithHrefDirective extends RouterLinkWithHref {
|
|
257
219
|
set nimbleRouterLink(commands) {
|
|
258
220
|
this.routerLink = commands;
|
|
259
221
|
}
|
|
260
222
|
}
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type:
|
|
223
|
+
NimbleAnchorRouterLinkWithHrefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
224
|
+
NimbleAnchorRouterLinkWithHrefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorRouterLinkWithHrefDirective, selector: "nimble-anchor[nimbleRouterLink]", inputs: { nimbleRouterLink: "nimbleRouterLink" }, usesInheritance: true, ngImport: i0 });
|
|
225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkWithHrefDirective, decorators: [{
|
|
264
226
|
type: Directive,
|
|
265
|
-
args: [{ selector: 'nimble-
|
|
227
|
+
args: [{ selector: 'nimble-anchor[nimbleRouterLink]' }]
|
|
266
228
|
}], propDecorators: { nimbleRouterLink: [{
|
|
267
229
|
type: Input
|
|
268
230
|
}] } });
|
|
269
231
|
|
|
270
232
|
/**
|
|
271
|
-
* Directive used solely to point consumers to use [nimbleRouterLink] /
|
|
233
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleAnchorRouterLinkWithHrefDirective.
|
|
272
234
|
*
|
|
273
|
-
* @see
|
|
235
|
+
* @see NimbleAnchorRouterLinkWithHrefDirective
|
|
274
236
|
*/
|
|
275
|
-
class
|
|
237
|
+
class NimbleAnchorRouterLinkDirective {
|
|
276
238
|
constructor() {
|
|
277
239
|
throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
|
|
278
240
|
}
|
|
279
241
|
}
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type:
|
|
242
|
+
NimbleAnchorRouterLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
243
|
+
NimbleAnchorRouterLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorRouterLinkDirective, selector: "nimble-anchor[routerLink]", ngImport: i0 });
|
|
244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkDirective, decorators: [{
|
|
283
245
|
type: Directive,
|
|
284
|
-
args: [{ selector: 'nimble-
|
|
246
|
+
args: [{ selector: 'nimble-anchor[routerLink]' }]
|
|
285
247
|
}], ctorParameters: function () { return []; } });
|
|
286
248
|
|
|
287
249
|
/**
|
|
288
|
-
*
|
|
250
|
+
* Base class for directives providing link attributes.
|
|
289
251
|
*/
|
|
290
|
-
class
|
|
252
|
+
class NimbleAnchorBaseDirective {
|
|
291
253
|
constructor(renderer, elementRef) {
|
|
292
254
|
this.renderer = renderer;
|
|
293
255
|
this.elementRef = elementRef;
|
|
@@ -335,13 +297,10 @@ class NimbleBreadcrumbItemDirective {
|
|
|
335
297
|
this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);
|
|
336
298
|
}
|
|
337
299
|
}
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type:
|
|
341
|
-
type: Directive
|
|
342
|
-
args: [{
|
|
343
|
-
selector: 'nimble-breadcrumb-item'
|
|
344
|
-
}]
|
|
300
|
+
NimbleAnchorBaseDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorBaseDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
301
|
+
NimbleAnchorBaseDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorBaseDirective, inputs: { href: "href", hreflang: "hreflang", ping: "ping", referrerpolicy: "referrerpolicy", rel: "rel", target: "target", type: "type" }, ngImport: i0 });
|
|
302
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorBaseDirective, decorators: [{
|
|
303
|
+
type: Directive
|
|
345
304
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { href: [{
|
|
346
305
|
type: Input
|
|
347
306
|
}], hreflang: [{
|
|
@@ -358,20 +317,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImpo
|
|
|
358
317
|
type: Input
|
|
359
318
|
}] } });
|
|
360
319
|
|
|
361
|
-
class NimbleBreadcrumbItemModule {
|
|
362
|
-
}
|
|
363
|
-
NimbleBreadcrumbItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
364
|
-
NimbleBreadcrumbItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, declarations: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective], imports: [CommonModule], exports: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective] });
|
|
365
|
-
NimbleBreadcrumbItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, imports: [CommonModule] });
|
|
366
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, decorators: [{
|
|
367
|
-
type: NgModule,
|
|
368
|
-
args: [{
|
|
369
|
-
declarations: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective],
|
|
370
|
-
imports: [CommonModule],
|
|
371
|
-
exports: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective]
|
|
372
|
-
}]
|
|
373
|
-
}] });
|
|
374
|
-
|
|
375
320
|
/**
|
|
376
321
|
* Conversion helpers for values coming from template attributes or property bindings
|
|
377
322
|
*/
|
|
@@ -409,6 +354,282 @@ const toNumberProperty = (value) => {
|
|
|
409
354
|
return Number(value);
|
|
410
355
|
};
|
|
411
356
|
|
|
357
|
+
/**
|
|
358
|
+
* Directive to provide Angular integration for the anchor.
|
|
359
|
+
*/
|
|
360
|
+
class NimbleAnchorDirective extends NimbleAnchorBaseDirective {
|
|
361
|
+
constructor(renderer, elementRef) {
|
|
362
|
+
super(renderer, elementRef);
|
|
363
|
+
}
|
|
364
|
+
get appearance() {
|
|
365
|
+
return this.elementRef.nativeElement.appearance;
|
|
366
|
+
}
|
|
367
|
+
set appearance(value) {
|
|
368
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
369
|
+
}
|
|
370
|
+
get underlineHidden() {
|
|
371
|
+
return this.elementRef.nativeElement.underlineHidden;
|
|
372
|
+
}
|
|
373
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
374
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
375
|
+
set underlineHidden(value) {
|
|
376
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'underlineHidden', toBooleanProperty(value));
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
NimbleAnchorDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
380
|
+
NimbleAnchorDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorDirective, selector: "nimble-anchor", inputs: { appearance: "appearance", underlineHidden: ["underline-hidden", "underlineHidden"] }, usesInheritance: true, ngImport: i0 });
|
|
381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorDirective, decorators: [{
|
|
382
|
+
type: Directive,
|
|
383
|
+
args: [{
|
|
384
|
+
selector: 'nimble-anchor'
|
|
385
|
+
}]
|
|
386
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
387
|
+
type: Input
|
|
388
|
+
}], underlineHidden: [{
|
|
389
|
+
type: Input,
|
|
390
|
+
args: ['underline-hidden']
|
|
391
|
+
}] } });
|
|
392
|
+
|
|
393
|
+
class NimbleAnchorModule {
|
|
394
|
+
}
|
|
395
|
+
NimbleAnchorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
396
|
+
NimbleAnchorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorModule, declarations: [NimbleAnchorDirective, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective], imports: [CommonModule], exports: [NimbleAnchorDirective, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective] });
|
|
397
|
+
NimbleAnchorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorModule, imports: [CommonModule] });
|
|
398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorModule, decorators: [{
|
|
399
|
+
type: NgModule,
|
|
400
|
+
args: [{
|
|
401
|
+
declarations: [NimbleAnchorDirective, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective],
|
|
402
|
+
imports: [CommonModule],
|
|
403
|
+
exports: [NimbleAnchorDirective, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective]
|
|
404
|
+
}]
|
|
405
|
+
}] });
|
|
406
|
+
|
|
407
|
+
/**
|
|
408
|
+
* Selectors used for built-in Angular RouterLink directives:
|
|
409
|
+
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
410
|
+
* RouterLinkWithHref: 'a[routerLink],area[routerLink]'
|
|
411
|
+
*
|
|
412
|
+
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
413
|
+
*/
|
|
414
|
+
/**
|
|
415
|
+
* Directive to handle nimble-anchor-button RouterLink support.
|
|
416
|
+
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
417
|
+
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
418
|
+
*/
|
|
419
|
+
class NimbleAnchorButtonRouterLinkWithHrefDirective extends RouterLinkWithHref {
|
|
420
|
+
set nimbleRouterLink(commands) {
|
|
421
|
+
this.routerLink = commands;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
NimbleAnchorButtonRouterLinkWithHrefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
425
|
+
NimbleAnchorButtonRouterLinkWithHrefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorButtonRouterLinkWithHrefDirective, selector: "nimble-anchor-button[nimbleRouterLink]", inputs: { nimbleRouterLink: "nimbleRouterLink" }, usesInheritance: true, ngImport: i0 });
|
|
426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkWithHrefDirective, decorators: [{
|
|
427
|
+
type: Directive,
|
|
428
|
+
args: [{ selector: 'nimble-anchor-button[nimbleRouterLink]' }]
|
|
429
|
+
}], propDecorators: { nimbleRouterLink: [{
|
|
430
|
+
type: Input
|
|
431
|
+
}] } });
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleAnchorButtonRouterLinkWithHrefDirective.
|
|
435
|
+
*
|
|
436
|
+
* @see NimbleAnchorButtonRouterLinkWithHrefDirective
|
|
437
|
+
*/
|
|
438
|
+
class NimbleAnchorButtonRouterLinkDirective {
|
|
439
|
+
constructor() {
|
|
440
|
+
throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
NimbleAnchorButtonRouterLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
444
|
+
NimbleAnchorButtonRouterLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorButtonRouterLinkDirective, selector: "nimble-anchor-button[routerLink]", ngImport: i0 });
|
|
445
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkDirective, decorators: [{
|
|
446
|
+
type: Directive,
|
|
447
|
+
args: [{ selector: 'nimble-anchor-button[routerLink]' }]
|
|
448
|
+
}], ctorParameters: function () { return []; } });
|
|
449
|
+
|
|
450
|
+
/**
|
|
451
|
+
* Directive to provide Angular integration for the anchor button.
|
|
452
|
+
*/
|
|
453
|
+
class NimbleAnchorButtonDirective extends NimbleAnchorBaseDirective {
|
|
454
|
+
constructor(renderer, elementRef) {
|
|
455
|
+
super(renderer, elementRef);
|
|
456
|
+
}
|
|
457
|
+
get appearance() {
|
|
458
|
+
return this.elementRef.nativeElement.appearance;
|
|
459
|
+
}
|
|
460
|
+
set appearance(value) {
|
|
461
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
462
|
+
}
|
|
463
|
+
get appearanceVariant() {
|
|
464
|
+
return this.elementRef.nativeElement.appearanceVariant;
|
|
465
|
+
}
|
|
466
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
467
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
468
|
+
set appearanceVariant(value) {
|
|
469
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearanceVariant', value);
|
|
470
|
+
}
|
|
471
|
+
get contentHidden() {
|
|
472
|
+
return this.elementRef.nativeElement.contentHidden;
|
|
473
|
+
}
|
|
474
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
475
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
476
|
+
set contentHidden(value) {
|
|
477
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'contentHidden', toBooleanProperty(value));
|
|
478
|
+
}
|
|
479
|
+
get disabled() {
|
|
480
|
+
return this.elementRef.nativeElement.disabled;
|
|
481
|
+
}
|
|
482
|
+
set disabled(value) {
|
|
483
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
484
|
+
}
|
|
485
|
+
}
|
|
486
|
+
NimbleAnchorButtonDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
487
|
+
NimbleAnchorButtonDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorButtonDirective, selector: "nimble-anchor-button", inputs: { appearance: "appearance", appearanceVariant: ["appearance-variant", "appearanceVariant"], contentHidden: ["content-hidden", "contentHidden"], disabled: "disabled" }, usesInheritance: true, ngImport: i0 });
|
|
488
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonDirective, decorators: [{
|
|
489
|
+
type: Directive,
|
|
490
|
+
args: [{
|
|
491
|
+
selector: 'nimble-anchor-button'
|
|
492
|
+
}]
|
|
493
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
494
|
+
type: Input
|
|
495
|
+
}], appearanceVariant: [{
|
|
496
|
+
type: Input,
|
|
497
|
+
args: ['appearance-variant']
|
|
498
|
+
}], contentHidden: [{
|
|
499
|
+
type: Input,
|
|
500
|
+
args: ['content-hidden']
|
|
501
|
+
}], disabled: [{
|
|
502
|
+
type: Input
|
|
503
|
+
}] } });
|
|
504
|
+
|
|
505
|
+
class NimbleAnchorButtonModule {
|
|
506
|
+
}
|
|
507
|
+
NimbleAnchorButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
508
|
+
NimbleAnchorButtonModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonModule, declarations: [NimbleAnchorButtonDirective, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective], imports: [CommonModule], exports: [NimbleAnchorButtonDirective, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective] });
|
|
509
|
+
NimbleAnchorButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonModule, imports: [CommonModule] });
|
|
510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonModule, decorators: [{
|
|
511
|
+
type: NgModule,
|
|
512
|
+
args: [{
|
|
513
|
+
declarations: [NimbleAnchorButtonDirective, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective],
|
|
514
|
+
imports: [CommonModule],
|
|
515
|
+
exports: [NimbleAnchorButtonDirective, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective]
|
|
516
|
+
}]
|
|
517
|
+
}] });
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* Directive to provide Angular integration for the breadcrumb.
|
|
521
|
+
*/
|
|
522
|
+
class NimbleBreadcrumbDirective {
|
|
523
|
+
constructor(renderer, elementRef) {
|
|
524
|
+
this.renderer = renderer;
|
|
525
|
+
this.elementRef = elementRef;
|
|
526
|
+
}
|
|
527
|
+
get appearance() {
|
|
528
|
+
return this.elementRef.nativeElement.appearance;
|
|
529
|
+
}
|
|
530
|
+
set appearance(value) {
|
|
531
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
NimbleBreadcrumbDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
535
|
+
NimbleBreadcrumbDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbDirective, selector: "nimble-breadcrumb", inputs: { appearance: "appearance" }, ngImport: i0 });
|
|
536
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbDirective, decorators: [{
|
|
537
|
+
type: Directive,
|
|
538
|
+
args: [{
|
|
539
|
+
selector: 'nimble-breadcrumb'
|
|
540
|
+
}]
|
|
541
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
542
|
+
type: Input
|
|
543
|
+
}] } });
|
|
544
|
+
|
|
545
|
+
class NimbleBreadcrumbModule {
|
|
546
|
+
}
|
|
547
|
+
NimbleBreadcrumbModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
548
|
+
NimbleBreadcrumbModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, declarations: [NimbleBreadcrumbDirective], imports: [CommonModule], exports: [NimbleBreadcrumbDirective] });
|
|
549
|
+
NimbleBreadcrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, imports: [CommonModule] });
|
|
550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, decorators: [{
|
|
551
|
+
type: NgModule,
|
|
552
|
+
args: [{
|
|
553
|
+
declarations: [NimbleBreadcrumbDirective],
|
|
554
|
+
imports: [CommonModule],
|
|
555
|
+
exports: [NimbleBreadcrumbDirective]
|
|
556
|
+
}]
|
|
557
|
+
}] });
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* Selectors used for built-in Angular RouterLink directives:
|
|
561
|
+
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
562
|
+
* RouterLinkWithHref: 'a[routerLink],area[routerLink]'
|
|
563
|
+
*
|
|
564
|
+
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
565
|
+
*/
|
|
566
|
+
/**
|
|
567
|
+
* Directive to handle nimble-breadcrumb-item RouterLink support.
|
|
568
|
+
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
569
|
+
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
570
|
+
*/
|
|
571
|
+
class NimbleBreadcrumbItemRouterLinkWithHrefDirective extends RouterLinkWithHref {
|
|
572
|
+
set nimbleRouterLink(commands) {
|
|
573
|
+
this.routerLink = commands;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
NimbleBreadcrumbItemRouterLinkWithHrefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
577
|
+
NimbleBreadcrumbItemRouterLinkWithHrefDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbItemRouterLinkWithHrefDirective, selector: "nimble-breadcrumb-item[nimbleRouterLink]", inputs: { nimbleRouterLink: "nimbleRouterLink" }, usesInheritance: true, ngImport: i0 });
|
|
578
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkWithHrefDirective, decorators: [{
|
|
579
|
+
type: Directive,
|
|
580
|
+
args: [{ selector: 'nimble-breadcrumb-item[nimbleRouterLink]' }]
|
|
581
|
+
}], propDecorators: { nimbleRouterLink: [{
|
|
582
|
+
type: Input
|
|
583
|
+
}] } });
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleBreadcrumbItemRouterLinkWithHrefDirective.
|
|
587
|
+
*
|
|
588
|
+
* @see NimbleBreadcrumbItemRouterLinkWithHrefDirective
|
|
589
|
+
*/
|
|
590
|
+
class NimbleBreadcrumbItemRouterLinkDirective {
|
|
591
|
+
constructor() {
|
|
592
|
+
throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
NimbleBreadcrumbItemRouterLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
596
|
+
NimbleBreadcrumbItemRouterLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbItemRouterLinkDirective, selector: "nimble-breadcrumb-item[routerLink]", ngImport: i0 });
|
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkDirective, decorators: [{
|
|
598
|
+
type: Directive,
|
|
599
|
+
args: [{ selector: 'nimble-breadcrumb-item[routerLink]' }]
|
|
600
|
+
}], ctorParameters: function () { return []; } });
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* Directive to provide Angular integration for the breadcrumb item.
|
|
604
|
+
*/
|
|
605
|
+
class NimbleBreadcrumbItemDirective extends NimbleAnchorBaseDirective {
|
|
606
|
+
constructor(renderer, elementRef) {
|
|
607
|
+
super(renderer, elementRef);
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
NimbleBreadcrumbItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
|
|
611
|
+
NimbleBreadcrumbItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbItemDirective, selector: "nimble-breadcrumb-item", usesInheritance: true, ngImport: i0 });
|
|
612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemDirective, decorators: [{
|
|
613
|
+
type: Directive,
|
|
614
|
+
args: [{
|
|
615
|
+
selector: 'nimble-breadcrumb-item'
|
|
616
|
+
}]
|
|
617
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; } });
|
|
618
|
+
|
|
619
|
+
class NimbleBreadcrumbItemModule {
|
|
620
|
+
}
|
|
621
|
+
NimbleBreadcrumbItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
622
|
+
NimbleBreadcrumbItemModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, declarations: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective], imports: [CommonModule], exports: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective] });
|
|
623
|
+
NimbleBreadcrumbItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, imports: [CommonModule] });
|
|
624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, decorators: [{
|
|
625
|
+
type: NgModule,
|
|
626
|
+
args: [{
|
|
627
|
+
declarations: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective],
|
|
628
|
+
imports: [CommonModule],
|
|
629
|
+
exports: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective]
|
|
630
|
+
}]
|
|
631
|
+
}] });
|
|
632
|
+
|
|
412
633
|
/**
|
|
413
634
|
* Directive to provide Angular integration for the button.
|
|
414
635
|
*/
|
|
@@ -7618,5 +7839,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
|
|
|
7618
7839
|
* Generated bundle index. Do not edit.
|
|
7619
7840
|
*/
|
|
7620
7841
|
|
|
7621
|
-
export { NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCardButtonDirective, NimbleCardButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxListOptionDirective, NimbleComboboxModule, NimbleDialogDirective, NimbleDialogModule, 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, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarDirective, NimbleIconCalendarModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckLargeDirective, NimbleIconCheckLargeModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockModule, NimbleIconClockTriangleDirective, NimbleIconClockTriangleModule, NimbleIconCloneDirective, NimbleIconCloneModule, NimbleIconCloudDirective, NimbleIconCloudModule, 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, NimbleIconDotSolidDotStrokeMeasurementDirective, NimbleIconDotSolidDotStrokeMeasurementModule, 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, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, 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, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleFilledDirective, NimbleIconTriangleFilledModule, 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, NimbleRadioControlValueAccessorDirective, NimbleRadioDirective, NimbleRadioGroupDirective, NimbleRadioGroupModule, NimbleRadioModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectListOptionDirective, NimbleSelectModule, NimbleSpinnerDirective, NimbleSpinnerModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTableDirective, NimbleTableModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTooltipDirective, NimbleTooltipModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, OPTION_NOT_FOUND, waitForUpdatesAsync };
|
|
7842
|
+
export { NimbleAnchorButtonDirective, NimbleAnchorButtonModule, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective, NimbleAnchorDirective, NimbleAnchorModule, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective, NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCardButtonDirective, NimbleCardButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxListOptionDirective, NimbleComboboxModule, NimbleDialogDirective, NimbleDialogModule, 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, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarDirective, NimbleIconCalendarModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckLargeDirective, NimbleIconCheckLargeModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockModule, NimbleIconClockTriangleDirective, NimbleIconClockTriangleModule, NimbleIconCloneDirective, NimbleIconCloneModule, NimbleIconCloudDirective, NimbleIconCloudModule, 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, NimbleIconDotSolidDotStrokeMeasurementDirective, NimbleIconDotSolidDotStrokeMeasurementModule, 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, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, 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, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleFilledDirective, NimbleIconTriangleFilledModule, 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, NimbleRadioControlValueAccessorDirective, NimbleRadioDirective, NimbleRadioGroupDirective, NimbleRadioGroupModule, NimbleRadioModule, NimbleSelectControlValueAccessorDirective, NimbleSelectDirective, NimbleSelectListOptionDirective, NimbleSelectModule, NimbleSpinnerDirective, NimbleSpinnerModule, NimbleSwitchControlValueAccessorDirective, NimbleSwitchDirective, NimbleSwitchModule, NimbleTabDirective, NimbleTabModule, NimbleTabPanelDirective, NimbleTabPanelModule, NimbleTableDirective, NimbleTableModule, NimbleTabsDirective, NimbleTabsModule, NimbleTabsToolbarDirective, NimbleTabsToolbarModule, NimbleTextAreaControlValueAccessorDirective, NimbleTextAreaDirective, NimbleTextAreaModule, NimbleTextFieldControlValueAccessorDirective, NimbleTextFieldDirective, NimbleTextFieldModule, NimbleThemeProviderDirective, NimbleThemeProviderModule, NimbleToggleButtonControlValueAccessorDirective, NimbleToggleButtonDirective, NimbleToggleButtonModule, NimbleToolbarDirective, NimbleToolbarModule, NimbleTooltipDirective, NimbleTooltipModule, NimbleTreeItemDirective, NimbleTreeItemModule, NimbleTreeViewDirective, NimbleTreeViewModule, OPTION_NOT_FOUND, waitForUpdatesAsync };
|
|
7622
7843
|
//# sourceMappingURL=ni-nimble-angular.mjs.map
|