@truenas/ui-components 0.1.41 → 0.1.43

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truenas/ui-components",
3
- "version": "0.1.41",
3
+ "version": "0.1.43",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"
@@ -1,10 +1,10 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { ElementRef, OnDestroy, AfterViewInit, AfterContentInit, TemplateRef, Provider, ChangeDetectorRef, PipeTransform, OnInit, ViewContainerRef, AfterViewChecked, ComponentRef } from '@angular/core';
2
+ import { ElementRef, OnDestroy, AfterViewInit, AfterContentInit, TemplateRef, Provider, ChangeDetectorRef, OnInit, PipeTransform, ViewContainerRef, AfterViewChecked, ComponentRef } from '@angular/core';
3
3
  import { ControlValueAccessor, NgControl } from '@angular/forms';
4
4
  import { ComponentHarness, BaseHarnessFilters, HarnessPredicate, HarnessLoader } from '@angular/cdk/testing';
5
5
  import { SafeHtml, SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
6
6
  import { ComponentFixture } from '@angular/core/testing';
7
- import { DataSource } from '@angular/cdk/collections';
7
+ import { SelectionModel, DataSource } from '@angular/cdk/collections';
8
8
  import * as i1 from '@angular/cdk/tree';
9
9
  import { CdkTree, FlatTreeControl, CdkTreeNode, CdkNestedTreeNode } from '@angular/cdk/tree';
10
10
  export { FlatTreeControl } from '@angular/cdk/tree';
@@ -3490,10 +3490,31 @@ declare class TnCellDefDirective {
3490
3490
  }
3491
3491
  declare class TnTableColumnDirective {
3492
3492
  name: _angular_core.InputSignal<string>;
3493
+ sortable: _angular_core.InputSignal<boolean>;
3494
+ width: _angular_core.InputSignal<string | undefined>;
3493
3495
  headerTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
3494
3496
  cellTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;
3495
3497
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnTableColumnDirective, never>;
3496
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TnTableColumnDirective, "[tnColumnDef]", ["tnColumnDef"], { "name": { "alias": "tnColumnDef"; "required": true; "isSignal": true; }; }, {}, ["headerTemplate", "cellTemplate"], never, true, never>;
3498
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TnTableColumnDirective, "[tnColumnDef]", ["tnColumnDef"], { "name": { "alias": "tnColumnDef"; "required": true; "isSignal": true; }; "sortable": { "alias": "sortable"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, ["headerTemplate", "cellTemplate"], never, true, never>;
3499
+ }
3500
+ /**
3501
+ * Directive to define the expandable detail row template.
3502
+ * Place inside `tn-table` to provide expanded content for each row.
3503
+ *
3504
+ * @example
3505
+ * ```html
3506
+ * <tn-table [dataSource]="data" [displayedColumns]="columns" [expandable]="true">
3507
+ * ...column defs...
3508
+ * <ng-template tnDetailRowDef let-row>
3509
+ * <p>Details for {{ row.name }}</p>
3510
+ * </ng-template>
3511
+ * </tn-table>
3512
+ * ```
3513
+ */
3514
+ declare class TnDetailRowDefDirective {
3515
+ template: TemplateRef<any>;
3516
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnDetailRowDefDirective, never>;
3517
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TnDetailRowDefDirective, "[tnDetailRowDef]", never, {}, {}, never, never, true, never>;
3497
3518
  }
3498
3519
 
3499
3520
  interface TnTableDataSource<T = unknown> {
@@ -3501,20 +3522,192 @@ interface TnTableDataSource<T = unknown> {
3501
3522
  connect?(): T[];
3502
3523
  disconnect?(): void;
3503
3524
  }
3504
- declare class TnTableComponent<T = unknown> {
3525
+ interface TnSortEvent {
3526
+ column: string;
3527
+ direction: 'asc' | 'desc' | '';
3528
+ }
3529
+ declare class TnTableComponent<T = unknown> implements OnInit {
3530
+ private destroyRef;
3505
3531
  dataSource: _angular_core.InputSignal<TnTableDataSource<T> | T[]>;
3506
3532
  displayedColumns: _angular_core.InputSignal<string[]>;
3533
+ trackBy: _angular_core.InputSignal<((index: number, item: T) => unknown) | undefined>;
3534
+ emptyMessage: _angular_core.InputSignal<string>;
3535
+ emptyIcon: _angular_core.InputSignal<string>;
3536
+ selectable: _angular_core.InputSignal<boolean>;
3537
+ expandable: _angular_core.InputSignal<boolean>;
3538
+ sortChange: _angular_core.OutputEmitterRef<TnSortEvent>;
3539
+ selectionChange: _angular_core.OutputEmitterRef<T[]>;
3507
3540
  columnDefs: _angular_core.Signal<readonly TnTableColumnDirective[]>;
3541
+ detailRowDef: _angular_core.Signal<TnDetailRowDefDirective | undefined>;
3542
+ sortColumn: _angular_core.WritableSignal<string>;
3543
+ sortDirection: _angular_core.WritableSignal<"" | "desc" | "asc">;
3544
+ /**
3545
+ * Set of currently expanded row references.
3546
+ * Note: uses object identity. If the consumer replaces the data array
3547
+ * (e.g. after sorting), expanded state is lost. A future key-based
3548
+ * approach could address this.
3549
+ */
3550
+ expandedRows: _angular_core.WritableSignal<Set<unknown>>;
3551
+ selection: SelectionModel<T>;
3552
+ private selectionCount;
3553
+ private initialized;
3508
3554
  private columnDefMap;
3509
- private cdr;
3510
3555
  constructor();
3511
- private processColumnDefs;
3556
+ ngOnInit(): void;
3512
3557
  data: _angular_core.Signal<T[]>;
3558
+ effectiveDisplayedColumns: _angular_core.Signal<string[]>;
3559
+ isAllSelected: _angular_core.Signal<boolean>;
3560
+ isIndeterminate: _angular_core.Signal<boolean>;
3561
+ trackByFn: _angular_core.Signal<(index: number, item: T) => unknown>;
3562
+ onSortClick(column: string): void;
3563
+ getSortIcon(column: string): string;
3564
+ getExpandIcon(row: T): string;
3565
+ isSorted(column: string): boolean;
3566
+ toggleRowExpansion(row: T): void;
3567
+ isRowExpanded(row: T): boolean;
3568
+ toggleSelectAll(): void;
3569
+ toggleRowSelection(row: T): void;
3570
+ isRowSelected(row: T): boolean;
3513
3571
  getColumnDef(columnName: string): TnTableColumnDirective | undefined;
3514
- trackByIndex(index: number): number;
3515
3572
  getCellValue(row: T, column: string): unknown;
3516
3573
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnTableComponent<any>, never>;
3517
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnTableComponent<any>, "tn-table", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; }, {}, ["columnDefs"], never, true, never>;
3574
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnTableComponent<any>, "tn-table", never, { "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "displayedColumns": { "alias": "displayedColumns"; "required": false; "isSignal": true; }; "trackBy": { "alias": "trackBy"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "emptyIcon": { "alias": "emptyIcon"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; }, { "sortChange": "sortChange"; "selectionChange": "selectionChange"; }, ["columnDefs", "detailRowDef"], never, true, never>;
3575
+ }
3576
+
3577
+ /**
3578
+ * Harness for interacting with `tn-table` in tests.
3579
+ * Provides methods for querying rows/cells, sorting, selecting, and expanding.
3580
+ *
3581
+ * @example
3582
+ * ```typescript
3583
+ * const table = await loader.getHarness(TnTableHarness);
3584
+ * expect(await table.getRowCount()).toBe(5);
3585
+ *
3586
+ * await table.clickSortHeader('name');
3587
+ * expect(await table.getSortDirection('name')).toBe('ascending');
3588
+ *
3589
+ * await table.toggleRowExpansion(0);
3590
+ * expect(await table.isRowExpanded(0)).toBe(true);
3591
+ * ```
3592
+ */
3593
+ declare class TnTableHarness extends ComponentHarness {
3594
+ static hostSelector: string;
3595
+ /**
3596
+ * Gets a `HarnessPredicate` that can be used to search for a table
3597
+ * with specific attributes.
3598
+ *
3599
+ * @param options Options for filtering which instances are considered a match.
3600
+ * @returns A `HarnessPredicate` configured with the given options.
3601
+ */
3602
+ static with(options?: TnTableHarnessFilters): HarnessPredicate<TnTableHarness>;
3603
+ /**
3604
+ * Gets the number of data rows (excludes header and detail rows).
3605
+ *
3606
+ * @returns Promise resolving to the row count.
3607
+ */
3608
+ getRowCount(): Promise<number>;
3609
+ /**
3610
+ * Gets the text content of header cells (excludes sort icons).
3611
+ *
3612
+ * @returns Promise resolving to an array of header text strings.
3613
+ */
3614
+ getHeaderTexts(): Promise<string[]>;
3615
+ /**
3616
+ * Gets the text of all data-column cells in a specific row.
3617
+ *
3618
+ * @param rowIndex Zero-based index of the data row.
3619
+ * @returns Promise resolving to an array of cell text strings.
3620
+ */
3621
+ getRowTexts(rowIndex: number): Promise<string[]>;
3622
+ /**
3623
+ * Gets the text of a specific cell by row and column.
3624
+ *
3625
+ * @param rowIndex Zero-based index of the data row.
3626
+ * @param columnName The column's data-column attribute value.
3627
+ * @returns Promise resolving to the cell text.
3628
+ */
3629
+ getCellText(rowIndex: number, columnName: string): Promise<string>;
3630
+ /**
3631
+ * Gets all row texts as a 2D string array (data-column cells only).
3632
+ *
3633
+ * @returns Promise resolving to an array of row text arrays.
3634
+ */
3635
+ getAllRowTexts(): Promise<string[][]>;
3636
+ /**
3637
+ * Clicks a sortable column header to cycle sort direction.
3638
+ *
3639
+ * @param columnName The column's data-column attribute value.
3640
+ */
3641
+ clickSortHeader(columnName: string): Promise<void>;
3642
+ /**
3643
+ * Checks whether a column header has the sortable class.
3644
+ *
3645
+ * @param columnName The column's data-column attribute value.
3646
+ * @returns Promise resolving to true if the column is sortable.
3647
+ */
3648
+ isSortable(columnName: string): Promise<boolean>;
3649
+ /**
3650
+ * Gets the current sort direction for a column via aria-sort.
3651
+ *
3652
+ * @param columnName The column's data-column attribute value.
3653
+ * @returns Promise resolving to 'ascending', 'descending', or null.
3654
+ */
3655
+ getSortDirection(columnName: string): Promise<string | null>;
3656
+ /**
3657
+ * Clicks the select-all checkbox in the header.
3658
+ */
3659
+ toggleSelectAll(): Promise<void>;
3660
+ /**
3661
+ * Toggles selection for a specific row by clicking its checkbox cell.
3662
+ *
3663
+ * @param rowIndex Zero-based index of the data row.
3664
+ */
3665
+ toggleRowSelection(rowIndex: number): Promise<void>;
3666
+ /**
3667
+ * Checks if a specific row's checkbox is checked.
3668
+ *
3669
+ * @param rowIndex Zero-based index of the data row.
3670
+ * @returns Promise resolving to true if the row's checkbox is checked.
3671
+ */
3672
+ isRowSelected(rowIndex: number): Promise<boolean>;
3673
+ /**
3674
+ * Gets the count of currently selected rows.
3675
+ *
3676
+ * @returns Promise resolving to the number of checked row checkboxes.
3677
+ */
3678
+ getSelectedRowCount(): Promise<number>;
3679
+ /**
3680
+ * Clicks the expand button for a specific row.
3681
+ *
3682
+ * @param rowIndex Zero-based index of the data row.
3683
+ */
3684
+ toggleRowExpansion(rowIndex: number): Promise<void>;
3685
+ /**
3686
+ * Checks if a data row is currently expanded.
3687
+ *
3688
+ * @param rowIndex Zero-based index of the data row.
3689
+ * @returns Promise resolving to true if the row has the expanded class.
3690
+ */
3691
+ isRowExpanded(rowIndex: number): Promise<boolean>;
3692
+ /**
3693
+ * Gets the text content of an expanded detail row.
3694
+ *
3695
+ * @param detailIndex Zero-based index among currently visible detail rows.
3696
+ * @returns Promise resolving to the detail row text.
3697
+ */
3698
+ getDetailRowContent(detailIndex: number): Promise<string>;
3699
+ /**
3700
+ * Gets the count of currently expanded detail rows.
3701
+ *
3702
+ * @returns Promise resolving to the number of visible detail rows.
3703
+ */
3704
+ getExpandedRowCount(): Promise<number>;
3705
+ private assertRowExists;
3706
+ }
3707
+ /**
3708
+ * Filters for finding `TnTableHarness` instances.
3709
+ */
3710
+ interface TnTableHarnessFilters extends BaseHarnessFilters {
3518
3711
  }
3519
3712
 
3520
3713
  /** Flat node with expandable and level information */
@@ -5840,5 +6033,5 @@ declare const TN_THEME_DEFINITIONS: readonly TnThemeDefinition[];
5840
6033
  */
5841
6034
  declare const THEME_MAP: Map<TnTheme, TnThemeDefinition>;
5842
6035
 
5843
- export { CommonShortcuts, DEFAULT_THEME, DiskIconComponent, DiskType, FileSizePipe, InputType, LIGHT_THEME, LinuxModifierKeys, LinuxShortcuts, ModifierKeys, QuickShortcuts, ShortcutBuilder, StripMntPrefixPipe, THEME_MAP, THEME_STORAGE_KEY, TN_THEME_DEFINITIONS, TnAutocompleteComponent, TnAutocompleteHarness, TnBannerActionDirective, TnBannerComponent, TnBannerHarness, TnBrandedSpinnerComponent, TnButtonComponent, TnButtonHarness, TnButtonToggleComponent, TnButtonToggleGroupComponent, TnButtonToggleGroupHarness, TnButtonToggleHarness, TnCalendarComponent, TnCalendarHeaderComponent, TnCardComponent, TnCellDefDirective, TnCheckboxComponent, TnCheckboxHarness, TnCheckboxLabelDirective, TnChipComponent, TnConfirmDialogComponent, TnDateInputComponent, TnDateInputHarness, TnDateRangeInputComponent, TnDateRangeInputHarness, TnDialog, TnDialogHarness, TnDialogShellComponent, TnDialogTesting, TnDividerComponent, TnDividerDirective, TnDrawerComponent, TnDrawerContainerComponent, TnDrawerContainerHarness, TnDrawerContentComponent, TnDrawerHarness, TnEmptyComponent, TnEmptyHarness, TnExpansionPanelComponent, TnExpansionPanelHarness, TnFilePickerComponent, TnFilePickerPopupComponent, TnFormFieldComponent, TnFormFieldHarness, 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, 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, TnTabsComponent, TnTabsHarness, TnTheme, TnThemeService, TnTimeInputComponent, TnToastComponent, TnToastMock, TnToastPosition, TnToastRef, TnToastService, TnToastTesting, TnToastType, TnTooltipComponent, TnTooltipDirective, TnTreeComponent, TnTreeFlatDataSource, TnTreeFlattener, TnTreeNodeComponent, TnTreeNodeOutletDirective, TruncatePathPipe, WindowsModifierKeys, WindowsShortcuts, createLucideLibrary, createShortcut, defaultSpriteBasePath, defaultSpriteConfigPath, libIconMarker, registerLucideIcons, setupLucideIntegration, tnIconMarker };
5844
- export type { AutocompleteHarnessFilters, BannerHarnessFilters, ButtonHarnessFilters, ButtonToggleHarnessFilters, CalendarCell, CheckboxHarnessFilters, ChipColor, CreateFolderEvent, DateInputHarnessFilters, DateRange, DateRangeInputHarnessFilters, DialogHarnessFilters, EmptyHarnessFilters, ExpansionPanelHarnessFilters, FilePickerCallbacks, FilePickerError, FilePickerMode, FileSystemItem, FormFieldHarnessFilters, IconButtonHarnessFilters, IconHarnessFilters, IconLibrary, IconLibraryType, IconResult, IconSize, IconSource, IconTestingMockOverrides, InputHarnessFilters, KeyCombination, LabelType, LucideIconOptions, MenuHarnessFilters, MockIconRegistry, MockSpriteLoader, PathSegment, PlatformType, ProgressBarMode, RadioHarnessFilters, ResolvedIcon, SelectHarnessFilters, ShortcutHandler, SidePanelHarnessFilters, SlideToggleColor, SlideToggleHarnessFilters, SpinnerMode, SpriteConfig, TabChangeEvent, TabHarnessFilters, TabPanelHarnessFilters, TabsHarnessFilters, TnBannerType, TnButtonToggleType, TnCardAction, TnCardControl, TnCardFooterLink, TnCardHeaderStatus, TnConfirmDialogData, TnDialogDefaults, TnDialogOpenTarget, TnDrawerMode, TnDrawerPosition, TnEmptySize, TnFlatTreeNode, TnMenuItem, TnSelectOption, TnSelectOptionGroup, TnSelectionChange, TnTableDataSource, TnThemeDefinition, TnToastCall, TnToastConfig, TooltipPosition, YearCell };
6036
+ export { CommonShortcuts, DEFAULT_THEME, DiskIconComponent, DiskType, FileSizePipe, InputType, LIGHT_THEME, LinuxModifierKeys, LinuxShortcuts, ModifierKeys, QuickShortcuts, ShortcutBuilder, StripMntPrefixPipe, THEME_MAP, THEME_STORAGE_KEY, TN_THEME_DEFINITIONS, TnAutocompleteComponent, TnAutocompleteHarness, TnBannerActionDirective, TnBannerComponent, TnBannerHarness, TnBrandedSpinnerComponent, TnButtonComponent, TnButtonHarness, TnButtonToggleComponent, TnButtonToggleGroupComponent, TnButtonToggleGroupHarness, TnButtonToggleHarness, TnCalendarComponent, TnCalendarHeaderComponent, TnCardComponent, TnCellDefDirective, TnCheckboxComponent, TnCheckboxHarness, TnCheckboxLabelDirective, TnChipComponent, TnConfirmDialogComponent, TnDateInputComponent, TnDateInputHarness, TnDateRangeInputComponent, TnDateRangeInputHarness, TnDetailRowDefDirective, TnDialog, TnDialogHarness, TnDialogShellComponent, TnDialogTesting, TnDividerComponent, TnDividerDirective, TnDrawerComponent, TnDrawerContainerComponent, TnDrawerContainerHarness, TnDrawerContentComponent, TnDrawerHarness, TnEmptyComponent, TnEmptyHarness, TnExpansionPanelComponent, TnExpansionPanelHarness, TnFilePickerComponent, TnFilePickerPopupComponent, TnFormFieldComponent, TnFormFieldHarness, 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, 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, TnTabsComponent, TnTabsHarness, TnTheme, TnThemeService, TnTimeInputComponent, TnToastComponent, TnToastMock, TnToastPosition, TnToastRef, TnToastService, TnToastTesting, TnToastType, TnTooltipComponent, TnTooltipDirective, TnTreeComponent, TnTreeFlatDataSource, TnTreeFlattener, TnTreeNodeComponent, TnTreeNodeOutletDirective, TruncatePathPipe, WindowsModifierKeys, WindowsShortcuts, createLucideLibrary, createShortcut, defaultSpriteBasePath, defaultSpriteConfigPath, libIconMarker, registerLucideIcons, setupLucideIntegration, tnIconMarker };
6037
+ export type { AutocompleteHarnessFilters, BannerHarnessFilters, ButtonHarnessFilters, ButtonToggleHarnessFilters, CalendarCell, CheckboxHarnessFilters, ChipColor, CreateFolderEvent, DateInputHarnessFilters, DateRange, DateRangeInputHarnessFilters, DialogHarnessFilters, EmptyHarnessFilters, ExpansionPanelHarnessFilters, FilePickerCallbacks, FilePickerError, FilePickerMode, FileSystemItem, FormFieldHarnessFilters, IconButtonHarnessFilters, IconHarnessFilters, IconLibrary, IconLibraryType, IconResult, IconSize, IconSource, IconTestingMockOverrides, InputHarnessFilters, KeyCombination, LabelType, LucideIconOptions, MenuHarnessFilters, MockIconRegistry, MockSpriteLoader, PathSegment, PlatformType, ProgressBarMode, RadioHarnessFilters, ResolvedIcon, SelectHarnessFilters, ShortcutHandler, SidePanelHarnessFilters, SlideToggleColor, SlideToggleHarnessFilters, SpinnerMode, SpriteConfig, TabChangeEvent, TabHarnessFilters, TabPanelHarnessFilters, TabsHarnessFilters, TnBannerType, TnButtonToggleType, TnCardAction, TnCardControl, TnCardFooterLink, TnCardHeaderStatus, TnConfirmDialogData, TnDialogDefaults, TnDialogOpenTarget, TnDrawerMode, TnDrawerPosition, TnEmptySize, TnFlatTreeNode, TnMenuItem, TnSelectOption, TnSelectOptionGroup, TnSelectionChange, TnSortEvent, TnTableDataSource, TnTableHarnessFilters, TnThemeDefinition, TnToastCall, TnToastConfig, TooltipPosition, YearCell };