@truenas/ui-components 0.3.4 → 0.3.6

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.3.4",
3
+ "version": "0.3.6",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"
@@ -1,7 +1,7 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { InjectionToken, Renderer2, OnDestroy, ElementRef, AfterViewInit, OnInit, TemplateRef, AfterContentInit, Provider, ChangeDetectorRef, Signal, PipeTransform, ViewContainerRef, AfterViewChecked, ComponentRef } from '@angular/core';
3
3
  import { ControlValueAccessor, NgControl, AbstractControl } from '@angular/forms';
4
- import { ComponentHarness, BaseHarnessFilters, HarnessPredicate, HarnessLoader } from '@angular/cdk/testing';
4
+ import { ComponentHarness, BaseHarnessFilters, HarnessPredicate, TestKey, HarnessLoader } from '@angular/cdk/testing';
5
5
  import { SafeHtml, SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
6
6
  import { ComponentFixture } from '@angular/core/testing';
7
7
  import * as _truenas_ui_components from '@truenas/ui-components';
@@ -2293,6 +2293,198 @@ interface ChipHarnessFilters extends BaseHarnessFilters {
2293
2293
  label?: string | RegExp;
2294
2294
  }
2295
2295
 
2296
+ /**
2297
+ * An editable, multi-value chip input — tokenized entry where typed text
2298
+ * becomes removable `tn-chip`s alongside an inline text field. Text is
2299
+ * committed to a chip on Enter (or a configurable separator key); Backspace on
2300
+ * an empty field removes the last chip.
2301
+ *
2302
+ * It is a `ControlValueAccessor` over `string[]`, so it drops into a reactive
2303
+ * or template-driven form (`[formControl]`, `[(ngModel)]`) and slots into a
2304
+ * `tn-form-field` as a real projected control — the field's required/error
2305
+ * inference reads this control directly.
2306
+ *
2307
+ * Suggestions are optional: pass `[suggestions]` for a static list, or drive
2308
+ * them asynchronously by listening to `(searchChange)` and updating
2309
+ * `[suggestions]` as results arrive. The dropdown is portaled through a CDK
2310
+ * overlay so it escapes any ancestor `overflow: hidden` (cards, side panels).
2311
+ *
2312
+ * @example
2313
+ * ```html
2314
+ * <tn-form-field label="Tags">
2315
+ * <tn-chip-input [formControl]="tags" placeholder="Add a tag…" />
2316
+ * </tn-form-field>
2317
+ * ```
2318
+ */
2319
+ declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2320
+ private readonly overlay;
2321
+ private readonly viewContainerRef;
2322
+ /** Unique instance id for ARIA linkage between the input and its dropdown. */
2323
+ protected readonly uid: string;
2324
+ /** Placeholder shown in the text field when it is empty. */
2325
+ placeholder: _angular_core.InputSignal<string>;
2326
+ /** Disables the whole control — chips become non-removable and the field read-only. */
2327
+ disabled: _angular_core.InputSignal<boolean>;
2328
+ /**
2329
+ * Keys that commit the current text as a chip, in addition to `Enter`.
2330
+ * Defaults to `Enter` plus comma. A separator key press never inserts its
2331
+ * own character.
2332
+ */
2333
+ separatorKeys: _angular_core.InputSignal<string[]>;
2334
+ /** Commit a pending (non-empty) text value as a chip when the field loses focus. */
2335
+ addOnBlur: _angular_core.InputSignal<boolean>;
2336
+ /**
2337
+ * Whether free text not present in `suggestions` may be committed. Defaults to
2338
+ * `true` — any typed value becomes a chip. Set `false` to restrict the field
2339
+ * to its suggestion list (a "pick from the list" control): a commit only
2340
+ * succeeds when the text matches a suggestion (case-insensitively, committing
2341
+ * the suggestion's canonical casing); unmatched text is discarded. Mirrors
2342
+ * `tn-autocomplete`'s `allowCustomValue`. With no `suggestions`, nothing can be
2343
+ * added.
2344
+ */
2345
+ allowCustomValue: _angular_core.InputSignal<boolean>;
2346
+ /**
2347
+ * Allow the same value to be added more than once. Off by default.
2348
+ * Duplicate detection is exact-match (case-sensitive), so with this off
2349
+ * `Angular` and `angular` are still distinct values — only suggestion
2350
+ * *filtering* is case-insensitive.
2351
+ */
2352
+ allowDuplicates: _angular_core.InputSignal<boolean>;
2353
+ /** Hard cap on the number of chips; `undefined` means no limit. */
2354
+ maxChips: _angular_core.InputSignal<number | undefined>;
2355
+ /**
2356
+ * Optional suggestion list. When non-empty, a dropdown offers entries that
2357
+ * match the typed text and are not already selected. For async sources,
2358
+ * update this in response to `(searchChange)`.
2359
+ */
2360
+ suggestions: _angular_core.InputSignal<string[]>;
2361
+ /** Accessible name for the text field. Leave unset inside a `tn-form-field`. */
2362
+ ariaLabel: _angular_core.InputSignal<string | undefined>;
2363
+ /**
2364
+ * Semantic test-id base. The library prepends the `chip-input` element type
2365
+ * (e.g. `testId="tags"` → `chip-input-tags`); each chip and suggestion is
2366
+ * scoped beneath it.
2367
+ */
2368
+ testId: _angular_core.InputSignal<TnTestIdValue>;
2369
+ /** Emits the committed value whenever a chip is added. */
2370
+ chipAdded: _angular_core.OutputEmitterRef<string>;
2371
+ /** Emits the removed value whenever a chip is removed. */
2372
+ chipRemoved: _angular_core.OutputEmitterRef<string>;
2373
+ /**
2374
+ * Emits the current text as the user types (not on programmatic writes or
2375
+ * chip commits). Drive server-side suggestion lookups from this; debounce in
2376
+ * the consumer if the lookup is expensive.
2377
+ */
2378
+ searchChange: _angular_core.OutputEmitterRef<string>;
2379
+ private readonly container;
2380
+ private readonly inputEl;
2381
+ private readonly dropdownTemplate;
2382
+ /** Committed chip values — the form model. */
2383
+ protected values: _angular_core.WritableSignal<string[]>;
2384
+ /** Current text in the field. */
2385
+ protected inputValue: _angular_core.WritableSignal<string>;
2386
+ /** Whether the suggestion dropdown is open. */
2387
+ protected isOpen: _angular_core.WritableSignal<boolean>;
2388
+ /** Index of the keyboard-highlighted suggestion, or -1. */
2389
+ protected highlightedIndex: _angular_core.WritableSignal<number>;
2390
+ /** Whether the text field currently holds focus — gates async re-opening. */
2391
+ private focused;
2392
+ /** CVA disabled state pushed by the form. */
2393
+ private formDisabled;
2394
+ /** Combined disabled state from the input and the form. */
2395
+ protected isDisabled: _angular_core.Signal<boolean>;
2396
+ /** Whether another chip may still be added under `maxChips`. */
2397
+ protected canAddMore: _angular_core.Signal<boolean>;
2398
+ /** Suggestions that match the typed text and are not already selected. */
2399
+ protected filteredSuggestions: _angular_core.Signal<string[]>;
2400
+ private onChange;
2401
+ private onTouched;
2402
+ private overlayRef?;
2403
+ private overlaySubs;
2404
+ constructor();
2405
+ ngOnDestroy(): void;
2406
+ writeValue(value: string[] | null | undefined): void;
2407
+ registerOnChange(fn: (value: string[]) => void): void;
2408
+ registerOnTouched(fn: () => void): void;
2409
+ setDisabledState(isDisabled: boolean): void;
2410
+ /** Clicking anywhere in the container focuses the text field. */
2411
+ protected focusInput(): void;
2412
+ protected onInput(event: Event): void;
2413
+ protected onFocus(): void;
2414
+ protected onBlur(): void;
2415
+ protected onKeydown(event: KeyboardEvent): void;
2416
+ protected onSuggestionClick(suggestion: string): void;
2417
+ /** Prevents the option `mousedown` from blurring the input before the click lands. */
2418
+ protected onSuggestionMousedown(event: MouseEvent): void;
2419
+ protected removeChip(index: number): void;
2420
+ /** Scopes a per-chip test id beneath the component's base. */
2421
+ protected chipTestId(value: string): TnTestIdValue;
2422
+ private isCommitKey;
2423
+ private addChip;
2424
+ private clearInput;
2425
+ /**
2426
+ * Opens the dropdown when there is something to show, closes it otherwise.
2427
+ * Stays closed once the chip cap is reached — suggesting rows that
2428
+ * `addChip()` would reject is misleading.
2429
+ */
2430
+ private syncDropdown;
2431
+ /** Keeps the keyboard-highlighted suggestion visible within the scrolling panel. */
2432
+ private scrollToHighlighted;
2433
+ private open;
2434
+ private close;
2435
+ private attachOverlay;
2436
+ private detachOverlay;
2437
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnChipInputComponent, never>;
2438
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnChipInputComponent, "tn-chip-input", never, { "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "separatorKeys": { "alias": "separatorKeys"; "required": false; "isSignal": true; }; "addOnBlur": { "alias": "addOnBlur"; "required": false; "isSignal": true; }; "allowCustomValue": { "alias": "allowCustomValue"; "required": false; "isSignal": true; }; "allowDuplicates": { "alias": "allowDuplicates"; "required": false; "isSignal": true; }; "maxChips": { "alias": "maxChips"; "required": false; "isSignal": true; }; "suggestions": { "alias": "suggestions"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "testId": { "alias": "testId"; "required": false; "isSignal": true; }; }, { "chipAdded": "chipAdded"; "chipRemoved": "chipRemoved"; "searchChange": "searchChange"; }, never, never, true, never>;
2439
+ }
2440
+
2441
+ /**
2442
+ * Harness for interacting with `tn-chip-input` in tests. Reads the committed
2443
+ * chips and drives the text field — adding values (optionally via the
2444
+ * suggestion dropdown) and removing them.
2445
+ *
2446
+ * @example
2447
+ * ```typescript
2448
+ * const tags = await loader.getHarness(TnChipInputHarness.with({ testId: 'chip-input-tags' }));
2449
+ * await tags.addChip('production');
2450
+ * expect(await tags.getChips()).toEqual(['production']);
2451
+ * await tags.removeChip('production');
2452
+ * ```
2453
+ */
2454
+ declare class TnChipInputHarness extends ComponentHarness {
2455
+ static hostSelector: string;
2456
+ private _input;
2457
+ private getChipHarnesses;
2458
+ /** Suggestion options live in a CDK overlay on the document root. */
2459
+ private documentRoot;
2460
+ static with(options?: TnChipInputHarnessFilters): HarnessPredicate<TnChipInputHarness>;
2461
+ /** Labels of the currently committed chips, in order. */
2462
+ getChips(): Promise<string[]>;
2463
+ /** Types `value` into the field and commits it with Enter. */
2464
+ addChip(value: string): Promise<void>;
2465
+ /** Types `value` into the field without committing it. */
2466
+ typeText(value: string): Promise<void>;
2467
+ /** Whether the text field currently holds DOM focus. */
2468
+ isInputFocused(): Promise<boolean>;
2469
+ /** Focuses the text field (opens the dropdown when there are suggestions). */
2470
+ focus(): Promise<void>;
2471
+ /** Blurs the text field. */
2472
+ blur(): Promise<void>;
2473
+ /** Sends a key (or `TestKey`) to the focused field — e.g. Backspace, arrows, a separator. */
2474
+ pressKey(key: TestKey | string): Promise<void>;
2475
+ /** Types `value`, then commits the matching suggestion from the dropdown. */
2476
+ selectSuggestion(value: string): Promise<void>;
2477
+ /** Removes the chip with the given label via its close button. */
2478
+ removeChip(value: string): Promise<void>;
2479
+ /** Visible suggestion option texts, or `[]` when the dropdown is closed. */
2480
+ getSuggestions(): Promise<string[]>;
2481
+ isDisabled(): Promise<boolean>;
2482
+ }
2483
+ interface TnChipInputHarnessFilters extends BaseHarnessFilters {
2484
+ /** Filters by the resolved test-id attribute on the text field. */
2485
+ testId?: string;
2486
+ }
2487
+
2296
2488
  declare class TnCardHeaderDirective {
2297
2489
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnCardHeaderDirective, never>;
2298
2490
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TnCardHeaderDirective, "[tnCardHeader]", never, {}, {}, never, never, true, never>;
@@ -8108,5 +8300,5 @@ declare const TN_THEME_DEFINITIONS: readonly TnThemeDefinition[];
8108
8300
  */
8109
8301
  declare const THEME_MAP: Map<TnTheme, TnThemeDefinition>;
8110
8302
 
8111
- 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, 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, 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, createLucideLibrary, createShortcut, defaultSpriteBasePath, defaultSpriteConfigPath, formatSize, kebabTestSegment, labelMarkupToHtml, labelMarkupToText, libIconMarker, parseLabelMarkup, parseSize, registerLucideIcons, scopeTestId, setupLucideIntegration, tnIconMarker, writeTestId };
8112
- export type { AutocompleteHarnessFilters, BannerHarnessFilters, ButtonHarnessFilters, ButtonToggleHarnessFilters, CalendarCell, CheckboxHarnessFilters, ChipColor, ChipHarnessFilters, CreateFolderEvent, DateInputHarnessFilters, DateRange, DateRangeInputHarnessFilters, DialogHarnessFilters, EmptyHarnessFilters, ExpansionPanelHarnessFilters, 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, 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 };
8303
+ 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, 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, createLucideLibrary, createShortcut, defaultSpriteBasePath, defaultSpriteConfigPath, formatSize, kebabTestSegment, labelMarkupToHtml, labelMarkupToText, libIconMarker, parseLabelMarkup, parseSize, registerLucideIcons, scopeTestId, setupLucideIntegration, tnIconMarker, writeTestId };
8304
+ export type { AutocompleteHarnessFilters, BannerHarnessFilters, ButtonHarnessFilters, ButtonToggleHarnessFilters, CalendarCell, CheckboxHarnessFilters, ChipColor, ChipHarnessFilters, CreateFolderEvent, DateInputHarnessFilters, DateRange, DateRangeInputHarnessFilters, DialogHarnessFilters, EmptyHarnessFilters, ExpansionPanelHarnessFilters, 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, 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 };