@truenas/ui-components 0.3.6 → 0.3.8

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.6",
3
+ "version": "0.3.8",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"
@@ -1252,6 +1252,14 @@ declare class TnIconComponent {
1252
1252
  private sanitizer;
1253
1253
  constructor();
1254
1254
  hostDimension: _angular_core.Signal<string | null>;
1255
+ /**
1256
+ * Inline min-width/min-height override for the custom/full-size paths.
1257
+ * - customSize: pin the minimum to the custom value so flex layouts can't
1258
+ * squish it (mirrors the preset min-* rules in the stylesheet).
1259
+ * - fullSize: relax the minimum to 0 so the icon can shrink with its
1260
+ * container instead of being clamped by the `size` attribute's preset min.
1261
+ */
1262
+ hostMinDimension: _angular_core.Signal<string | null>;
1255
1263
  hostFontSize: _angular_core.Signal<string | null>;
1256
1264
  effectiveAriaLabel: _angular_core.Signal<string>;
1257
1265
  sanitizedContent: _angular_core.Signal<SafeHtml>;
@@ -2293,30 +2301,54 @@ interface ChipHarnessFilters extends BaseHarnessFilters {
2293
2301
  label?: string | RegExp;
2294
2302
  }
2295
2303
 
2304
+ /**
2305
+ * Option shape for `tn-chip-input`'s value mode — the `label` is displayed on
2306
+ * the chip, the `value` is committed to the form control. Structurally
2307
+ * identical to `TnSelectOption`/`TnAutocompleteOption`, so the same data sources
2308
+ * feed all three.
2309
+ */
2310
+ type TnChipInputOption<T = unknown> = TnSelectOption<T>;
2296
2311
  /**
2297
2312
  * An editable, multi-value chip input — tokenized entry where typed text
2298
2313
  * becomes removable `tn-chip`s alongside an inline text field. Text is
2299
2314
  * committed to a chip on Enter (or a configurable separator key); Backspace on
2300
2315
  * an empty field removes the last chip.
2301
2316
  *
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.
2317
+ * It is a `ControlValueAccessor` over `T[]` (defaulting to `string[]`), so it
2318
+ * drops into a reactive or template-driven form (`[formControl]`, `[(ngModel)]`)
2319
+ * and slots into a `tn-form-field` as a real projected control — the field's
2320
+ * required/error inference reads this control directly.
2306
2321
  *
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).
2322
+ * **String mode (default).** Pass `[suggestions]` (a `string[]`) for typeahead;
2323
+ * the typed/picked string is the value. Set `allowCustomValue=false` to restrict
2324
+ * commits to the suggestion list.
2325
+ *
2326
+ * **Value mode.** Pass `[options]` (`{ label, value }[]`) to display labels while
2327
+ * committing values — the model becomes `T[]`. A written value resolves to its
2328
+ * option's label (falling back to `String(value)` until the option is
2329
+ * available). Provide `[compareWith]` when the values are objects. Committing a
2330
+ * typed string matches an option by label (case-insensitive); free text that
2331
+ * matches no option is only accepted when `allowCustomValue` is `true` (which is
2332
+ * only sound for string-valued inputs).
2333
+ *
2334
+ * Either source can be driven asynchronously by listening to `(searchChange)`
2335
+ * and updating `[suggestions]`/`[options]` as results arrive. The dropdown is
2336
+ * portaled through a CDK overlay so it escapes any ancestor `overflow: hidden`.
2311
2337
  *
2312
2338
  * @example
2313
2339
  * ```html
2340
+ * <!-- string mode -->
2314
2341
  * <tn-form-field label="Tags">
2315
- * <tn-chip-input [formControl]="tags" placeholder="Add a tag…" />
2342
+ * <tn-chip-input [formControl]="tags" [suggestions]="tagSuggestions" />
2343
+ * </tn-form-field>
2344
+ *
2345
+ * <!-- value mode: shows names, commits ids -->
2346
+ * <tn-form-field label="Groups">
2347
+ * <tn-chip-input [formControl]="groupIds" [options]="groupOptions" [allowCustomValue]="false" />
2316
2348
  * </tn-form-field>
2317
2349
  * ```
2318
2350
  */
2319
- declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2351
+ declare class TnChipInputComponent<T = string> implements ControlValueAccessor, OnDestroy {
2320
2352
  private readonly overlay;
2321
2353
  private readonly viewContainerRef;
2322
2354
  /** Unique instance id for ARIA linkage between the input and its dropdown. */
@@ -2334,30 +2366,42 @@ declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2334
2366
  /** Commit a pending (non-empty) text value as a chip when the field loses focus. */
2335
2367
  addOnBlur: _angular_core.InputSignal<boolean>;
2336
2368
  /**
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.
2369
+ * Whether free text not matching any option/suggestion may be committed.
2370
+ * Defaults to `true` — any typed value becomes a chip. Set `false` to restrict
2371
+ * the field to its list (a "pick from the list" control): a commit only
2372
+ * succeeds when the text matches an option/suggestion label (case-insensitive,
2373
+ * committing the canonical entry); unmatched text is discarded. Mirrors
2374
+ * `tn-autocomplete`'s `allowCustomValue`. In value mode, leave this `false` —
2375
+ * fabricating a typed string as a non-string value is unsound.
2344
2376
  */
2345
2377
  allowCustomValue: _angular_core.InputSignal<boolean>;
2346
2378
  /**
2347
2379
  * 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.
2380
+ * Duplicate detection uses `compareWith` (or identity); string-mode matching
2381
+ * is exact (case-sensitive), so `Angular` and `angular` are distinct — only
2382
+ * the *filtering* of suggestions is case-insensitive.
2351
2383
  */
2352
2384
  allowDuplicates: _angular_core.InputSignal<boolean>;
2353
2385
  /** Hard cap on the number of chips; `undefined` means no limit. */
2354
2386
  maxChips: _angular_core.InputSignal<number | undefined>;
2355
2387
  /**
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)`.
2388
+ * String-mode suggestion list. When non-empty, a dropdown offers entries that
2389
+ * match the typed text and are not already selected. Ignored when `options`
2390
+ * is provided. For async sources, update this in response to `(searchChange)`.
2359
2391
  */
2360
2392
  suggestions: _angular_core.InputSignal<string[]>;
2393
+ /**
2394
+ * Value-mode option list (`{ label, value }`). When non-empty, chips display
2395
+ * the resolved `label` while the form model holds `value`s. Takes precedence
2396
+ * over `suggestions`. For async sources, update in response to `(searchChange)`.
2397
+ */
2398
+ options: _angular_core.InputSignal<TnChipInputOption<T>[]>;
2399
+ /**
2400
+ * Comparator for value equality — used for de-duplication, display resolution
2401
+ * and the selected-set. Defaults to identity (`===`), correct for primitives;
2402
+ * provide this when values are objects (e.g. `(a, b) => a?.id === b?.id`).
2403
+ */
2404
+ compareWith: _angular_core.InputSignal<((a: T | null, b: T | null) => boolean) | undefined>;
2361
2405
  /** Accessible name for the text field. Leave unset inside a `tn-form-field`. */
2362
2406
  ariaLabel: _angular_core.InputSignal<string | undefined>;
2363
2407
  /**
@@ -2367,9 +2411,9 @@ declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2367
2411
  */
2368
2412
  testId: _angular_core.InputSignal<TnTestIdValue>;
2369
2413
  /** Emits the committed value whenever a chip is added. */
2370
- chipAdded: _angular_core.OutputEmitterRef<string>;
2414
+ chipAdded: _angular_core.OutputEmitterRef<T>;
2371
2415
  /** Emits the removed value whenever a chip is removed. */
2372
- chipRemoved: _angular_core.OutputEmitterRef<string>;
2416
+ chipRemoved: _angular_core.OutputEmitterRef<T>;
2373
2417
  /**
2374
2418
  * Emits the current text as the user types (not on programmatic writes or
2375
2419
  * chip commits). Drive server-side suggestion lookups from this; debounce in
@@ -2380,7 +2424,7 @@ declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2380
2424
  private readonly inputEl;
2381
2425
  private readonly dropdownTemplate;
2382
2426
  /** Committed chip values — the form model. */
2383
- protected values: _angular_core.WritableSignal<string[]>;
2427
+ protected values: _angular_core.WritableSignal<T[]>;
2384
2428
  /** Current text in the field. */
2385
2429
  protected inputValue: _angular_core.WritableSignal<string>;
2386
2430
  /** Whether the suggestion dropdown is open. */
@@ -2395,16 +2439,21 @@ declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2395
2439
  protected isDisabled: _angular_core.Signal<boolean>;
2396
2440
  /** Whether another chip may still be added under `maxChips`. */
2397
2441
  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[]>;
2442
+ /**
2443
+ * Unified option list. Value-mode `options` win; otherwise string-mode
2444
+ * `suggestions` are lifted into `{ label: s, value: s }`.
2445
+ */
2446
+ protected optionList: _angular_core.Signal<TnChipInputOption<T>[]>;
2447
+ /** Options matching the typed text and not already selected. */
2448
+ protected filteredSuggestions: _angular_core.Signal<TnChipInputOption<T>[]>;
2400
2449
  private onChange;
2401
2450
  private onTouched;
2402
2451
  private overlayRef?;
2403
2452
  private overlaySubs;
2404
2453
  constructor();
2405
2454
  ngOnDestroy(): void;
2406
- writeValue(value: string[] | null | undefined): void;
2407
- registerOnChange(fn: (value: string[]) => void): void;
2455
+ writeValue(value: T[] | null | undefined): void;
2456
+ registerOnChange(fn: (value: T[]) => void): void;
2408
2457
  registerOnTouched(fn: () => void): void;
2409
2458
  setDisabledState(isDisabled: boolean): void;
2410
2459
  /** Clicking anywhere in the container focuses the text field. */
@@ -2413,19 +2462,26 @@ declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2413
2462
  protected onFocus(): void;
2414
2463
  protected onBlur(): void;
2415
2464
  protected onKeydown(event: KeyboardEvent): void;
2416
- protected onSuggestionClick(suggestion: string): void;
2465
+ protected onSuggestionClick(option: TnChipInputOption<T>): void;
2417
2466
  /** Prevents the option `mousedown` from blurring the input before the click lands. */
2418
2467
  protected onSuggestionMousedown(event: MouseEvent): void;
2419
2468
  protected removeChip(index: number): void;
2469
+ /** The label shown on a chip for a committed value. */
2470
+ protected displayLabel(value: T): string;
2420
2471
  /** Scopes a per-chip test id beneath the component's base. */
2421
- protected chipTestId(value: string): TnTestIdValue;
2472
+ protected chipTestId(value: T): TnTestIdValue;
2422
2473
  private isCommitKey;
2423
- private addChip;
2474
+ /** Commits typed text: resolve it to an option's value, else accept as custom. */
2475
+ private commitText;
2476
+ /** Commits a resolved value, honouring duplicate and cap rules. */
2477
+ private commitValue;
2478
+ private valuesIncludes;
2479
+ private valueMatches;
2424
2480
  private clearInput;
2425
2481
  /**
2426
2482
  * Opens the dropdown when there is something to show, closes it otherwise.
2427
2483
  * Stays closed once the chip cap is reached — suggesting rows that
2428
- * `addChip()` would reject is misleading.
2484
+ * `commitValue()` would reject is misleading.
2429
2485
  */
2430
2486
  private syncDropdown;
2431
2487
  /** Keeps the keyboard-highlighted suggestion visible within the scrolling panel. */
@@ -2434,8 +2490,8 @@ declare class TnChipInputComponent implements ControlValueAccessor, OnDestroy {
2434
2490
  private close;
2435
2491
  private attachOverlay;
2436
2492
  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>;
2493
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TnChipInputComponent<any>, never>;
2494
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TnChipInputComponent<any>, "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; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "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
2495
  }
2440
2496
 
2441
2497
  /**
@@ -8301,4 +8357,4 @@ declare const TN_THEME_DEFINITIONS: readonly TnThemeDefinition[];
8301
8357
  declare const THEME_MAP: Map<TnTheme, TnThemeDefinition>;
8302
8358
 
8303
8359
  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 };
8360
+ 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, 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 };