@porsche-design-system/components-vue 3.0.0-rc.1 → 3.0.0-rc.3
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/CHANGELOG.md +54 -0
- package/PorscheDesignSystemProvider.vue.d.ts +11 -3
- package/lib/components/AccordionWrapper.vue.d.ts +24 -41
- package/lib/components/BannerWrapper.vue.d.ts +25 -50
- package/lib/components/ButtonGroupWrapper.vue.d.ts +17 -13
- package/lib/components/ButtonPureWrapper.vue.d.ts +35 -80
- package/lib/components/ButtonTileWrapper.vue.d.ts +34 -82
- package/lib/components/ButtonWrapper.vue.d.ts +29 -57
- package/lib/components/CarouselWrapper.vue.d.ts +32 -74
- package/lib/components/CheckboxWrapperWrapper.vue.d.ts +23 -39
- package/lib/components/ContentWrapperWrapper.vue.d.ts +22 -28
- package/lib/components/CrestWrapper.vue.d.ts +15 -23
- package/lib/components/DisplayWrapper.vue.d.ts +26 -42
- package/lib/components/DividerWrapper.vue.d.ts +18 -30
- package/lib/components/FieldsetWrapper.vue.d.ts +24 -40
- package/lib/components/FieldsetWrapperWrapper.vue.d.ts +25 -41
- package/lib/components/FlexItemWrapper.vue.d.ts +28 -44
- package/lib/components/FlexWrapper.vue.d.ts +28 -44
- package/lib/components/GridItemWrapper.vue.d.ts +20 -20
- package/lib/components/GridWrapper.vue.d.ts +22 -27
- package/lib/components/HeadingWrapper.vue.d.ts +26 -42
- package/lib/components/HeadlineWrapper.vue.d.ts +26 -42
- package/lib/components/IconWrapper.vue.d.ts +22 -50
- package/lib/components/IconWrapper.vue.js +8 -8
- package/lib/components/InlineNotificationWrapper.vue.d.ts +27 -56
- package/lib/components/LinkPureWrapper.vue.d.ts +37 -90
- package/lib/components/LinkSocialWrapper.vue.d.ts +25 -45
- package/lib/components/LinkTileModelSignatureWrapper.vue.d.ts +26 -46
- package/lib/components/LinkTileWrapper.vue.d.ts +31 -75
- package/lib/components/LinkWrapper.vue.d.ts +30 -62
- package/lib/components/MarqueWrapper.vue.d.ts +19 -35
- package/lib/components/ModalWrapper.vue.d.ts +22 -43
- package/lib/components/ModelSignatureWrapper.vue.d.ts +18 -30
- package/lib/components/PaginationWrapper.vue.d.ts +22 -59
- package/lib/components/PopoverWrapper.vue.d.ts +22 -30
- package/lib/components/RadioButtonWrapperWrapper.vue.d.ts +22 -34
- package/lib/components/ScrollerWrapper.vue.d.ts +33 -49
- package/lib/components/ScrollerWrapper.vue.js +4 -3
- package/lib/components/SegmentedControlItemWrapper.vue.d.ts +20 -31
- package/lib/components/SegmentedControlWrapper.vue.d.ts +20 -25
- package/lib/components/SelectWrapperWrapper.vue.d.ts +27 -55
- package/lib/components/SpinnerWrapper.vue.d.ts +16 -24
- package/lib/components/StepperHorizontalItemWrapper.vue.d.ts +18 -17
- package/lib/components/StepperHorizontalWrapper.vue.d.ts +19 -17
- package/lib/components/SwitchWrapper.vue.d.ts +24 -45
- package/lib/components/TableBodyWrapper.vue.d.ts +6 -1
- package/lib/components/TableCellWrapper.vue.d.ts +16 -12
- package/lib/components/TableHeadCellWrapper.vue.d.ts +18 -22
- package/lib/components/TableHeadRowWrapper.vue.d.ts +6 -1
- package/lib/components/TableHeadWrapper.vue.d.ts +6 -1
- package/lib/components/TableRowWrapper.vue.d.ts +6 -1
- package/lib/components/TableWrapper.vue.d.ts +18 -19
- package/lib/components/TabsBarWrapper.vue.d.ts +25 -42
- package/lib/components/TabsItemWrapper.vue.d.ts +9 -8
- package/lib/components/TabsWrapper.vue.d.ts +26 -43
- package/lib/components/TagDismissibleWrapper.vue.d.ts +22 -30
- package/lib/components/TagWrapper.vue.d.ts +22 -30
- package/lib/components/TextFieldWrapperWrapper.vue.d.ts +31 -71
- package/lib/components/TextListItemWrapper.vue.d.ts +6 -1
- package/lib/components/TextListWrapper.vue.d.ts +22 -30
- package/lib/components/TextWrapper.vue.d.ts +28 -48
- package/lib/components/TextareaWrapperWrapper.vue.d.ts +25 -49
- package/lib/components/ToastWrapper.vue.d.ts +12 -12
- package/lib/components/WordmarkWrapper.vue.d.ts +19 -35
- package/lib/types.d.ts +210 -191
- package/package.json +2 -2
package/lib/types.d.ts
CHANGED
|
@@ -195,14 +195,14 @@ declare const FORM_STATES: readonly [
|
|
|
195
195
|
"error",
|
|
196
196
|
"success"
|
|
197
197
|
];
|
|
198
|
-
export
|
|
198
|
+
export type FormState = typeof FORM_STATES[number];
|
|
199
199
|
declare const BUTTON_ARIA_ATTRIBUTES: readonly [
|
|
200
200
|
"aria-label",
|
|
201
201
|
"aria-expanded",
|
|
202
202
|
"aria-pressed",
|
|
203
203
|
"aria-haspopup"
|
|
204
204
|
];
|
|
205
|
-
export
|
|
205
|
+
export type ButtonAriaAttribute = typeof BUTTON_ARIA_ATTRIBUTES[number];
|
|
206
206
|
declare const breakpoints: readonly [
|
|
207
207
|
"base",
|
|
208
208
|
"xs",
|
|
@@ -213,12 +213,12 @@ declare const breakpoints: readonly [
|
|
|
213
213
|
"xxl"
|
|
214
214
|
];
|
|
215
215
|
export type Breakpoint = (typeof breakpoints)[number];
|
|
216
|
-
export
|
|
216
|
+
export type BreakpointValues<T> = {
|
|
217
217
|
[key in Breakpoint]?: T;
|
|
218
218
|
} & {
|
|
219
219
|
base: T;
|
|
220
220
|
};
|
|
221
|
-
export
|
|
221
|
+
export type BreakpointCustomizable<T> = T | BreakpointValues<T> | string;
|
|
222
222
|
declare const TILE_ASPECT_RATIOS: readonly [
|
|
223
223
|
"1:1",
|
|
224
224
|
"4:3",
|
|
@@ -226,34 +226,38 @@ declare const TILE_ASPECT_RATIOS: readonly [
|
|
|
226
226
|
"16:9",
|
|
227
227
|
"9:16"
|
|
228
228
|
];
|
|
229
|
-
export
|
|
229
|
+
export type TileAspectRatio = (typeof TILE_ASPECT_RATIOS)[number];
|
|
230
230
|
declare const TILE_SIZES: readonly [
|
|
231
231
|
"default",
|
|
232
232
|
"inherit"
|
|
233
233
|
];
|
|
234
|
-
export
|
|
234
|
+
export type TileSize = (typeof TILE_SIZES)[number];
|
|
235
235
|
declare const TILE_WEIGHTS: readonly [
|
|
236
236
|
"regular",
|
|
237
237
|
"semi-bold"
|
|
238
238
|
];
|
|
239
|
-
export
|
|
239
|
+
export type TileWeight = (typeof TILE_WEIGHTS)[number];
|
|
240
240
|
declare const TILE_ALIGNS: readonly [
|
|
241
241
|
"top",
|
|
242
242
|
"bottom"
|
|
243
243
|
];
|
|
244
|
-
export
|
|
244
|
+
export type TileAlign = (typeof TILE_ALIGNS)[number];
|
|
245
|
+
declare const SCROLLER_ARIA_ATTRIBUTES: readonly [
|
|
246
|
+
"role"
|
|
247
|
+
];
|
|
248
|
+
export type ScrollerAriaAttribute = (typeof SCROLLER_ARIA_ATTRIBUTES)[number];
|
|
245
249
|
declare const GRADIENT_COLOR_SCHEMES: readonly [
|
|
246
250
|
"default",
|
|
247
251
|
"surface"
|
|
248
252
|
];
|
|
249
253
|
/** @deprecated */
|
|
250
|
-
export
|
|
254
|
+
export type ScrollerGradientColorScheme = (typeof GRADIENT_COLOR_SCHEMES)[number];
|
|
251
255
|
declare const GRADIENT_COLORS: readonly [
|
|
252
256
|
"background-base",
|
|
253
257
|
"background-surface"
|
|
254
258
|
];
|
|
255
|
-
export
|
|
256
|
-
export
|
|
259
|
+
export type ScrollerGradientColor = (typeof GRADIENT_COLORS)[number];
|
|
260
|
+
export type ScrollerScrollToPosition = {
|
|
257
261
|
scrollPosition: number;
|
|
258
262
|
isSmooth?: boolean;
|
|
259
263
|
} | string;
|
|
@@ -262,24 +266,24 @@ declare const SCROLL_INDICATOR_POSITIONS: readonly [
|
|
|
262
266
|
"center"
|
|
263
267
|
];
|
|
264
268
|
/** @deprecated */
|
|
265
|
-
export
|
|
266
|
-
export
|
|
269
|
+
export type ScrollerScrollIndicatorPosition = (typeof SCROLL_INDICATOR_POSITIONS)[number];
|
|
270
|
+
export type ScrollerAlignScrollIndicator = ScrollerScrollIndicatorPosition;
|
|
267
271
|
declare const THEMES: readonly [
|
|
268
272
|
"light",
|
|
269
273
|
"dark"
|
|
270
274
|
];
|
|
271
|
-
export
|
|
275
|
+
export type Theme = typeof THEMES[number];
|
|
272
276
|
declare const ALIGN_LABELS: readonly [
|
|
273
277
|
"left",
|
|
274
278
|
"right"
|
|
275
279
|
];
|
|
276
|
-
export
|
|
280
|
+
export type AlignLabel = typeof ALIGN_LABELS[number];
|
|
277
281
|
declare const BUTTON_TYPES: readonly [
|
|
278
282
|
"button",
|
|
279
283
|
"submit",
|
|
280
284
|
"reset"
|
|
281
285
|
];
|
|
282
|
-
export
|
|
286
|
+
export type ButtonType = typeof BUTTON_TYPES[number];
|
|
283
287
|
declare const HEADING_TAGS: readonly [
|
|
284
288
|
"h1",
|
|
285
289
|
"h2",
|
|
@@ -288,19 +292,19 @@ declare const HEADING_TAGS: readonly [
|
|
|
288
292
|
"h5",
|
|
289
293
|
"h6"
|
|
290
294
|
];
|
|
291
|
-
export
|
|
295
|
+
export type HeadingTag = typeof HEADING_TAGS[number];
|
|
292
296
|
declare const LINK_BUTTON_VARIANTS: readonly [
|
|
293
297
|
"primary",
|
|
294
298
|
"secondary",
|
|
295
299
|
"tertiary"
|
|
296
300
|
];
|
|
297
|
-
export
|
|
301
|
+
export type LinkButtonVariant = typeof LINK_BUTTON_VARIANTS[number];
|
|
298
302
|
declare const TEXT_ALIGNS: readonly [
|
|
299
303
|
"left",
|
|
300
304
|
"center",
|
|
301
305
|
"right"
|
|
302
306
|
];
|
|
303
|
-
export
|
|
307
|
+
export type TextAlign = typeof TEXT_ALIGNS[number];
|
|
304
308
|
declare const TEXT_COLORS: readonly [
|
|
305
309
|
"primary",
|
|
306
310
|
"contrast-low",
|
|
@@ -318,7 +322,7 @@ declare const TEXT_COLORS: readonly [
|
|
|
318
322
|
"neutral-contrast-high",
|
|
319
323
|
"notification-neutral"
|
|
320
324
|
];
|
|
321
|
-
export
|
|
325
|
+
export type TextColor = typeof TEXT_COLORS[number];
|
|
322
326
|
declare const TEXT_SIZES: readonly [
|
|
323
327
|
"xx-small",
|
|
324
328
|
"x-small",
|
|
@@ -328,7 +332,7 @@ declare const TEXT_SIZES: readonly [
|
|
|
328
332
|
"x-large",
|
|
329
333
|
"inherit"
|
|
330
334
|
];
|
|
331
|
-
export
|
|
335
|
+
export type TextSize = typeof TEXT_SIZES[number];
|
|
332
336
|
declare const TEXT_WEIGHTS: readonly [
|
|
333
337
|
"regular",
|
|
334
338
|
"semi-bold",
|
|
@@ -336,16 +340,16 @@ declare const TEXT_WEIGHTS: readonly [
|
|
|
336
340
|
"thin",
|
|
337
341
|
"semibold"
|
|
338
342
|
];
|
|
339
|
-
export
|
|
343
|
+
export type TextWeight = typeof TEXT_WEIGHTS[number];
|
|
340
344
|
declare const LINK_TARGETS: readonly [
|
|
341
345
|
"_self",
|
|
342
346
|
"_blank",
|
|
343
347
|
"_parent",
|
|
344
348
|
"_top"
|
|
345
349
|
];
|
|
346
|
-
export
|
|
347
|
-
export
|
|
348
|
-
export
|
|
350
|
+
export type LinkTarget = typeof LINK_TARGETS[number] | string;
|
|
351
|
+
export type Booleanish = boolean | "true" | "false";
|
|
352
|
+
export type AriaAttributes = {
|
|
349
353
|
/** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
|
|
350
354
|
"aria-activedescendant"?: string | undefined;
|
|
351
355
|
/** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */
|
|
@@ -530,7 +534,10 @@ export declare type AriaAttributes = {
|
|
|
530
534
|
"aria-valuenow"?: number | undefined;
|
|
531
535
|
/** Defines the human readable text alternative of aria-valuenow for a range widget. */
|
|
532
536
|
"aria-valuetext"?: string | undefined;
|
|
537
|
+
/** All the WAI-ARIA 1.1 role attribute values from https://www.w3.org/TR/wai-aria-1.1/#role_definitions */
|
|
538
|
+
role?: AriaRole;
|
|
533
539
|
};
|
|
540
|
+
export type AriaRole = "alert" | "alertdialog" | "application" | "article" | "banner" | "button" | "cell" | "checkbox" | "columnheader" | "combobox" | "complementary" | "contentinfo" | "definition" | "dialog" | "directory" | "document" | "feed" | "figure" | "form" | "grid" | "gridcell" | "group" | "heading" | "img" | "link" | "list" | "listbox" | "listitem" | "log" | "main" | "marquee" | "math" | "menu" | "menubar" | "menuitem" | "menuitemcheckbox" | "menuitemradio" | "navigation" | "none" | "note" | "option" | "presentation" | "progressbar" | "radio" | "radiogroup" | "region" | "row" | "rowgroup" | "rowheader" | "scrollbar" | "search" | "searchbox" | "separator" | "slider" | "spinbutton" | "status" | "switch" | "tab" | "table" | "tablist" | "tabpanel" | "term" | "textbox" | "timer" | "toolbar" | "tooltip" | "tree" | "treegrid" | "treeitem";
|
|
534
541
|
export type LinkButtonIconName = IconName | "none";
|
|
535
542
|
export type ButtonVariant = LinkButtonVariant;
|
|
536
543
|
export type LinkVariant = LinkButtonVariant;
|
|
@@ -539,66 +546,66 @@ declare const ACCORDION_SIZES: readonly [
|
|
|
539
546
|
"small",
|
|
540
547
|
"medium"
|
|
541
548
|
];
|
|
542
|
-
export
|
|
543
|
-
export
|
|
549
|
+
export type AccordionSize = (typeof ACCORDION_SIZES)[number];
|
|
550
|
+
export type AccordionUpdateEvent = {
|
|
544
551
|
open: boolean;
|
|
545
552
|
};
|
|
546
|
-
export
|
|
553
|
+
export type AccordionTag = HeadingTag;
|
|
547
554
|
declare const BANNER_STATES: readonly [
|
|
548
555
|
"info",
|
|
549
556
|
"warning",
|
|
550
557
|
"error",
|
|
551
558
|
"neutral"
|
|
552
559
|
];
|
|
553
|
-
export
|
|
560
|
+
export type BannerState = typeof BANNER_STATES[number];
|
|
554
561
|
declare const BANNER_WIDTHS: readonly [
|
|
555
562
|
"extended",
|
|
556
563
|
"basic",
|
|
557
564
|
"fluid"
|
|
558
565
|
];
|
|
559
566
|
/** @deprecated */
|
|
560
|
-
export
|
|
561
|
-
export
|
|
567
|
+
export type BannerWidth = typeof BANNER_WIDTHS[number];
|
|
568
|
+
export type ButtonIcon = LinkButtonIconName;
|
|
562
569
|
declare const GROUP_DIRECTIONS: readonly [
|
|
563
570
|
"row",
|
|
564
571
|
"column"
|
|
565
572
|
];
|
|
566
|
-
export
|
|
567
|
-
export
|
|
568
|
-
export
|
|
569
|
-
export
|
|
570
|
-
export
|
|
571
|
-
export
|
|
572
|
-
export
|
|
573
|
-
export
|
|
574
|
-
export
|
|
575
|
-
export
|
|
576
|
-
export
|
|
577
|
-
export
|
|
578
|
-
export
|
|
579
|
-
export
|
|
580
|
-
export
|
|
573
|
+
export type GroupDirection = (typeof GROUP_DIRECTIONS)[number];
|
|
574
|
+
export type ButtonGroupDirection = GroupDirection;
|
|
575
|
+
export type ButtonPureType = ButtonType;
|
|
576
|
+
export type ButtonPureIcon = LinkButtonIconName;
|
|
577
|
+
export type ButtonPureAriaAttribute = ButtonAriaAttribute;
|
|
578
|
+
export type ButtonPureAlignLabel = AlignLabel;
|
|
579
|
+
export type ButtonPureWeight = TextWeight;
|
|
580
|
+
export type ButtonPureSize = TextSize;
|
|
581
|
+
export type ButtonTileAriaAttribute = ButtonAriaAttribute;
|
|
582
|
+
export type ButtonTileIcon = LinkButtonIconName;
|
|
583
|
+
export type ButtonTileType = ButtonType;
|
|
584
|
+
export type ButtonTileAspectRatio = TileAspectRatio;
|
|
585
|
+
export type ButtonTileSize = TileSize;
|
|
586
|
+
export type ButtonTileWeight = TileWeight;
|
|
587
|
+
export type ButtonTileAlign = TileAlign;
|
|
581
588
|
declare const CAROUSEL_WIDTHS: readonly [
|
|
582
589
|
"basic",
|
|
583
590
|
"extended"
|
|
584
591
|
];
|
|
585
|
-
export
|
|
592
|
+
export type CarouselWidth = (typeof CAROUSEL_WIDTHS)[number];
|
|
586
593
|
declare const CAROUSEL_ALIGN_HEADERS: readonly [
|
|
587
594
|
"left",
|
|
588
595
|
"center"
|
|
589
596
|
];
|
|
590
|
-
export
|
|
591
|
-
export
|
|
592
|
-
export
|
|
597
|
+
export type CarouselAlignHeader = (typeof CAROUSEL_ALIGN_HEADERS)[number];
|
|
598
|
+
export type CarouselInternationalization = Partial<Record<"prev" | "next" | "first" | "last" | "slideLabel" | "slide", string>> | string;
|
|
599
|
+
export type CarouselUpdateEvent = {
|
|
593
600
|
activeIndex: number;
|
|
594
601
|
previousIndex: number;
|
|
595
602
|
};
|
|
596
|
-
export
|
|
603
|
+
export type CheckboxWrapperState = FormState;
|
|
597
604
|
declare const CONTENT_WRAPPER_BACKGROUND_COLORS: readonly [
|
|
598
605
|
"transparent",
|
|
599
606
|
"default"
|
|
600
607
|
];
|
|
601
|
-
export
|
|
608
|
+
export type ContentWrapperBackgroundColor = typeof CONTENT_WRAPPER_BACKGROUND_COLORS[number];
|
|
602
609
|
declare const CONTENT_WRAPPER_WIDTHS: readonly [
|
|
603
610
|
"narrow",
|
|
604
611
|
"basic",
|
|
@@ -606,12 +613,12 @@ declare const CONTENT_WRAPPER_WIDTHS: readonly [
|
|
|
606
613
|
"fluid",
|
|
607
614
|
"full"
|
|
608
615
|
];
|
|
609
|
-
export
|
|
610
|
-
export
|
|
616
|
+
export type ContentWrapperWidth = typeof CONTENT_WRAPPER_WIDTHS[number];
|
|
617
|
+
export type CrestTarget = LinkTarget;
|
|
611
618
|
declare const CREST_ARIA_ATTRIBUTES: readonly [
|
|
612
619
|
"aria-label"
|
|
613
620
|
];
|
|
614
|
-
export
|
|
621
|
+
export type CrestAriaAttribute = (typeof CREST_ARIA_ATTRIBUTES)[number];
|
|
615
622
|
declare const DISPLAY_TAGS: readonly [
|
|
616
623
|
"h1",
|
|
617
624
|
"h2",
|
|
@@ -620,20 +627,20 @@ declare const DISPLAY_TAGS: readonly [
|
|
|
620
627
|
"h5",
|
|
621
628
|
"h6"
|
|
622
629
|
];
|
|
623
|
-
export
|
|
630
|
+
export type DisplayTag = typeof DISPLAY_TAGS[number];
|
|
624
631
|
declare const DISPLAY_SIZES: readonly [
|
|
625
632
|
"small",
|
|
626
633
|
"medium",
|
|
627
634
|
"large",
|
|
628
635
|
"inherit"
|
|
629
636
|
];
|
|
630
|
-
export
|
|
637
|
+
export type DisplaySize = typeof DISPLAY_SIZES[number];
|
|
631
638
|
declare const DISPLAY_COLORS: readonly [
|
|
632
639
|
"primary",
|
|
633
640
|
"inherit"
|
|
634
641
|
];
|
|
635
|
-
export
|
|
636
|
-
export
|
|
642
|
+
export type DisplayColor = typeof DISPLAY_COLORS[number];
|
|
643
|
+
export type DisplayAlign = TextAlign;
|
|
637
644
|
declare const DIVIDER_COLORS: readonly [
|
|
638
645
|
"contrast-low",
|
|
639
646
|
"contrast-medium",
|
|
@@ -642,35 +649,35 @@ declare const DIVIDER_COLORS: readonly [
|
|
|
642
649
|
"neutral-contrast-medium",
|
|
643
650
|
"neutral-contrast-low"
|
|
644
651
|
];
|
|
645
|
-
export
|
|
652
|
+
export type DividerColor = typeof DIVIDER_COLORS[number];
|
|
646
653
|
declare const DIVIDER_DIRECTIONS: readonly [
|
|
647
654
|
"vertical",
|
|
648
655
|
"horizontal"
|
|
649
656
|
];
|
|
650
|
-
export
|
|
651
|
-
export
|
|
657
|
+
export type DividerDirection = typeof DIVIDER_DIRECTIONS[number];
|
|
658
|
+
export type DividerOrientation = DividerDirection;
|
|
652
659
|
declare const FIELDSET_LABEL_SIZES: readonly [
|
|
653
660
|
"small",
|
|
654
661
|
"medium"
|
|
655
662
|
];
|
|
656
|
-
export
|
|
657
|
-
export
|
|
658
|
-
export
|
|
659
|
-
export
|
|
660
|
-
export
|
|
663
|
+
export type FieldsetLabelSize = typeof FIELDSET_LABEL_SIZES[number];
|
|
664
|
+
export type FieldsetState = FormState;
|
|
665
|
+
export type FieldsetWrapperLabelSize = FieldsetLabelSize;
|
|
666
|
+
export type FieldsetWrapperState = FieldsetState;
|
|
667
|
+
export type FlexInline = boolean;
|
|
661
668
|
declare const FLEX_WRAPS: readonly [
|
|
662
669
|
"nowrap",
|
|
663
670
|
"wrap",
|
|
664
671
|
"wrap-reverse"
|
|
665
672
|
];
|
|
666
|
-
export
|
|
673
|
+
export type FlexWrap = typeof FLEX_WRAPS[number];
|
|
667
674
|
declare const FLEX_DIRECTIONS: readonly [
|
|
668
675
|
"row",
|
|
669
676
|
"row-reverse",
|
|
670
677
|
"column",
|
|
671
678
|
"column-reverse"
|
|
672
679
|
];
|
|
673
|
-
export
|
|
680
|
+
export type FlexDirection = typeof FLEX_DIRECTIONS[number];
|
|
674
681
|
declare const FLEX_JUSTIFY_CONTENTS: readonly [
|
|
675
682
|
"flex-start",
|
|
676
683
|
"flex-end",
|
|
@@ -679,7 +686,7 @@ declare const FLEX_JUSTIFY_CONTENTS: readonly [
|
|
|
679
686
|
"space-around",
|
|
680
687
|
"space-evenly"
|
|
681
688
|
];
|
|
682
|
-
export
|
|
689
|
+
export type FlexJustifyContent = typeof FLEX_JUSTIFY_CONTENTS[number];
|
|
683
690
|
declare const FLEX_ALIGN_ITEMS: readonly [
|
|
684
691
|
"stretch",
|
|
685
692
|
"flex-start",
|
|
@@ -687,7 +694,7 @@ declare const FLEX_ALIGN_ITEMS: readonly [
|
|
|
687
694
|
"center",
|
|
688
695
|
"baseline"
|
|
689
696
|
];
|
|
690
|
-
export
|
|
697
|
+
export type FlexAlignItems = typeof FLEX_ALIGN_ITEMS[number];
|
|
691
698
|
declare const FLEX_ALIGN_CONTENTS: readonly [
|
|
692
699
|
"stretch",
|
|
693
700
|
"flex-start",
|
|
@@ -697,7 +704,7 @@ declare const FLEX_ALIGN_CONTENTS: readonly [
|
|
|
697
704
|
"space-around",
|
|
698
705
|
"space-evenly"
|
|
699
706
|
];
|
|
700
|
-
export
|
|
707
|
+
export type FlexAlignContent = typeof FLEX_ALIGN_CONTENTS[number];
|
|
701
708
|
declare const FLEX_ITEM_WIDTHS: readonly [
|
|
702
709
|
"auto",
|
|
703
710
|
"one-quarter",
|
|
@@ -707,7 +714,7 @@ declare const FLEX_ITEM_WIDTHS: readonly [
|
|
|
707
714
|
"three-quarters",
|
|
708
715
|
"full"
|
|
709
716
|
];
|
|
710
|
-
export
|
|
717
|
+
export type FlexItemWidth = typeof FLEX_ITEM_WIDTHS[number];
|
|
711
718
|
declare const FLEX_ITEM_OFFSETS: readonly [
|
|
712
719
|
"none",
|
|
713
720
|
"one-quarter",
|
|
@@ -716,7 +723,7 @@ declare const FLEX_ITEM_OFFSETS: readonly [
|
|
|
716
723
|
"two-thirds",
|
|
717
724
|
"three-quarters"
|
|
718
725
|
];
|
|
719
|
-
export
|
|
726
|
+
export type FlexItemOffset = typeof FLEX_ITEM_OFFSETS[number];
|
|
720
727
|
declare const FLEX_ITEM_ALIGN_SELFS: readonly [
|
|
721
728
|
"auto",
|
|
722
729
|
"flex-start",
|
|
@@ -725,42 +732,42 @@ declare const FLEX_ITEM_ALIGN_SELFS: readonly [
|
|
|
725
732
|
"baseline",
|
|
726
733
|
"stretch"
|
|
727
734
|
];
|
|
728
|
-
export
|
|
735
|
+
export type FlexItemAlignSelf = typeof FLEX_ITEM_ALIGN_SELFS[number];
|
|
729
736
|
declare const FLEX_ITEM_GROWS: readonly [
|
|
730
737
|
0,
|
|
731
738
|
1
|
|
732
739
|
];
|
|
733
|
-
export
|
|
740
|
+
export type FlexItemGrow = typeof FLEX_ITEM_GROWS[number];
|
|
734
741
|
declare const FLEX_ITEM_SHRINKS: readonly [
|
|
735
742
|
0,
|
|
736
743
|
1
|
|
737
744
|
];
|
|
738
|
-
export
|
|
745
|
+
export type FlexItemShrink = typeof FLEX_ITEM_SHRINKS[number];
|
|
739
746
|
declare const FLEX_ITEM_FLEXS: readonly [
|
|
740
747
|
"initial",
|
|
741
748
|
"auto",
|
|
742
749
|
"none",
|
|
743
750
|
"equal"
|
|
744
751
|
];
|
|
745
|
-
export
|
|
752
|
+
export type FlexItemFlex = typeof FLEX_ITEM_FLEXS[number];
|
|
746
753
|
declare const GRID_DIRECTIONS: readonly [
|
|
747
754
|
"row",
|
|
748
755
|
"row-reverse",
|
|
749
756
|
"column",
|
|
750
757
|
"column-reverse"
|
|
751
758
|
];
|
|
752
|
-
export
|
|
759
|
+
export type GridDirection = typeof GRID_DIRECTIONS[number];
|
|
753
760
|
declare const GRID_WRAPS: readonly [
|
|
754
761
|
"nowrap",
|
|
755
762
|
"wrap"
|
|
756
763
|
];
|
|
757
|
-
export
|
|
764
|
+
export type GridWrap = typeof GRID_WRAPS[number];
|
|
758
765
|
declare const GRID_GUTTERS: readonly [
|
|
759
766
|
16,
|
|
760
767
|
24,
|
|
761
768
|
36
|
|
762
769
|
];
|
|
763
|
-
export
|
|
770
|
+
export type GridGutter = typeof GRID_GUTTERS[number];
|
|
764
771
|
declare const GRID_ITEM_SIZES: readonly [
|
|
765
772
|
1,
|
|
766
773
|
2,
|
|
@@ -775,7 +782,7 @@ declare const GRID_ITEM_SIZES: readonly [
|
|
|
775
782
|
11,
|
|
776
783
|
12
|
|
777
784
|
];
|
|
778
|
-
export
|
|
785
|
+
export type GridItemSize = typeof GRID_ITEM_SIZES[number];
|
|
779
786
|
declare const GRID_ITEM_OFFSETS: readonly [
|
|
780
787
|
0,
|
|
781
788
|
1,
|
|
@@ -790,7 +797,7 @@ declare const GRID_ITEM_OFFSETS: readonly [
|
|
|
790
797
|
10,
|
|
791
798
|
11
|
|
792
799
|
];
|
|
793
|
-
export
|
|
800
|
+
export type GridItemOffset = typeof GRID_ITEM_OFFSETS[number];
|
|
794
801
|
declare const HEADING_SIZES: readonly [
|
|
795
802
|
"small",
|
|
796
803
|
"medium",
|
|
@@ -799,13 +806,13 @@ declare const HEADING_SIZES: readonly [
|
|
|
799
806
|
"xx-large",
|
|
800
807
|
"inherit"
|
|
801
808
|
];
|
|
802
|
-
export
|
|
809
|
+
export type HeadingSize = typeof HEADING_SIZES[number];
|
|
803
810
|
declare const HEADING_COLORS: readonly [
|
|
804
811
|
"primary",
|
|
805
812
|
"inherit"
|
|
806
813
|
];
|
|
807
|
-
export
|
|
808
|
-
export
|
|
814
|
+
export type HeadingColor = typeof HEADING_COLORS[number];
|
|
815
|
+
export type HeadingAlign = TextAlign;
|
|
809
816
|
declare const HEADLINE_VARIANTS: readonly [
|
|
810
817
|
"large-title",
|
|
811
818
|
"headline-1",
|
|
@@ -814,9 +821,9 @@ declare const HEADLINE_VARIANTS: readonly [
|
|
|
814
821
|
"headline-4",
|
|
815
822
|
"headline-5"
|
|
816
823
|
];
|
|
817
|
-
export
|
|
818
|
-
export
|
|
819
|
-
export
|
|
824
|
+
export type HeadlineVariantType = typeof HEADLINE_VARIANTS[number];
|
|
825
|
+
export type HeadlineVariantCustom = Exclude<BreakpointCustomizable<TextSize>, TextSize>;
|
|
826
|
+
export type HeadlineVariant = HeadlineVariantType | HeadlineVariantCustom | Extract<TextSize, "inherit">;
|
|
820
827
|
declare const HEADLINE_TAGS: readonly [
|
|
821
828
|
"h1",
|
|
822
829
|
"h2",
|
|
@@ -825,19 +832,19 @@ declare const HEADLINE_TAGS: readonly [
|
|
|
825
832
|
"h5",
|
|
826
833
|
"h6"
|
|
827
834
|
];
|
|
828
|
-
export
|
|
835
|
+
export type HeadlineTag = typeof HEADLINE_TAGS[number];
|
|
829
836
|
declare const HEADLINE_COLORS: readonly [
|
|
830
837
|
"primary",
|
|
831
838
|
"default",
|
|
832
839
|
"inherit"
|
|
833
840
|
];
|
|
834
|
-
export
|
|
835
|
-
export
|
|
841
|
+
export type HeadlineColor = typeof HEADLINE_COLORS[number];
|
|
842
|
+
export type HeadlineAlign = TextAlign;
|
|
836
843
|
declare const ICON_ARIA_ATTRIBUTES: readonly [
|
|
837
844
|
"aria-label"
|
|
838
845
|
];
|
|
839
|
-
export
|
|
840
|
-
export
|
|
846
|
+
export type IconAriaAttribute = typeof ICON_ARIA_ATTRIBUTES[number];
|
|
847
|
+
export type IconSize = TextSize;
|
|
841
848
|
declare const ICON_COLORS: readonly [
|
|
842
849
|
"primary",
|
|
843
850
|
"contrast-low",
|
|
@@ -856,7 +863,7 @@ declare const ICON_COLORS: readonly [
|
|
|
856
863
|
"notification-neutral",
|
|
857
864
|
"state-disabled"
|
|
858
865
|
];
|
|
859
|
-
export
|
|
866
|
+
export type IconColor = typeof ICON_COLORS[number];
|
|
860
867
|
declare const INLINE_NOTIFICATION_STATES: readonly [
|
|
861
868
|
"success",
|
|
862
869
|
"info",
|
|
@@ -864,32 +871,71 @@ declare const INLINE_NOTIFICATION_STATES: readonly [
|
|
|
864
871
|
"error",
|
|
865
872
|
"neutral"
|
|
866
873
|
];
|
|
867
|
-
export
|
|
868
|
-
export
|
|
874
|
+
export type InlineNotificationState = typeof INLINE_NOTIFICATION_STATES[number];
|
|
875
|
+
export type InlineNotificationActionIcon = IconName;
|
|
869
876
|
declare const LINK_ARIA_ATTRIBUTES: readonly [
|
|
870
877
|
"aria-label"
|
|
871
878
|
];
|
|
872
|
-
export
|
|
873
|
-
export
|
|
874
|
-
export
|
|
875
|
-
export
|
|
876
|
-
export
|
|
877
|
-
export
|
|
878
|
-
export
|
|
879
|
-
export
|
|
880
|
-
export
|
|
881
|
-
export
|
|
882
|
-
export
|
|
883
|
-
export
|
|
884
|
-
export
|
|
885
|
-
export
|
|
886
|
-
export
|
|
879
|
+
export type LinkAriaAttribute = typeof LINK_ARIA_ATTRIBUTES[number];
|
|
880
|
+
export type LinkIcon = LinkButtonIconName;
|
|
881
|
+
export type LinkPureIcon = LinkButtonIconName;
|
|
882
|
+
export type LinkPureAriaAttribute = LinkAriaAttribute;
|
|
883
|
+
export type LinkPureAlignLabel = AlignLabel;
|
|
884
|
+
export type LinkPureWeight = TextWeight;
|
|
885
|
+
export type LinkPureSize = TextSize;
|
|
886
|
+
export type LinkPureTarget = LinkTarget;
|
|
887
|
+
export type LinkSocialIcon = Extract<IconName, "logo-facebook" | "logo-google" | "logo-instagram" | "logo-linkedin" | "logo-pinterest" | "logo-twitter" | "logo-wechat" | "logo-whatsapp" | "logo-xing" | "logo-youtube" | "logo-baidu" | "logo-delicious" | "logo-digg" | "logo-foursquare" | "logo-gmail" | "logo-hatena" | "logo-kaixin" | "logo-kakaotalk" | "logo-naver" | "logo-qq-share" | "logo-qq" | "logo-reddit" | "logo-skyrock" | "logo-sohu" | "logo-tecent" | "logo-telegram" | "logo-tiktok" | "logo-tumblr" | "logo-viber" | "logo-vk" | "logo-weibo" | "logo-yahoo" | "logo-youku">;
|
|
888
|
+
export type LinkSocialTarget = LinkTarget;
|
|
889
|
+
export type LinkTileTarget = LinkTarget;
|
|
890
|
+
export type LinkTileAriaAttribute = LinkAriaAttribute;
|
|
891
|
+
export type LinkTileAspectRatio = TileAspectRatio;
|
|
892
|
+
export type LinkTileSize = TileSize;
|
|
893
|
+
export type LinkTileAlign = TileAlign;
|
|
887
894
|
declare const LINK_TILE_WEIGHTS: readonly [
|
|
888
895
|
"regular",
|
|
889
896
|
"semi-bold",
|
|
890
897
|
"semibold"
|
|
891
898
|
];
|
|
892
|
-
export
|
|
899
|
+
export type LinkTileWeight = (typeof LINK_TILE_WEIGHTS)[number];
|
|
900
|
+
declare const LINK_TILE_MODEL_SIGNATURE_MODELS: readonly [
|
|
901
|
+
"718",
|
|
902
|
+
"911",
|
|
903
|
+
"boxster",
|
|
904
|
+
"cayenne",
|
|
905
|
+
"cayman",
|
|
906
|
+
"macan",
|
|
907
|
+
"panamera",
|
|
908
|
+
"taycan",
|
|
909
|
+
"turbo-s",
|
|
910
|
+
"turbo"
|
|
911
|
+
];
|
|
912
|
+
export type LinkTileModelSignatureModel = (typeof LINK_TILE_MODEL_SIGNATURE_MODELS)[number];
|
|
913
|
+
declare const LINK_TILE_MODEL_SIGNATURE_HEADING_TAGS: readonly [
|
|
914
|
+
"h2",
|
|
915
|
+
"h3",
|
|
916
|
+
"h4",
|
|
917
|
+
"h5",
|
|
918
|
+
"h6"
|
|
919
|
+
];
|
|
920
|
+
export type LinkTileModelSignatureHeadingTag = (typeof LINK_TILE_MODEL_SIGNATURE_HEADING_TAGS)[number];
|
|
921
|
+
export type LinkTileModelSignatureWeight = TileWeight;
|
|
922
|
+
export type LinkTileModelSignatureAspectRatio = TileAspectRatio;
|
|
923
|
+
export type LinkTileModelSignatureLinkDirection = GroupDirection;
|
|
924
|
+
declare const MARQUE_SIZES: readonly [
|
|
925
|
+
"responsive",
|
|
926
|
+
"small",
|
|
927
|
+
"medium"
|
|
928
|
+
];
|
|
929
|
+
export type MarqueSize = typeof MARQUE_SIZES[number];
|
|
930
|
+
export type MarqueTarget = LinkTarget;
|
|
931
|
+
declare const MARQUE_ARIA_ATTRIBUTES: readonly [
|
|
932
|
+
"aria-label"
|
|
933
|
+
];
|
|
934
|
+
export type MarqueAriaAttribute = typeof MARQUE_ARIA_ATTRIBUTES[number];
|
|
935
|
+
declare const MODAL_ARIA_ATTRIBUTES: readonly [
|
|
936
|
+
"aria-label"
|
|
937
|
+
];
|
|
938
|
+
export type ModalAriaAttribute = (typeof MODAL_ARIA_ATTRIBUTES)[number];
|
|
893
939
|
declare const MODEL_SIGNATURES_MANIFEST: {
|
|
894
940
|
"718": string;
|
|
895
941
|
"911": string;
|
|
@@ -906,8 +952,8 @@ declare const MODEL_SIGNATURE_SIZES: readonly [
|
|
|
906
952
|
"small",
|
|
907
953
|
"inherit"
|
|
908
954
|
];
|
|
909
|
-
export
|
|
910
|
-
export
|
|
955
|
+
export type ModelSignatureSize = (typeof MODEL_SIGNATURE_SIZES)[number];
|
|
956
|
+
export type ModelSignatureModel = keyof typeof MODEL_SIGNATURES_MANIFEST;
|
|
911
957
|
declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
912
958
|
"primary",
|
|
913
959
|
"contrast-low",
|
|
@@ -915,89 +961,62 @@ declare const MODEL_SIGNATURE_COLORS: readonly [
|
|
|
915
961
|
"contrast-high",
|
|
916
962
|
"inherit"
|
|
917
963
|
];
|
|
918
|
-
export
|
|
919
|
-
export declare type LinkTileModelSignatureModel = ModelSignatureModel;
|
|
920
|
-
declare const LINK_TILE_MODEL_SIGNATURE_HEADING_TAGS: readonly [
|
|
921
|
-
"h2",
|
|
922
|
-
"h3",
|
|
923
|
-
"h4",
|
|
924
|
-
"h5",
|
|
925
|
-
"h6"
|
|
926
|
-
];
|
|
927
|
-
export declare type LinkTileModelSignatureHeadingTag = (typeof LINK_TILE_MODEL_SIGNATURE_HEADING_TAGS)[number];
|
|
928
|
-
export declare type LinkTileModelSignatureWeight = TileWeight;
|
|
929
|
-
export declare type LinkTileModelSignatureAspectRatio = TileAspectRatio;
|
|
930
|
-
export declare type LinkTileModelSignatureLinkDirection = GroupDirection;
|
|
931
|
-
declare const MARQUE_SIZES: readonly [
|
|
932
|
-
"responsive",
|
|
933
|
-
"small",
|
|
934
|
-
"medium"
|
|
935
|
-
];
|
|
936
|
-
export declare type MarqueSize = typeof MARQUE_SIZES[number];
|
|
937
|
-
export declare type MarqueTarget = LinkTarget;
|
|
938
|
-
declare const MARQUE_ARIA_ATTRIBUTES: readonly [
|
|
939
|
-
"aria-label"
|
|
940
|
-
];
|
|
941
|
-
export declare type MarqueAriaAttribute = typeof MARQUE_ARIA_ATTRIBUTES[number];
|
|
942
|
-
declare const MODAL_ARIA_ATTRIBUTES: readonly [
|
|
943
|
-
"aria-label"
|
|
944
|
-
];
|
|
945
|
-
export declare type ModalAriaAttribute = (typeof MODAL_ARIA_ATTRIBUTES)[number];
|
|
964
|
+
export type ModelSignatureColor = (typeof MODEL_SIGNATURE_COLORS)[number];
|
|
946
965
|
declare const PAGINATION_NUMBER_OF_PAGE_LINKS: readonly [
|
|
947
966
|
5,
|
|
948
967
|
7
|
|
949
968
|
];
|
|
950
|
-
export
|
|
951
|
-
export
|
|
969
|
+
export type PaginationMaxNumberOfPageLinks = (typeof PAGINATION_NUMBER_OF_PAGE_LINKS)[number];
|
|
970
|
+
export type PaginationUpdateEvent = {
|
|
952
971
|
page: number;
|
|
953
972
|
previousPage: number;
|
|
954
973
|
};
|
|
955
|
-
export
|
|
974
|
+
export type PaginationInternationalization = Partial<Record<"root" | "prev" | "next" | "page", string>> | string;
|
|
956
975
|
declare const POPOVER_DIRECTIONS: readonly [
|
|
957
976
|
"top",
|
|
958
977
|
"right",
|
|
959
978
|
"bottom",
|
|
960
979
|
"left"
|
|
961
980
|
];
|
|
962
|
-
export
|
|
981
|
+
export type PopoverDirection = typeof POPOVER_DIRECTIONS[number];
|
|
963
982
|
declare const POPOVER_ARIA_ATTRIBUTES: readonly [
|
|
964
983
|
"aria-label"
|
|
965
984
|
];
|
|
966
|
-
export
|
|
967
|
-
export
|
|
985
|
+
export type PopoverAriaAttribute = typeof POPOVER_ARIA_ATTRIBUTES[number];
|
|
986
|
+
export type RadioButtonWrapperState = FormState;
|
|
968
987
|
declare const SEGMENTED_CONTROL_BACKGROUND_COLORS: readonly [
|
|
969
988
|
"background-surface",
|
|
970
989
|
"background-default"
|
|
971
990
|
];
|
|
972
|
-
export
|
|
973
|
-
export
|
|
991
|
+
export type SegmentedControlBackgroundColor = (typeof SEGMENTED_CONTROL_BACKGROUND_COLORS)[number];
|
|
992
|
+
export type SegmentedControlUpdateEvent = {
|
|
974
993
|
value: string | number;
|
|
975
994
|
};
|
|
976
|
-
export
|
|
995
|
+
export type SegmentedControlItemIcon = LinkButtonIconName;
|
|
977
996
|
declare const DROPDOWN_DIRECTIONS: readonly [
|
|
978
997
|
"down",
|
|
979
998
|
"up",
|
|
980
999
|
"auto"
|
|
981
1000
|
];
|
|
982
|
-
export
|
|
983
|
-
export
|
|
1001
|
+
export type SelectWrapperDropdownDirection = typeof DROPDOWN_DIRECTIONS[number];
|
|
1002
|
+
export type SelectWrapperState = FormState;
|
|
984
1003
|
declare const SPINNER_SIZES: readonly [
|
|
985
1004
|
"small",
|
|
986
1005
|
"medium",
|
|
987
1006
|
"large",
|
|
988
1007
|
"inherit"
|
|
989
1008
|
];
|
|
990
|
-
export
|
|
1009
|
+
export type SpinnerSize = typeof SPINNER_SIZES[number];
|
|
991
1010
|
declare const SPINNER_ARIA_ATTRIBUTES: readonly [
|
|
992
1011
|
"aria-label"
|
|
993
1012
|
];
|
|
994
|
-
export
|
|
1013
|
+
export type SpinnerAriaAttribute = typeof SPINNER_ARIA_ATTRIBUTES[number];
|
|
995
1014
|
declare const STEPPER_HORIZONTAL_SIZES: readonly [
|
|
996
1015
|
"small",
|
|
997
1016
|
"medium"
|
|
998
1017
|
];
|
|
999
|
-
export
|
|
1000
|
-
export
|
|
1018
|
+
export type StepperHorizontalSize = (typeof STEPPER_HORIZONTAL_SIZES)[number];
|
|
1019
|
+
export type StepperHorizontalUpdateEvent = {
|
|
1001
1020
|
activeStepIndex: number;
|
|
1002
1021
|
};
|
|
1003
1022
|
declare const STEPPER_ITEM_STATES: readonly [
|
|
@@ -1005,52 +1024,52 @@ declare const STEPPER_ITEM_STATES: readonly [
|
|
|
1005
1024
|
"complete",
|
|
1006
1025
|
"warning"
|
|
1007
1026
|
];
|
|
1008
|
-
export
|
|
1009
|
-
export
|
|
1010
|
-
export
|
|
1027
|
+
export type StepperHorizontalItemState = typeof STEPPER_ITEM_STATES[number];
|
|
1028
|
+
export type SwitchAlignLabel = AlignLabel;
|
|
1029
|
+
export type SwitchUpdateEvent = {
|
|
1011
1030
|
checked: boolean;
|
|
1012
1031
|
};
|
|
1013
|
-
export
|
|
1014
|
-
export
|
|
1032
|
+
export type Direction = "asc" | "desc";
|
|
1033
|
+
export type TableHeadCellSort = {
|
|
1015
1034
|
id: string;
|
|
1016
1035
|
active?: boolean;
|
|
1017
1036
|
direction?: Direction;
|
|
1018
1037
|
};
|
|
1019
|
-
export
|
|
1038
|
+
export type TableUpdateEvent = TableHeadCellSort;
|
|
1020
1039
|
declare const TABS_BAR_SIZES: readonly [
|
|
1021
1040
|
"small",
|
|
1022
1041
|
"medium"
|
|
1023
1042
|
];
|
|
1024
|
-
export
|
|
1043
|
+
export type TabsBarSize = (typeof TABS_BAR_SIZES)[number];
|
|
1025
1044
|
declare const TABS_BAR_WEIGHTS: readonly [
|
|
1026
1045
|
"regular",
|
|
1027
1046
|
"semi-bold",
|
|
1028
1047
|
"semibold"
|
|
1029
1048
|
];
|
|
1030
|
-
export
|
|
1031
|
-
export
|
|
1049
|
+
export type TabsBarWeight = (typeof TABS_BAR_WEIGHTS)[number];
|
|
1050
|
+
export type TabsBarUpdateEvent = {
|
|
1032
1051
|
activeTabIndex: number;
|
|
1033
1052
|
};
|
|
1034
1053
|
/** @deprecated */
|
|
1035
|
-
export
|
|
1036
|
-
export
|
|
1037
|
-
export
|
|
1038
|
-
export
|
|
1054
|
+
export type TabsBarGradientColorScheme = ScrollerGradientColorScheme;
|
|
1055
|
+
export type TabsBarGradientColor = ScrollerGradientColor;
|
|
1056
|
+
export type TabsSize = TabsBarSize;
|
|
1057
|
+
export type TabsWeight = TabsBarWeight;
|
|
1039
1058
|
/** @deprecated */
|
|
1040
|
-
export
|
|
1041
|
-
export
|
|
1042
|
-
export
|
|
1059
|
+
export type TabsGradientColorScheme = TabsBarGradientColorScheme;
|
|
1060
|
+
export type TabsGradientColor = TabsBarGradientColor;
|
|
1061
|
+
export type TabsUpdateEvent = TabsBarUpdateEvent;
|
|
1043
1062
|
declare const TAG_DISMISSIBLE_COLORS: readonly [
|
|
1044
1063
|
"background-base",
|
|
1045
1064
|
"background-surface",
|
|
1046
1065
|
"background-default"
|
|
1047
1066
|
];
|
|
1048
|
-
export
|
|
1067
|
+
export type TagDismissibleColor = typeof TAG_DISMISSIBLE_COLORS[number];
|
|
1049
1068
|
declare const TAG_DISMISSIBLE_ARIA_ATTRIBUTES: readonly [
|
|
1050
1069
|
"aria-label"
|
|
1051
1070
|
];
|
|
1052
|
-
export
|
|
1053
|
-
export
|
|
1071
|
+
export type TagDismissibleAriaAttribute = typeof TAG_DISMISSIBLE_ARIA_ATTRIBUTES[number];
|
|
1072
|
+
export type TagIcon = IconName;
|
|
1054
1073
|
declare const TAG_COLORS: readonly [
|
|
1055
1074
|
"background-base",
|
|
1056
1075
|
"background-surface",
|
|
@@ -1066,7 +1085,7 @@ declare const TAG_COLORS: readonly [
|
|
|
1066
1085
|
"notification-success",
|
|
1067
1086
|
"notification-error"
|
|
1068
1087
|
];
|
|
1069
|
-
export
|
|
1088
|
+
export type TagColor = typeof TAG_COLORS[number];
|
|
1070
1089
|
declare const TEXT_TAGS: readonly [
|
|
1071
1090
|
"p",
|
|
1072
1091
|
"span",
|
|
@@ -1078,40 +1097,40 @@ declare const TEXT_TAGS: readonly [
|
|
|
1078
1097
|
"time",
|
|
1079
1098
|
"legend"
|
|
1080
1099
|
];
|
|
1081
|
-
export
|
|
1100
|
+
export type TextTag = typeof TEXT_TAGS[number];
|
|
1082
1101
|
declare const UNIT_POSITIONS: readonly [
|
|
1083
1102
|
"prefix",
|
|
1084
1103
|
"suffix"
|
|
1085
1104
|
];
|
|
1086
|
-
export
|
|
1087
|
-
export
|
|
1088
|
-
export
|
|
1105
|
+
export type TextFieldWrapperUnitPosition = typeof UNIT_POSITIONS[number];
|
|
1106
|
+
export type TextFieldWrapperActionIcon = Extract<IconName, "locate">;
|
|
1107
|
+
export type TextFieldWrapperState = FormState;
|
|
1089
1108
|
declare const LIST_TYPES: readonly [
|
|
1090
1109
|
"unordered",
|
|
1091
1110
|
"ordered"
|
|
1092
1111
|
];
|
|
1093
1112
|
/** @deprecated */
|
|
1094
|
-
export
|
|
1113
|
+
export type TextListListType = typeof LIST_TYPES[number];
|
|
1095
1114
|
declare const ORDER_TYPES: readonly [
|
|
1096
1115
|
"numbered",
|
|
1097
1116
|
"alphabetically"
|
|
1098
1117
|
];
|
|
1099
1118
|
/** @deprecated */
|
|
1100
|
-
export
|
|
1119
|
+
export type TextListOrderType = typeof ORDER_TYPES[number];
|
|
1101
1120
|
declare const TEXT_LIST_TYPES: readonly [
|
|
1102
1121
|
"unordered",
|
|
1103
1122
|
"numbered",
|
|
1104
1123
|
"alphabetically"
|
|
1105
1124
|
];
|
|
1106
|
-
export
|
|
1107
|
-
export
|
|
1125
|
+
export type TextListType = typeof TEXT_LIST_TYPES[number];
|
|
1126
|
+
export type TextareaWrapperState = FormState;
|
|
1108
1127
|
declare const TOAST_STATES: readonly [
|
|
1109
1128
|
"info",
|
|
1110
1129
|
"success",
|
|
1111
1130
|
"neutral"
|
|
1112
1131
|
];
|
|
1113
|
-
export
|
|
1114
|
-
export
|
|
1132
|
+
export type ToastState = typeof TOAST_STATES[number];
|
|
1133
|
+
export type ToastMessage = {
|
|
1115
1134
|
text: string;
|
|
1116
1135
|
state?: ToastState;
|
|
1117
1136
|
};
|
|
@@ -1119,10 +1138,10 @@ declare const WORDMARK_SIZES: readonly [
|
|
|
1119
1138
|
"small",
|
|
1120
1139
|
"inherit"
|
|
1121
1140
|
];
|
|
1122
|
-
export
|
|
1123
|
-
export
|
|
1141
|
+
export type WordmarkSize = (typeof WORDMARK_SIZES)[number];
|
|
1142
|
+
export type WordmarkTarget = LinkTarget;
|
|
1124
1143
|
declare const WORDMARK_ARIA_ATTRIBUTES: readonly [
|
|
1125
1144
|
"aria-label"
|
|
1126
1145
|
];
|
|
1127
|
-
export
|
|
1146
|
+
export type WordmarkAriaAttribute = (typeof WORDMARK_ARIA_ATTRIBUTES)[number];
|
|
1128
1147
|
export {};
|