ps-helix 6.0.0 → 6.0.2
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/README.md +6 -6
- package/fesm2022/ps-helix.mjs +277 -50
- package/fesm2022/ps-helix.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/styles/tokens/effects.tokens.css +39 -38
- package/types/ps-helix.d.ts +83 -14
package/package.json
CHANGED
|
@@ -1,38 +1,39 @@
|
|
|
1
|
-
/* Design Tokens - Visual Effects */
|
|
2
|
-
|
|
3
|
-
:root {
|
|
4
|
-
/* Border Radii - Semantic aliases for sizing.tokens.css radius scale */
|
|
5
|
-
--border-radius: var(--radius-lg); /* 0.5rem / 8px - Default radius */
|
|
6
|
-
--border-radius-lg: var(--radius-xl); /* 0.75rem / 12px - Large radius */
|
|
7
|
-
--border-radius-full: var(--radius-full); /* 9999px - Full circle */
|
|
8
|
-
|
|
9
|
-
/* Shadows */
|
|
10
|
-
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
11
|
-
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
12
|
-
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
13
|
-
|
|
14
|
-
/* Z-Index System */
|
|
15
|
-
--z-index-navigation: 50;
|
|
16
|
-
--z-index-dropdown: 100;
|
|
17
|
-
--z-index-tooltip: 200;
|
|
18
|
-
--z-index-modal-backdrop: 999;
|
|
19
|
-
--z-index-modal: 1000;
|
|
20
|
-
--z-index-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
--focus-outline-
|
|
25
|
-
--focus-outline-
|
|
26
|
-
--focus-outline-
|
|
27
|
-
--focus-
|
|
28
|
-
--focus-ring-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
--focus-ring-
|
|
33
|
-
--focus-ring-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
--opacity-
|
|
38
|
-
|
|
1
|
+
/* Design Tokens - Visual Effects */
|
|
2
|
+
|
|
3
|
+
:root {
|
|
4
|
+
/* Border Radii - Semantic aliases for sizing.tokens.css radius scale */
|
|
5
|
+
--border-radius: var(--radius-lg); /* 0.5rem / 8px - Default radius */
|
|
6
|
+
--border-radius-lg: var(--radius-xl); /* 0.75rem / 12px - Large radius */
|
|
7
|
+
--border-radius-full: var(--radius-full); /* 9999px - Full circle */
|
|
8
|
+
|
|
9
|
+
/* Shadows */
|
|
10
|
+
--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
11
|
+
--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
12
|
+
--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
13
|
+
|
|
14
|
+
/* Z-Index System */
|
|
15
|
+
--z-index-navigation: 50;
|
|
16
|
+
--z-index-dropdown: 100;
|
|
17
|
+
--z-index-tooltip: 200;
|
|
18
|
+
--z-index-modal-backdrop: 999;
|
|
19
|
+
--z-index-modal: 1000;
|
|
20
|
+
--z-index-overlay: 1100; /* body-teleported popovers (select/dropdown/menu) above modals */
|
|
21
|
+
--z-index-toast: 9999;
|
|
22
|
+
|
|
23
|
+
/* Focus System */
|
|
24
|
+
--focus-outline-width: 2px;
|
|
25
|
+
--focus-outline-style: solid;
|
|
26
|
+
--focus-outline-color: var(--primary-color);
|
|
27
|
+
--focus-outline-offset: 2px;
|
|
28
|
+
--focus-ring-width: 3px;
|
|
29
|
+
--focus-ring-color: rgba(var(--primary-color-rgb), 0.2);
|
|
30
|
+
|
|
31
|
+
/* Focus variants */
|
|
32
|
+
--focus-ring-error: rgba(var(--danger-color-rgb), 0.2);
|
|
33
|
+
--focus-ring-success: rgba(var(--success-color-rgb), 0.2);
|
|
34
|
+
--focus-ring-warning: rgba(var(--warning-color-rgb), 0.2);
|
|
35
|
+
|
|
36
|
+
/* Opacity System */
|
|
37
|
+
--opacity-disabled: 0.6;
|
|
38
|
+
--opacity-loading: 0.7;
|
|
39
|
+
}
|
package/types/ps-helix.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterContentChecked, OnDestroy, AfterContentInit, InjectionToken, AfterViewInit, EventEmitter, TemplateRef, Type } from '@angular/core';
|
|
2
|
+
import { AfterContentChecked, OnDestroy, AfterContentInit, InjectionToken, AfterViewInit, EventEmitter, TemplateRef, Type, ViewContainerRef } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { FormCheckboxControl, FormValueControl } from '@angular/forms/signals';
|
|
5
5
|
import * as ps_helix from 'ps-helix';
|
|
@@ -123,7 +123,7 @@ declare class PshAvatarComponent {
|
|
|
123
123
|
hasIcon: _angular_core.Signal<boolean>;
|
|
124
124
|
computedAriaLabel: _angular_core.Signal<string>;
|
|
125
125
|
statusColor: _angular_core.Signal<string | undefined>;
|
|
126
|
-
state: _angular_core.Signal<"default"
|
|
126
|
+
state: _angular_core.Signal<AvatarStatus | "default">;
|
|
127
127
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PshAvatarComponent, never>;
|
|
128
128
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PshAvatarComponent, "psh-avatar", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "shape": { "alias": "shape"; "required": false; "isSignal": true; }; "src": { "alias": "src"; "required": false; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "initials": { "alias": "initials"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "size": "sizeChange"; "shape": "shapeChange"; "src": "srcChange"; "alt": "altChange"; }, never, never, true, never>;
|
|
129
129
|
}
|
|
@@ -288,7 +288,7 @@ declare class PshCardComponent implements OnDestroy {
|
|
|
288
288
|
/** État désactivé - réduit l'opacité */
|
|
289
289
|
disabled: _angular_core.InputSignal<boolean>;
|
|
290
290
|
/** Émis lors du clic sur la carte (si interactive) */
|
|
291
|
-
clicked: _angular_core.OutputEmitterRef<
|
|
291
|
+
clicked: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
292
292
|
/** Classes CSS calculées selon les propriétés */
|
|
293
293
|
computedClasses: _angular_core.Signal<string>;
|
|
294
294
|
/** Styles calculés */
|
|
@@ -356,7 +356,7 @@ declare class PshStatCardComponent {
|
|
|
356
356
|
/** Active la direction row pour le card-body (icône et contenu côte à côte en flex-row) */
|
|
357
357
|
rowDirection: _angular_core.InputSignal<boolean>;
|
|
358
358
|
/** Émis lors du clic sur la carte */
|
|
359
|
-
clicked: _angular_core.OutputEmitterRef<
|
|
359
|
+
clicked: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
360
360
|
private computedValue;
|
|
361
361
|
private computedDescription;
|
|
362
362
|
private computedIcon;
|
|
@@ -450,7 +450,7 @@ declare class PshHorizontalCardComponent {
|
|
|
450
450
|
/** Hauteur du contenu latéral sur mobile (utiliser les tokens de sizing) */
|
|
451
451
|
mobileHeight: _angular_core.InputSignal<string>;
|
|
452
452
|
/** Émis lors du clic sur la carte */
|
|
453
|
-
clicked: _angular_core.OutputEmitterRef<
|
|
453
|
+
clicked: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
454
454
|
/** Classes CSS calculées selon les propriétés */
|
|
455
455
|
computedClasses: _angular_core.Signal<string>;
|
|
456
456
|
/** Styles calculés */
|
|
@@ -560,7 +560,7 @@ declare class PshInfoCardComponent implements AfterContentInit, OnDestroy {
|
|
|
560
560
|
/** Whether the card is disabled */
|
|
561
561
|
disabled: _angular_core.InputSignal<boolean>;
|
|
562
562
|
/** Emitted when card is clicked */
|
|
563
|
-
clicked: _angular_core.OutputEmitterRef<
|
|
563
|
+
clicked: _angular_core.OutputEmitterRef<MouseEvent | KeyboardEvent>;
|
|
564
564
|
/** Whether to show copy buttons on rows (opt-in) */
|
|
565
565
|
copyable: _angular_core.InputSignal<boolean>;
|
|
566
566
|
/** Label prefix for the copy button aria-label */
|
|
@@ -796,7 +796,11 @@ declare class PshDropdownComponent<T = string> {
|
|
|
796
796
|
private elementRef;
|
|
797
797
|
private readonly isBrowser;
|
|
798
798
|
private readonly overlayPosition;
|
|
799
|
-
private readonly
|
|
799
|
+
private readonly portal;
|
|
800
|
+
private readonly viewContainer;
|
|
801
|
+
private readonly menuTpl;
|
|
802
|
+
private portalRef;
|
|
803
|
+
private readonly repositionHandler;
|
|
800
804
|
appearance: _angular_core.InputSignal<DropdownAppearance>;
|
|
801
805
|
variant: _angular_core.InputSignal<DropdownVariant>;
|
|
802
806
|
size: _angular_core.InputSignal<DropdownSize>;
|
|
@@ -822,6 +826,8 @@ declare class PshDropdownComponent<T = string> {
|
|
|
822
826
|
state: _angular_core.Signal<string>;
|
|
823
827
|
private getState;
|
|
824
828
|
constructor();
|
|
829
|
+
private openPanel;
|
|
830
|
+
private closePanel;
|
|
825
831
|
private reposition;
|
|
826
832
|
toggleDropdown(): void;
|
|
827
833
|
selectItem(item: DropdownItem<T>): void;
|
|
@@ -873,6 +879,12 @@ declare class PshInputComponent implements ControlValueAccessor, FormValueContro
|
|
|
873
879
|
private readonly elementRef;
|
|
874
880
|
private readonly cdr;
|
|
875
881
|
private readonly destroyRef;
|
|
882
|
+
private readonly portal;
|
|
883
|
+
private readonly viewContainer;
|
|
884
|
+
private readonly overlayPosition;
|
|
885
|
+
private readonly suggestionsTpl;
|
|
886
|
+
private portalRef;
|
|
887
|
+
private readonly repositionHandler;
|
|
876
888
|
private static nextId;
|
|
877
889
|
readonly inputId: string;
|
|
878
890
|
readonly value: _angular_core.ModelSignal<string>;
|
|
@@ -916,6 +928,11 @@ declare class PshInputComponent implements ControlValueAccessor, FormValueContro
|
|
|
916
928
|
state: _angular_core.Signal<string>;
|
|
917
929
|
private getState;
|
|
918
930
|
constructor();
|
|
931
|
+
/** Attaches / detaches / repositions the teleported suggestions panel to match visibility. */
|
|
932
|
+
private syncPanel;
|
|
933
|
+
private openPanel;
|
|
934
|
+
private closePanel;
|
|
935
|
+
private reposition;
|
|
919
936
|
private onChange;
|
|
920
937
|
private onTouched;
|
|
921
938
|
writeValue(value: unknown): void;
|
|
@@ -1006,7 +1023,7 @@ declare class PshTextareaComponent implements ControlValueAccessor, FormValueCon
|
|
|
1006
1023
|
hasError: _angular_core.Signal<boolean>;
|
|
1007
1024
|
computedAriaLabel: _angular_core.Signal<string | null>;
|
|
1008
1025
|
describedBy: _angular_core.Signal<string | null>;
|
|
1009
|
-
state: _angular_core.Signal<"
|
|
1026
|
+
state: _angular_core.Signal<"success" | "default" | "disabled" | "error" | "readonly" | "focused">;
|
|
1010
1027
|
characterCountLabel: "caractères";
|
|
1011
1028
|
constructor();
|
|
1012
1029
|
private onChange;
|
|
@@ -1649,7 +1666,11 @@ declare class PshSelectComponent<T = unknown> implements ControlValueAccessor, F
|
|
|
1649
1666
|
private readonly elementRef;
|
|
1650
1667
|
private readonly destroyRef;
|
|
1651
1668
|
private readonly overlayPosition;
|
|
1652
|
-
private readonly
|
|
1669
|
+
private readonly portal;
|
|
1670
|
+
private readonly viewContainer;
|
|
1671
|
+
private readonly panelTpl;
|
|
1672
|
+
private portalRef;
|
|
1673
|
+
private readonly repositionHandler;
|
|
1653
1674
|
protected readonly resolvedSide: _angular_core.WritableSignal<"top" | "bottom">;
|
|
1654
1675
|
protected readonly selectId: string;
|
|
1655
1676
|
readonly value: _angular_core.ModelSignal<T | T[] | null>;
|
|
@@ -1684,7 +1705,7 @@ declare class PshSelectComponent<T = unknown> implements ControlValueAccessor, F
|
|
|
1684
1705
|
scrollEnd: _angular_core.OutputEmitterRef<void>;
|
|
1685
1706
|
isOpen: _angular_core.Signal<boolean>;
|
|
1686
1707
|
searchTerm: _angular_core.Signal<string>;
|
|
1687
|
-
state: _angular_core.Signal<"
|
|
1708
|
+
state: _angular_core.Signal<"success" | "default" | "disabled" | "error">;
|
|
1688
1709
|
computedAriaLabel: _angular_core.Signal<string>;
|
|
1689
1710
|
describedBy: _angular_core.Signal<"error-message" | "success-message" | "hint-message" | null>;
|
|
1690
1711
|
flatFilteredOptions: _angular_core.Signal<FlatOption<T>[]>;
|
|
@@ -1692,6 +1713,9 @@ declare class PshSelectComponent<T = unknown> implements ControlValueAccessor, F
|
|
|
1692
1713
|
selectedLabel: _angular_core.Signal<string>;
|
|
1693
1714
|
filteredOptions: _angular_core.Signal<(SelectOption<T> | SelectOptionGroup<T>)[]>;
|
|
1694
1715
|
constructor();
|
|
1716
|
+
/** Teleports the options panel to the body-level overlay layer and positions it. */
|
|
1717
|
+
private openPanel;
|
|
1718
|
+
private closePanel;
|
|
1695
1719
|
private reposition;
|
|
1696
1720
|
private onChange;
|
|
1697
1721
|
private onTouched;
|
|
@@ -2254,7 +2278,7 @@ declare const TABLE_CONFIG: InjectionToken<Partial<TableConfig>>;
|
|
|
2254
2278
|
declare class PshTableComponent {
|
|
2255
2279
|
private config;
|
|
2256
2280
|
variant: _angular_core.InputSignal<"default" | "outline">;
|
|
2257
|
-
size: _angular_core.InputSignal<"
|
|
2281
|
+
size: _angular_core.InputSignal<"small" | "medium" | "large">;
|
|
2258
2282
|
striped: _angular_core.InputSignal<boolean>;
|
|
2259
2283
|
hoverable: _angular_core.InputSignal<boolean>;
|
|
2260
2284
|
bordered: _angular_core.InputSignal<boolean>;
|
|
@@ -2266,7 +2290,7 @@ declare class PshTableComponent {
|
|
|
2266
2290
|
emptyMessage: _angular_core.InputSignal<string>;
|
|
2267
2291
|
noResultsMessage: _angular_core.InputSignal<string>;
|
|
2268
2292
|
globalSearchPlaceholder: _angular_core.InputSignal<string>;
|
|
2269
|
-
tableLayout: _angular_core.InputSignal<"
|
|
2293
|
+
tableLayout: _angular_core.InputSignal<"fixed" | "auto">;
|
|
2270
2294
|
truncateText: _angular_core.InputSignal<boolean>;
|
|
2271
2295
|
expandable: _angular_core.InputSignal<boolean>;
|
|
2272
2296
|
singleExpand: _angular_core.InputSignal<boolean>;
|
|
@@ -2851,5 +2875,50 @@ declare class PshOverlayService {
|
|
|
2851
2875
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PshOverlayService>;
|
|
2852
2876
|
}
|
|
2853
2877
|
|
|
2854
|
-
|
|
2855
|
-
|
|
2878
|
+
/** A handle to a teleported overlay panel. */
|
|
2879
|
+
interface PshPortalRef {
|
|
2880
|
+
/** The panel's root element — use it to position and to scope click-outside. */
|
|
2881
|
+
readonly panel: HTMLElement;
|
|
2882
|
+
/**
|
|
2883
|
+
* Positions the panel as `fixed` relative to `anchor`'s viewport rect, on the
|
|
2884
|
+
* given side with `gap` px of spacing. Bounds `max-height` to the available
|
|
2885
|
+
* viewport space so the panel never overflows the screen.
|
|
2886
|
+
*/
|
|
2887
|
+
position(anchor: HTMLElement, side: 'top' | 'bottom', gap: number): void;
|
|
2888
|
+
/**
|
|
2889
|
+
* Positions the panel as `fixed` from `anchor`'s viewport rect for a
|
|
2890
|
+
* `<side>-<align>` placement (e.g. `bottom-start`, `top-end`). The panel keeps
|
|
2891
|
+
* its content width; the aligned edge (start/end) is anchored to the trigger.
|
|
2892
|
+
*/
|
|
2893
|
+
positionByPlacement(anchor: HTMLElement, placement: string, gap: number): void;
|
|
2894
|
+
/** Destroys the embedded view and removes the panel from the overlay layer. */
|
|
2895
|
+
detach(): void;
|
|
2896
|
+
}
|
|
2897
|
+
/**
|
|
2898
|
+
* Teleports a `TemplateRef` into a single body-level overlay layer so popover
|
|
2899
|
+
* panels (select / dropdown / menu…) escape any ancestor `overflow`, `transform`
|
|
2900
|
+
* or stacking context and can layer above modals.
|
|
2901
|
+
*
|
|
2902
|
+
* A lightweight, CDK-free "manual portal": the embedded view is created from the
|
|
2903
|
+
* consumer's `ViewContainerRef` (so it stays in that component's change-detection
|
|
2904
|
+
* tree and keeps its bindings reactive), then its root nodes are moved into the
|
|
2905
|
+
* shared `.psh-overlay-layer`. The layer is `position: fixed; inset: 0;
|
|
2906
|
+
* pointer-events: none` at `z-index: var(--z-index-overlay)`; panels re-enable
|
|
2907
|
+
* pointer events. The layer is created lazily and removed once empty.
|
|
2908
|
+
*/
|
|
2909
|
+
declare class PshPortalService {
|
|
2910
|
+
private readonly document;
|
|
2911
|
+
private layer;
|
|
2912
|
+
private count;
|
|
2913
|
+
/** Teleports `tpl` into the overlay layer and returns a handle to control it. */
|
|
2914
|
+
attach(tpl: TemplateRef<unknown>, vcr: ViewContainerRef): PshPortalRef;
|
|
2915
|
+
private position;
|
|
2916
|
+
private positionByPlacement;
|
|
2917
|
+
private detach;
|
|
2918
|
+
private ensureLayer;
|
|
2919
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PshPortalService, never>;
|
|
2920
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<PshPortalService>;
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
export { CHECKBOX_CONFIG, CUSTOMER_CONTEXT_SERVICE, INPUT_LABELS, MODAL_CONFIG, ModalService, NgxTranslateProvider, PAGINATION_CONFIG, PROGRESSBAR_CONFIG, PSH_THEME_OPTIONS, PshAlertComponent, PshAvatarComponent, PshBadgeComponent, PshButtonComponent, PshCardComponent, PshCheckboxComponent, PshClickOutsideDirective, PshCollapseComponent, PshDropdownComponent, PshFlowStepComponent, PshFocusTrapDirective, PshHorizontalCardComponent, PshInfoCardComponent, PshInputComponent, PshLiveAnnouncerService, PshMenuComponent, PshModalComponent, PshOverlayPositionService, PshOverlayService, PshPaginationComponent, PshPortalService, PshProgressbarComponent, PshRadioComponent, PshSelectComponent, PshSidebarComponent, PshSpinLoaderComponent, PshStatCardComponent, PshStateFlowIndicatorComponent, PshStepComponent, PshStepperComponent, PshSwitchComponent, PshTabBarComponent, PshTabComponent, PshTableComponent, PshTabsComponent, PshTagComponent, PshTextareaComponent, PshToastComponent, PshToastService, PshTooltipComponent, RADIO_CONFIG, RADIO_STYLES, SIDEBAR_CONFIG, SPINLOADER_CONFIG, STATE_FLOW_INDICATOR_CONFIG, STEPPER_CONFIG, SWITCH_CONFIG, ScrollService, TABLE_CONFIG, TABS_CONFIG, TAB_BAR_CONFIG, TAG_CONFIG, TEXTAREA_LABELS, TOAST_CONFIG, TOOLTIP_CONFIG, TRANSLATION_PROVIDER, ThemeService, ToastComponent, ToastService, provideTranslation };
|
|
2924
|
+
export type { AlertConfig, AlertLabels, AlertRole, AlertSize, AlertType, AnnouncerPoliteness, AutocompleteConfig, AvatarConfig, AvatarShape, AvatarSize, AvatarStatus, BadgeDisplayType, BadgePosition, BadgeSize, BadgeVariant, ButtonAppearance, ButtonIconPosition, ButtonSize, ButtonVariant, CardActionsAlignment, CardColorVariant, CardDensity, CardVariant, CheckboxConfig, CheckboxLabelPosition, CheckboxSize, CollapseSize, CollapseVariant, CustomerContextService, DropdownAppearance, DropdownConfig, DropdownItem, DropdownPlacement, DropdownSize, DropdownVariant, FlowStepConfig, IconPosition, InfoCardData, InfoCardOptions, InfoCardVariant, InputConfig, InputSize, InputType, InputVariant, MenuItem, MenuMode, MenuVariant, ModalConfig, ModalSize, OverlayHandle, OverlayPositionOptions, OverlaySide, PaginationConfig, PaginationSize, PaginationVariant, ProgressbarConfig, ProgressbarLabelPosition, ProgressbarMode, ProgressbarSize, ProgressbarVariant, PshPortalRef, PshThemeOptions, RadioConfig, RadioSize, SearchConfig, SelectOption, SelectOptionGroup, SelectSize, SelectVariant, SidebarConfig, SidebarMode, SidebarPosition, SpinLoaderColor, SpinLoaderConfig, SpinLoaderSize, SpinLoaderVariant, StatCardLayout, StatCardVariant, StatTagVariant, StateFlowIndicatorAriaLabels, StateFlowIndicatorConfig, StateFlowIndicatorSize, StepConfig, StepperAriaLabels, StepperConfig, StepperVariant, SuggestionResult, SwitchConfig, SwitchSize, Tab, TabBarChangeEvent, TabBarConfig, TabBarItem, TabChangeEvent, TableCellContext, TableColumn, TableConfig, TableExpandedRowContext, TableRow, TableRowClickEvent, TableRowExpandEvent, TableSort, TabsConfig, TabsSize, TabsVariant, TagConfig, TagSize, TagVariant, TextareaConfig, TextareaResize, TextareaSize, TextareaVariant, Theme, ThemeConfig, Toast, ToastConfig, ToastPosition, ToastType, TooltipConfig, TooltipPosition, TooltipVariant, TranslationConfig, TranslationEntry, TranslationProvider };
|