@ni/nimble-angular 33.1.2 → 33.1.4
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/anchor-step/index.d.ts +34 -5
- package/fesm2022/ni-nimble-angular-anchor-step.mjs +59 -7
- package/fesm2022/ni-nimble-angular-anchor-step.mjs.map +1 -1
- package/fesm2022/ni-nimble-angular-step.mjs +5 -2
- package/fesm2022/ni-nimble-angular-step.mjs.map +1 -1
- package/fesm2022/ni-nimble-angular.mjs +77 -5
- package/fesm2022/ni-nimble-angular.mjs.map +1 -1
- package/index.d.ts +42 -15
- package/package.json +2 -6
- package/step/index.d.ts +1 -1
- package/anchor-base/index.d.ts +0 -30
- package/fesm2022/ni-nimble-angular-anchor-base.mjs +0 -80
- package/fesm2022/ni-nimble-angular-anchor-base.mjs.map +0 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export { Anchor, anchorTag } from '@ni/nimble-components/dist/esm/anchor';
|
|
|
9
9
|
import { AnchorAppearance } from '@ni/nimble-components/dist/esm/anchor/types';
|
|
10
10
|
export { AnchorAppearance } from '@ni/nimble-components/dist/esm/anchor/types';
|
|
11
11
|
import { BooleanValueOrAttribute, NumberValueOrAttribute } from '@ni/nimble-angular/internal-utilities';
|
|
12
|
-
import {
|
|
12
|
+
import { AnchorBase } from '@ni/nimble-components/dist/esm/anchor-base';
|
|
13
13
|
import { AnchorButton } from '@ni/nimble-components/dist/esm/anchor-button';
|
|
14
14
|
export { AnchorButton, anchorButtonTag } from '@ni/nimble-components/dist/esm/anchor-button';
|
|
15
15
|
import { ButtonAppearance, ButtonAppearanceVariant } from '@ni/nimble-components/dist/esm/anchor-button/types';
|
|
@@ -620,6 +620,32 @@ declare class NimbleAnchorRouterLinkDirective {
|
|
|
620
620
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorRouterLinkDirective, "nimble-anchor[routerLink]", never, {}, {}, never, never, false, never>;
|
|
621
621
|
}
|
|
622
622
|
|
|
623
|
+
/**
|
|
624
|
+
* Base class for directives providing link attributes.
|
|
625
|
+
* @internal
|
|
626
|
+
*/
|
|
627
|
+
declare class NimbleAnchorBaseDirective<T extends AnchorBase> {
|
|
628
|
+
protected readonly renderer: Renderer2;
|
|
629
|
+
protected readonly elementRef: ElementRef<T>;
|
|
630
|
+
get href(): string;
|
|
631
|
+
set href(value: string);
|
|
632
|
+
get hreflang(): string;
|
|
633
|
+
set hreflang(value: string);
|
|
634
|
+
get ping(): string;
|
|
635
|
+
set ping(value: string);
|
|
636
|
+
get referrerpolicy(): string;
|
|
637
|
+
set referrerpolicy(value: string);
|
|
638
|
+
get rel(): string;
|
|
639
|
+
set rel(value: string);
|
|
640
|
+
get target(): string;
|
|
641
|
+
set target(value: string);
|
|
642
|
+
get type(): string;
|
|
643
|
+
set type(value: string);
|
|
644
|
+
constructor(renderer: Renderer2, elementRef: ElementRef<T>);
|
|
645
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleAnchorBaseDirective<any>, never>;
|
|
646
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorBaseDirective<any>, never, never, { "href": { "alias": "href"; "required": false; }; "hreflang": { "alias": "hreflang"; "required": false; }; "ping": { "alias": "ping"; "required": false; }; "referrerpolicy": { "alias": "referrerpolicy"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
647
|
+
}
|
|
648
|
+
|
|
623
649
|
/**
|
|
624
650
|
* Directive to provide Angular integration for the anchor.
|
|
625
651
|
*/
|
|
@@ -641,6 +667,20 @@ declare class NimbleAnchorModule {
|
|
|
641
667
|
static ɵinj: i0.ɵɵInjectorDeclaration<NimbleAnchorModule>;
|
|
642
668
|
}
|
|
643
669
|
|
|
670
|
+
/**
|
|
671
|
+
* Base class for Nimble router link directives that go on disableable elements
|
|
672
|
+
* @internal
|
|
673
|
+
*/
|
|
674
|
+
declare class DisableableRouterLinkWithHrefDirective<T extends {
|
|
675
|
+
disabled: boolean;
|
|
676
|
+
}> extends RouterLink {
|
|
677
|
+
private readonly elementRef;
|
|
678
|
+
constructor(router: Router, route: ActivatedRoute, renderer: Renderer2, elementRef: ElementRef<T>, locationStrategy?: LocationStrategy);
|
|
679
|
+
onClick(button: number, ctrlKey: boolean, shiftKey: boolean, altKey: boolean, metaKey: boolean): boolean;
|
|
680
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DisableableRouterLinkWithHrefDirective<any>, never>;
|
|
681
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DisableableRouterLinkWithHrefDirective<any>, never, never, {}, {}, never, never, true, never>;
|
|
682
|
+
}
|
|
683
|
+
|
|
644
684
|
/**
|
|
645
685
|
* Directive to provide Angular integration for the anchor button.
|
|
646
686
|
*/
|
|
@@ -658,19 +698,6 @@ declare class NimbleAnchorButtonDirective extends NimbleAnchorBaseDirective<Anch
|
|
|
658
698
|
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorButtonDirective, "nimble-anchor-button", never, { "appearance": { "alias": "appearance"; "required": false; }; "appearanceVariant": { "alias": "appearance-variant"; "required": false; }; "contentHidden": { "alias": "content-hidden"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
659
699
|
}
|
|
660
700
|
|
|
661
|
-
/**
|
|
662
|
-
* Base class for Nimble router link directives that go on disableable elements
|
|
663
|
-
*/
|
|
664
|
-
declare class DisableableRouterLinkWithHrefDirective<T extends {
|
|
665
|
-
disabled: boolean;
|
|
666
|
-
}> extends RouterLink {
|
|
667
|
-
private readonly elementRef;
|
|
668
|
-
constructor(router: Router, route: ActivatedRoute, renderer: Renderer2, elementRef: ElementRef<T>, locationStrategy?: LocationStrategy);
|
|
669
|
-
onClick(button: number, ctrlKey: boolean, shiftKey: boolean, altKey: boolean, metaKey: boolean): boolean;
|
|
670
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DisableableRouterLinkWithHrefDirective<any>, never>;
|
|
671
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DisableableRouterLinkWithHrefDirective<any>, never, never, {}, {}, never, never, true, never>;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
701
|
/**
|
|
675
702
|
* Selectors used for built-in Angular RouterLink directives:
|
|
676
703
|
* RouterLink: ':not(a):not(area)[routerLink]'
|
|
@@ -5756,5 +5783,5 @@ declare class NimbleTooltipModule {
|
|
|
5756
5783
|
*/
|
|
5757
5784
|
declare const waitForUpdatesAsync: () => Promise<void>;
|
|
5758
5785
|
|
|
5759
|
-
export { NimbleAnchorButtonDirective, NimbleAnchorButtonModule, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective, NimbleAnchorDirective, NimbleAnchorMenuItemDirective, NimbleAnchorMenuItemModule, NimbleAnchorMenuItemRouterLinkDirective, NimbleAnchorMenuItemRouterLinkWithHrefDirective, NimbleAnchorModule, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective, NimbleAnchorTabDirective, NimbleAnchorTabModule, NimbleAnchorTabRouterLinkDirective, NimbleAnchorTabRouterLinkWithHrefDirective, NimbleAnchorTabsDirective, NimbleAnchorTabsModule, NimbleAnchorTreeItemDirective, NimbleAnchorTreeItemModule, NimbleAnchorTreeItemRouterLinkDirective, NimbleAnchorTreeItemRouterLinkWithHrefDirective, NimbleBannerDirective, NimbleBannerModule, NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCardButtonDirective, NimbleCardButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxListOptionDirective, NimbleComboboxModule, NimbleDialogDirective, NimbleDialogModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleIconAddDirective, NimbleIconAddModule, NimbleIconArrowDownDirective, NimbleIconArrowDownLeftAndArrowUpRightDirective, NimbleIconArrowDownLeftAndArrowUpRightModule, NimbleIconArrowDownModule, NimbleIconArrowDownRectangleDirective, NimbleIconArrowDownRectangleModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowDownTwoRectanglesDirective, NimbleIconArrowDownTwoRectanglesModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowInCircleDirective, NimbleIconArrowInCircleModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowLeftTwoRectanglesDirective, NimbleIconArrowLeftTwoRectanglesModule, NimbleIconArrowOutCircleDirective, NimbleIconArrowOutCircleModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightThinDirective, NimbleIconArrowRightThinModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRightTwoRectanglesDirective, NimbleIconArrowRightTwoRectanglesModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowULeftDirective, NimbleIconArrowULeftModule, NimbleIconArrowURightDirective, NimbleIconArrowURightModule, NimbleIconArrowUUpDirective, NimbleIconArrowUUpModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowUpRectangleDirective, NimbleIconArrowUpRectangleModule, NimbleIconArrowUpRightAndArrowDownLeftDirective, NimbleIconArrowUpRightAndArrowDownLeftModule, NimbleIconArrowUpRightFromSquareDirective, NimbleIconArrowUpRightFromSquareModule, NimbleIconArrowUpTwoRectanglesDirective, NimbleIconArrowUpTwoRectanglesModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconArrowsRotateReverseDotDirective, NimbleIconArrowsRotateReverseDotModule, NimbleIconAsteriskDirective, NimbleIconAsteriskModule, NimbleIconAtDirective, NimbleIconAtModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellAndMessageDirective, NimbleIconBellAndMessageModule, NimbleIconBellCheckDirective, NimbleIconBellCheckModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellOnDirective, NimbleIconBellOnModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBoldBDirective, NimbleIconBoldBModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarArrowsRotateReverseDotDirective, NimbleIconCalendarArrowsRotateReverseDotModule, NimbleIconCalendarCheckLinesDirective, NimbleIconCalendarCheckLinesModule, NimbleIconCalendarCircleExclamationDirective, NimbleIconCalendarCircleExclamationModule, NimbleIconCalendarClockDirective, NimbleIconCalendarClockModule, NimbleIconCalendarDayDirective, NimbleIconCalendarDayModule, NimbleIconCalendarDayOutlineDirective, NimbleIconCalendarDayOutlineModule, NimbleIconCalendarDaysDirective, NimbleIconCalendarDaysModule, NimbleIconCalendarLinesDirective, NimbleIconCalendarLinesModule, NimbleIconCalendarRectangleDirective, NimbleIconCalendarRectangleModule, NimbleIconCalendarWeekDirective, NimbleIconCalendarWeekModule, NimbleIconCalipersDirective, NimbleIconCalipersModule, NimbleIconCameraDirective, NimbleIconCameraModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleMinusDirective, NimbleIconCircleMinusModule, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockExclamationDirective, NimbleIconClockExclamationModule, 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, NimbleIconDebugDirective, NimbleIconDebugModule, NimbleIconDesktopDirective, NimbleIconDesktopModule, NimbleIconDiademDirective, NimbleIconDiademModule, NimbleIconDonutChartDirective, NimbleIconDonutChartModule, NimbleIconDotSolidDotStrokeDirective, NimbleIconDotSolidDotStrokeMeasurementDirective, NimbleIconDotSolidDotStrokeMeasurementModule, NimbleIconDotSolidDotStrokeModule, NimbleIconDownRightFromSquareDirective, NimbleIconDownRightFromSquareModule, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDashDirective, NimbleIconEyeDashModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileArrowCurvedRightDirective, NimbleIconFileArrowCurvedRightModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskDirective, NimbleIconFloppyDiskModule, NimbleIconFloppyDiskPenDirective, NimbleIconFloppyDiskPenModule, NimbleIconFloppyDiskStarArrowRightDirective, NimbleIconFloppyDiskStarArrowRightModule, NimbleIconFloppyDiskThreeDotsDirective, NimbleIconFloppyDiskThreeDotsModule, NimbleIconFolderDirective, NimbleIconFolderModule, NimbleIconFolderOpenDirective, NimbleIconFolderOpenModule, NimbleIconForkliftDirective, NimbleIconForkliftModule, NimbleIconForwardSlashDirective, NimbleIconForwardSlashModule, NimbleIconFourDotsSquareDirective, NimbleIconFourDotsSquareModule, NimbleIconFunctionDirective, NimbleIconFunctionModule, NimbleIconGaugeSimpleDirective, NimbleIconGaugeSimpleModule, NimbleIconGridThreeByThreeDirective, NimbleIconGridThreeByThreeModule, NimbleIconGridTwoByTwoDirective, NimbleIconGridTwoByTwoModule, NimbleIconHammerDirective, NimbleIconHammerModule, NimbleIconHashtagDirective, NimbleIconHashtagModule, NimbleIconHomeDirective, NimbleIconHomeModule, NimbleIconHorizontalTriangleOutlineDirective, NimbleIconHorizontalTriangleOutlineModule, NimbleIconHourglassDirective, NimbleIconHourglassModule, NimbleIconIndentDirective, NimbleIconIndentModule, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, NimbleIconInwardSquaresThreeDirective, NimbleIconInwardSquaresThreeModule, NimbleIconItalicIDirective, NimbleIconItalicIModule, NimbleIconKeyDirective, NimbleIconKeyModule, NimbleIconLaptopDirective, NimbleIconLaptopModule, NimbleIconLayerGroupDirective, NimbleIconLayerGroupModule, NimbleIconLightbulbDirective, NimbleIconLightbulbModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMessageBotDirective, NimbleIconMessageBotModule, NimbleIconMessageDirective, NimbleIconMessageModule, NimbleIconMessagesSparkleDirective, NimbleIconMessagesSparkleModule, NimbleIconMicrophoneDirective, NimbleIconMicrophoneModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconMountainSunDirective, NimbleIconMountainSunModule, NimbleIconNiDirective, NimbleIconNiModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconOutdentDirective, NimbleIconOutdentModule, NimbleIconOutwardSquaresThreeDirective, NimbleIconOutwardSquaresThreeModule, NimbleIconPaperPlaneDirective, NimbleIconPaperPlaneModule, NimbleIconPaperclipDirective, NimbleIconPaperclipModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPauseDirective, NimbleIconPauseModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPencilToRectangleDirective, NimbleIconPencilToRectangleModule, NimbleIconPlayDirective, NimbleIconPlayModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconPrintDirective, NimbleIconPrintModule, NimbleIconQrcodeReadDirective, NimbleIconQrcodeReadModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRectangleCheckLinesDirective, NimbleIconRectangleCheckLinesModule, NimbleIconRectangleLinesDirective, NimbleIconRectangleLinesModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconScannerGunDirective, NimbleIconScannerGunModule, NimbleIconScreenCheckLinesCalendarDirective, NimbleIconScreenCheckLinesCalendarModule, NimbleIconScreenCheckLinesDirective, NimbleIconScreenCheckLinesModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSparkleSwirlsDirective, NimbleIconSparkleSwirlsModule, NimbleIconSparklesDirective, NimbleIconSparklesModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareListCogDirective, NimbleIconSquareListCogModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconSquareXDirective, NimbleIconSquareXModule, NimbleIconStar8PointDirective, NimbleIconStar8PointModule, NimbleIconStopSquareDirective, NimbleIconStopSquareModule, NimbleIconSystemlinkDirective, NimbleIconSystemlinkModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeCirclesAscendingContainerDirective, NimbleIconThreeCirclesAscendingContainerModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbDownDirective, NimbleIconThumbDownModule, NimbleIconThumbUpDirective, NimbleIconThumbUpModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleFilledDirective, NimbleIconTriangleFilledModule, NimbleIconTriangleModule, NimbleIconTriangleTwoLinesHorizontalDirective, NimbleIconTriangleTwoLinesHorizontalModule, NimbleIconTrueFalseRectangleDirective, NimbleIconTrueFalseRectangleModule, NimbleIconTwoSquaresInBracketsDirective, NimbleIconTwoSquaresInBracketsModule, NimbleIconTwoTrianglesBetweenLinesDirective, NimbleIconTwoTrianglesBetweenLinesModule, NimbleIconUnlinkDirective, NimbleIconUnlinkModule, NimbleIconUnlockDirective, NimbleIconUnlockModule, NimbleIconUpRightFromSquareDirective, NimbleIconUpRightFromSquareModule, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserHelmetSafetyDirective, NimbleIconUserHelmetSafetyModule, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowDockDirective, NimbleIconWindowDockModule, NimbleIconWindowRestoreDirective, NimbleIconWindowRestoreModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionDirective, NimbleListOptionGroupDirective, NimbleListOptionGroupModule, 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, 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 };
|
|
5786
|
+
export { DisableableRouterLinkWithHrefDirective, NimbleAnchorBaseDirective, NimbleAnchorButtonDirective, NimbleAnchorButtonModule, NimbleAnchorButtonRouterLinkDirective, NimbleAnchorButtonRouterLinkWithHrefDirective, NimbleAnchorDirective, NimbleAnchorMenuItemDirective, NimbleAnchorMenuItemModule, NimbleAnchorMenuItemRouterLinkDirective, NimbleAnchorMenuItemRouterLinkWithHrefDirective, NimbleAnchorModule, NimbleAnchorRouterLinkDirective, NimbleAnchorRouterLinkWithHrefDirective, NimbleAnchorTabDirective, NimbleAnchorTabModule, NimbleAnchorTabRouterLinkDirective, NimbleAnchorTabRouterLinkWithHrefDirective, NimbleAnchorTabsDirective, NimbleAnchorTabsModule, NimbleAnchorTreeItemDirective, NimbleAnchorTreeItemModule, NimbleAnchorTreeItemRouterLinkDirective, NimbleAnchorTreeItemRouterLinkWithHrefDirective, NimbleBannerDirective, NimbleBannerModule, NimbleBreadcrumbDirective, NimbleBreadcrumbItemDirective, NimbleBreadcrumbItemModule, NimbleBreadcrumbItemRouterLinkDirective, NimbleBreadcrumbItemRouterLinkWithHrefDirective, NimbleBreadcrumbModule, NimbleButtonDirective, NimbleButtonModule, NimbleCardButtonDirective, NimbleCardButtonModule, NimbleCheckboxControlValueAccessorDirective, NimbleCheckboxDirective, NimbleCheckboxModule, NimbleComboboxControlValueAccessorDirective, NimbleComboboxDirective, NimbleComboboxListOptionDirective, NimbleComboboxModule, NimbleDialogDirective, NimbleDialogModule, NimbleDrawerDirective, NimbleDrawerModule, NimbleIconAddDirective, NimbleIconAddModule, NimbleIconArrowDownDirective, NimbleIconArrowDownLeftAndArrowUpRightDirective, NimbleIconArrowDownLeftAndArrowUpRightModule, NimbleIconArrowDownModule, NimbleIconArrowDownRectangleDirective, NimbleIconArrowDownRectangleModule, NimbleIconArrowDownRightAndArrowUpLeftDirective, NimbleIconArrowDownRightAndArrowUpLeftModule, NimbleIconArrowDownTwoRectanglesDirective, NimbleIconArrowDownTwoRectanglesModule, NimbleIconArrowExpanderDownDirective, NimbleIconArrowExpanderDownModule, NimbleIconArrowExpanderLeftDirective, NimbleIconArrowExpanderLeftModule, NimbleIconArrowExpanderRightDirective, NimbleIconArrowExpanderRightModule, NimbleIconArrowExpanderUpDirective, NimbleIconArrowExpanderUpModule, NimbleIconArrowInCircleDirective, NimbleIconArrowInCircleModule, NimbleIconArrowLeftFromLineDirective, NimbleIconArrowLeftFromLineModule, NimbleIconArrowLeftTwoRectanglesDirective, NimbleIconArrowLeftTwoRectanglesModule, NimbleIconArrowOutCircleDirective, NimbleIconArrowOutCircleModule, NimbleIconArrowPartialRotateLeftDirective, NimbleIconArrowPartialRotateLeftModule, NimbleIconArrowRightThinDirective, NimbleIconArrowRightThinModule, NimbleIconArrowRightToLineDirective, NimbleIconArrowRightToLineModule, NimbleIconArrowRightTwoRectanglesDirective, NimbleIconArrowRightTwoRectanglesModule, NimbleIconArrowRotateRightDirective, NimbleIconArrowRotateRightModule, NimbleIconArrowULeftDirective, NimbleIconArrowULeftModule, NimbleIconArrowURightDirective, NimbleIconArrowURightModule, NimbleIconArrowUUpDirective, NimbleIconArrowUUpModule, NimbleIconArrowUpDirective, NimbleIconArrowUpLeftAndArrowDownRightDirective, NimbleIconArrowUpLeftAndArrowDownRightModule, NimbleIconArrowUpModule, NimbleIconArrowUpRectangleDirective, NimbleIconArrowUpRectangleModule, NimbleIconArrowUpRightAndArrowDownLeftDirective, NimbleIconArrowUpRightAndArrowDownLeftModule, NimbleIconArrowUpRightFromSquareDirective, NimbleIconArrowUpRightFromSquareModule, NimbleIconArrowUpTwoRectanglesDirective, NimbleIconArrowUpTwoRectanglesModule, NimbleIconArrowsMaximizeDirective, NimbleIconArrowsMaximizeModule, NimbleIconArrowsRepeatDirective, NimbleIconArrowsRepeatModule, NimbleIconArrowsRotateReverseDotDirective, NimbleIconArrowsRotateReverseDotModule, NimbleIconAsteriskDirective, NimbleIconAsteriskModule, NimbleIconAtDirective, NimbleIconAtModule, NimbleIconBarsDirective, NimbleIconBarsModule, NimbleIconBellAndCommentDirective, NimbleIconBellAndCommentModule, NimbleIconBellAndMessageDirective, NimbleIconBellAndMessageModule, NimbleIconBellCheckDirective, NimbleIconBellCheckModule, NimbleIconBellCircleDirective, NimbleIconBellCircleModule, NimbleIconBellDirective, NimbleIconBellModule, NimbleIconBellOnDirective, NimbleIconBellOnModule, NimbleIconBellSolidCircleDirective, NimbleIconBellSolidCircleModule, NimbleIconBlockWithRibbonDirective, NimbleIconBlockWithRibbonModule, NimbleIconBoldBDirective, NimbleIconBoldBModule, NimbleIconBookMagnifyingGlassDirective, NimbleIconBookMagnifyingGlassModule, NimbleIconCalendarArrowsRotateReverseDotDirective, NimbleIconCalendarArrowsRotateReverseDotModule, NimbleIconCalendarCheckLinesDirective, NimbleIconCalendarCheckLinesModule, NimbleIconCalendarCircleExclamationDirective, NimbleIconCalendarCircleExclamationModule, NimbleIconCalendarClockDirective, NimbleIconCalendarClockModule, NimbleIconCalendarDayDirective, NimbleIconCalendarDayModule, NimbleIconCalendarDayOutlineDirective, NimbleIconCalendarDayOutlineModule, NimbleIconCalendarDaysDirective, NimbleIconCalendarDaysModule, NimbleIconCalendarLinesDirective, NimbleIconCalendarLinesModule, NimbleIconCalendarRectangleDirective, NimbleIconCalendarRectangleModule, NimbleIconCalendarWeekDirective, NimbleIconCalendarWeekModule, NimbleIconCalipersDirective, NimbleIconCalipersModule, NimbleIconCameraDirective, NimbleIconCameraModule, NimbleIconChartDiagramChildFocusDirective, NimbleIconChartDiagramChildFocusModule, NimbleIconChartDiagramDirective, NimbleIconChartDiagramModule, NimbleIconChartDiagramParentFocusDirective, NimbleIconChartDiagramParentFocusModule, NimbleIconChartDiagramParentFocusTwoChildDirective, NimbleIconChartDiagramParentFocusTwoChildModule, NimbleIconCheckDirective, NimbleIconCheckDotDirective, NimbleIconCheckDotModule, NimbleIconCheckModule, NimbleIconCircleBrokenDirective, NimbleIconCircleBrokenModule, NimbleIconCircleCheckDirective, NimbleIconCircleCheckModule, NimbleIconCircleDirective, NimbleIconCircleFilledDirective, NimbleIconCircleFilledModule, NimbleIconCircleMinusDirective, NimbleIconCircleMinusModule, NimbleIconCircleModule, NimbleIconCirclePartialBrokenDirective, NimbleIconCirclePartialBrokenModule, NimbleIconCircleSlashDirective, NimbleIconCircleSlashModule, NimbleIconCircleXDirective, NimbleIconCircleXModule, NimbleIconClipboardDirective, NimbleIconClipboardModule, NimbleIconClockCogDirective, NimbleIconClockCogModule, NimbleIconClockDirective, NimbleIconClockExclamationDirective, NimbleIconClockExclamationModule, 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, NimbleIconDebugDirective, NimbleIconDebugModule, NimbleIconDesktopDirective, NimbleIconDesktopModule, NimbleIconDiademDirective, NimbleIconDiademModule, NimbleIconDonutChartDirective, NimbleIconDonutChartModule, NimbleIconDotSolidDotStrokeDirective, NimbleIconDotSolidDotStrokeMeasurementDirective, NimbleIconDotSolidDotStrokeMeasurementModule, NimbleIconDotSolidDotStrokeModule, NimbleIconDownRightFromSquareDirective, NimbleIconDownRightFromSquareModule, NimbleIconDownloadDirective, NimbleIconDownloadModule, NimbleIconElectronicChipZoomedDirective, NimbleIconElectronicChipZoomedModule, NimbleIconExclamationMarkDirective, NimbleIconExclamationMarkModule, NimbleIconEyeDashDirective, NimbleIconEyeDashModule, NimbleIconEyeDirective, NimbleIconEyeModule, NimbleIconFancyADirective, NimbleIconFancyAModule, NimbleIconFileArrowCurvedRightDirective, NimbleIconFileArrowCurvedRightModule, NimbleIconFileDirective, NimbleIconFileDrawerDirective, NimbleIconFileDrawerModule, NimbleIconFileModule, NimbleIconFileSearchDirective, NimbleIconFileSearchModule, NimbleIconFilterDirective, NimbleIconFilterModule, NimbleIconFloppyDiskCheckmarkDirective, NimbleIconFloppyDiskCheckmarkModule, NimbleIconFloppyDiskDirective, NimbleIconFloppyDiskModule, NimbleIconFloppyDiskPenDirective, NimbleIconFloppyDiskPenModule, NimbleIconFloppyDiskStarArrowRightDirective, NimbleIconFloppyDiskStarArrowRightModule, NimbleIconFloppyDiskThreeDotsDirective, NimbleIconFloppyDiskThreeDotsModule, NimbleIconFolderDirective, NimbleIconFolderModule, NimbleIconFolderOpenDirective, NimbleIconFolderOpenModule, NimbleIconForkliftDirective, NimbleIconForkliftModule, NimbleIconForwardSlashDirective, NimbleIconForwardSlashModule, NimbleIconFourDotsSquareDirective, NimbleIconFourDotsSquareModule, NimbleIconFunctionDirective, NimbleIconFunctionModule, NimbleIconGaugeSimpleDirective, NimbleIconGaugeSimpleModule, NimbleIconGridThreeByThreeDirective, NimbleIconGridThreeByThreeModule, NimbleIconGridTwoByTwoDirective, NimbleIconGridTwoByTwoModule, NimbleIconHammerDirective, NimbleIconHammerModule, NimbleIconHashtagDirective, NimbleIconHashtagModule, NimbleIconHomeDirective, NimbleIconHomeModule, NimbleIconHorizontalTriangleOutlineDirective, NimbleIconHorizontalTriangleOutlineModule, NimbleIconHourglassDirective, NimbleIconHourglassModule, NimbleIconIndentDirective, NimbleIconIndentModule, NimbleIconIndeterminantCheckboxDirective, NimbleIconIndeterminantCheckboxModule, NimbleIconInfoCircleDirective, NimbleIconInfoCircleModule, NimbleIconInfoDirective, NimbleIconInfoModule, NimbleIconInwardSquaresThreeDirective, NimbleIconInwardSquaresThreeModule, NimbleIconItalicIDirective, NimbleIconItalicIModule, NimbleIconKeyDirective, NimbleIconKeyModule, NimbleIconLaptopDirective, NimbleIconLaptopModule, NimbleIconLayerGroupDirective, NimbleIconLayerGroupModule, NimbleIconLightbulbDirective, NimbleIconLightbulbModule, NimbleIconLightningBoltDirective, NimbleIconLightningBoltModule, NimbleIconLinkCancelDirective, NimbleIconLinkCancelModule, NimbleIconLinkDirective, NimbleIconLinkModule, NimbleIconListDirective, NimbleIconListModule, NimbleIconListTreeDatabaseDirective, NimbleIconListTreeDatabaseModule, NimbleIconListTreeDirective, NimbleIconListTreeModule, NimbleIconLockDirective, NimbleIconLockModule, NimbleIconMagnifyingGlassDirective, NimbleIconMagnifyingGlassModule, NimbleIconMarkdownDirective, NimbleIconMarkdownModule, NimbleIconMessageBotDirective, NimbleIconMessageBotModule, NimbleIconMessageDirective, NimbleIconMessageModule, NimbleIconMessagesSparkleDirective, NimbleIconMessagesSparkleModule, NimbleIconMicrophoneDirective, NimbleIconMicrophoneModule, NimbleIconMinusDirective, NimbleIconMinusModule, NimbleIconMinusWideDirective, NimbleIconMinusWideModule, NimbleIconMobileDirective, NimbleIconMobileModule, NimbleIconMountainSunDirective, NimbleIconMountainSunModule, NimbleIconNiDirective, NimbleIconNiModule, NimbleIconNotebookDirective, NimbleIconNotebookModule, NimbleIconNumberListDirective, NimbleIconNumberListModule, NimbleIconOutdentDirective, NimbleIconOutdentModule, NimbleIconOutwardSquaresThreeDirective, NimbleIconOutwardSquaresThreeModule, NimbleIconPaperPlaneDirective, NimbleIconPaperPlaneModule, NimbleIconPaperclipDirective, NimbleIconPaperclipModule, NimbleIconPasteDirective, NimbleIconPasteModule, NimbleIconPauseDirective, NimbleIconPauseModule, NimbleIconPencilDirective, NimbleIconPencilModule, NimbleIconPencilToRectangleDirective, NimbleIconPencilToRectangleModule, NimbleIconPlayDirective, NimbleIconPlayModule, NimbleIconPotWithLidDirective, NimbleIconPotWithLidModule, NimbleIconPrintDirective, NimbleIconPrintModule, NimbleIconQrcodeReadDirective, NimbleIconQrcodeReadModule, NimbleIconQuestionDirective, NimbleIconQuestionModule, NimbleIconRectangleCheckLinesDirective, NimbleIconRectangleCheckLinesModule, NimbleIconRectangleLinesDirective, NimbleIconRectangleLinesModule, NimbleIconRunningArrowDirective, NimbleIconRunningArrowModule, NimbleIconScannerGunDirective, NimbleIconScannerGunModule, NimbleIconScreenCheckLinesCalendarDirective, NimbleIconScreenCheckLinesCalendarModule, NimbleIconScreenCheckLinesDirective, NimbleIconScreenCheckLinesModule, NimbleIconServerDirective, NimbleIconServerModule, NimbleIconShareNodesDirective, NimbleIconShareNodesModule, NimbleIconShieldCheckDirective, NimbleIconShieldCheckModule, NimbleIconShieldXmarkDirective, NimbleIconShieldXmarkModule, NimbleIconSignalBarsDirective, NimbleIconSignalBarsModule, NimbleIconSineGraphDirective, NimbleIconSineGraphModule, NimbleIconSkipArrowDirective, NimbleIconSkipArrowModule, NimbleIconSparkleSwirlsDirective, NimbleIconSparkleSwirlsModule, NimbleIconSparklesDirective, NimbleIconSparklesModule, NimbleIconSpinnerDirective, NimbleIconSpinnerModule, NimbleIconSquareCheckDirective, NimbleIconSquareCheckModule, NimbleIconSquareListCogDirective, NimbleIconSquareListCogModule, NimbleIconSquareTDirective, NimbleIconSquareTModule, NimbleIconSquareXDirective, NimbleIconSquareXModule, NimbleIconStar8PointDirective, NimbleIconStar8PointModule, NimbleIconStopSquareDirective, NimbleIconStopSquareModule, NimbleIconSystemlinkDirective, NimbleIconSystemlinkModule, NimbleIconTDirective, NimbleIconTModule, NimbleIconTabletDirective, NimbleIconTabletModule, NimbleIconTagDirective, NimbleIconTagModule, NimbleIconTagsDirective, NimbleIconTagsModule, NimbleIconTargetCrosshairsDirective, NimbleIconTargetCrosshairsModule, NimbleIconTargetCrosshairsProgressDirective, NimbleIconTargetCrosshairsProgressModule, NimbleIconThreeCirclesAscendingContainerDirective, NimbleIconThreeCirclesAscendingContainerModule, NimbleIconThreeDotsLineDirective, NimbleIconThreeDotsLineModule, NimbleIconThreeVerticalLinesDirective, NimbleIconThreeVerticalLinesModule, NimbleIconThumbDownDirective, NimbleIconThumbDownModule, NimbleIconThumbUpDirective, NimbleIconThumbUpModule, NimbleIconThumbtackDirective, NimbleIconThumbtackModule, NimbleIconTileSizeDirective, NimbleIconTileSizeModule, NimbleIconTimesDirective, NimbleIconTimesModule, NimbleIconTrashDirective, NimbleIconTrashModule, NimbleIconTriangleDirective, NimbleIconTriangleFilledDirective, NimbleIconTriangleFilledModule, NimbleIconTriangleModule, NimbleIconTriangleTwoLinesHorizontalDirective, NimbleIconTriangleTwoLinesHorizontalModule, NimbleIconTrueFalseRectangleDirective, NimbleIconTrueFalseRectangleModule, NimbleIconTwoSquaresInBracketsDirective, NimbleIconTwoSquaresInBracketsModule, NimbleIconTwoTrianglesBetweenLinesDirective, NimbleIconTwoTrianglesBetweenLinesModule, NimbleIconUnlinkDirective, NimbleIconUnlinkModule, NimbleIconUnlockDirective, NimbleIconUnlockModule, NimbleIconUpRightFromSquareDirective, NimbleIconUpRightFromSquareModule, NimbleIconUploadDirective, NimbleIconUploadModule, NimbleIconUserDirective, NimbleIconUserHelmetSafetyDirective, NimbleIconUserHelmetSafetyModule, NimbleIconUserModule, NimbleIconWatchDirective, NimbleIconWatchModule, NimbleIconWaveformDirective, NimbleIconWaveformModule, NimbleIconWebviCustomDirective, NimbleIconWebviCustomModule, NimbleIconWebviHostDirective, NimbleIconWebviHostModule, NimbleIconWindowCodeDirective, NimbleIconWindowCodeModule, NimbleIconWindowDockDirective, NimbleIconWindowDockModule, NimbleIconWindowRestoreDirective, NimbleIconWindowRestoreModule, NimbleIconWindowTextDirective, NimbleIconWindowTextModule, NimbleIconWrenchHammerDirective, NimbleIconWrenchHammerModule, NimbleIconXmarkCheckDirective, NimbleIconXmarkCheckModule, NimbleIconXmarkDirective, NimbleIconXmarkModule, NimbleListOptionDirective, NimbleListOptionGroupDirective, NimbleListOptionGroupModule, 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, 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 };
|
|
5760
5787
|
export type { OptionNotFound };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ni/nimble-angular",
|
|
3
|
-
"version": "33.1.
|
|
3
|
+
"version": "33.1.4",
|
|
4
4
|
"description": "Angular components for the NI Nimble Design System",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -14,10 +14,6 @@
|
|
|
14
14
|
"types": "./index.d.ts",
|
|
15
15
|
"default": "./fesm2022/ni-nimble-angular.mjs"
|
|
16
16
|
},
|
|
17
|
-
"./anchor-base": {
|
|
18
|
-
"types": "./anchor-base/index.d.ts",
|
|
19
|
-
"default": "./fesm2022/ni-nimble-angular-anchor-base.mjs"
|
|
20
|
-
},
|
|
21
17
|
"./anchor-step": {
|
|
22
18
|
"types": "./anchor-step/index.d.ts",
|
|
23
19
|
"default": "./fesm2022/ni-nimble-angular-anchor-step.mjs"
|
|
@@ -219,7 +215,7 @@
|
|
|
219
215
|
"@angular/forms": "^20.3.15",
|
|
220
216
|
"@angular/localize": "^20.3.15",
|
|
221
217
|
"@angular/router": "^20.3.15",
|
|
222
|
-
"@ni/nimble-components": "^35.
|
|
218
|
+
"@ni/nimble-components": "^35.6.0",
|
|
223
219
|
"@ni/unit-format": "^1.0.3"
|
|
224
220
|
},
|
|
225
221
|
"module": "fesm2022/ni-nimble-angular.mjs",
|
package/step/index.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ declare class NimbleStepDirective {
|
|
|
25
25
|
set selected(value: BooleanValueOrAttribute);
|
|
26
26
|
constructor(renderer: Renderer2, elementRef: ElementRef<Step>);
|
|
27
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleStepDirective, never>;
|
|
28
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleStepDirective, "nimble-step", never, { "severity": { "alias": "severity"; "required": false; }; "severityText": { "alias": "severity-text"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleStepDirective, "nimble-step", never, { "severity": { "alias": "severity"; "required": false; }; "severityText": { "alias": "severity-text"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "readOnly": { "alias": "readonly"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, never, false, never>;
|
|
29
29
|
}
|
|
30
30
|
|
|
31
31
|
declare class NimbleStepModule {
|
package/anchor-base/index.d.ts
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Renderer2, ElementRef } from '@angular/core';
|
|
3
|
-
import { AnchorBase } from '@ni/nimble-components/dist/esm/anchor-base';
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Base class for directives providing link attributes.
|
|
7
|
-
*/
|
|
8
|
-
declare class NimbleAnchorBaseDirective<T extends AnchorBase> {
|
|
9
|
-
protected readonly renderer: Renderer2;
|
|
10
|
-
protected readonly elementRef: ElementRef<T>;
|
|
11
|
-
get href(): string;
|
|
12
|
-
set href(value: string);
|
|
13
|
-
get hreflang(): string;
|
|
14
|
-
set hreflang(value: string);
|
|
15
|
-
get ping(): string;
|
|
16
|
-
set ping(value: string);
|
|
17
|
-
get referrerpolicy(): string;
|
|
18
|
-
set referrerpolicy(value: string);
|
|
19
|
-
get rel(): string;
|
|
20
|
-
set rel(value: string);
|
|
21
|
-
get target(): string;
|
|
22
|
-
set target(value: string);
|
|
23
|
-
get type(): string;
|
|
24
|
-
set type(value: string);
|
|
25
|
-
constructor(renderer: Renderer2, elementRef: ElementRef<T>);
|
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NimbleAnchorBaseDirective<any>, never>;
|
|
27
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NimbleAnchorBaseDirective<any>, never, never, { "href": { "alias": "href"; "required": false; }; "hreflang": { "alias": "hreflang"; "required": false; }; "ping": { "alias": "ping"; "required": false; }; "referrerpolicy": { "alias": "referrerpolicy"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "target": { "alias": "target"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
export { NimbleAnchorBaseDirective };
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Input, Directive } from '@angular/core';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* Base class for directives providing link attributes.
|
|
6
|
-
*/
|
|
7
|
-
class NimbleAnchorBaseDirective {
|
|
8
|
-
get href() {
|
|
9
|
-
return this.elementRef.nativeElement.href;
|
|
10
|
-
}
|
|
11
|
-
set href(value) {
|
|
12
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'href', value);
|
|
13
|
-
}
|
|
14
|
-
get hreflang() {
|
|
15
|
-
return this.elementRef.nativeElement.hreflang;
|
|
16
|
-
}
|
|
17
|
-
set hreflang(value) {
|
|
18
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'hreflang', value);
|
|
19
|
-
}
|
|
20
|
-
get ping() {
|
|
21
|
-
return this.elementRef.nativeElement.ping;
|
|
22
|
-
}
|
|
23
|
-
set ping(value) {
|
|
24
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'ping', value);
|
|
25
|
-
}
|
|
26
|
-
get referrerpolicy() {
|
|
27
|
-
return this.elementRef.nativeElement.referrerpolicy;
|
|
28
|
-
}
|
|
29
|
-
set referrerpolicy(value) {
|
|
30
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'referrerpolicy', value);
|
|
31
|
-
}
|
|
32
|
-
get rel() {
|
|
33
|
-
return this.elementRef.nativeElement.rel;
|
|
34
|
-
}
|
|
35
|
-
set rel(value) {
|
|
36
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'rel', value);
|
|
37
|
-
}
|
|
38
|
-
get target() {
|
|
39
|
-
return this.elementRef.nativeElement.target;
|
|
40
|
-
}
|
|
41
|
-
set target(value) {
|
|
42
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'target', value);
|
|
43
|
-
}
|
|
44
|
-
get type() {
|
|
45
|
-
return this.elementRef.nativeElement.type;
|
|
46
|
-
}
|
|
47
|
-
set type(value) {
|
|
48
|
-
this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);
|
|
49
|
-
}
|
|
50
|
-
constructor(renderer, elementRef) {
|
|
51
|
-
this.renderer = renderer;
|
|
52
|
-
this.elementRef = elementRef;
|
|
53
|
-
}
|
|
54
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorBaseDirective, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
55
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "20.3.18", type: NimbleAnchorBaseDirective, isStandalone: true, inputs: { href: "href", hreflang: "hreflang", ping: "ping", referrerpolicy: "referrerpolicy", rel: "rel", target: "target", type: "type" }, ngImport: i0 }); }
|
|
56
|
-
}
|
|
57
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.18", ngImport: i0, type: NimbleAnchorBaseDirective, decorators: [{
|
|
58
|
-
type: Directive
|
|
59
|
-
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i0.ElementRef }], propDecorators: { href: [{
|
|
60
|
-
type: Input
|
|
61
|
-
}], hreflang: [{
|
|
62
|
-
type: Input
|
|
63
|
-
}], ping: [{
|
|
64
|
-
type: Input
|
|
65
|
-
}], referrerpolicy: [{
|
|
66
|
-
type: Input
|
|
67
|
-
}], rel: [{
|
|
68
|
-
type: Input
|
|
69
|
-
}], target: [{
|
|
70
|
-
type: Input
|
|
71
|
-
}], type: [{
|
|
72
|
-
type: Input
|
|
73
|
-
}] } });
|
|
74
|
-
|
|
75
|
-
/**
|
|
76
|
-
* Generated bundle index. Do not edit.
|
|
77
|
-
*/
|
|
78
|
-
|
|
79
|
-
export { NimbleAnchorBaseDirective };
|
|
80
|
-
//# sourceMappingURL=ni-nimble-angular-anchor-base.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ni-nimble-angular-anchor-base.mjs","sources":["../../../nimble-angular/anchor-base/nimble-anchor-base.directive.ts","../../../nimble-angular/anchor-base/ni-nimble-angular-anchor-base.ts"],"sourcesContent":["import { Directive, ElementRef, Input, Renderer2 } from '@angular/core';\nimport type { AnchorBase } from '@ni/nimble-components/dist/esm/anchor-base';\n\n/**\n * Base class for directives providing link attributes.\n */\n@Directive()\nexport class NimbleAnchorBaseDirective<T extends AnchorBase> {\n public get href(): string {\n return this.elementRef.nativeElement.href;\n }\n\n @Input() public set href(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'href', value);\n }\n\n public get hreflang(): string {\n return this.elementRef.nativeElement.hreflang;\n }\n\n @Input() public set hreflang(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'hreflang', value);\n }\n\n public get ping(): string {\n return this.elementRef.nativeElement.ping;\n }\n\n @Input() public set ping(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'ping', value);\n }\n\n public get referrerpolicy(): string {\n return this.elementRef.nativeElement.referrerpolicy;\n }\n\n @Input() public set referrerpolicy(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'referrerpolicy', value);\n }\n\n public get rel(): string {\n return this.elementRef.nativeElement.rel;\n }\n\n @Input() public set rel(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'rel', value);\n }\n\n public get target(): string {\n return this.elementRef.nativeElement.target;\n }\n\n @Input() public set target(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'target', value);\n }\n\n public get type(): string {\n return this.elementRef.nativeElement.type;\n }\n\n @Input() public set type(value: string) {\n this.renderer.setProperty(this.elementRef.nativeElement, 'type', value);\n }\n\n public constructor(protected readonly renderer: Renderer2, protected readonly elementRef: ElementRef<T>) {}\n}","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;AAGA;;AAEG;MAEU,yBAAyB,CAAA;AAClC,IAAA,IAAW,IAAI,GAAA;AACX,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,IAAI;IAC7C;IAEA,IAAoB,IAAI,CAAC,KAAa,EAAA;AAClC,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC;IAC3E;AAEA,IAAA,IAAW,QAAQ,GAAA;AACf,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,QAAQ;IACjD;IAEA,IAAoB,QAAQ,CAAC,KAAa,EAAA;AACtC,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,UAAU,EAAE,KAAK,CAAC;IAC/E;AAEA,IAAA,IAAW,IAAI,GAAA;AACX,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,IAAI;IAC7C;IAEA,IAAoB,IAAI,CAAC,KAAa,EAAA;AAClC,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC;IAC3E;AAEA,IAAA,IAAW,cAAc,GAAA;AACrB,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,cAAc;IACvD;IAEA,IAAoB,cAAc,CAAC,KAAa,EAAA;AAC5C,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,gBAAgB,EAAE,KAAK,CAAC;IACrF;AAEA,IAAA,IAAW,GAAG,GAAA;AACV,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,GAAG;IAC5C;IAEA,IAAoB,GAAG,CAAC,KAAa,EAAA;AACjC,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,KAAK,EAAE,KAAK,CAAC;IAC1E;AAEA,IAAA,IAAW,MAAM,GAAA;AACb,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,MAAM;IAC/C;IAEA,IAAoB,MAAM,CAAC,KAAa,EAAA;AACpC,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,QAAQ,EAAE,KAAK,CAAC;IAC7E;AAEA,IAAA,IAAW,IAAI,GAAA;AACX,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,aAAa,CAAC,IAAI;IAC7C;IAEA,IAAoB,IAAI,CAAC,KAAa,EAAA;AAClC,QAAA,IAAI,CAAC,QAAQ,CAAC,WAAW,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,MAAM,EAAE,KAAK,CAAC;IAC3E;IAEA,WAAA,CAAsC,QAAmB,EAAqB,UAAyB,EAAA;QAAjE,IAAA,CAAA,QAAQ,GAAR,QAAQ;QAAgC,IAAA,CAAA,UAAU,GAAV,UAAU;IAAkB;+GAzDjG,yBAAyB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,SAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA;mGAAzB,yBAAyB,EAAA,YAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,IAAA,EAAA,MAAA,EAAA,QAAA,EAAA,UAAA,EAAA,IAAA,EAAA,MAAA,EAAA,cAAA,EAAA,gBAAA,EAAA,GAAA,EAAA,KAAA,EAAA,MAAA,EAAA,QAAA,EAAA,IAAA,EAAA,MAAA,EAAA,EAAA,QAAA,EAAA,EAAA,EAAA,CAAA,CAAA;;4FAAzB,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBADrC;;sBAMI;;sBAQA;;sBAQA;;sBAQA;;sBAQA;;sBAQA;;sBAQA;;;AC5DL;;AAEG;;;;"}
|