@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';
|
|
@@ -198,50 +200,10 @@ export { TooltipSeverity } from '@ni/nimble-components/dist/esm/tooltip/types';
|
|
|
198
200
|
import '@ni/nimble-components/dist/esm/tooltip';
|
|
199
201
|
import { waitForUpdatesAsync as waitForUpdatesAsync$1 } from '@ni/nimble-components/dist/esm/testing/async-helpers';
|
|
200
202
|
export { processUpdates } from '@ni/nimble-components/dist/esm/testing/async-helpers';
|
|
201
|
-
export { ButtonAppearance } from '@ni/nimble-components/dist/esm/patterns/button/types';
|
|
203
|
+
export { ButtonAppearance, ButtonAppearanceVariant } from '@ni/nimble-components/dist/esm/patterns/button/types';
|
|
202
204
|
export { DropdownAppearance } from '@ni/nimble-components/dist/esm/patterns/dropdown/types';
|
|
203
205
|
export { IconSeverity } from '@ni/nimble-components/dist/esm/icon-base/types';
|
|
204
206
|
|
|
205
|
-
/**
|
|
206
|
-
* Directive to provide Angular integration for the breadcrumb.
|
|
207
|
-
*/
|
|
208
|
-
class NimbleBreadcrumbDirective {
|
|
209
|
-
constructor(renderer, elementRef) {
|
|
210
|
-
this.renderer = renderer;
|
|
211
|
-
this.elementRef = elementRef;
|
|
212
|
-
}
|
|
213
|
-
get appearance() {
|
|
214
|
-
return this.elementRef.nativeElement.appearance;
|
|
215
|
-
}
|
|
216
|
-
set appearance(value) {
|
|
217
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
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 });
|
|
221
|
-
NimbleBreadcrumbDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbDirective, selector: "nimble-breadcrumb", inputs: { appearance: "appearance" }, ngImport: i0 });
|
|
222
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbDirective, decorators: [{
|
|
223
|
-
type: Directive,
|
|
224
|
-
args: [{
|
|
225
|
-
selector: 'nimble-breadcrumb'
|
|
226
|
-
}]
|
|
227
|
-
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
228
|
-
type: Input
|
|
229
|
-
}] } });
|
|
230
|
-
|
|
231
|
-
class NimbleBreadcrumbModule {
|
|
232
|
-
}
|
|
233
|
-
NimbleBreadcrumbModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
234
|
-
NimbleBreadcrumbModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, declarations: [NimbleBreadcrumbDirective], imports: [CommonModule], exports: [NimbleBreadcrumbDirective] });
|
|
235
|
-
NimbleBreadcrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, imports: [CommonModule] });
|
|
236
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, decorators: [{
|
|
237
|
-
type: NgModule,
|
|
238
|
-
args: [{
|
|
239
|
-
declarations: [NimbleBreadcrumbDirective],
|
|
240
|
-
imports: [CommonModule],
|
|
241
|
-
exports: [NimbleBreadcrumbDirective]
|
|
242
|
-
}]
|
|
243
|
-
}] });
|
|
244
|
-
|
|
245
207
|
/**
|
|
246
208
|
* Selectors used for built-in Angular RouterLink directives:
|
|
247
209
|
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
@@ -250,45 +212,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImpo
|
|
|
250
212
|
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
251
213
|
*/
|
|
252
214
|
/**
|
|
253
|
-
* Directive to handle nimble-
|
|
215
|
+
* Directive to handle nimble-anchor RouterLink support.
|
|
254
216
|
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
255
217
|
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
256
218
|
*/
|
|
257
|
-
class
|
|
219
|
+
class NimbleAnchorRouterLinkWithHrefDirective extends RouterLinkWithHref {
|
|
258
220
|
set nimbleRouterLink(commands) {
|
|
259
221
|
this.routerLink = commands;
|
|
260
222
|
}
|
|
261
223
|
}
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type:
|
|
224
|
+
NimbleAnchorRouterLinkWithHrefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
225
|
+
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 });
|
|
226
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkWithHrefDirective, decorators: [{
|
|
265
227
|
type: Directive,
|
|
266
|
-
args: [{ selector: 'nimble-
|
|
228
|
+
args: [{ selector: 'nimble-anchor[nimbleRouterLink]' }]
|
|
267
229
|
}], propDecorators: { nimbleRouterLink: [{
|
|
268
230
|
type: Input
|
|
269
231
|
}] } });
|
|
270
232
|
|
|
271
233
|
/**
|
|
272
|
-
* Directive used solely to point consumers to use [nimbleRouterLink] /
|
|
234
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleAnchorRouterLinkWithHrefDirective.
|
|
273
235
|
*
|
|
274
|
-
* @see
|
|
236
|
+
* @see NimbleAnchorRouterLinkWithHrefDirective
|
|
275
237
|
*/
|
|
276
|
-
class
|
|
238
|
+
class NimbleAnchorRouterLinkDirective {
|
|
277
239
|
constructor() {
|
|
278
240
|
throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
|
|
279
241
|
}
|
|
280
242
|
}
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type:
|
|
243
|
+
NimbleAnchorRouterLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
244
|
+
NimbleAnchorRouterLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorRouterLinkDirective, selector: "nimble-anchor[routerLink]", ngImport: i0 });
|
|
245
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorRouterLinkDirective, decorators: [{
|
|
284
246
|
type: Directive,
|
|
285
|
-
args: [{ selector: 'nimble-
|
|
247
|
+
args: [{ selector: 'nimble-anchor[routerLink]' }]
|
|
286
248
|
}], ctorParameters: function () { return []; } });
|
|
287
249
|
|
|
288
250
|
/**
|
|
289
|
-
*
|
|
251
|
+
* Base class for directives providing link attributes.
|
|
290
252
|
*/
|
|
291
|
-
class
|
|
253
|
+
class NimbleAnchorBaseDirective {
|
|
292
254
|
constructor(renderer, elementRef) {
|
|
293
255
|
this.renderer = renderer;
|
|
294
256
|
this.elementRef = elementRef;
|
|
@@ -336,13 +298,10 @@ class NimbleBreadcrumbItemDirective {
|
|
|
336
298
|
this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);
|
|
337
299
|
}
|
|
338
300
|
}
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type:
|
|
342
|
-
type: Directive
|
|
343
|
-
args: [{
|
|
344
|
-
selector: 'nimble-breadcrumb-item'
|
|
345
|
-
}]
|
|
301
|
+
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 });
|
|
302
|
+
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 });
|
|
303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorBaseDirective, decorators: [{
|
|
304
|
+
type: Directive
|
|
346
305
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { href: [{
|
|
347
306
|
type: Input
|
|
348
307
|
}], hreflang: [{
|
|
@@ -359,20 +318,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImpo
|
|
|
359
318
|
type: Input
|
|
360
319
|
}] } });
|
|
361
320
|
|
|
362
|
-
class NimbleBreadcrumbItemModule {
|
|
363
|
-
}
|
|
364
|
-
NimbleBreadcrumbItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
365
|
-
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] });
|
|
366
|
-
NimbleBreadcrumbItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, imports: [CommonModule] });
|
|
367
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, decorators: [{
|
|
368
|
-
type: NgModule,
|
|
369
|
-
args: [{
|
|
370
|
-
declarations: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective],
|
|
371
|
-
imports: [CommonModule],
|
|
372
|
-
exports: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective]
|
|
373
|
-
}]
|
|
374
|
-
}] });
|
|
375
|
-
|
|
376
321
|
/**
|
|
377
322
|
* Conversion helpers for values coming from template attributes or property bindings
|
|
378
323
|
*/
|
|
@@ -410,6 +355,282 @@ const toNumberProperty = (value) => {
|
|
|
410
355
|
return Number(value);
|
|
411
356
|
};
|
|
412
357
|
|
|
358
|
+
/**
|
|
359
|
+
* Directive to provide Angular integration for the anchor.
|
|
360
|
+
*/
|
|
361
|
+
class NimbleAnchorDirective extends NimbleAnchorBaseDirective {
|
|
362
|
+
constructor(renderer, elementRef) {
|
|
363
|
+
super(renderer, elementRef);
|
|
364
|
+
}
|
|
365
|
+
get appearance() {
|
|
366
|
+
return this.elementRef.nativeElement.appearance;
|
|
367
|
+
}
|
|
368
|
+
set appearance(value) {
|
|
369
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
370
|
+
}
|
|
371
|
+
get underlineHidden() {
|
|
372
|
+
return this.elementRef.nativeElement.underlineHidden;
|
|
373
|
+
}
|
|
374
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
375
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
376
|
+
set underlineHidden(value) {
|
|
377
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'underlineHidden', toBooleanProperty(value));
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
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 });
|
|
381
|
+
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 });
|
|
382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorDirective, decorators: [{
|
|
383
|
+
type: Directive,
|
|
384
|
+
args: [{
|
|
385
|
+
selector: 'nimble-anchor'
|
|
386
|
+
}]
|
|
387
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
388
|
+
type: Input
|
|
389
|
+
}], underlineHidden: [{
|
|
390
|
+
type: Input,
|
|
391
|
+
args: ['underline-hidden']
|
|
392
|
+
}] } });
|
|
393
|
+
|
|
394
|
+
class NimbleAnchorModule {
|
|
395
|
+
}
|
|
396
|
+
NimbleAnchorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
397
|
+
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] });
|
|
398
|
+
NimbleAnchorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorModule, imports: [CommonModule] });
|
|
399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorModule, decorators: [{
|
|
400
|
+
type: NgModule,
|
|
401
|
+
args: [{
|
|
402
|
+
declarations: [NimbleAnchorDirective, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective],
|
|
403
|
+
imports: [CommonModule],
|
|
404
|
+
exports: [NimbleAnchorDirective, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective]
|
|
405
|
+
}]
|
|
406
|
+
}] });
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* Selectors used for built-in Angular RouterLink directives:
|
|
410
|
+
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
411
|
+
* RouterLinkWithHref: 'a[routerLink],area[routerLink]'
|
|
412
|
+
*
|
|
413
|
+
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
414
|
+
*/
|
|
415
|
+
/**
|
|
416
|
+
* Directive to handle nimble-anchor-button RouterLink support.
|
|
417
|
+
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
418
|
+
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
419
|
+
*/
|
|
420
|
+
class NimbleAnchorButtonRouterLinkWithHrefDirective extends RouterLinkWithHref {
|
|
421
|
+
set nimbleRouterLink(commands) {
|
|
422
|
+
this.routerLink = commands;
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
NimbleAnchorButtonRouterLinkWithHrefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
426
|
+
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 });
|
|
427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkWithHrefDirective, decorators: [{
|
|
428
|
+
type: Directive,
|
|
429
|
+
args: [{ selector: 'nimble-anchor-button[nimbleRouterLink]' }]
|
|
430
|
+
}], propDecorators: { nimbleRouterLink: [{
|
|
431
|
+
type: Input
|
|
432
|
+
}] } });
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleAnchorButtonRouterLinkWithHrefDirective.
|
|
436
|
+
*
|
|
437
|
+
* @see NimbleAnchorButtonRouterLinkWithHrefDirective
|
|
438
|
+
*/
|
|
439
|
+
class NimbleAnchorButtonRouterLinkDirective {
|
|
440
|
+
constructor() {
|
|
441
|
+
throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
|
|
442
|
+
}
|
|
443
|
+
}
|
|
444
|
+
NimbleAnchorButtonRouterLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
445
|
+
NimbleAnchorButtonRouterLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleAnchorButtonRouterLinkDirective, selector: "nimble-anchor-button[routerLink]", ngImport: i0 });
|
|
446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonRouterLinkDirective, decorators: [{
|
|
447
|
+
type: Directive,
|
|
448
|
+
args: [{ selector: 'nimble-anchor-button[routerLink]' }]
|
|
449
|
+
}], ctorParameters: function () { return []; } });
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* Directive to provide Angular integration for the anchor button.
|
|
453
|
+
*/
|
|
454
|
+
class NimbleAnchorButtonDirective extends NimbleAnchorBaseDirective {
|
|
455
|
+
constructor(renderer, elementRef) {
|
|
456
|
+
super(renderer, elementRef);
|
|
457
|
+
}
|
|
458
|
+
get appearance() {
|
|
459
|
+
return this.elementRef.nativeElement.appearance;
|
|
460
|
+
}
|
|
461
|
+
set appearance(value) {
|
|
462
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
463
|
+
}
|
|
464
|
+
get appearanceVariant() {
|
|
465
|
+
return this.elementRef.nativeElement.appearanceVariant;
|
|
466
|
+
}
|
|
467
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
468
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
469
|
+
set appearanceVariant(value) {
|
|
470
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearanceVariant', value);
|
|
471
|
+
}
|
|
472
|
+
get contentHidden() {
|
|
473
|
+
return this.elementRef.nativeElement.contentHidden;
|
|
474
|
+
}
|
|
475
|
+
// Renaming because property should have camel casing, but attribute should not
|
|
476
|
+
// eslint-disable-next-line @angular-eslint/no-input-rename
|
|
477
|
+
set contentHidden(value) {
|
|
478
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'contentHidden', toBooleanProperty(value));
|
|
479
|
+
}
|
|
480
|
+
get disabled() {
|
|
481
|
+
return this.elementRef.nativeElement.disabled;
|
|
482
|
+
}
|
|
483
|
+
set disabled(value) {
|
|
484
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'disabled', toBooleanProperty(value));
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
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 });
|
|
488
|
+
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 });
|
|
489
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonDirective, decorators: [{
|
|
490
|
+
type: Directive,
|
|
491
|
+
args: [{
|
|
492
|
+
selector: 'nimble-anchor-button'
|
|
493
|
+
}]
|
|
494
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
495
|
+
type: Input
|
|
496
|
+
}], appearanceVariant: [{
|
|
497
|
+
type: Input,
|
|
498
|
+
args: ['appearance-variant']
|
|
499
|
+
}], contentHidden: [{
|
|
500
|
+
type: Input,
|
|
501
|
+
args: ['content-hidden']
|
|
502
|
+
}], disabled: [{
|
|
503
|
+
type: Input
|
|
504
|
+
}] } });
|
|
505
|
+
|
|
506
|
+
class NimbleAnchorButtonModule {
|
|
507
|
+
}
|
|
508
|
+
NimbleAnchorButtonModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
509
|
+
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] });
|
|
510
|
+
NimbleAnchorButtonModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonModule, imports: [CommonModule] });
|
|
511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleAnchorButtonModule, decorators: [{
|
|
512
|
+
type: NgModule,
|
|
513
|
+
args: [{
|
|
514
|
+
declarations: [NimbleAnchorButtonDirective, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective],
|
|
515
|
+
imports: [CommonModule],
|
|
516
|
+
exports: [NimbleAnchorButtonDirective, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective]
|
|
517
|
+
}]
|
|
518
|
+
}] });
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* Directive to provide Angular integration for the breadcrumb.
|
|
522
|
+
*/
|
|
523
|
+
class NimbleBreadcrumbDirective {
|
|
524
|
+
constructor(renderer, elementRef) {
|
|
525
|
+
this.renderer = renderer;
|
|
526
|
+
this.elementRef = elementRef;
|
|
527
|
+
}
|
|
528
|
+
get appearance() {
|
|
529
|
+
return this.elementRef.nativeElement.appearance;
|
|
530
|
+
}
|
|
531
|
+
set appearance(value) {
|
|
532
|
+
this.renderer.setProperty(this.elementRef.nativeElement, 'appearance', value);
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
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 });
|
|
536
|
+
NimbleBreadcrumbDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbDirective, selector: "nimble-breadcrumb", inputs: { appearance: "appearance" }, ngImport: i0 });
|
|
537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbDirective, decorators: [{
|
|
538
|
+
type: Directive,
|
|
539
|
+
args: [{
|
|
540
|
+
selector: 'nimble-breadcrumb'
|
|
541
|
+
}]
|
|
542
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { appearance: [{
|
|
543
|
+
type: Input
|
|
544
|
+
}] } });
|
|
545
|
+
|
|
546
|
+
class NimbleBreadcrumbModule {
|
|
547
|
+
}
|
|
548
|
+
NimbleBreadcrumbModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
549
|
+
NimbleBreadcrumbModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, declarations: [NimbleBreadcrumbDirective], imports: [CommonModule], exports: [NimbleBreadcrumbDirective] });
|
|
550
|
+
NimbleBreadcrumbModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, imports: [CommonModule] });
|
|
551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbModule, decorators: [{
|
|
552
|
+
type: NgModule,
|
|
553
|
+
args: [{
|
|
554
|
+
declarations: [NimbleBreadcrumbDirective],
|
|
555
|
+
imports: [CommonModule],
|
|
556
|
+
exports: [NimbleBreadcrumbDirective]
|
|
557
|
+
}]
|
|
558
|
+
}] });
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Selectors used for built-in Angular RouterLink directives:
|
|
562
|
+
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
563
|
+
* RouterLinkWithHref: 'a[routerLink],area[routerLink]'
|
|
564
|
+
*
|
|
565
|
+
* See https://github.com/angular/angular/blob/5957ff4163f55d814be2cf80b9909244f1ce5262/packages/router/src/directives/router_link.ts
|
|
566
|
+
*/
|
|
567
|
+
/**
|
|
568
|
+
* Directive to handle nimble-breadcrumb-item RouterLink support.
|
|
569
|
+
* Note: Clients need to use [nimbleRouterLink] instead of [routerLink], so that there
|
|
570
|
+
* won't also be an active RouterLink directive incorrectly handling navigation.
|
|
571
|
+
*/
|
|
572
|
+
class NimbleBreadcrumbItemRouterLinkWithHrefDirective extends RouterLinkWithHref {
|
|
573
|
+
set nimbleRouterLink(commands) {
|
|
574
|
+
this.routerLink = commands;
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
NimbleBreadcrumbItemRouterLinkWithHrefDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkWithHrefDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
578
|
+
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 });
|
|
579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkWithHrefDirective, decorators: [{
|
|
580
|
+
type: Directive,
|
|
581
|
+
args: [{ selector: 'nimble-breadcrumb-item[nimbleRouterLink]' }]
|
|
582
|
+
}], propDecorators: { nimbleRouterLink: [{
|
|
583
|
+
type: Input
|
|
584
|
+
}] } });
|
|
585
|
+
|
|
586
|
+
/**
|
|
587
|
+
* Directive used solely to point consumers to use [nimbleRouterLink] / NimbleBreadcrumbItemRouterLinkWithHrefDirective.
|
|
588
|
+
*
|
|
589
|
+
* @see NimbleBreadcrumbItemRouterLinkWithHrefDirective
|
|
590
|
+
*/
|
|
591
|
+
class NimbleBreadcrumbItemRouterLinkDirective {
|
|
592
|
+
constructor() {
|
|
593
|
+
throw new Error('Use [nimbleRouterLink] instead of [routerLink].');
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
NimbleBreadcrumbItemRouterLinkDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
597
|
+
NimbleBreadcrumbItemRouterLinkDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbItemRouterLinkDirective, selector: "nimble-breadcrumb-item[routerLink]", ngImport: i0 });
|
|
598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemRouterLinkDirective, decorators: [{
|
|
599
|
+
type: Directive,
|
|
600
|
+
args: [{ selector: 'nimble-breadcrumb-item[routerLink]' }]
|
|
601
|
+
}], ctorParameters: function () { return []; } });
|
|
602
|
+
|
|
603
|
+
/**
|
|
604
|
+
* Directive to provide Angular integration for the breadcrumb item.
|
|
605
|
+
*/
|
|
606
|
+
class NimbleBreadcrumbItemDirective extends NimbleAnchorBaseDirective {
|
|
607
|
+
constructor(renderer, elementRef) {
|
|
608
|
+
super(renderer, elementRef);
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
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 });
|
|
612
|
+
NimbleBreadcrumbItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.10", type: NimbleBreadcrumbItemDirective, selector: "nimble-breadcrumb-item", usesInheritance: true, ngImport: i0 });
|
|
613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemDirective, decorators: [{
|
|
614
|
+
type: Directive,
|
|
615
|
+
args: [{
|
|
616
|
+
selector: 'nimble-breadcrumb-item'
|
|
617
|
+
}]
|
|
618
|
+
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ElementRef }]; } });
|
|
619
|
+
|
|
620
|
+
class NimbleBreadcrumbItemModule {
|
|
621
|
+
}
|
|
622
|
+
NimbleBreadcrumbItemModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
623
|
+
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] });
|
|
624
|
+
NimbleBreadcrumbItemModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, imports: [CommonModule] });
|
|
625
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.10", ngImport: i0, type: NimbleBreadcrumbItemModule, decorators: [{
|
|
626
|
+
type: NgModule,
|
|
627
|
+
args: [{
|
|
628
|
+
declarations: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective],
|
|
629
|
+
imports: [CommonModule],
|
|
630
|
+
exports: [NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective]
|
|
631
|
+
}]
|
|
632
|
+
}] });
|
|
633
|
+
|
|
413
634
|
/**
|
|
414
635
|
* Directive to provide Angular integration for the button.
|
|
415
636
|
*/
|
|
@@ -7627,5 +7848,5 @@ const waitForUpdatesAsync = waitForUpdatesAsync$1;
|
|
|
7627
7848
|
* Generated bundle index. Do not edit.
|
|
7628
7849
|
*/
|
|
7629
7850
|
|
|
7630
|
-
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 };
|
|
7851
|
+
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 };
|
|
7631
7852
|
//# sourceMappingURL=ni-nimble-angular.mjs.map
|