@litigiovirtual/ius-design-components 2.1.8 → 2.1.10
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
|
@@ -556,6 +556,11 @@ declare class TextFieldComponent implements ControlValueAccessor {
|
|
|
556
556
|
error: boolean;
|
|
557
557
|
/** `name` del input. */
|
|
558
558
|
name?: string;
|
|
559
|
+
/** `autocomplete` del input (passthrough, como ariaLabel en Button). Necesario para
|
|
560
|
+
* que el gestor de credenciales del navegador ofrezca lo guardado: un correo suelto
|
|
561
|
+
* sin `autocomplete="username"` no dispara las sugerencias (un type=password sí,
|
|
562
|
+
* por heurística propia del navegador — por eso el paso 2 funcionaba y el 1 no). */
|
|
563
|
+
autocomplete?: string;
|
|
559
564
|
/** `type` del input. La variación password enmascara y agrega el toggle de revelado. */
|
|
560
565
|
type: IusTextFieldType;
|
|
561
566
|
private readonly sizeState;
|
|
@@ -590,7 +595,7 @@ declare class TextFieldComponent implements ControlValueAccessor {
|
|
|
590
595
|
protected toggleReveal(): void;
|
|
591
596
|
protected clear(): void;
|
|
592
597
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextFieldComponent, never>;
|
|
593
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "ius-text-field", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "showIconHelp": { "alias": "showIconHelp"; "required": false; }; "iconHelpTitle": { "alias": "iconHelpTitle"; "required": false; }; "iconHelpContent": { "alias": "iconHelpContent"; "required": false; }; "error": { "alias": "error"; "required": false; }; "name": { "alias": "name"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "cleared": "cleared"; }, never, never, true, never>;
|
|
598
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextFieldComponent, "ius-text-field", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "prefixIcon": { "alias": "prefixIcon"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "helpText": { "alias": "helpText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "showHelpText": { "alias": "showHelpText"; "required": false; }; "showIconHelp": { "alias": "showIconHelp"; "required": false; }; "iconHelpTitle": { "alias": "iconHelpTitle"; "required": false; }; "iconHelpContent": { "alias": "iconHelpContent"; "required": false; }; "error": { "alias": "error"; "required": false; }; "name": { "alias": "name"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "valueChange": "valueChange"; "cleared": "cleared"; }, never, never, true, never>;
|
|
594
599
|
static ngAcceptInputType_required: unknown;
|
|
595
600
|
static ngAcceptInputType_showHelpText: unknown;
|
|
596
601
|
static ngAcceptInputType_showIconHelp: unknown;
|
|
@@ -2087,8 +2092,9 @@ type IusListCardSize = 'small' | 'medium' | 'large';
|
|
|
2087
2092
|
interface IusListCardField {
|
|
2088
2093
|
/** Etiqueta superior (opcional; omítela para un valor suelto como el monto). */
|
|
2089
2094
|
label?: string;
|
|
2090
|
-
/** Valor mostrado debajo de la etiqueta
|
|
2091
|
-
|
|
2095
|
+
/** Valor mostrado debajo de la etiqueta; `TemplateRef` para contenido rico
|
|
2096
|
+
* (equivalente Angular del `ReactNode` del golden — p.ej. un Tag). */
|
|
2097
|
+
value: string | TemplateRef<unknown>;
|
|
2092
2098
|
/** Ícono Material Symbols antes del valor (p.ej. correo, teléfono). */
|
|
2093
2099
|
icon?: string;
|
|
2094
2100
|
/** Resalta el valor (display, semibold, color primario) — p.ej. el monto. */
|
|
@@ -2292,6 +2298,8 @@ declare class ListCardComponent implements AfterViewInit, OnChanges, OnDestroy {
|
|
|
2292
2298
|
protected onMenuOpenChange(open: boolean): void;
|
|
2293
2299
|
protected onAction(action: IusListCardAction, event: MouseEvent): void;
|
|
2294
2300
|
protected onMarker(marker: IusListCardMarker, event: MouseEvent): void;
|
|
2301
|
+
/** Discrimina el valor rico del field (el template no puede usar instanceof). */
|
|
2302
|
+
protected fieldTpl(field: IusListCardField): TemplateRef<unknown> | null;
|
|
2295
2303
|
protected fieldWidth(field: IusListCardField): string | null;
|
|
2296
2304
|
protected onHostClick(event: MouseEvent): void;
|
|
2297
2305
|
/** Enter en keydown y Espacio en keyup activan SOLO con el foco en la fila. */
|
|
@@ -6036,5 +6044,136 @@ declare class AccordionComponent {
|
|
|
6036
6044
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "ius-accordion", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "defaultOpen": { "alias": "defaultOpen"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "chevronIcon": { "alias": "chevronIcon"; "required": false; "isSignal": true; }; }, { "openChange": "openChange"; }, never, never, true, never>;
|
|
6037
6045
|
}
|
|
6038
6046
|
|
|
6039
|
-
|
|
6040
|
-
|
|
6047
|
+
/** Estado forzado — solo demos. */
|
|
6048
|
+
type IusAccountItemState = 'hover' | 'pressed';
|
|
6049
|
+
/** Acción del menú ⋮ de la fila (espejo de `IusDropdownItem`/`IusMenuOption`). */
|
|
6050
|
+
interface IusAccountItemAction {
|
|
6051
|
+
key?: string | number;
|
|
6052
|
+
icon?: string;
|
|
6053
|
+
label?: string;
|
|
6054
|
+
/** Agrupa: al cambiar de `group` inserta un divisor. */
|
|
6055
|
+
group?: string | number;
|
|
6056
|
+
/** Inserta un divisor en su lugar. */
|
|
6057
|
+
separator?: boolean;
|
|
6058
|
+
danger?: boolean;
|
|
6059
|
+
disabled?: boolean;
|
|
6060
|
+
onClick?: (event: MouseEvent) => void;
|
|
6061
|
+
}
|
|
6062
|
+
/** Nombre rico proyectado (alternativa al input `name`). */
|
|
6063
|
+
declare class IusAccountItemNameDirective {
|
|
6064
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IusAccountItemNameDirective, never>;
|
|
6065
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IusAccountItemNameDirective, "[iusAccountItemName]", never, {}, {}, never, never, true, never>;
|
|
6066
|
+
}
|
|
6067
|
+
/** Subtítulo rico proyectado (alternativa al input `subtitle`). */
|
|
6068
|
+
declare class IusAccountItemSubtitleDirective {
|
|
6069
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IusAccountItemSubtitleDirective, never>;
|
|
6070
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IusAccountItemSubtitleDirective, "[iusAccountItemSubtitle]", never, {}, {}, never, never, true, never>;
|
|
6071
|
+
}
|
|
6072
|
+
/** Nodo libre al borde derecho (Tag, contador, chip de estado). */
|
|
6073
|
+
declare class IusAccountItemTrailingDirective {
|
|
6074
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IusAccountItemTrailingDirective, never>;
|
|
6075
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IusAccountItemTrailingDirective, "[iusAccountItemTrailing]", never, {}, {}, never, never, true, never>;
|
|
6076
|
+
}
|
|
6077
|
+
/**
|
|
6078
|
+
* AccountItem — Ius Design v2 (familia data-display).
|
|
6079
|
+
*
|
|
6080
|
+
* Fila-tarjeta de una **cuenta a la que el usuario puede cambiar**: la unidad de
|
|
6081
|
+
* la vista «Cambiar de cuenta» del UserMenu. Avatar de la cuenta + nombre (+
|
|
6082
|
+
* subtítulo opcional: tipo, rol o dominio), seleccionable, con la cuenta activa
|
|
6083
|
+
* marcada con un check. Fuente de verdad: `AccountItem.jsx` +
|
|
6084
|
+
* `AccountItem.d.ts` + `AccountItem.ng-spec.md`.
|
|
6085
|
+
*
|
|
6086
|
+
* La superficie la pone **`ius-card`** (`outlined · radius lg · padding none`),
|
|
6087
|
+
* como manda la ng-spec: no se reescribe a mano. AccountItem solo aporta el
|
|
6088
|
+
* layout de la fila y sus **estados tintados info** (hover / pressed /
|
|
6089
|
+
* selected), que pisan la elevación por defecto de Card.
|
|
6090
|
+
*
|
|
6091
|
+
* `actions` compone `ius-dropdown` (trigger IconButton `more_vert` proyectado)
|
|
6092
|
+
* en un slot de **ancho fijo** (`--_ai-actions-w`), para que todas las listas de
|
|
6093
|
+
* cuentas del ecosistema queden alineadas. `[iusAccountItemTrailing]` acepta un
|
|
6094
|
+
* nodo libre en el mismo borde y convive con `actions`. Con `disabled` las
|
|
6095
|
+
* acciones quedan **visibles pero inertes** (la fila pierde `pointer-events`),
|
|
6096
|
+
* regla única del sistema.
|
|
6097
|
+
*
|
|
6098
|
+
* **Nota de port — el `split` del golden.** El golden alterna su DOM según el
|
|
6099
|
+
* contenido: sin `actions`/`trailing` la raíz **es** el `<button>` de `onClick`;
|
|
6100
|
+
* con ellos la raíz pasa a `div` y el área primaria se vuelve un botón interno
|
|
6101
|
+
* (anidar un IconButton dentro de un `<button>` es HTML inválido y rompe el
|
|
6102
|
+
* teclado). Aquí se adopta **siempre** la segunda forma — la raíz es
|
|
6103
|
+
* `<ius-card>` (div) y el área primaria es un `<button>` interno:
|
|
6104
|
+
*
|
|
6105
|
+
* - En Angular alternar la etiqueta raíz exige un `@if`/`@else`, y el contenido
|
|
6106
|
+
* proyectado (`[iusAccountItemName]`, `[iusAccountItemSubtitle]`) solo se
|
|
6107
|
+
* instancia en UNA rama: al cambiar `actions`/`trailing` en caliente —lo que
|
|
6108
|
+
* hace el playground— la proyección se perdería.
|
|
6109
|
+
* - El resultado accesible es el mismo que el del golden: un único botón real
|
|
6110
|
+
* que cubre la fila, con su `aria-label` y su `aria-pressed`, y el ⋮ como
|
|
6111
|
+
* control hermano alcanzable por teclado aparte. Nunca hay control anidado
|
|
6112
|
+
* en control, ni en el caso simple.
|
|
6113
|
+
* - Visualmente es idéntico: los estados se pintan sobre TODA la fila desde la
|
|
6114
|
+
* raíz (`data-actionable` + `:has(.ius-acctitem__main:active/:focus-visible)`),
|
|
6115
|
+
* que es exactamente lo que hace la rama `split` del golden.
|
|
6116
|
+
*
|
|
6117
|
+
* Para fila de acción/navegación → MenuItem; control de cuenta del HeaderBar →
|
|
6118
|
+
* NavUser. Primera carga → envolver en Skeleton (AccountItem no lleva
|
|
6119
|
+
* `loading` propio).
|
|
6120
|
+
*/
|
|
6121
|
+
declare class AccountItemComponent {
|
|
6122
|
+
/** Nombre de la cuenta. Para markup rico proyectar `[iusAccountItemName]`. */
|
|
6123
|
+
name?: string;
|
|
6124
|
+
/**
|
|
6125
|
+
* Subtítulo opcional (tipo, rol, dominio…). Ej. `Personal`. Para markup rico
|
|
6126
|
+
* proyectar `[iusAccountItemSubtitle]`.
|
|
6127
|
+
*/
|
|
6128
|
+
subtitle?: string;
|
|
6129
|
+
/** URL de la fotografía de la cuenta (pasa a `ius-avatar` como `src`). */
|
|
6130
|
+
avatar?: string;
|
|
6131
|
+
/** Ícono Material Symbols del medallón (sin foto/monograma/nombre cae a `account_circle`). */
|
|
6132
|
+
icon?: string;
|
|
6133
|
+
/** Monograma explícito. */
|
|
6134
|
+
monogram?: string;
|
|
6135
|
+
/** Familia de color del medallón; `auto` es estable por nombre. */
|
|
6136
|
+
color: IusAvatarColor;
|
|
6137
|
+
/** Forma del medallón. */
|
|
6138
|
+
shape: IusAvatarShape;
|
|
6139
|
+
/** Cuenta activa: fondo resaltado + check. */
|
|
6140
|
+
selected: boolean;
|
|
6141
|
+
/** Deshabilitada: la fila entera queda inerte (las acciones, visibles). */
|
|
6142
|
+
disabled: boolean;
|
|
6143
|
+
/** Acciones secundarias en el menú ⋮ del borde derecho. */
|
|
6144
|
+
actions: IusAccountItemAction[];
|
|
6145
|
+
/** aria del menú de acciones. */
|
|
6146
|
+
actionsLabel: string;
|
|
6147
|
+
/** Estado forzado — solo demos. */
|
|
6148
|
+
state?: IusAccountItemState;
|
|
6149
|
+
/** Nombre accesible del área primaria (anula el derivado del nombre). */
|
|
6150
|
+
ariaLabel?: string;
|
|
6151
|
+
/** Fila pulsada (original `onClick`). */
|
|
6152
|
+
readonly clicked: EventEmitter<MouseEvent>;
|
|
6153
|
+
private readonly nameRef;
|
|
6154
|
+
private readonly subtitleRef;
|
|
6155
|
+
private readonly trailingRef;
|
|
6156
|
+
/** Fila viva: hay quien escuche el clic y no está deshabilitada. */
|
|
6157
|
+
protected get actionable(): boolean;
|
|
6158
|
+
protected get hasSubtitle(): boolean;
|
|
6159
|
+
protected get hasTrailing(): boolean;
|
|
6160
|
+
protected get showMenu(): boolean;
|
|
6161
|
+
/** El monograma explícito gana: entonces el nombre no alimenta las iniciales. */
|
|
6162
|
+
protected get avatarName(): string | undefined;
|
|
6163
|
+
/** Sin foto/monograma/nombre, el medallón cae al ícono genérico de cuenta. */
|
|
6164
|
+
protected get effIcon(): string | undefined;
|
|
6165
|
+
/** `Cuenta <nombre>` como nombre accesible por defecto (verbatim del golden). */
|
|
6166
|
+
protected get label(): string;
|
|
6167
|
+
/** El golden solo declara `aria-pressed` cuando la cuenta está activa. */
|
|
6168
|
+
protected get ariaPressed(): string | null;
|
|
6169
|
+
/** aria del IconButton ⋮ — nombra la cuenta cuando la hay. */
|
|
6170
|
+
protected get menuLabel(): string;
|
|
6171
|
+
protected onMainClick(event: MouseEvent): void;
|
|
6172
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccountItemComponent, never>;
|
|
6173
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccountItemComponent, "ius-account-item", never, { "name": { "alias": "name"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "avatar": { "alias": "avatar"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "monogram": { "alias": "monogram"; "required": false; }; "color": { "alias": "color"; "required": false; }; "shape": { "alias": "shape"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "actionsLabel": { "alias": "actionsLabel"; "required": false; }; "state": { "alias": "state"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; }, { "clicked": "clicked"; }, ["nameRef", "subtitleRef", "trailingRef"], ["[iusAccountItemName]", "[iusAccountItemSubtitle]", "[iusAccountItemTrailing]"], true, never>;
|
|
6174
|
+
static ngAcceptInputType_selected: unknown;
|
|
6175
|
+
static ngAcceptInputType_disabled: unknown;
|
|
6176
|
+
}
|
|
6177
|
+
|
|
6178
|
+
export { AccordionComponent, AccountItemComponent, AlertComponent, AppLayoutComponent, AvatarComponent, ButtonComponent, CaptchaFieldComponent, CardComponent, CarouselComponent, CheckboxComponent, ChipComponent, CircularProgressComponent, CodeFieldComponent, CountdownComponent, CountdownRingComponent, DescriptionListComponent, DividerComponent, DrawerComponent, DropdownComponent, EleniaBubbleComponent, EleniaOrbComponent, EmptyStateComponent, FlexComponent, HeaderBarComponent, ILLUSTRATIONS, ILLUSTRATION_ALIAS, ILLUSTRATION_NAMES, IUS_FILTER_OPERATORS, IUS_TOAST_DEFAULT_DURATION, IUS_TOAST_DEFAULT_ICON, IconButtonComponent, IllustrationComponent, InsigniaComponent, IusAccountItemNameDirective, IusAccountItemSubtitleDirective, IusAccountItemTrailingDirective, IusAlertActionsDirective, IusAlertTrailingDirective, IusCardFooterDirective, IusCardHeaderDirective, IusDrawerFooterDirective, IusDrawerHeaderActionsDirective, IusDrawerTitleDirective, IusDropdownTriggerDirective, IusListCardLeadingDirective, IusListCardOverlineDirective, IusListCardParagraphDirective, IusListCardSubtitleDirective, IusListCardTitleDirective, IusListViewFiltersDirective, IusListViewFooterEndDirective, IusListViewFooterStartDirective, IusListViewHeaderEndDirective, IusListViewHeaderStartDirective, IusListViewToolbarDirective, IusMenuItemTrailingDirective, IusModalFooterDirective, IusPersonItemNameDirective, IusPersonItemTrailingDirective, IusSettingsNavFooterDirective, IusSettingsNavHeaderDirective, IusTagPrefixDirective, IusTagSuffixDirective, IusToastActionDirective, ListCardComponent, ListViewComponent, LoadingComponent, LoadingMarkComponent, MenuComponent, MenuItemComponent, ModalComponent, MultiTextFieldComponent, NavUserComponent, ORB_PERIODS, OauthButtonComponent, OptionItemComponent, PersonItemComponent, PersonPickerComponent, PopoverComponent, QueryBuilderComponent, STATUS_TONES, STATUS_VOCAB, STATUS_VOCABS, STATUS_VOCABS_PENDING, ScrollAreaComponent, SearchBarComponent, SegmentGroupComponent, SegmentedControlComponent, SelectComponent, SettingsNavComponent, ShowMoreComponent, SplitterComponent, StatusChipComponent, StatusStateComponent, TabsComponent, TagComponent, TextAreaComponent, TextButtonComponent, TextComponent, TextFieldComponent, ToastComponent, ToastService, ToastViewportComponent, TooltipComponent, WizardComponent, WizardController, WizardNavComponent, createWizard, pose, poseIso, poseSpeaking, poseThinking, renderCubeSvg, resolveIllustration, resolveStatus, statusOptions, statusOrder, statusToneVars, statusVocab, voiceEnv };
|
|
6179
|
+
export type { ActuacionStatus, AlertSize, AlertTone, AlertVariant, CountdownDirection, CountdownFormat, CountdownRingSize, CountdownRingTone, DescriptionListItem, DescriptionListLayout, DescriptionListSize, DescriptionListValueClick, GestionStatus, IllustrationEntry, IllustrationName, IllustrationSize, IusAccordionItem, IusAccordionVariant, IusAccountItemAction, IusAccountItemState, IusAppLayoutAccent, IusAvatarColor, IusAvatarShape, IusAvatarSize, IusButtonActionResult, IusButtonSize, IusButtonStatus, IusButtonType, IusButtonVariant, IusCaptchaAppearance, IusCaptchaFieldHandle, IusCaptchaProvider, IusCaptchaSize, IusCaptchaState, IusCaptchaTheme, IusCardAs, IusCardPadding, IusCardRadius, IusCardVariant, IusCarouselImage, IusCarouselImageInput, IusCarouselObjectFit, IusCarouselOrder, IusCarouselOverlay, IusCarouselTransition, IusCheckboxLabelPosition, IusCheckboxSize, IusChipSize, IusChipState, IusCircularProgressSize, IusCircularProgressTone, IusCodeFieldSize, IusDividerOrientation, IusDividerTextAlign, IusDividerVariant, IusDrawerSide, IusDrawerSize, IusDropdownItem, IusDropdownTone, IusDropdownVariant, IusEleniaBubblePosition, IusEleniaBubbleSize, IusEleniaOrbMood, IusEleniaOrbSurface, IusEmptyStateAction, IusEmptyStateSize, IusEmptyStateTone, IusEmptyStateVariant, IusFilterField, IusFilterFieldOption, IusFilterFieldType, IusFilterRule, IusFilterValue, IusFlexAlign, IusFlexDirection, IusFlexGap, IusFlexJustify, IusIconButtonShape, IusIconButtonSize, IusIconButtonVariant, IusInsigniaSize, IusInsigniaTone, IusInsigniaVariant, IusListCardAction, IusListCardField, IusListCardMarker, IusListCardMenuItem, IusListCardSize, IusListCardStatus, IusListCardTag, IusListCardTone, IusListViewAction, IusListViewSize, IusListViewSortOption, IusLoadingMarkSurface, IusLoadingVariant, IusMenuItemSize, IusMenuItemState, IusMenuItemVariant, IusMenuOption, IusModalCloseReason, IusModalIconTone, IusModalSize, IusMultiTextFieldSize, IusMultiTextFieldSlot, IusMultiTextFieldState, IusNavUserAccount, IusNavUserLayout, IusNavUserUser, IusOAuthButtonSize, IusOAuthButtonType, IusOAuthProvider, IusOptionItemSize, IusOptionItemState, IusPersonId, IusPersonItemAction, IusPersonItemSize, IusPersonItemState, IusPersonItemVariant, IusPersonOption, IusPersonPickerSelectedContext, IusPopoverPadding, IusPopoverPlacement, IusPopoverTrigger, IusQueryBuilderSize, IusScrollAxis, IusScrollSize, IusSearchBarSize, IusSearchBarState, IusSegmentedSize, IusSegmentedVariant, IusSelectCreateFactory, IusSelectSize, IusSelectState, IusSelectValue, IusSettingsNavAccent, IusSettingsNavItem, IusSettingsNavSize, IusShowMoreAlign, IusSplitterAccent, IusSplitterOrientation, IusStatusChipSize, IusStatusChipTone, IusStatusKind, IusTabItem, IusTabTag, IusTabsAccent, IusTabsSize, IusTagRole, IusTagShape, IusTagSize, IusTagState, IusTagTone, IusTagVariant, IusTextAlign, IusTextAreaSize, IusTextAreaState, IusTextButtonSize, IusTextButtonType, IusTextColor, IusTextFieldSize, IusTextFieldType, IusTextTag, IusTextVariant, IusTextWeight, IusToastItem, IusToastOptions, IusToastPosition, IusToastTone, IusTooltipTrigger, OrbMood, OrbPose, SegmentedOption, SelectOption, SelectOptionGroup, StatusMeta, StatusOption, StatusTone, StatusToneVars, StatusVocabMap, StatusVocabName, UseWizardOptions, WizardApi, WizardStep };
|