@truenas/ui-components 0.3.15 → 0.3.17
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/package.json
CHANGED
package/src/styles/themes.css
CHANGED
|
@@ -657,3 +657,102 @@ tn-dialog-shell {
|
|
|
657
657
|
box-shadow: none;
|
|
658
658
|
margin: 0;
|
|
659
659
|
}
|
|
660
|
+
|
|
661
|
+
/* ================================
|
|
662
|
+
CDK Overlay base styles
|
|
663
|
+
================================
|
|
664
|
+
Mirrors @angular/cdk/overlay-prebuilt.css. These structural rules are
|
|
665
|
+
REQUIRED for any component built on the CDK connected-position overlay
|
|
666
|
+
(tn-select, tn-autocomplete, tn-tooltip, tn-file-picker, tn-date-input…).
|
|
667
|
+
Consuming apps that only import this themes.css would otherwise never load
|
|
668
|
+
them, with two visible symptoms:
|
|
669
|
+
|
|
670
|
+
1. pointer-events: none on the overlay container is INHERITED by the
|
|
671
|
+
connected-position bounding box (a flex column anchored to the trigger
|
|
672
|
+
that is typically far wider/taller than the visible panel). Without it
|
|
673
|
+
the bounding box keeps the default `auto` and silently eats clicks in
|
|
674
|
+
the empty area around the panel — so a no-backdrop dropdown like
|
|
675
|
+
tn-select can't be dismissed by clicking "outside" it (the click lands
|
|
676
|
+
on the bounding box, which is technically inside the overlay, so CDK's
|
|
677
|
+
outsidePointerEvents() never fires).
|
|
678
|
+
2. .cdk-overlay-pane { max-height: 100% } keeps panels constrained to the
|
|
679
|
+
viewport so their internal `overflow-y: auto` regions actually scroll.
|
|
680
|
+
|
|
681
|
+
Only .cdk-overlay-pane re-enables pointer-events: auto, so the panel itself
|
|
682
|
+
stays interactive while everything around it is click-through. */
|
|
683
|
+
.cdk-overlay-container,
|
|
684
|
+
.cdk-global-overlay-wrapper {
|
|
685
|
+
pointer-events: none;
|
|
686
|
+
top: 0;
|
|
687
|
+
left: 0;
|
|
688
|
+
height: 100%;
|
|
689
|
+
width: 100%;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
.cdk-overlay-container {
|
|
693
|
+
position: fixed;
|
|
694
|
+
z-index: 1000;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.cdk-overlay-container:empty {
|
|
698
|
+
display: none;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
.cdk-global-overlay-wrapper {
|
|
702
|
+
display: flex;
|
|
703
|
+
position: absolute;
|
|
704
|
+
z-index: 1000;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
.cdk-overlay-pane {
|
|
708
|
+
position: absolute;
|
|
709
|
+
pointer-events: auto;
|
|
710
|
+
box-sizing: border-box;
|
|
711
|
+
display: flex;
|
|
712
|
+
max-width: 100%;
|
|
713
|
+
max-height: 100%;
|
|
714
|
+
z-index: 1000;
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
.cdk-overlay-connected-position-bounding-box {
|
|
718
|
+
position: absolute;
|
|
719
|
+
display: flex;
|
|
720
|
+
flex-direction: column;
|
|
721
|
+
min-width: 1px;
|
|
722
|
+
min-height: 1px;
|
|
723
|
+
z-index: 1000;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.cdk-overlay-backdrop {
|
|
727
|
+
position: absolute;
|
|
728
|
+
top: 0;
|
|
729
|
+
bottom: 0;
|
|
730
|
+
left: 0;
|
|
731
|
+
right: 0;
|
|
732
|
+
pointer-events: auto;
|
|
733
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
734
|
+
opacity: 0;
|
|
735
|
+
z-index: 1000;
|
|
736
|
+
transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.cdk-overlay-backdrop-showing {
|
|
740
|
+
opacity: 1;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.cdk-overlay-transparent-backdrop {
|
|
744
|
+
transition: visibility 1ms linear, opacity 1ms linear;
|
|
745
|
+
visibility: hidden;
|
|
746
|
+
opacity: 1;
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
|
|
750
|
+
opacity: 0;
|
|
751
|
+
visibility: visible;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.cdk-global-scrollblock {
|
|
755
|
+
position: fixed;
|
|
756
|
+
width: 100%;
|
|
757
|
+
overflow-y: scroll;
|
|
758
|
+
}
|
|
@@ -331,7 +331,6 @@ declare class TnSelectComponent<T = unknown> implements ControlValueAccessor, On
|
|
|
331
331
|
protected optionTestIdParts(option: TnSelectOption<T>): (string | number | null | undefined)[];
|
|
332
332
|
private onChange;
|
|
333
333
|
private onTouched;
|
|
334
|
-
private elementRef;
|
|
335
334
|
private cdr;
|
|
336
335
|
private overlay;
|
|
337
336
|
private viewContainerRef;
|
|
@@ -350,11 +349,19 @@ declare class TnSelectComponent<T = unknown> implements ControlValueAccessor, On
|
|
|
350
349
|
*
|
|
351
350
|
* Why an overlay (vs. an inline absolutely-positioned panel):
|
|
352
351
|
* - Escapes parent `overflow: hidden`/clipping in surrounding layouts.
|
|
353
|
-
* - `outsidePointerEvents()` notifies on outside pointerdown WITHOUT
|
|
354
|
-
* intercepting the click (no backdrop) — so the user's click reaches
|
|
355
|
-
* the underlying target while the select closes silently.
|
|
356
352
|
* - Position is recomputed on scroll so the panel stays attached.
|
|
357
|
-
*
|
|
353
|
+
*
|
|
354
|
+
* Dismissal uses a transparent, full-viewport backdrop (`backdropClick()`).
|
|
355
|
+
* We previously ran backdrop-less with `outsidePointerEvents()`, but that
|
|
356
|
+
* only closes when the click lands strictly OUTSIDE the overlay pane — and
|
|
357
|
+
* the pane was sized to the (often full-width) trigger while the panel itself
|
|
358
|
+
* is only as wide as its content. The empty pane area to the right of the
|
|
359
|
+
* options stayed `pointer-events: auto`, so clicks there never counted as
|
|
360
|
+
* "outside" and the dropdown wouldn't close. A transparent backdrop closes on
|
|
361
|
+
* ANY click outside the panel regardless of pane geometry — the standard
|
|
362
|
+
* pattern used by native `<select>` and Material's `mat-select`. We therefore
|
|
363
|
+
* also drop the explicit `width`: the pane sizes to the panel content so the
|
|
364
|
+
* clickable surface matches what the user sees.
|
|
358
365
|
*/
|
|
359
366
|
private attachOverlay;
|
|
360
367
|
private detachOverlay;
|
|
@@ -7972,10 +7979,12 @@ declare class TnStepComponent {
|
|
|
7972
7979
|
optional: _angular_core.InputSignal<boolean>;
|
|
7973
7980
|
completed: _angular_core.InputSignal<boolean>;
|
|
7974
7981
|
hasError: _angular_core.InputSignal<boolean>;
|
|
7982
|
+
/** Message shown beneath the step label while the step is in an error state. */
|
|
7983
|
+
errorMessage: _angular_core.InputSignal<string | undefined>;
|
|
7975
7984
|
data: _angular_core.InputSignal<unknown>;
|
|
7976
7985
|
content: _angular_core.Signal<TemplateRef<unknown>>;
|
|
7977
7986
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnStepComponent, never>;
|
|
7978
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnStepComponent, "tn-step", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "optional": { "alias": "optional"; "required": false; "isSignal": true; }; "completed": { "alias": "completed"; "required": false; "isSignal": true; }; "hasError": { "alias": "hasError"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7987
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnStepComponent, "tn-step", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "optional": { "alias": "optional"; "required": false; "isSignal": true; }; "completed": { "alias": "completed"; "required": false; "isSignal": true; }; "hasError": { "alias": "hasError"; "required": false; "isSignal": true; }; "errorMessage": { "alias": "errorMessage"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
7979
7988
|
}
|
|
7980
7989
|
|
|
7981
7990
|
declare class TnStepperComponent {
|
|
@@ -7997,11 +8006,14 @@ declare class TnStepperComponent {
|
|
|
7997
8006
|
data: unknown;
|
|
7998
8007
|
}[]>;
|
|
7999
8008
|
steps: _angular_core.Signal<readonly TnStepComponent[]>;
|
|
8000
|
-
|
|
8009
|
+
readonly maxReachedIndex: _angular_core.WritableSignal<number>;
|
|
8001
8010
|
constructor();
|
|
8002
|
-
onWindowResize(
|
|
8011
|
+
onWindowResize(): void;
|
|
8003
8012
|
private _getStepData;
|
|
8004
|
-
isWideScreen
|
|
8013
|
+
private isWideScreen;
|
|
8014
|
+
isVertical: _angular_core.Signal<boolean>;
|
|
8015
|
+
readonly stepEditable: _angular_core.Signal<boolean[]>;
|
|
8016
|
+
readonly stepGated: _angular_core.Signal<boolean[]>;
|
|
8005
8017
|
selectStep(index: number): void;
|
|
8006
8018
|
canSelectStep(index: number): boolean;
|
|
8007
8019
|
next(): void;
|
|
@@ -8011,6 +8023,87 @@ declare class TnStepperComponent {
|
|
|
8011
8023
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnStepperComponent, "tn-stepper", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; }, { "selectedIndex": "selectedIndexChange"; "selectionChange": "selectionChange"; "completed": "completed"; }, ["steps"], never, true, never>;
|
|
8012
8024
|
}
|
|
8013
8025
|
|
|
8026
|
+
/**
|
|
8027
|
+
* Advances the ancestor `<tn-stepper>` to the next step when the host is clicked.
|
|
8028
|
+
*
|
|
8029
|
+
* Mirrors Angular Material's `matStepperNext`. Place it on a button (native
|
|
8030
|
+
* `<button>` or `<tn-button>`) rendered inside a `<tn-step>` — including step
|
|
8031
|
+
* content that lives in a projected child component. The directive resolves the
|
|
8032
|
+
* stepper through the element injector, so a disabled host simply emits no click
|
|
8033
|
+
* and navigation is naturally gated.
|
|
8034
|
+
*
|
|
8035
|
+
* @example
|
|
8036
|
+
* ```html
|
|
8037
|
+
* <tn-button [tnStepperNext] [disabled]="form.invalid" [label]="'Next' | translate" />
|
|
8038
|
+
* ```
|
|
8039
|
+
*/
|
|
8040
|
+
declare class TnStepperNextDirective {
|
|
8041
|
+
protected stepper: TnStepperComponent;
|
|
8042
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnStepperNextDirective, never>;
|
|
8043
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TnStepperNextDirective, "[tnStepperNext]", never, {}, {}, never, never, true, never>;
|
|
8044
|
+
}
|
|
8045
|
+
|
|
8046
|
+
/**
|
|
8047
|
+
* Moves the ancestor `<tn-stepper>` to the previous step when the host is clicked.
|
|
8048
|
+
*
|
|
8049
|
+
* Mirrors Angular Material's `matStepperPrevious`. Place it on a button (native
|
|
8050
|
+
* `<button>` or `<tn-button>`) rendered inside a `<tn-step>` — including step
|
|
8051
|
+
* content that lives in a projected child component. The directive resolves the
|
|
8052
|
+
* stepper through the element injector.
|
|
8053
|
+
*
|
|
8054
|
+
* @example
|
|
8055
|
+
* ```html
|
|
8056
|
+
* <tn-button [tnStepperPrevious] [label]="'Back' | translate" />
|
|
8057
|
+
* ```
|
|
8058
|
+
*/
|
|
8059
|
+
declare class TnStepperPreviousDirective {
|
|
8060
|
+
protected stepper: TnStepperComponent;
|
|
8061
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnStepperPreviousDirective, never>;
|
|
8062
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TnStepperPreviousDirective, "[tnStepperPrevious]", never, {}, {}, never, never, true, never>;
|
|
8063
|
+
}
|
|
8064
|
+
|
|
8065
|
+
/**
|
|
8066
|
+
* Harness for interacting with `tn-stepper` in tests.
|
|
8067
|
+
*
|
|
8068
|
+
* @example
|
|
8069
|
+
* ```typescript
|
|
8070
|
+
* const stepper = await loader.getHarness(TnStepperHarness);
|
|
8071
|
+
* expect(await stepper.getStepLabels()).toEqual(['Provider', 'What and When']);
|
|
8072
|
+
* expect(await stepper.getSelectedIndex()).toBe(0);
|
|
8073
|
+
* await stepper.selectStep(1);
|
|
8074
|
+
* ```
|
|
8075
|
+
*/
|
|
8076
|
+
declare class TnStepperHarness extends ComponentHarness {
|
|
8077
|
+
/** The selector for the host element of a `TnStepperComponent` instance. */
|
|
8078
|
+
static hostSelector: string;
|
|
8079
|
+
/**
|
|
8080
|
+
* Gets a `HarnessPredicate` used to search for a stepper with specific attributes.
|
|
8081
|
+
*
|
|
8082
|
+
* @param options Options for filtering which stepper instances are considered a match.
|
|
8083
|
+
*/
|
|
8084
|
+
static with(options?: StepperHarnessFilters): HarnessPredicate<TnStepperHarness>;
|
|
8085
|
+
private headers;
|
|
8086
|
+
/** Gets the number of steps. */
|
|
8087
|
+
getStepCount(): Promise<number>;
|
|
8088
|
+
/** Gets all step labels as strings, in order. */
|
|
8089
|
+
getStepLabels(): Promise<string[]>;
|
|
8090
|
+
/** Gets the zero-based index of the currently selected step, or -1 if none. */
|
|
8091
|
+
getSelectedIndex(): Promise<number>;
|
|
8092
|
+
/** Whether the step at `index` is marked completed. */
|
|
8093
|
+
isStepCompleted(index: number): Promise<boolean>;
|
|
8094
|
+
/** Whether the step at `index` is marked as having an error. */
|
|
8095
|
+
isStepError(index: number): Promise<boolean>;
|
|
8096
|
+
/** Selects the step at `index` by clicking its header. Respects linear gating. */
|
|
8097
|
+
selectStep(index: number): Promise<void>;
|
|
8098
|
+
/** Gets the orientation of the stepper. */
|
|
8099
|
+
getOrientation(): Promise<'horizontal' | 'vertical'>;
|
|
8100
|
+
}
|
|
8101
|
+
/** A set of criteria for filtering a list of `TnStepperHarness` instances. */
|
|
8102
|
+
interface StepperHarnessFilters extends BaseHarnessFilters {
|
|
8103
|
+
/** Filters by stepper orientation. */
|
|
8104
|
+
orientation?: 'horizontal' | 'vertical';
|
|
8105
|
+
}
|
|
8106
|
+
|
|
8014
8107
|
declare class TnFilePickerComponent implements ControlValueAccessor, OnInit, OnDestroy {
|
|
8015
8108
|
mode: _angular_core.InputSignal<FilePickerMode>;
|
|
8016
8109
|
multiSelect: _angular_core.InputSignal<boolean>;
|
|
@@ -8729,5 +8822,5 @@ declare const TN_THEME_DEFINITIONS: readonly TnThemeDefinition[];
|
|
|
8729
8822
|
*/
|
|
8730
8823
|
declare const THEME_MAP: Map<TnTheme, TnThemeDefinition>;
|
|
8731
8824
|
|
|
8732
|
-
export { CommonShortcuts, DEFAULT_THEME, DiskIconComponent, DiskType, FileSizePipe, InputType, LIGHT_THEME, LabelMarkupPipe, LabelTextPipe, LinuxModifierKeys, LinuxShortcuts, ModifierKeys, QuickShortcuts, ShortcutBuilder, StripMntPrefixPipe, THEME_MAP, THEME_STORAGE_KEY, TN_FORM_FIELD_ERRORS, TN_TABLE_PAGER_DEFAULT_LABELS, TN_TABLE_PAGER_LABELS, TN_TEST_ATTR, TN_THEME_DEFINITIONS, TnAutocompleteComponent, TnAutocompleteHarness, TnBannerActionDirective, TnBannerComponent, TnBannerHarness, TnBrandedSpinnerComponent, TnButtonComponent, TnButtonHarness, TnButtonToggleComponent, TnButtonToggleGroupComponent, TnButtonToggleGroupHarness, TnButtonToggleHarness, TnCalendarComponent, TnCalendarHeaderComponent, TnCardComponent, TnCardFooterActionsDirective, TnCardHeaderActionsDirective, TnCardHeaderDirective, TnCellDefDirective, TnCheckboxComponent, TnCheckboxHarness, TnCheckboxLabelDirective, TnChipComponent, TnChipHarness, TnChipInputComponent, TnChipInputHarness, TnConfirmDialogComponent, TnDateInputComponent, TnDateInputHarness, TnDateRangeInputComponent, TnDateRangeInputHarness, TnDetailRowDefDirective, TnDialog, TnDialogHarness, TnDialogShellComponent, TnDialogTesting, TnDividerComponent, TnDividerDirective, TnDrawerComponent, TnDrawerContainerComponent, TnDrawerContainerHarness, TnDrawerContentComponent, TnDrawerHarness, TnEmptyComponent, TnEmptyHarness, TnExpansionPanelComponent, TnExpansionPanelHarness, TnFileInputComponent, TnFileInputHarness, TnFilePickerComponent, TnFilePickerPopupComponent, TnFormFieldComponent, TnFormFieldHarness, TnFormSectionComponent, TnFormSectionHarness, TnHeaderCellDefDirective, TnIconButtonComponent, TnIconButtonHarness, TnIconComponent, TnIconHarness, TnIconRegistryService, TnIconTesting, TnInputComponent, TnInputDirective, TnInputHarness, TnKeyboardShortcutComponent, TnKeyboardShortcutService, TnListAvatarDirective, TnListComponent, TnListIconDirective, TnListItemComponent, TnListItemLineDirective, TnListItemPrimaryDirective, TnListItemSecondaryDirective, TnListItemTitleDirective, TnListItemTrailingDirective, TnListOptionComponent, TnListSubheaderComponent, TnMenuActivateHoverDirective, TnMenuComponent, TnMenuHarness, TnMenuItemComponent, TnMenuTesting, TnMenuTriggerDirective, TnMonthViewComponent, TnMultiYearViewComponent, TnNestedTreeNodeComponent, TnParticleProgressBarComponent, TnProgressBarComponent, TnRadioComponent, TnRadioHarness, TnSelectComponent, TnSelectHarness, TnSelectionListComponent, TnSidePanelActionDirective, TnSidePanelComponent, TnSidePanelHarness, TnSidePanelHeaderActionDirective, TnSlideToggleComponent, TnSlideToggleHarness, TnSliderComponent, TnSliderThumbDirective, TnSliderWithLabelDirective, TnSpinnerComponent, TnSpriteLoaderService, TnStepComponent, TnStepperComponent, TnTabComponent, TnTabHarness, TnTabPanelComponent, TnTabPanelHarness, TnTableColumnDirective, TnTableComponent, TnTableHarness, TnTablePagerComponent, TnTablePagerHarness, TnTabsComponent, TnTabsHarness, TnTestIdDirective, TnTheme, TnThemeService, TnTimeInputComponent, TnToastComponent, TnToastMock, TnToastPosition, TnToastRef, TnToastService, TnToastTesting, TnToastType, TnTooltipComponent, TnTooltipDirective, TnTreeComponent, TnTreeFlatDataSource, TnTreeFlattener, TnTreeNodeComponent, TnTreeNodeOutletDirective, TruncatePathPipe, WindowsModifierKeys, WindowsShortcuts, composeTestId, controlTestId, createLucideLibrary, createShortcut, defaultSpriteBasePath, defaultSpriteConfigPath, formatSize, kebabTestSegment, labelMarkupToHtml, labelMarkupToText, libIconMarker, parseLabelMarkup, parseSize, registerLucideIcons, scopeTestId, setupLucideIntegration, tnIconMarker, writeTestId };
|
|
8733
|
-
export type { AutocompleteHarnessFilters, BannerHarnessFilters, ButtonHarnessFilters, ButtonToggleHarnessFilters, CalendarCell, CheckboxHarnessFilters, ChipColor, ChipHarnessFilters, CreateFolderEvent, DateInputHarnessFilters, DateRange, DateRangeInputHarnessFilters, DialogHarnessFilters, EmptyHarnessFilters, ExpansionPanelHarnessFilters, FileInputHarnessFilters, FilePickerCallbacks, FilePickerError, FilePickerMode, FileSystemItem, FormFieldHarnessFilters, FormSectionHarnessFilters, IconButtonHarnessFilters, IconHarnessFilters, IconLibrary, IconLibraryType, IconResult, IconSize, IconSource, IconTestingMockOverrides, InputHarnessFilters, KeyCombination, LabelMarkupSegment, LabelMarkupSegmentType, LabelType, LucideIconOptions, MenuHarnessFilters, MockIconRegistry, MockSpriteLoader, PathSegment, PlatformType, ProgressBarMode, RadioHarnessFilters, ResolvedIcon, SelectHarnessFilters, ShortcutHandler, SidePanelHarnessFilters, SizeStandard, SlideToggleColor, SlideToggleHarnessFilters, SpinnerMode, SpriteConfig, SubscriptSizing, TabChangeEvent, TabHarnessFilters, TabPanelHarnessFilters, TabsHarnessFilters, TnAutocompleteOption, TnBannerType, TnButtonToggleType, TnCardAction, TnCardControl, TnCardFooterLink, TnCardHeaderStatus, TnChipInputHarnessFilters, TnChipInputOption, TnConfirmDialogData, TnDialogDefaults, TnDialogOpenTarget, TnDrawerMode, TnDrawerPosition, TnEmptySize, TnFlatTreeNode, TnFormFieldErrorMessage, TnFormFieldErrorMessages, TnFormFieldErrorResolver, TnMenuItem, TnSelectOption, TnSelectOptionGroup, TnSelectionChange, TnSortEvent, TnTableDataProvider, TnTableDataSource, TnTableHarnessFilters, TnTablePagerHarnessFilters, TnTablePagerLabels, TnTablePagination, TnTestAttrName, TnTestIdValue, TnThemeDefinition, TnToastCall, TnToastConfig, TooltipPosition, YearCell };
|
|
8825
|
+
export { CommonShortcuts, DEFAULT_THEME, DiskIconComponent, DiskType, FileSizePipe, InputType, LIGHT_THEME, LabelMarkupPipe, LabelTextPipe, LinuxModifierKeys, LinuxShortcuts, ModifierKeys, QuickShortcuts, ShortcutBuilder, StripMntPrefixPipe, THEME_MAP, THEME_STORAGE_KEY, TN_FORM_FIELD_ERRORS, TN_TABLE_PAGER_DEFAULT_LABELS, TN_TABLE_PAGER_LABELS, TN_TEST_ATTR, TN_THEME_DEFINITIONS, TnAutocompleteComponent, TnAutocompleteHarness, TnBannerActionDirective, TnBannerComponent, TnBannerHarness, TnBrandedSpinnerComponent, TnButtonComponent, TnButtonHarness, TnButtonToggleComponent, TnButtonToggleGroupComponent, TnButtonToggleGroupHarness, TnButtonToggleHarness, TnCalendarComponent, TnCalendarHeaderComponent, TnCardComponent, TnCardFooterActionsDirective, TnCardHeaderActionsDirective, TnCardHeaderDirective, TnCellDefDirective, TnCheckboxComponent, TnCheckboxHarness, TnCheckboxLabelDirective, TnChipComponent, TnChipHarness, TnChipInputComponent, TnChipInputHarness, TnConfirmDialogComponent, TnDateInputComponent, TnDateInputHarness, TnDateRangeInputComponent, TnDateRangeInputHarness, TnDetailRowDefDirective, TnDialog, TnDialogHarness, TnDialogShellComponent, TnDialogTesting, TnDividerComponent, TnDividerDirective, TnDrawerComponent, TnDrawerContainerComponent, TnDrawerContainerHarness, TnDrawerContentComponent, TnDrawerHarness, TnEmptyComponent, TnEmptyHarness, TnExpansionPanelComponent, TnExpansionPanelHarness, TnFileInputComponent, TnFileInputHarness, TnFilePickerComponent, TnFilePickerPopupComponent, TnFormFieldComponent, TnFormFieldHarness, TnFormSectionComponent, TnFormSectionHarness, TnHeaderCellDefDirective, TnIconButtonComponent, TnIconButtonHarness, TnIconComponent, TnIconHarness, TnIconRegistryService, TnIconTesting, TnInputComponent, TnInputDirective, TnInputHarness, TnKeyboardShortcutComponent, TnKeyboardShortcutService, TnListAvatarDirective, TnListComponent, TnListIconDirective, TnListItemComponent, TnListItemLineDirective, TnListItemPrimaryDirective, TnListItemSecondaryDirective, TnListItemTitleDirective, TnListItemTrailingDirective, TnListOptionComponent, TnListSubheaderComponent, TnMenuActivateHoverDirective, TnMenuComponent, TnMenuHarness, TnMenuItemComponent, TnMenuTesting, TnMenuTriggerDirective, TnMonthViewComponent, TnMultiYearViewComponent, TnNestedTreeNodeComponent, TnParticleProgressBarComponent, TnProgressBarComponent, TnRadioComponent, TnRadioHarness, TnSelectComponent, TnSelectHarness, TnSelectionListComponent, TnSidePanelActionDirective, TnSidePanelComponent, TnSidePanelHarness, TnSidePanelHeaderActionDirective, TnSlideToggleComponent, TnSlideToggleHarness, TnSliderComponent, TnSliderThumbDirective, TnSliderWithLabelDirective, TnSpinnerComponent, TnSpriteLoaderService, TnStepComponent, TnStepperComponent, TnStepperHarness, TnStepperNextDirective, TnStepperPreviousDirective, TnTabComponent, TnTabHarness, TnTabPanelComponent, TnTabPanelHarness, TnTableColumnDirective, TnTableComponent, TnTableHarness, TnTablePagerComponent, TnTablePagerHarness, TnTabsComponent, TnTabsHarness, TnTestIdDirective, TnTheme, TnThemeService, TnTimeInputComponent, TnToastComponent, TnToastMock, TnToastPosition, TnToastRef, TnToastService, TnToastTesting, TnToastType, TnTooltipComponent, TnTooltipDirective, TnTreeComponent, TnTreeFlatDataSource, TnTreeFlattener, TnTreeNodeComponent, TnTreeNodeOutletDirective, TruncatePathPipe, WindowsModifierKeys, WindowsShortcuts, composeTestId, controlTestId, createLucideLibrary, createShortcut, defaultSpriteBasePath, defaultSpriteConfigPath, formatSize, kebabTestSegment, labelMarkupToHtml, labelMarkupToText, libIconMarker, parseLabelMarkup, parseSize, registerLucideIcons, scopeTestId, setupLucideIntegration, tnIconMarker, writeTestId };
|
|
8826
|
+
export type { AutocompleteHarnessFilters, BannerHarnessFilters, ButtonHarnessFilters, ButtonToggleHarnessFilters, CalendarCell, CheckboxHarnessFilters, ChipColor, ChipHarnessFilters, CreateFolderEvent, DateInputHarnessFilters, DateRange, DateRangeInputHarnessFilters, DialogHarnessFilters, EmptyHarnessFilters, ExpansionPanelHarnessFilters, FileInputHarnessFilters, FilePickerCallbacks, FilePickerError, FilePickerMode, FileSystemItem, FormFieldHarnessFilters, FormSectionHarnessFilters, IconButtonHarnessFilters, IconHarnessFilters, IconLibrary, IconLibraryType, IconResult, IconSize, IconSource, IconTestingMockOverrides, InputHarnessFilters, KeyCombination, LabelMarkupSegment, LabelMarkupSegmentType, LabelType, LucideIconOptions, MenuHarnessFilters, MockIconRegistry, MockSpriteLoader, PathSegment, PlatformType, ProgressBarMode, RadioHarnessFilters, ResolvedIcon, SelectHarnessFilters, ShortcutHandler, SidePanelHarnessFilters, SizeStandard, SlideToggleColor, SlideToggleHarnessFilters, SpinnerMode, SpriteConfig, StepperHarnessFilters, SubscriptSizing, TabChangeEvent, TabHarnessFilters, TabPanelHarnessFilters, TabsHarnessFilters, TnAutocompleteOption, TnBannerType, TnButtonToggleType, TnCardAction, TnCardControl, TnCardFooterLink, TnCardHeaderStatus, TnChipInputHarnessFilters, TnChipInputOption, TnConfirmDialogData, TnDialogDefaults, TnDialogOpenTarget, TnDrawerMode, TnDrawerPosition, TnEmptySize, TnFlatTreeNode, TnFormFieldErrorMessage, TnFormFieldErrorMessages, TnFormFieldErrorResolver, TnMenuItem, TnSelectOption, TnSelectOptionGroup, TnSelectionChange, TnSortEvent, TnTableDataProvider, TnTableDataSource, TnTableHarnessFilters, TnTablePagerHarnessFilters, TnTablePagerLabels, TnTablePagination, TnTestAttrName, TnTestIdValue, TnThemeDefinition, TnToastCall, TnToastConfig, TooltipPosition, YearCell };
|