dap-design-system 0.45.1 → 0.45.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/dist/manifest/types/vue/index.d.ts +446 -446
- package/dist/manifest/vscode.html-custom-data.json +360 -360
- package/dist/manifest/web-types.json +653 -653
- package/dist/react-types.ts +62 -61
- package/dist/react.js +329 -329
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
|
@@ -567,6 +567,23 @@ export interface DapDSTabGroupEvents {
|
|
|
567
567
|
onDdsTabSelect?: (event: CustomEvent) => void
|
|
568
568
|
}
|
|
569
569
|
|
|
570
|
+
export interface DapDSTextareaEvents {
|
|
571
|
+
/** Fires when the count of the textarea changes. */
|
|
572
|
+
onDdsCountChange?: (event: CustomEvent<{ value: number }>) => void
|
|
573
|
+
/** Fired when the textarea value changes. */
|
|
574
|
+
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
575
|
+
/** Fired when the textarea value changes. */
|
|
576
|
+
onDdsInput?: (event: CustomEvent<{ value: string }>) => void
|
|
577
|
+
/** Fired when a key is pressed down. */
|
|
578
|
+
onDdsKeydown?: (event: CustomEvent<{ value: string, originalEvent: Event }>) => void
|
|
579
|
+
/** Fired when the textarea loses focus. */
|
|
580
|
+
onDdsBlur?: (event: CustomEvent) => void
|
|
581
|
+
/** Emitted when the textarea gains focus. */
|
|
582
|
+
onDdsFocus?: (event: CustomEvent) => void
|
|
583
|
+
/** Emitted when select text in textarea. */
|
|
584
|
+
onDdsSelect?: (event: CustomEvent<{ value: string }>) => void
|
|
585
|
+
}
|
|
586
|
+
|
|
570
587
|
export interface DapDSTimeGridEvents {
|
|
571
588
|
/** Fired when time selection changes. */
|
|
572
589
|
onDdsChange?: (event: CustomEvent<{ detail: TimeSelection }>) => void
|
|
@@ -591,23 +608,6 @@ export interface DapDSTimePickerEvents {
|
|
|
591
608
|
onDdsBlur?: (event: CustomEvent) => void
|
|
592
609
|
}
|
|
593
610
|
|
|
594
|
-
export interface DapDSTextareaEvents {
|
|
595
|
-
/** Fires when the count of the textarea changes. */
|
|
596
|
-
onDdsCountChange?: (event: CustomEvent<{ value: number }>) => void
|
|
597
|
-
/** Fired when the textarea value changes. */
|
|
598
|
-
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
599
|
-
/** Fired when the textarea value changes. */
|
|
600
|
-
onDdsInput?: (event: CustomEvent<{ value: string }>) => void
|
|
601
|
-
/** Fired when a key is pressed down. */
|
|
602
|
-
onDdsKeydown?: (event: CustomEvent<{ value: string, originalEvent: Event }>) => void
|
|
603
|
-
/** Fired when the textarea loses focus. */
|
|
604
|
-
onDdsBlur?: (event: CustomEvent) => void
|
|
605
|
-
/** Emitted when the textarea gains focus. */
|
|
606
|
-
onDdsFocus?: (event: CustomEvent) => void
|
|
607
|
-
/** Emitted when select text in textarea. */
|
|
608
|
-
onDdsSelect?: (event: CustomEvent<{ value: string }>) => void
|
|
609
|
-
}
|
|
610
|
-
|
|
611
611
|
export interface DapDSTOCEvents {
|
|
612
612
|
/** Event that is triggered when the anchor changes. */
|
|
613
613
|
onDdsAnchorChange?: (event: CustomEvent<{ selectedItem: HTMLAnchorElement, anchorElement: IntersectionObserverEntry | HTMLElement }>) => void
|
|
@@ -646,11 +646,6 @@ export interface DapDSAccordionSlots {
|
|
|
646
646
|
'icon-closed'?: () => any
|
|
647
647
|
}
|
|
648
648
|
|
|
649
|
-
export interface DapDSAccordionGroupSlots {
|
|
650
|
-
/** The content of the accordion group. */
|
|
651
|
-
default?: () => any
|
|
652
|
-
}
|
|
653
|
-
|
|
654
649
|
export interface DapDSAvatarSlots {
|
|
655
650
|
/** The icon to display when variant is 'icon'. */
|
|
656
651
|
'icon'?: () => any
|
|
@@ -663,6 +658,11 @@ export interface DapDSAvatarGroupSlots {
|
|
|
663
658
|
default?: () => any
|
|
664
659
|
}
|
|
665
660
|
|
|
661
|
+
export interface DapDSAccordionGroupSlots {
|
|
662
|
+
/** The content of the accordion group. */
|
|
663
|
+
default?: () => any
|
|
664
|
+
}
|
|
665
|
+
|
|
666
666
|
export interface DapDSBadgeSlots {
|
|
667
667
|
/** The content of the badge. */
|
|
668
668
|
default?: () => any
|
|
@@ -679,13 +679,6 @@ export interface DapDSBannerSlots {
|
|
|
679
679
|
'icon'?: () => any
|
|
680
680
|
}
|
|
681
681
|
|
|
682
|
-
export interface DapDSBreadcrumbSlots {
|
|
683
|
-
/** The content of the breadcrumb. */
|
|
684
|
-
default?: () => any
|
|
685
|
-
/** The separator between breadcrumb items. Default is '/'. */
|
|
686
|
-
'separator'?: () => any
|
|
687
|
-
}
|
|
688
|
-
|
|
689
682
|
export interface DapDSBreadcrumbItemSlots {
|
|
690
683
|
/** The content of the breadcrumb item. */
|
|
691
684
|
default?: () => any
|
|
@@ -698,6 +691,13 @@ export interface DapDSButtonSlots {
|
|
|
698
691
|
default?: () => any
|
|
699
692
|
}
|
|
700
693
|
|
|
694
|
+
export interface DapDSBreadcrumbSlots {
|
|
695
|
+
/** The content of the breadcrumb. */
|
|
696
|
+
default?: () => any
|
|
697
|
+
/** The separator between breadcrumb items. Default is '/'. */
|
|
698
|
+
'separator'?: () => any
|
|
699
|
+
}
|
|
700
|
+
|
|
701
701
|
export interface DapDSCalendarCellSlots {
|
|
702
702
|
/** The content of the calendar cell. */
|
|
703
703
|
default?: () => any
|
|
@@ -993,18 +993,6 @@ export interface DapDSStackSlots {
|
|
|
993
993
|
default?: () => any
|
|
994
994
|
}
|
|
995
995
|
|
|
996
|
-
export interface DapDSTabGroupSlots {
|
|
997
|
-
/** The tab items. */
|
|
998
|
-
default?: () => any
|
|
999
|
-
}
|
|
1000
|
-
|
|
1001
|
-
export interface DapDSTabSlots {
|
|
1002
|
-
/** The tab title template. */
|
|
1003
|
-
default?: () => any
|
|
1004
|
-
/** The tab content. */
|
|
1005
|
-
'content'?: () => any
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
996
|
export interface DapDSTableCellSlots {
|
|
1009
997
|
/** The default slot. */
|
|
1010
998
|
default?: () => any
|
|
@@ -1025,14 +1013,16 @@ export interface DapDSTableSlots {
|
|
|
1025
1013
|
default?: () => any
|
|
1026
1014
|
}
|
|
1027
1015
|
|
|
1028
|
-
export interface
|
|
1029
|
-
/** The
|
|
1016
|
+
export interface DapDSTabGroupSlots {
|
|
1017
|
+
/** The tab items. */
|
|
1030
1018
|
default?: () => any
|
|
1031
1019
|
}
|
|
1032
1020
|
|
|
1033
|
-
export interface
|
|
1034
|
-
/** The
|
|
1021
|
+
export interface DapDSTabSlots {
|
|
1022
|
+
/** The tab title template. */
|
|
1035
1023
|
default?: () => any
|
|
1024
|
+
/** The tab content. */
|
|
1025
|
+
'content'?: () => any
|
|
1036
1026
|
}
|
|
1037
1027
|
|
|
1038
1028
|
export interface DapDSTextareaSlots {
|
|
@@ -1040,6 +1030,16 @@ export interface DapDSTextareaSlots {
|
|
|
1040
1030
|
'feedback-icon'?: () => any
|
|
1041
1031
|
}
|
|
1042
1032
|
|
|
1033
|
+
export interface DapDSTimelineItemSlots {
|
|
1034
|
+
/** The default slot for the item content. */
|
|
1035
|
+
default?: () => any
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
export interface DapDSTimelineSlots {
|
|
1039
|
+
/** The default slot for the timeline items. */
|
|
1040
|
+
default?: () => any
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
1043
|
export interface DapDSToggleButtonSlots {
|
|
1044
1044
|
/** The content of the toggle button. */
|
|
1045
1045
|
default?: () => any
|
|
@@ -1112,13 +1112,6 @@ export type DapDSAnchorHeadingProps = {
|
|
|
1112
1112
|
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1113
1113
|
}
|
|
1114
1114
|
|
|
1115
|
-
export type DapDSAccordionGroupProps = {
|
|
1116
|
-
/** Whether to close other accordions when one is opened. */
|
|
1117
|
-
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1118
|
-
/** The variant of the accordion */
|
|
1119
|
-
variant?: DapDSAccordionGroup["variant"]
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
1115
|
export type DapDSAvatarProps = {
|
|
1123
1116
|
/** The size of the avatar */
|
|
1124
1117
|
size?: DapDSAvatar["size"]
|
|
@@ -1161,6 +1154,13 @@ export type DapDSAvatarGroupProps = {
|
|
|
1161
1154
|
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1162
1155
|
}
|
|
1163
1156
|
|
|
1157
|
+
export type DapDSAccordionGroupProps = {
|
|
1158
|
+
/** Whether to close other accordions when one is opened. */
|
|
1159
|
+
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1160
|
+
/** The variant of the accordion */
|
|
1161
|
+
variant?: DapDSAccordionGroup["variant"]
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
1164
|
export type DapDSBadgeProps = {
|
|
1165
1165
|
/** The type of the badge */
|
|
1166
1166
|
type?: DapDSBadge["type"]
|
|
@@ -1185,15 +1185,6 @@ export type DapDSBannerProps = {
|
|
|
1185
1185
|
icon?: DapDSBanner["icon"]
|
|
1186
1186
|
}
|
|
1187
1187
|
|
|
1188
|
-
export type DapDSBreadcrumbProps = {
|
|
1189
|
-
/** */
|
|
1190
|
-
variant?: DapDSBreadcrumb["variant"]
|
|
1191
|
-
/** Mobile version of the breadcrumb */
|
|
1192
|
-
mobile?: DapDSBreadcrumb["mobile"]
|
|
1193
|
-
/** The aria-labelledby of the breadcrumb */
|
|
1194
|
-
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
1188
|
export type DapDSBreadcrumbItemProps = {
|
|
1198
1189
|
/** The URL of the breadcrumb item. */
|
|
1199
1190
|
href?: DapDSBreadcrumbItem["href"]
|
|
@@ -1238,6 +1229,15 @@ export type DapDSButtonProps = {
|
|
|
1238
1229
|
targetBlankText?: DapDSButton["targetBlankText"]
|
|
1239
1230
|
}
|
|
1240
1231
|
|
|
1232
|
+
export type DapDSBreadcrumbProps = {
|
|
1233
|
+
/** */
|
|
1234
|
+
variant?: DapDSBreadcrumb["variant"]
|
|
1235
|
+
/** Mobile version of the breadcrumb */
|
|
1236
|
+
mobile?: DapDSBreadcrumb["mobile"]
|
|
1237
|
+
/** The aria-labelledby of the breadcrumb */
|
|
1238
|
+
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
1241
|
export type DapDSCalendarCellProps = {
|
|
1242
1242
|
/** Whether the calendar cell is selected. */
|
|
1243
1243
|
selected?: DapDSCalendarCell["selected"]
|
|
@@ -2085,29 +2085,6 @@ export type DapDSInputProps = {
|
|
|
2085
2085
|
pattern?: DapDSInput["pattern"]
|
|
2086
2086
|
}
|
|
2087
2087
|
|
|
2088
|
-
export type DapDSLabelProps = {
|
|
2089
|
-
/** The label text */
|
|
2090
|
-
label?: DapDSLabel["label"]
|
|
2091
|
-
/** The description of the label */
|
|
2092
|
-
description?: DapDSLabel["description"]
|
|
2093
|
-
/** The tooltip text */
|
|
2094
|
-
tooltip?: DapDSLabel["tooltip"]
|
|
2095
|
-
/** The size of the input. Default is `sm`. */
|
|
2096
|
-
size?: DapDSLabel["size"]
|
|
2097
|
-
/** The tooltip placement of the label. */
|
|
2098
|
-
tooltipPlacement?: DapDSLabel["tooltipPlacement"]
|
|
2099
|
-
/** If the label is optional. Default value is `false`. */
|
|
2100
|
-
optional?: DapDSLabel["optional"]
|
|
2101
|
-
/** Label of optional text */
|
|
2102
|
-
optionalLabel?: DapDSLabel["optionalLabel"]
|
|
2103
|
-
/** Text weight of label. If true the label is subtle. Default value is `false`. */
|
|
2104
|
-
subtle?: DapDSLabel["subtle"]
|
|
2105
|
-
/** The disabled state of the label. Default is `false`. */
|
|
2106
|
-
disabled?: DapDSLabel["disabled"]
|
|
2107
|
-
/** The required state of the label. Default is `false`. */
|
|
2108
|
-
required?: DapDSLabel["required"]
|
|
2109
|
-
}
|
|
2110
|
-
|
|
2111
2088
|
export type DapDSLinkProps = {
|
|
2112
2089
|
/** The size of the link */
|
|
2113
2090
|
size?: DapDSLink["size"]
|
|
@@ -2131,6 +2108,29 @@ export type DapDSLinkProps = {
|
|
|
2131
2108
|
targetBlankText?: DapDSLink["targetBlankText"]
|
|
2132
2109
|
}
|
|
2133
2110
|
|
|
2111
|
+
export type DapDSLabelProps = {
|
|
2112
|
+
/** The label text */
|
|
2113
|
+
label?: DapDSLabel["label"]
|
|
2114
|
+
/** The description of the label */
|
|
2115
|
+
description?: DapDSLabel["description"]
|
|
2116
|
+
/** The tooltip text */
|
|
2117
|
+
tooltip?: DapDSLabel["tooltip"]
|
|
2118
|
+
/** The size of the input. Default is `sm`. */
|
|
2119
|
+
size?: DapDSLabel["size"]
|
|
2120
|
+
/** The tooltip placement of the label. */
|
|
2121
|
+
tooltipPlacement?: DapDSLabel["tooltipPlacement"]
|
|
2122
|
+
/** If the label is optional. Default value is `false`. */
|
|
2123
|
+
optional?: DapDSLabel["optional"]
|
|
2124
|
+
/** Label of optional text */
|
|
2125
|
+
optionalLabel?: DapDSLabel["optionalLabel"]
|
|
2126
|
+
/** Text weight of label. If true the label is subtle. Default value is `false`. */
|
|
2127
|
+
subtle?: DapDSLabel["subtle"]
|
|
2128
|
+
/** The disabled state of the label. Default is `false`. */
|
|
2129
|
+
disabled?: DapDSLabel["disabled"]
|
|
2130
|
+
/** The required state of the label. Default is `false`. */
|
|
2131
|
+
required?: DapDSLabel["required"]
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2134
2134
|
export type DapDSListItemProps = {
|
|
2135
2135
|
/** The variant of the list item. */
|
|
2136
2136
|
variant?: DapDSListItem["variant"]
|
|
@@ -2887,22 +2887,6 @@ export type DapDSSwitchProps = {
|
|
|
2887
2887
|
optionalLabel?: DapDSSwitch["optionalLabel"]
|
|
2888
2888
|
}
|
|
2889
2889
|
|
|
2890
|
-
export type DapDSTabGroupProps = {
|
|
2891
|
-
/** The selected tab id. */
|
|
2892
|
-
selectedTabId?: DapDSTabGroup["selectedTabId"]
|
|
2893
|
-
/** The size of the tab buttons. Default is `sm`. Can be `sm` or `lg`. */
|
|
2894
|
-
size?: DapDSTabGroup["size"]
|
|
2895
|
-
/** If true, the tab group will be displayed in mobile mode. */
|
|
2896
|
-
mobile?: DapDSTabGroup["mobile"]
|
|
2897
|
-
}
|
|
2898
|
-
|
|
2899
|
-
export type DapDSTabProps = {
|
|
2900
|
-
/** The tab id. Required */
|
|
2901
|
-
tabId?: DapDSTab["tabId"]
|
|
2902
|
-
/** The disabled state of the tab. */
|
|
2903
|
-
disabled?: DapDSTab["disabled"]
|
|
2904
|
-
}
|
|
2905
|
-
|
|
2906
2890
|
export type DapDSTableCellProps = {
|
|
2907
2891
|
/** If the cell is the last one. */
|
|
2908
2892
|
last?: DapDSTableCell["last"]
|
|
@@ -2933,6 +2917,73 @@ export type DapDSTableProps = {
|
|
|
2933
2917
|
caption?: DapDSTable["caption"]
|
|
2934
2918
|
}
|
|
2935
2919
|
|
|
2920
|
+
export type DapDSTabGroupProps = {
|
|
2921
|
+
/** The selected tab id. */
|
|
2922
|
+
selectedTabId?: DapDSTabGroup["selectedTabId"]
|
|
2923
|
+
/** The size of the tab buttons. Default is `sm`. Can be `sm` or `lg`. */
|
|
2924
|
+
size?: DapDSTabGroup["size"]
|
|
2925
|
+
/** If true, the tab group will be displayed in mobile mode. */
|
|
2926
|
+
mobile?: DapDSTabGroup["mobile"]
|
|
2927
|
+
}
|
|
2928
|
+
|
|
2929
|
+
export type DapDSTabProps = {
|
|
2930
|
+
/** The tab id. Required */
|
|
2931
|
+
tabId?: DapDSTab["tabId"]
|
|
2932
|
+
/** The disabled state of the tab. */
|
|
2933
|
+
disabled?: DapDSTab["disabled"]
|
|
2934
|
+
}
|
|
2935
|
+
|
|
2936
|
+
export type DapDSTextareaProps = {
|
|
2937
|
+
/** Hide character counter. */
|
|
2938
|
+
hideCounter?: DapDSTextarea["hideCounter"]
|
|
2939
|
+
/** The minimum length of the textarea. */
|
|
2940
|
+
minlength?: DapDSTextarea["minlength"]
|
|
2941
|
+
/** The maximum length of the textarea. */
|
|
2942
|
+
maxlength?: DapDSTextarea["maxlength"]
|
|
2943
|
+
/** The number of rows in the textarea. */
|
|
2944
|
+
rows?: DapDSTextarea["rows"]
|
|
2945
|
+
/** The number of columns in the textarea. */
|
|
2946
|
+
cols?: DapDSTextarea["cols"]
|
|
2947
|
+
/** The placeholder of the textarea. */
|
|
2948
|
+
placeholder?: DapDSTextarea["placeholder"]
|
|
2949
|
+
/** Indicates how the control should wrap the value for form submission. */
|
|
2950
|
+
wrap?: DapDSTextarea["wrap"]
|
|
2951
|
+
/** */
|
|
2952
|
+
focusElement?: DapDSTextarea["focusElement"]
|
|
2953
|
+
/** The size of the textarea. Default is `md`. */
|
|
2954
|
+
size?: DapDSTextarea["size"]
|
|
2955
|
+
/** The disabled state of the textarea. */
|
|
2956
|
+
disabled?: DapDSTextarea["disabled"]
|
|
2957
|
+
/** The value of the textarea. */
|
|
2958
|
+
value?: DapDSTextarea["value"]
|
|
2959
|
+
/** The tooltip of the textarea. */
|
|
2960
|
+
tooltip?: DapDSTextarea["tooltip"]
|
|
2961
|
+
/** The tooltip placement of the textarea. */
|
|
2962
|
+
tooltipPlacement?: DapDSTextarea["tooltipPlacement"]
|
|
2963
|
+
/** The status of the textarea. Can be `success` or `error`. */
|
|
2964
|
+
status?: DapDSTextarea["status"]
|
|
2965
|
+
/** The readonly state of the textarea. */
|
|
2966
|
+
readonly?: DapDSTextarea["readonly"]
|
|
2967
|
+
/** The required state of the textarea. */
|
|
2968
|
+
required?: DapDSTextarea["required"]
|
|
2969
|
+
/** The label of the textarea. */
|
|
2970
|
+
label?: DapDSTextarea["label"]
|
|
2971
|
+
/** The description of the textarea. */
|
|
2972
|
+
description?: DapDSTextarea["description"]
|
|
2973
|
+
/** The feedback of the textarea. */
|
|
2974
|
+
feedback?: DapDSTextarea["feedback"]
|
|
2975
|
+
/** The feedback type of the textarea. Can be `negative`, `positive`, or `warning`. */
|
|
2976
|
+
feedbackType?: DapDSTextarea["feedbackType"]
|
|
2977
|
+
/** The optional state of the textarea. */
|
|
2978
|
+
optional?: DapDSTextarea["optional"]
|
|
2979
|
+
/** The optional label of the textarea. */
|
|
2980
|
+
optionalLabel?: DapDSTextarea["optionalLabel"]
|
|
2981
|
+
/** The weight of the label. Default is `false` */
|
|
2982
|
+
subtle?: DapDSTextarea["subtle"]
|
|
2983
|
+
/** The autofocus state of the textarea. */
|
|
2984
|
+
autofocus?: DapDSTextarea["autofocus"]
|
|
2985
|
+
}
|
|
2986
|
+
|
|
2936
2987
|
export type DapDSTimelineItemProps = {
|
|
2937
2988
|
|
|
2938
2989
|
}
|
|
@@ -3047,55 +3098,17 @@ export type DapDSTimePickerProps = {
|
|
|
3047
3098
|
autocomplete?: DapDSTimePicker["autocomplete"]
|
|
3048
3099
|
}
|
|
3049
3100
|
|
|
3050
|
-
export type
|
|
3051
|
-
/**
|
|
3052
|
-
|
|
3053
|
-
/**
|
|
3054
|
-
|
|
3055
|
-
/** The
|
|
3056
|
-
|
|
3057
|
-
/** The number of rows in the textarea. */
|
|
3058
|
-
rows?: DapDSTextarea["rows"]
|
|
3059
|
-
/** The number of columns in the textarea. */
|
|
3060
|
-
cols?: DapDSTextarea["cols"]
|
|
3061
|
-
/** The placeholder of the textarea. */
|
|
3062
|
-
placeholder?: DapDSTextarea["placeholder"]
|
|
3063
|
-
/** Indicates how the control should wrap the value for form submission. */
|
|
3064
|
-
wrap?: DapDSTextarea["wrap"]
|
|
3101
|
+
export type DapDSToggleButtonProps = {
|
|
3102
|
+
/** The size of the button */
|
|
3103
|
+
size?: DapDSToggleButton["size"]
|
|
3104
|
+
/** Whether the button is active. */
|
|
3105
|
+
active?: DapDSToggleButton["active"]
|
|
3106
|
+
/** The shape of the button */
|
|
3107
|
+
shape?: DapDSToggleButton["shape"]
|
|
3065
3108
|
/** */
|
|
3066
|
-
|
|
3067
|
-
/**
|
|
3068
|
-
|
|
3069
|
-
/** The disabled state of the textarea. */
|
|
3070
|
-
disabled?: DapDSTextarea["disabled"]
|
|
3071
|
-
/** The value of the textarea. */
|
|
3072
|
-
value?: DapDSTextarea["value"]
|
|
3073
|
-
/** The tooltip of the textarea. */
|
|
3074
|
-
tooltip?: DapDSTextarea["tooltip"]
|
|
3075
|
-
/** The tooltip placement of the textarea. */
|
|
3076
|
-
tooltipPlacement?: DapDSTextarea["tooltipPlacement"]
|
|
3077
|
-
/** The status of the textarea. Can be `success` or `error`. */
|
|
3078
|
-
status?: DapDSTextarea["status"]
|
|
3079
|
-
/** The readonly state of the textarea. */
|
|
3080
|
-
readonly?: DapDSTextarea["readonly"]
|
|
3081
|
-
/** The required state of the textarea. */
|
|
3082
|
-
required?: DapDSTextarea["required"]
|
|
3083
|
-
/** The label of the textarea. */
|
|
3084
|
-
label?: DapDSTextarea["label"]
|
|
3085
|
-
/** The description of the textarea. */
|
|
3086
|
-
description?: DapDSTextarea["description"]
|
|
3087
|
-
/** The feedback of the textarea. */
|
|
3088
|
-
feedback?: DapDSTextarea["feedback"]
|
|
3089
|
-
/** The feedback type of the textarea. Can be `negative`, `positive`, or `warning`. */
|
|
3090
|
-
feedbackType?: DapDSTextarea["feedbackType"]
|
|
3091
|
-
/** The optional state of the textarea. */
|
|
3092
|
-
optional?: DapDSTextarea["optional"]
|
|
3093
|
-
/** The optional label of the textarea. */
|
|
3094
|
-
optionalLabel?: DapDSTextarea["optionalLabel"]
|
|
3095
|
-
/** The weight of the label. Default is `false` */
|
|
3096
|
-
subtle?: DapDSTextarea["subtle"]
|
|
3097
|
-
/** The autofocus state of the textarea. */
|
|
3098
|
-
autofocus?: DapDSTextarea["autofocus"]
|
|
3109
|
+
sizeChildren?: DapDSToggleButton["sizeChildren"]
|
|
3110
|
+
/** */
|
|
3111
|
+
focusElement?: DapDSToggleButton["focusElement"]
|
|
3099
3112
|
}
|
|
3100
3113
|
|
|
3101
3114
|
export type DapDSTOCProps = {
|
|
@@ -3125,19 +3138,6 @@ export type DapDSTOCProps = {
|
|
|
3125
3138
|
size?: DapDSTOC["size"]
|
|
3126
3139
|
}
|
|
3127
3140
|
|
|
3128
|
-
export type DapDSToggleButtonProps = {
|
|
3129
|
-
/** The size of the button */
|
|
3130
|
-
size?: DapDSToggleButton["size"]
|
|
3131
|
-
/** Whether the button is active. */
|
|
3132
|
-
active?: DapDSToggleButton["active"]
|
|
3133
|
-
/** The shape of the button */
|
|
3134
|
-
shape?: DapDSToggleButton["shape"]
|
|
3135
|
-
/** */
|
|
3136
|
-
sizeChildren?: DapDSToggleButton["sizeChildren"]
|
|
3137
|
-
/** */
|
|
3138
|
-
focusElement?: DapDSToggleButton["focusElement"]
|
|
3139
|
-
}
|
|
3140
|
-
|
|
3141
3141
|
export type DapDSTooltipProps = {
|
|
3142
3142
|
/** The content of the tooltip, supporting text only. */
|
|
3143
3143
|
content?: DapDSTooltip["content"]
|
|
@@ -3280,15 +3280,15 @@ export type DapDSRadioGroupProps = {
|
|
|
3280
3280
|
size?: DapDSRadioGroup["size"]
|
|
3281
3281
|
}
|
|
3282
3282
|
|
|
3283
|
-
export type
|
|
3283
|
+
export type BuildingsHome6LineProps = {
|
|
3284
3284
|
/** (optional) The width and height in pixels */
|
|
3285
|
-
size?:
|
|
3285
|
+
size?: BuildingsHome6Line["size"]
|
|
3286
3286
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3287
|
-
selected?:
|
|
3287
|
+
selected?: BuildingsHome6Line["selected"]
|
|
3288
3288
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3289
|
-
accessibilityTitle?:
|
|
3289
|
+
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3290
3290
|
/** (optional) If `true` the icon can receive focus */
|
|
3291
|
-
focusable?:
|
|
3291
|
+
focusable?: BuildingsHome6Line["focusable"]
|
|
3292
3292
|
}
|
|
3293
3293
|
|
|
3294
3294
|
export type ArrowsArrowDownSFillProps = {
|
|
@@ -3302,6 +3302,17 @@ export type ArrowsArrowDownSFillProps = {
|
|
|
3302
3302
|
focusable?: ArrowsArrowDownSFill["focusable"]
|
|
3303
3303
|
}
|
|
3304
3304
|
|
|
3305
|
+
export type ArrowsArrowDownLineProps = {
|
|
3306
|
+
/** (optional) The width and height in pixels */
|
|
3307
|
+
size?: ArrowsArrowDownLine["size"]
|
|
3308
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3309
|
+
selected?: ArrowsArrowDownLine["selected"]
|
|
3310
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3311
|
+
accessibilityTitle?: ArrowsArrowDownLine["accessibilityTitle"]
|
|
3312
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3313
|
+
focusable?: ArrowsArrowDownLine["focusable"]
|
|
3314
|
+
}
|
|
3315
|
+
|
|
3305
3316
|
export type ArrowsArrowDownSLineProps = {
|
|
3306
3317
|
/** (optional) The width and height in pixels */
|
|
3307
3318
|
size?: ArrowsArrowDownSLine["size"]
|
|
@@ -3346,26 +3357,26 @@ export type ArrowsArrowLeftLineProps = {
|
|
|
3346
3357
|
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3347
3358
|
}
|
|
3348
3359
|
|
|
3349
|
-
export type
|
|
3360
|
+
export type ArrowsArrowLeftSLineProps = {
|
|
3350
3361
|
/** (optional) The width and height in pixels */
|
|
3351
|
-
size?:
|
|
3362
|
+
size?: ArrowsArrowLeftSLine["size"]
|
|
3352
3363
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3353
|
-
selected?:
|
|
3364
|
+
selected?: ArrowsArrowLeftSLine["selected"]
|
|
3354
3365
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3355
|
-
accessibilityTitle?:
|
|
3366
|
+
accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
|
|
3356
3367
|
/** (optional) If `true` the icon can receive focus */
|
|
3357
|
-
focusable?:
|
|
3368
|
+
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3358
3369
|
}
|
|
3359
3370
|
|
|
3360
|
-
export type
|
|
3371
|
+
export type ArrowsArrowLeftSFillProps = {
|
|
3361
3372
|
/** (optional) The width and height in pixels */
|
|
3362
|
-
size?:
|
|
3373
|
+
size?: ArrowsArrowLeftSFill["size"]
|
|
3363
3374
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3364
|
-
selected?:
|
|
3375
|
+
selected?: ArrowsArrowLeftSFill["selected"]
|
|
3365
3376
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3366
|
-
accessibilityTitle?:
|
|
3377
|
+
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
|
|
3367
3378
|
/** (optional) If `true` the icon can receive focus */
|
|
3368
|
-
focusable?:
|
|
3379
|
+
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3369
3380
|
}
|
|
3370
3381
|
|
|
3371
3382
|
export type ArrowsArrowLeftUpLineProps = {
|
|
@@ -3379,26 +3390,26 @@ export type ArrowsArrowLeftUpLineProps = {
|
|
|
3379
3390
|
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3380
3391
|
}
|
|
3381
3392
|
|
|
3382
|
-
export type
|
|
3393
|
+
export type ArrowsArrowRightLLineProps = {
|
|
3383
3394
|
/** (optional) The width and height in pixels */
|
|
3384
|
-
size?:
|
|
3395
|
+
size?: ArrowsArrowRightLLine["size"]
|
|
3385
3396
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3386
|
-
selected?:
|
|
3397
|
+
selected?: ArrowsArrowRightLLine["selected"]
|
|
3387
3398
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3388
|
-
accessibilityTitle?:
|
|
3399
|
+
accessibilityTitle?: ArrowsArrowRightLLine["accessibilityTitle"]
|
|
3389
3400
|
/** (optional) If `true` the icon can receive focus */
|
|
3390
|
-
focusable?:
|
|
3401
|
+
focusable?: ArrowsArrowRightLLine["focusable"]
|
|
3391
3402
|
}
|
|
3392
3403
|
|
|
3393
|
-
export type
|
|
3404
|
+
export type ArrowsArrowRightDownLineProps = {
|
|
3394
3405
|
/** (optional) The width and height in pixels */
|
|
3395
|
-
size?:
|
|
3406
|
+
size?: ArrowsArrowRightDownLine["size"]
|
|
3396
3407
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3397
|
-
selected?:
|
|
3408
|
+
selected?: ArrowsArrowRightDownLine["selected"]
|
|
3398
3409
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3399
|
-
accessibilityTitle?:
|
|
3410
|
+
accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
|
|
3400
3411
|
/** (optional) If `true` the icon can receive focus */
|
|
3401
|
-
focusable?:
|
|
3412
|
+
focusable?: ArrowsArrowRightDownLine["focusable"]
|
|
3402
3413
|
}
|
|
3403
3414
|
|
|
3404
3415
|
export type ArrowsArrowRightLineProps = {
|
|
@@ -3478,37 +3489,26 @@ export type ArrowsArrowUpSLineProps = {
|
|
|
3478
3489
|
focusable?: ArrowsArrowUpSLine["focusable"]
|
|
3479
3490
|
}
|
|
3480
3491
|
|
|
3481
|
-
export type
|
|
3482
|
-
/** (optional) The width and height in pixels */
|
|
3483
|
-
size?: ArrowsExpandUpDownFill["size"]
|
|
3484
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3485
|
-
selected?: ArrowsExpandUpDownFill["selected"]
|
|
3486
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3487
|
-
accessibilityTitle?: ArrowsExpandUpDownFill["accessibilityTitle"]
|
|
3488
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3489
|
-
focusable?: ArrowsExpandUpDownFill["focusable"]
|
|
3490
|
-
}
|
|
3491
|
-
|
|
3492
|
-
export type BuildingsHome6LineProps = {
|
|
3492
|
+
export type BusinessCalendarLineProps = {
|
|
3493
3493
|
/** (optional) The width and height in pixels */
|
|
3494
|
-
size?:
|
|
3494
|
+
size?: BusinessCalendarLine["size"]
|
|
3495
3495
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3496
|
-
selected?:
|
|
3496
|
+
selected?: BusinessCalendarLine["selected"]
|
|
3497
3497
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3498
|
-
accessibilityTitle?:
|
|
3498
|
+
accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
|
|
3499
3499
|
/** (optional) If `true` the icon can receive focus */
|
|
3500
|
-
focusable?:
|
|
3500
|
+
focusable?: BusinessCalendarLine["focusable"]
|
|
3501
3501
|
}
|
|
3502
3502
|
|
|
3503
|
-
export type
|
|
3503
|
+
export type ArrowsExpandUpDownFillProps = {
|
|
3504
3504
|
/** (optional) The width and height in pixels */
|
|
3505
|
-
size?:
|
|
3505
|
+
size?: ArrowsExpandUpDownFill["size"]
|
|
3506
3506
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3507
|
-
selected?:
|
|
3507
|
+
selected?: ArrowsExpandUpDownFill["selected"]
|
|
3508
3508
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3509
|
-
accessibilityTitle?:
|
|
3509
|
+
accessibilityTitle?: ArrowsExpandUpDownFill["accessibilityTitle"]
|
|
3510
3510
|
/** (optional) If `true` the icon can receive focus */
|
|
3511
|
-
focusable?:
|
|
3511
|
+
focusable?: ArrowsExpandUpDownFill["focusable"]
|
|
3512
3512
|
}
|
|
3513
3513
|
|
|
3514
3514
|
export type DesignEditLineProps = {
|
|
@@ -3544,6 +3544,28 @@ export type DeviceComputerLineProps = {
|
|
|
3544
3544
|
focusable?: DeviceComputerLine["focusable"]
|
|
3545
3545
|
}
|
|
3546
3546
|
|
|
3547
|
+
export type HealthHeartLineProps = {
|
|
3548
|
+
/** (optional) The width and height in pixels */
|
|
3549
|
+
size?: HealthHeartLine["size"]
|
|
3550
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3551
|
+
selected?: HealthHeartLine["selected"]
|
|
3552
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3553
|
+
accessibilityTitle?: HealthHeartLine["accessibilityTitle"]
|
|
3554
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3555
|
+
focusable?: HealthHeartLine["focusable"]
|
|
3556
|
+
}
|
|
3557
|
+
|
|
3558
|
+
export type HealthHeartFillProps = {
|
|
3559
|
+
/** (optional) The width and height in pixels */
|
|
3560
|
+
size?: HealthHeartFill["size"]
|
|
3561
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3562
|
+
selected?: HealthHeartFill["selected"]
|
|
3563
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3564
|
+
accessibilityTitle?: HealthHeartFill["accessibilityTitle"]
|
|
3565
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3566
|
+
focusable?: HealthHeartFill["focusable"]
|
|
3567
|
+
}
|
|
3568
|
+
|
|
3547
3569
|
export type DocumentClipboardLineProps = {
|
|
3548
3570
|
/** (optional) The width and height in pixels */
|
|
3549
3571
|
size?: DocumentClipboardLine["size"]
|
|
@@ -3632,37 +3654,59 @@ export type DocumentFolderOpenLineProps = {
|
|
|
3632
3654
|
focusable?: DocumentFolderOpenLine["focusable"]
|
|
3633
3655
|
}
|
|
3634
3656
|
|
|
3635
|
-
export type
|
|
3657
|
+
export type OthersCookieLineProps = {
|
|
3636
3658
|
/** (optional) The width and height in pixels */
|
|
3637
|
-
size?:
|
|
3659
|
+
size?: OthersCookieLine["size"]
|
|
3638
3660
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3639
|
-
selected?:
|
|
3661
|
+
selected?: OthersCookieLine["selected"]
|
|
3640
3662
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3641
|
-
accessibilityTitle?:
|
|
3663
|
+
accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
|
|
3642
3664
|
/** (optional) If `true` the icon can receive focus */
|
|
3643
|
-
focusable?:
|
|
3665
|
+
focusable?: OthersCookieLine["focusable"]
|
|
3644
3666
|
}
|
|
3645
3667
|
|
|
3646
|
-
export type
|
|
3668
|
+
export type UserAccountCircleFillProps = {
|
|
3647
3669
|
/** (optional) The width and height in pixels */
|
|
3648
|
-
size?:
|
|
3670
|
+
size?: UserAccountCircleFill["size"]
|
|
3649
3671
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3650
|
-
selected?:
|
|
3672
|
+
selected?: UserAccountCircleFill["selected"]
|
|
3651
3673
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3652
|
-
accessibilityTitle?:
|
|
3674
|
+
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
3653
3675
|
/** (optional) If `true` the icon can receive focus */
|
|
3654
|
-
focusable?:
|
|
3676
|
+
focusable?: UserAccountCircleFill["focusable"]
|
|
3655
3677
|
}
|
|
3656
3678
|
|
|
3657
|
-
export type
|
|
3679
|
+
export type UserAccountCircleLineProps = {
|
|
3658
3680
|
/** (optional) The width and height in pixels */
|
|
3659
|
-
size?:
|
|
3681
|
+
size?: UserAccountCircleLine["size"]
|
|
3660
3682
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3661
|
-
selected?:
|
|
3683
|
+
selected?: UserAccountCircleLine["selected"]
|
|
3662
3684
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3663
|
-
accessibilityTitle?:
|
|
3685
|
+
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
3664
3686
|
/** (optional) If `true` the icon can receive focus */
|
|
3665
|
-
focusable?:
|
|
3687
|
+
focusable?: UserAccountCircleLine["focusable"]
|
|
3688
|
+
}
|
|
3689
|
+
|
|
3690
|
+
export type UserUserFillProps = {
|
|
3691
|
+
/** (optional) The width and height in pixels */
|
|
3692
|
+
size?: UserUserFill["size"]
|
|
3693
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3694
|
+
selected?: UserUserFill["selected"]
|
|
3695
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3696
|
+
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
3697
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3698
|
+
focusable?: UserUserFill["focusable"]
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
export type UserUserLineProps = {
|
|
3702
|
+
/** (optional) The width and height in pixels */
|
|
3703
|
+
size?: UserUserLine["size"]
|
|
3704
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3705
|
+
selected?: UserUserLine["selected"]
|
|
3706
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3707
|
+
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
3708
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3709
|
+
focusable?: UserUserLine["focusable"]
|
|
3666
3710
|
}
|
|
3667
3711
|
|
|
3668
3712
|
export type SystemAddLineProps = {
|
|
@@ -3742,26 +3786,26 @@ export type SystemCheckboxBlankCircleFillCheckProps = {
|
|
|
3742
3786
|
focusable?: SystemCheckboxBlankCircleFillCheck["focusable"]
|
|
3743
3787
|
}
|
|
3744
3788
|
|
|
3745
|
-
export type
|
|
3789
|
+
export type SystemCheckboxCircleFillProps = {
|
|
3746
3790
|
/** (optional) The width and height in pixels */
|
|
3747
|
-
size?:
|
|
3791
|
+
size?: SystemCheckboxCircleFill["size"]
|
|
3748
3792
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3749
|
-
selected?:
|
|
3793
|
+
selected?: SystemCheckboxCircleFill["selected"]
|
|
3750
3794
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3751
|
-
accessibilityTitle?:
|
|
3795
|
+
accessibilityTitle?: SystemCheckboxCircleFill["accessibilityTitle"]
|
|
3752
3796
|
/** (optional) If `true` the icon can receive focus */
|
|
3753
|
-
focusable?:
|
|
3797
|
+
focusable?: SystemCheckboxCircleFill["focusable"]
|
|
3754
3798
|
}
|
|
3755
3799
|
|
|
3756
|
-
export type
|
|
3800
|
+
export type SystemCheckboxBlankCircleLineProps = {
|
|
3757
3801
|
/** (optional) The width and height in pixels */
|
|
3758
|
-
size?:
|
|
3802
|
+
size?: SystemCheckboxBlankCircleLine["size"]
|
|
3759
3803
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3760
|
-
selected?:
|
|
3804
|
+
selected?: SystemCheckboxBlankCircleLine["selected"]
|
|
3761
3805
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3762
|
-
accessibilityTitle?:
|
|
3806
|
+
accessibilityTitle?: SystemCheckboxBlankCircleLine["accessibilityTitle"]
|
|
3763
3807
|
/** (optional) If `true` the icon can receive focus */
|
|
3764
|
-
focusable?:
|
|
3808
|
+
focusable?: SystemCheckboxBlankCircleLine["focusable"]
|
|
3765
3809
|
}
|
|
3766
3810
|
|
|
3767
3811
|
export type SystemCheckboxCircleLineProps = {
|
|
@@ -3797,26 +3841,26 @@ export type SystemCloseCircleLineProps = {
|
|
|
3797
3841
|
focusable?: SystemCloseCircleLine["focusable"]
|
|
3798
3842
|
}
|
|
3799
3843
|
|
|
3800
|
-
export type
|
|
3844
|
+
export type SystemCloseLineProps = {
|
|
3801
3845
|
/** (optional) The width and height in pixels */
|
|
3802
|
-
size?:
|
|
3846
|
+
size?: SystemCloseLine["size"]
|
|
3803
3847
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3804
|
-
selected?:
|
|
3848
|
+
selected?: SystemCloseLine["selected"]
|
|
3805
3849
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3806
|
-
accessibilityTitle?:
|
|
3850
|
+
accessibilityTitle?: SystemCloseLine["accessibilityTitle"]
|
|
3807
3851
|
/** (optional) If `true` the icon can receive focus */
|
|
3808
|
-
focusable?:
|
|
3852
|
+
focusable?: SystemCloseLine["focusable"]
|
|
3809
3853
|
}
|
|
3810
3854
|
|
|
3811
|
-
export type
|
|
3855
|
+
export type SystemCloseFillProps = {
|
|
3812
3856
|
/** (optional) The width and height in pixels */
|
|
3813
|
-
size?:
|
|
3857
|
+
size?: SystemCloseFill["size"]
|
|
3814
3858
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3815
|
-
selected?:
|
|
3859
|
+
selected?: SystemCloseFill["selected"]
|
|
3816
3860
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3817
|
-
accessibilityTitle?:
|
|
3861
|
+
accessibilityTitle?: SystemCloseFill["accessibilityTitle"]
|
|
3818
3862
|
/** (optional) If `true` the icon can receive focus */
|
|
3819
|
-
focusable?:
|
|
3863
|
+
focusable?: SystemCloseFill["focusable"]
|
|
3820
3864
|
}
|
|
3821
3865
|
|
|
3822
3866
|
export type SystemDeleteBinFillProps = {
|
|
@@ -4171,50 +4215,6 @@ export type SystemUploadLineProps = {
|
|
|
4171
4215
|
focusable?: SystemUploadLine["focusable"]
|
|
4172
4216
|
}
|
|
4173
4217
|
|
|
4174
|
-
export type UserAccountCircleFillProps = {
|
|
4175
|
-
/** (optional) The width and height in pixels */
|
|
4176
|
-
size?: UserAccountCircleFill["size"]
|
|
4177
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4178
|
-
selected?: UserAccountCircleFill["selected"]
|
|
4179
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4180
|
-
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
4181
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4182
|
-
focusable?: UserAccountCircleFill["focusable"]
|
|
4183
|
-
}
|
|
4184
|
-
|
|
4185
|
-
export type UserAccountCircleLineProps = {
|
|
4186
|
-
/** (optional) The width and height in pixels */
|
|
4187
|
-
size?: UserAccountCircleLine["size"]
|
|
4188
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4189
|
-
selected?: UserAccountCircleLine["selected"]
|
|
4190
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4191
|
-
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
4192
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4193
|
-
focusable?: UserAccountCircleLine["focusable"]
|
|
4194
|
-
}
|
|
4195
|
-
|
|
4196
|
-
export type UserUserFillProps = {
|
|
4197
|
-
/** (optional) The width and height in pixels */
|
|
4198
|
-
size?: UserUserFill["size"]
|
|
4199
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4200
|
-
selected?: UserUserFill["selected"]
|
|
4201
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4202
|
-
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
4203
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4204
|
-
focusable?: UserUserFill["focusable"]
|
|
4205
|
-
}
|
|
4206
|
-
|
|
4207
|
-
export type UserUserLineProps = {
|
|
4208
|
-
/** (optional) The width and height in pixels */
|
|
4209
|
-
size?: UserUserLine["size"]
|
|
4210
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4211
|
-
selected?: UserUserLine["selected"]
|
|
4212
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4213
|
-
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
4214
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4215
|
-
focusable?: UserUserLine["focusable"]
|
|
4216
|
-
}
|
|
4217
|
-
|
|
4218
4218
|
// Augment Vue's GlobalComponents interface
|
|
4219
4219
|
declare module 'vue' {
|
|
4220
4220
|
interface GlobalComponents {
|
|
@@ -4254,16 +4254,6 @@ declare module 'vue' {
|
|
|
4254
4254
|
* - **text** - The text of the anchor heading.
|
|
4255
4255
|
*/
|
|
4256
4256
|
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4257
|
-
/**
|
|
4258
|
-
* An accordion group is a collection of accordion components.
|
|
4259
|
-
*
|
|
4260
|
-
* ### Slots:
|
|
4261
|
-
* - **default** - The content of the accordion group.
|
|
4262
|
-
*
|
|
4263
|
-
* ### CSS Parts:
|
|
4264
|
-
* - **base** - The main accordion group container.
|
|
4265
|
-
*/
|
|
4266
|
-
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4267
4257
|
/**
|
|
4268
4258
|
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4269
4259
|
*
|
|
@@ -4300,6 +4290,16 @@ declare module 'vue' {
|
|
|
4300
4290
|
* - **overflow** - The overflow indicator element.
|
|
4301
4291
|
*/
|
|
4302
4292
|
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4293
|
+
/**
|
|
4294
|
+
* An accordion group is a collection of accordion components.
|
|
4295
|
+
*
|
|
4296
|
+
* ### Slots:
|
|
4297
|
+
* - **default** - The content of the accordion group.
|
|
4298
|
+
*
|
|
4299
|
+
* ### CSS Parts:
|
|
4300
|
+
* - **base** - The main accordion group container.
|
|
4301
|
+
*/
|
|
4302
|
+
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4303
4303
|
/**
|
|
4304
4304
|
* A badge is a small status descriptor for UI elements.
|
|
4305
4305
|
*
|
|
@@ -4338,18 +4338,6 @@ declare module 'vue' {
|
|
|
4338
4338
|
* - **title** - The title of the banner.
|
|
4339
4339
|
*/
|
|
4340
4340
|
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4341
|
-
/**
|
|
4342
|
-
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4343
|
-
*
|
|
4344
|
-
* ### Slots:
|
|
4345
|
-
* - **default** - The content of the breadcrumb.
|
|
4346
|
-
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4347
|
-
*
|
|
4348
|
-
* ### CSS Parts:
|
|
4349
|
-
* - **base** - The main breadcrumb container.
|
|
4350
|
-
* - **separator** - The separator of the breadcrumb.
|
|
4351
|
-
*/
|
|
4352
|
-
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4353
4341
|
/**
|
|
4354
4342
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4355
4343
|
*
|
|
@@ -4380,6 +4368,18 @@ declare module 'vue' {
|
|
|
4380
4368
|
* - **content** - The content wrapper inside the button.
|
|
4381
4369
|
*/
|
|
4382
4370
|
'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
|
|
4371
|
+
/**
|
|
4372
|
+
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4373
|
+
*
|
|
4374
|
+
* ### Slots:
|
|
4375
|
+
* - **default** - The content of the breadcrumb.
|
|
4376
|
+
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4377
|
+
*
|
|
4378
|
+
* ### CSS Parts:
|
|
4379
|
+
* - **base** - The main breadcrumb container.
|
|
4380
|
+
* - **separator** - The separator of the breadcrumb.
|
|
4381
|
+
*/
|
|
4382
|
+
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4383
4383
|
/**
|
|
4384
4384
|
* Calendar cell represents a single cell in the calendar.
|
|
4385
4385
|
*
|
|
@@ -4841,19 +4841,6 @@ declare module 'vue' {
|
|
|
4841
4841
|
* - **postfix** - The postfix of the input.
|
|
4842
4842
|
*/
|
|
4843
4843
|
'dap-ds-input': DefineCustomElement<DapDSInput, DapDSInputProps, DapDSInputEvents>
|
|
4844
|
-
/**
|
|
4845
|
-
* A label is a container for labels intended for general use. It contains a label text, description, and tooltip.
|
|
4846
|
-
*
|
|
4847
|
-
* ### CSS Parts:
|
|
4848
|
-
* - **base** - The main label container.
|
|
4849
|
-
* - **label** - Tha main label container. dap-ds-form-label element.
|
|
4850
|
-
* - **label-base** - The label text.
|
|
4851
|
-
* - **label-required** - The required indicator of the label.
|
|
4852
|
-
* - **label-optional** - The optional indicator of the label.
|
|
4853
|
-
* - **tooltip** - The tooltip of the label. dap-ds-tooltip element.
|
|
4854
|
-
* - **description** - The description of the label.
|
|
4855
|
-
*/
|
|
4856
|
-
'dap-ds-label': DefineCustomElement<DapDSLabel, DapDSLabelProps, {}>
|
|
4857
4844
|
/**
|
|
4858
4845
|
* A link is a reference to a web resource.
|
|
4859
4846
|
*
|
|
@@ -4864,10 +4851,23 @@ declare module 'vue' {
|
|
|
4864
4851
|
* - **default** - The text of the link.
|
|
4865
4852
|
*
|
|
4866
4853
|
* ### CSS Parts:
|
|
4867
|
-
* - **base** - The main link container.
|
|
4868
|
-
* - **text** - The text of the link.
|
|
4854
|
+
* - **base** - The main link container.
|
|
4855
|
+
* - **text** - The text of the link.
|
|
4856
|
+
*/
|
|
4857
|
+
'dap-ds-link': DefineCustomElement<DapDSLink, DapDSLinkProps, DapDSLinkEvents>
|
|
4858
|
+
/**
|
|
4859
|
+
* A label is a container for labels intended for general use. It contains a label text, description, and tooltip.
|
|
4860
|
+
*
|
|
4861
|
+
* ### CSS Parts:
|
|
4862
|
+
* - **base** - The main label container.
|
|
4863
|
+
* - **label** - Tha main label container. dap-ds-form-label element.
|
|
4864
|
+
* - **label-base** - The label text.
|
|
4865
|
+
* - **label-required** - The required indicator of the label.
|
|
4866
|
+
* - **label-optional** - The optional indicator of the label.
|
|
4867
|
+
* - **tooltip** - The tooltip of the label. dap-ds-tooltip element.
|
|
4868
|
+
* - **description** - The description of the label.
|
|
4869
4869
|
*/
|
|
4870
|
-
'dap-ds-
|
|
4870
|
+
'dap-ds-label': DefineCustomElement<DapDSLabel, DapDSLabelProps, {}>
|
|
4871
4871
|
/**
|
|
4872
4872
|
* A list
|
|
4873
4873
|
*
|
|
@@ -5370,32 +5370,6 @@ declare module 'vue' {
|
|
|
5370
5370
|
* - **description** - The description of the switch.
|
|
5371
5371
|
*/
|
|
5372
5372
|
'dap-ds-switch': DefineCustomElement<DapDSSwitch, DapDSSwitchProps, DapDSSwitchEvents>
|
|
5373
|
-
/**
|
|
5374
|
-
* A tab group component. It is used with dap-ds-tab component to create a tab group.
|
|
5375
|
-
*
|
|
5376
|
-
* ### Events:
|
|
5377
|
-
* - **dds-tab-select** - Fired when select a new tab.
|
|
5378
|
-
*
|
|
5379
|
-
* ### Slots:
|
|
5380
|
-
* - **default** - The tab items.
|
|
5381
|
-
*
|
|
5382
|
-
* ### CSS Parts:
|
|
5383
|
-
* - **base** - The main container.
|
|
5384
|
-
* - **tab-nav** - The tab navigation container.
|
|
5385
|
-
* - **tab-content** - The tab content container.
|
|
5386
|
-
*/
|
|
5387
|
-
'dap-ds-tab-group': DefineCustomElement<DapDSTabGroup, DapDSTabGroupProps, DapDSTabGroupEvents>
|
|
5388
|
-
/**
|
|
5389
|
-
* A tab item component. It is used in dap-ds-tab-group component slot to create a tab item.
|
|
5390
|
-
*
|
|
5391
|
-
* ### Slots:
|
|
5392
|
-
* - **default** - The tab title template.
|
|
5393
|
-
* - **content** - The tab content.
|
|
5394
|
-
*
|
|
5395
|
-
* ### CSS Parts:
|
|
5396
|
-
* - **base** - The main tab content container.
|
|
5397
|
-
*/
|
|
5398
|
-
'dap-ds-tab': DefineCustomElement<DapDSTab, DapDSTabProps, {}>
|
|
5399
5373
|
/**
|
|
5400
5374
|
*
|
|
5401
5375
|
*
|
|
@@ -5430,6 +5404,58 @@ declare module 'vue' {
|
|
|
5430
5404
|
* - **default** - The default slot. Accepts `dap-ds-table-row` elements.
|
|
5431
5405
|
*/
|
|
5432
5406
|
'dap-ds-table': DefineCustomElement<DapDSTable, DapDSTableProps, {}>
|
|
5407
|
+
/**
|
|
5408
|
+
* A tab group component. It is used with dap-ds-tab component to create a tab group.
|
|
5409
|
+
*
|
|
5410
|
+
* ### Events:
|
|
5411
|
+
* - **dds-tab-select** - Fired when select a new tab.
|
|
5412
|
+
*
|
|
5413
|
+
* ### Slots:
|
|
5414
|
+
* - **default** - The tab items.
|
|
5415
|
+
*
|
|
5416
|
+
* ### CSS Parts:
|
|
5417
|
+
* - **base** - The main container.
|
|
5418
|
+
* - **tab-nav** - The tab navigation container.
|
|
5419
|
+
* - **tab-content** - The tab content container.
|
|
5420
|
+
*/
|
|
5421
|
+
'dap-ds-tab-group': DefineCustomElement<DapDSTabGroup, DapDSTabGroupProps, DapDSTabGroupEvents>
|
|
5422
|
+
/**
|
|
5423
|
+
* A tab item component. It is used in dap-ds-tab-group component slot to create a tab item.
|
|
5424
|
+
*
|
|
5425
|
+
* ### Slots:
|
|
5426
|
+
* - **default** - The tab title template.
|
|
5427
|
+
* - **content** - The tab content.
|
|
5428
|
+
*
|
|
5429
|
+
* ### CSS Parts:
|
|
5430
|
+
* - **base** - The main tab content container.
|
|
5431
|
+
*/
|
|
5432
|
+
'dap-ds-tab': DefineCustomElement<DapDSTab, DapDSTabProps, {}>
|
|
5433
|
+
/**
|
|
5434
|
+
* A textarea is a multi-line text input field.
|
|
5435
|
+
*
|
|
5436
|
+
* ### Events:
|
|
5437
|
+
* - **dds-count-change** - Fires when the count of the textarea changes.
|
|
5438
|
+
* - **dds-change** - Fired when the textarea value changes.
|
|
5439
|
+
* - **dds-input** - Fired when the textarea value changes.
|
|
5440
|
+
* - **dds-keydown** - Fired when a key is pressed down.
|
|
5441
|
+
* - **dds-blur** - Fired when the textarea loses focus.
|
|
5442
|
+
* - **dds-focus** - Emitted when the textarea gains focus.
|
|
5443
|
+
* - **dds-select** - Emitted when select text in textarea.
|
|
5444
|
+
*
|
|
5445
|
+
* ### Slots:
|
|
5446
|
+
* - **feedback-icon** - The custom icon of the feedback.
|
|
5447
|
+
*
|
|
5448
|
+
* ### CSS Parts:
|
|
5449
|
+
* - **base** - The main textarea container.
|
|
5450
|
+
* - **input** - The native input of the textarea.
|
|
5451
|
+
* - **counter** - The counter of the textarea.
|
|
5452
|
+
* - **counter-base** - The base of the counter.
|
|
5453
|
+
* - **feedback** - The feedback of the textarea.
|
|
5454
|
+
* - **feedback-base** - The base of the feedback.
|
|
5455
|
+
* - **feedback-text** - The text of the feedback.
|
|
5456
|
+
* - **feedback-icon** - The icon of the feedback.
|
|
5457
|
+
*/
|
|
5458
|
+
'dap-ds-textarea': DefineCustomElement<DapDSTextarea, DapDSTextareaProps, DapDSTextareaEvents>
|
|
5433
5459
|
/**
|
|
5434
5460
|
* A timeline is a graphical representation of a series of events.
|
|
5435
5461
|
*
|
|
@@ -5493,31 +5519,16 @@ declare module 'vue' {
|
|
|
5493
5519
|
*/
|
|
5494
5520
|
'dap-ds-timepicker': DefineCustomElement<DapDSTimePicker, DapDSTimePickerProps, DapDSTimePickerEvents>
|
|
5495
5521
|
/**
|
|
5496
|
-
* A
|
|
5497
|
-
*
|
|
5498
|
-
* ### Events:
|
|
5499
|
-
* - **dds-count-change** - Fires when the count of the textarea changes.
|
|
5500
|
-
* - **dds-change** - Fired when the textarea value changes.
|
|
5501
|
-
* - **dds-input** - Fired when the textarea value changes.
|
|
5502
|
-
* - **dds-keydown** - Fired when a key is pressed down.
|
|
5503
|
-
* - **dds-blur** - Fired when the textarea loses focus.
|
|
5504
|
-
* - **dds-focus** - Emitted when the textarea gains focus.
|
|
5505
|
-
* - **dds-select** - Emitted when select text in textarea.
|
|
5522
|
+
* A toggle button is a button that can be toggled on (active) or off (inactive).
|
|
5506
5523
|
*
|
|
5507
5524
|
* ### Slots:
|
|
5508
|
-
* - **
|
|
5525
|
+
* - **default** - The content of the toggle button.
|
|
5509
5526
|
*
|
|
5510
5527
|
* ### CSS Parts:
|
|
5511
|
-
* - **base** - The main
|
|
5512
|
-
* - **
|
|
5513
|
-
* - **counter** - The counter of the textarea.
|
|
5514
|
-
* - **counter-base** - The base of the counter.
|
|
5515
|
-
* - **feedback** - The feedback of the textarea.
|
|
5516
|
-
* - **feedback-base** - The base of the feedback.
|
|
5517
|
-
* - **feedback-text** - The text of the feedback.
|
|
5518
|
-
* - **feedback-icon** - The icon of the feedback.
|
|
5528
|
+
* - **base** - The main button container.
|
|
5529
|
+
* - **high-contrast** - The high contrast part of the button.
|
|
5519
5530
|
*/
|
|
5520
|
-
'dap-ds-
|
|
5531
|
+
'dap-ds-toggle-button': DefineCustomElement<DapDSToggleButton, DapDSToggleButtonProps, {}>
|
|
5521
5532
|
/**
|
|
5522
5533
|
* A table of contents (TOC) is a list of links that allows users to quickly navigate to sections within a document.
|
|
5523
5534
|
*
|
|
@@ -5528,17 +5539,6 @@ declare module 'vue' {
|
|
|
5528
5539
|
* - **base** - The main container of the toc.
|
|
5529
5540
|
*/
|
|
5530
5541
|
'dap-ds-toc': DefineCustomElement<DapDSTOC, DapDSTOCProps, DapDSTOCEvents>
|
|
5531
|
-
/**
|
|
5532
|
-
* A toggle button is a button that can be toggled on (active) or off (inactive).
|
|
5533
|
-
*
|
|
5534
|
-
* ### Slots:
|
|
5535
|
-
* - **default** - The content of the toggle button.
|
|
5536
|
-
*
|
|
5537
|
-
* ### CSS Parts:
|
|
5538
|
-
* - **base** - The main button container.
|
|
5539
|
-
* - **high-contrast** - The high contrast part of the button.
|
|
5540
|
-
*/
|
|
5541
|
-
'dap-ds-toggle-button': DefineCustomElement<DapDSToggleButton, DapDSToggleButtonProps, {}>
|
|
5542
5542
|
/**
|
|
5543
5543
|
* A tooltip is a container for tooltip content.
|
|
5544
5544
|
*
|
|
@@ -5636,7 +5636,7 @@ declare module 'vue' {
|
|
|
5636
5636
|
* ### CSS Parts:
|
|
5637
5637
|
* - **base** - The main icon container.
|
|
5638
5638
|
*/
|
|
5639
|
-
'dap-ds-icon-
|
|
5639
|
+
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
5640
5640
|
/**
|
|
5641
5641
|
* An icon
|
|
5642
5642
|
*
|
|
@@ -5644,6 +5644,13 @@ declare module 'vue' {
|
|
|
5644
5644
|
* - **base** - The main icon container.
|
|
5645
5645
|
*/
|
|
5646
5646
|
'dap-ds-icon-arrow-down-s-fill': DefineCustomElement<ArrowsArrowDownSFill, ArrowsArrowDownSFillProps, {}>
|
|
5647
|
+
/**
|
|
5648
|
+
* An icon
|
|
5649
|
+
*
|
|
5650
|
+
* ### CSS Parts:
|
|
5651
|
+
* - **base** - The main icon container.
|
|
5652
|
+
*/
|
|
5653
|
+
'dap-ds-icon-arrow-down-line': DefineCustomElement<ArrowsArrowDownLine, ArrowsArrowDownLineProps, {}>
|
|
5647
5654
|
/**
|
|
5648
5655
|
* An icon
|
|
5649
5656
|
*
|
|
@@ -5678,14 +5685,14 @@ declare module 'vue' {
|
|
|
5678
5685
|
* ### CSS Parts:
|
|
5679
5686
|
* - **base** - The main icon container.
|
|
5680
5687
|
*/
|
|
5681
|
-
'dap-ds-icon-arrow-left-s-
|
|
5688
|
+
'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
|
|
5682
5689
|
/**
|
|
5683
5690
|
* An icon
|
|
5684
5691
|
*
|
|
5685
5692
|
* ### CSS Parts:
|
|
5686
5693
|
* - **base** - The main icon container.
|
|
5687
5694
|
*/
|
|
5688
|
-
'dap-ds-icon-arrow-left-s-
|
|
5695
|
+
'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
|
|
5689
5696
|
/**
|
|
5690
5697
|
* An icon
|
|
5691
5698
|
*
|
|
@@ -5699,14 +5706,14 @@ declare module 'vue' {
|
|
|
5699
5706
|
* ### CSS Parts:
|
|
5700
5707
|
* - **base** - The main icon container.
|
|
5701
5708
|
*/
|
|
5702
|
-
'dap-ds-icon-arrow-right-
|
|
5709
|
+
'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
|
|
5703
5710
|
/**
|
|
5704
5711
|
* An icon
|
|
5705
5712
|
*
|
|
5706
5713
|
* ### CSS Parts:
|
|
5707
5714
|
* - **base** - The main icon container.
|
|
5708
5715
|
*/
|
|
5709
|
-
'dap-ds-icon-arrow-right-
|
|
5716
|
+
'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
|
|
5710
5717
|
/**
|
|
5711
5718
|
* An icon
|
|
5712
5719
|
*
|
|
@@ -5756,6 +5763,13 @@ declare module 'vue' {
|
|
|
5756
5763
|
* - **base** - The main icon container.
|
|
5757
5764
|
*/
|
|
5758
5765
|
'dap-ds-icon-arrow-up-s-line': DefineCustomElement<ArrowsArrowUpSLine, ArrowsArrowUpSLineProps, {}>
|
|
5766
|
+
/**
|
|
5767
|
+
* An icon
|
|
5768
|
+
*
|
|
5769
|
+
* ### CSS Parts:
|
|
5770
|
+
* - **base** - The main icon container.
|
|
5771
|
+
*/
|
|
5772
|
+
'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
|
|
5759
5773
|
/**
|
|
5760
5774
|
* An icon
|
|
5761
5775
|
*
|
|
@@ -5769,35 +5783,35 @@ declare module 'vue' {
|
|
|
5769
5783
|
* ### CSS Parts:
|
|
5770
5784
|
* - **base** - The main icon container.
|
|
5771
5785
|
*/
|
|
5772
|
-
'dap-ds-icon-
|
|
5786
|
+
'dap-ds-icon-edit-line': DefineCustomElement<DesignEditLine, DesignEditLineProps, {}>
|
|
5773
5787
|
/**
|
|
5774
5788
|
* An icon
|
|
5775
5789
|
*
|
|
5776
5790
|
* ### CSS Parts:
|
|
5777
5791
|
* - **base** - The main icon container.
|
|
5778
5792
|
*/
|
|
5779
|
-
'dap-ds-icon-
|
|
5793
|
+
'dap-ds-icon-tools-line': DefineCustomElement<DesignToolsLine, DesignToolsLineProps, {}>
|
|
5780
5794
|
/**
|
|
5781
5795
|
* An icon
|
|
5782
5796
|
*
|
|
5783
5797
|
* ### CSS Parts:
|
|
5784
5798
|
* - **base** - The main icon container.
|
|
5785
5799
|
*/
|
|
5786
|
-
'dap-ds-icon-
|
|
5800
|
+
'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
|
|
5787
5801
|
/**
|
|
5788
5802
|
* An icon
|
|
5789
5803
|
*
|
|
5790
5804
|
* ### CSS Parts:
|
|
5791
5805
|
* - **base** - The main icon container.
|
|
5792
5806
|
*/
|
|
5793
|
-
'dap-ds-icon-
|
|
5807
|
+
'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
|
|
5794
5808
|
/**
|
|
5795
5809
|
* An icon
|
|
5796
5810
|
*
|
|
5797
5811
|
* ### CSS Parts:
|
|
5798
5812
|
* - **base** - The main icon container.
|
|
5799
5813
|
*/
|
|
5800
|
-
'dap-ds-icon-
|
|
5814
|
+
'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
|
|
5801
5815
|
/**
|
|
5802
5816
|
* An icon
|
|
5803
5817
|
*
|
|
@@ -5860,21 +5874,35 @@ declare module 'vue' {
|
|
|
5860
5874
|
* ### CSS Parts:
|
|
5861
5875
|
* - **base** - The main icon container.
|
|
5862
5876
|
*/
|
|
5863
|
-
'dap-ds-icon-
|
|
5877
|
+
'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
|
|
5864
5878
|
/**
|
|
5865
5879
|
* An icon
|
|
5866
5880
|
*
|
|
5867
5881
|
* ### CSS Parts:
|
|
5868
5882
|
* - **base** - The main icon container.
|
|
5869
5883
|
*/
|
|
5870
|
-
'dap-ds-icon-
|
|
5884
|
+
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
5871
5885
|
/**
|
|
5872
5886
|
* An icon
|
|
5873
5887
|
*
|
|
5874
5888
|
* ### CSS Parts:
|
|
5875
5889
|
* - **base** - The main icon container.
|
|
5876
5890
|
*/
|
|
5877
|
-
'dap-ds-icon-
|
|
5891
|
+
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
5892
|
+
/**
|
|
5893
|
+
* An icon
|
|
5894
|
+
*
|
|
5895
|
+
* ### CSS Parts:
|
|
5896
|
+
* - **base** - The main icon container.
|
|
5897
|
+
*/
|
|
5898
|
+
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
5899
|
+
/**
|
|
5900
|
+
* An icon
|
|
5901
|
+
*
|
|
5902
|
+
* ### CSS Parts:
|
|
5903
|
+
* - **base** - The main icon container.
|
|
5904
|
+
*/
|
|
5905
|
+
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
5878
5906
|
/**
|
|
5879
5907
|
* An icon
|
|
5880
5908
|
*
|
|
@@ -5930,14 +5958,14 @@ declare module 'vue' {
|
|
|
5930
5958
|
* ### CSS Parts:
|
|
5931
5959
|
* - **base** - The main icon container.
|
|
5932
5960
|
*/
|
|
5933
|
-
'dap-ds-icon-checkbox-
|
|
5961
|
+
'dap-ds-icon-checkbox-circle-fill': DefineCustomElement<SystemCheckboxCircleFill, SystemCheckboxCircleFillProps, {}>
|
|
5934
5962
|
/**
|
|
5935
5963
|
* An icon
|
|
5936
5964
|
*
|
|
5937
5965
|
* ### CSS Parts:
|
|
5938
5966
|
* - **base** - The main icon container.
|
|
5939
5967
|
*/
|
|
5940
|
-
'dap-ds-icon-checkbox-circle-
|
|
5968
|
+
'dap-ds-icon-checkbox-blank-circle-line': DefineCustomElement<SystemCheckboxBlankCircleLine, SystemCheckboxBlankCircleLineProps, {}>
|
|
5941
5969
|
/**
|
|
5942
5970
|
* An icon
|
|
5943
5971
|
*
|
|
@@ -5965,14 +5993,14 @@ declare module 'vue' {
|
|
|
5965
5993
|
* ### CSS Parts:
|
|
5966
5994
|
* - **base** - The main icon container.
|
|
5967
5995
|
*/
|
|
5968
|
-
'dap-ds-icon-close-
|
|
5996
|
+
'dap-ds-icon-close-line': DefineCustomElement<SystemCloseLine, SystemCloseLineProps, {}>
|
|
5969
5997
|
/**
|
|
5970
5998
|
* An icon
|
|
5971
5999
|
*
|
|
5972
6000
|
* ### CSS Parts:
|
|
5973
6001
|
* - **base** - The main icon container.
|
|
5974
6002
|
*/
|
|
5975
|
-
'dap-ds-icon-close-
|
|
6003
|
+
'dap-ds-icon-close-fill': DefineCustomElement<SystemCloseFill, SystemCloseFillProps, {}>
|
|
5976
6004
|
/**
|
|
5977
6005
|
* An icon
|
|
5978
6006
|
*
|
|
@@ -6197,34 +6225,6 @@ declare module 'vue' {
|
|
|
6197
6225
|
* - **base** - The main icon container.
|
|
6198
6226
|
*/
|
|
6199
6227
|
'dap-ds-icon-upload-line': DefineCustomElement<SystemUploadLine, SystemUploadLineProps, {}>
|
|
6200
|
-
/**
|
|
6201
|
-
* An icon
|
|
6202
|
-
*
|
|
6203
|
-
* ### CSS Parts:
|
|
6204
|
-
* - **base** - The main icon container.
|
|
6205
|
-
*/
|
|
6206
|
-
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
6207
|
-
/**
|
|
6208
|
-
* An icon
|
|
6209
|
-
*
|
|
6210
|
-
* ### CSS Parts:
|
|
6211
|
-
* - **base** - The main icon container.
|
|
6212
|
-
*/
|
|
6213
|
-
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
6214
|
-
/**
|
|
6215
|
-
* An icon
|
|
6216
|
-
*
|
|
6217
|
-
* ### CSS Parts:
|
|
6218
|
-
* - **base** - The main icon container.
|
|
6219
|
-
*/
|
|
6220
|
-
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
6221
|
-
/**
|
|
6222
|
-
* An icon
|
|
6223
|
-
*
|
|
6224
|
-
* ### CSS Parts:
|
|
6225
|
-
* - **base** - The main icon container.
|
|
6226
|
-
*/
|
|
6227
|
-
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
6228
6228
|
}
|
|
6229
6229
|
}
|
|
6230
6230
|
|
|
@@ -6234,14 +6234,14 @@ declare global {
|
|
|
6234
6234
|
interface IntrinsicElements {
|
|
6235
6235
|
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6236
6236
|
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6237
|
-
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6238
6237
|
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6239
6238
|
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6239
|
+
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6240
6240
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6241
6241
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6242
|
-
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6243
6242
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6244
6243
|
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6244
|
+
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6245
6245
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
6246
6246
|
'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
|
|
6247
6247
|
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
@@ -6271,8 +6271,8 @@ declare global {
|
|
|
6271
6271
|
'dap-ds-icon': DapDSIconProps & DapDSIconSlots
|
|
6272
6272
|
'dap-ds-icon-button': DapDSIconButtonProps & DapDSIconButtonSlots
|
|
6273
6273
|
'dap-ds-input': DapDSInputProps & DapDSInputEvents & DapDSInputSlots
|
|
6274
|
-
'dap-ds-label': DapDSLabelProps
|
|
6275
6274
|
'dap-ds-link': DapDSLinkProps & DapDSLinkEvents & DapDSLinkSlots
|
|
6275
|
+
'dap-ds-label': DapDSLabelProps
|
|
6276
6276
|
'dap-ds-list-item': DapDSListItemProps & DapDSListItemSlots
|
|
6277
6277
|
'dap-ds-modal': DapDSModalProps & DapDSModalEvents & DapDSModalSlots
|
|
6278
6278
|
'dap-ds-navigation-menu-item': DapDSNavigationMenuItemProps & DapDSNavigationMenuItemEvents & DapDSNavigationMenuItemSlots
|
|
@@ -6302,36 +6302,37 @@ declare global {
|
|
|
6302
6302
|
'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
|
|
6303
6303
|
'dap-ds-stack': DapDSStackProps & DapDSStackSlots
|
|
6304
6304
|
'dap-ds-switch': DapDSSwitchProps & DapDSSwitchEvents
|
|
6305
|
-
'dap-ds-tab-group': DapDSTabGroupProps & DapDSTabGroupEvents & DapDSTabGroupSlots
|
|
6306
|
-
'dap-ds-tab': DapDSTabProps & DapDSTabSlots
|
|
6307
6305
|
'dap-ds-table-cell': DapDSTableCellProps & DapDSTableCellSlots
|
|
6308
6306
|
'dap-ds-table-header': DapDSTableHeaderProps & DapDSTableHeaderSlots
|
|
6309
6307
|
'dap-ds-table-row': DapDSTableRowProps & DapDSTableRowSlots
|
|
6310
6308
|
'dap-ds-table': DapDSTableProps & DapDSTableSlots
|
|
6309
|
+
'dap-ds-tab-group': DapDSTabGroupProps & DapDSTabGroupEvents & DapDSTabGroupSlots
|
|
6310
|
+
'dap-ds-tab': DapDSTabProps & DapDSTabSlots
|
|
6311
|
+
'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
|
|
6311
6312
|
'dap-ds-timeline-item': DapDSTimelineItemProps & DapDSTimelineItemSlots
|
|
6312
6313
|
'dap-ds-timeline': DapDSTimelineProps & DapDSTimelineSlots
|
|
6313
6314
|
'dap-ds-time-grid': DapDSTimeGridProps & DapDSTimeGridEvents
|
|
6314
6315
|
'dap-ds-timepicker': DapDSTimePickerProps & DapDSTimePickerEvents
|
|
6315
|
-
'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
|
|
6316
|
-
'dap-ds-toc': DapDSTOCProps & DapDSTOCEvents
|
|
6317
6316
|
'dap-ds-toggle-button': DapDSToggleButtonProps & DapDSToggleButtonSlots
|
|
6317
|
+
'dap-ds-toc': DapDSTOCProps & DapDSTOCEvents
|
|
6318
6318
|
'dap-ds-tooltip': DapDSTooltipProps & DapDSTooltipSlots
|
|
6319
6319
|
'dap-ds-tray': DapDSTrayProps & DapDSTrayEvents & DapDSTraySlots
|
|
6320
6320
|
'dap-ds-typography': DapDSTypographyProps & DapDSTypographySlots
|
|
6321
6321
|
'dap-ds-form-label': DapDSFormLabelProps
|
|
6322
6322
|
'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
|
|
6323
6323
|
'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
|
|
6324
|
-
'dap-ds-icon-
|
|
6324
|
+
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6325
6325
|
'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
|
|
6326
|
+
'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
|
|
6326
6327
|
'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
|
|
6327
6328
|
'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
|
|
6328
6329
|
'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
|
|
6329
6330
|
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6330
|
-
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6331
6331
|
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6332
|
+
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6332
6333
|
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6333
|
-
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6334
6334
|
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
6335
|
+
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6335
6336
|
'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
|
|
6336
6337
|
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
6337
6338
|
'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
|
|
@@ -6339,12 +6340,13 @@ declare global {
|
|
|
6339
6340
|
'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
|
|
6340
6341
|
'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
|
|
6341
6342
|
'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
|
|
6342
|
-
'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
|
|
6343
|
-
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6344
6343
|
'dap-ds-icon-calendar-line': BusinessCalendarLineProps
|
|
6344
|
+
'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
|
|
6345
6345
|
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6346
6346
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
6347
6347
|
'dap-ds-icon-computer-line': DeviceComputerLineProps
|
|
6348
|
+
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6349
|
+
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6348
6350
|
'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
|
|
6349
6351
|
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6350
6352
|
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
@@ -6353,9 +6355,11 @@ declare global {
|
|
|
6353
6355
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6354
6356
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
6355
6357
|
'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
|
|
6356
|
-
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6357
|
-
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6358
6358
|
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6359
|
+
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6360
|
+
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6361
|
+
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6362
|
+
'dap-ds-icon-user-line': UserUserLineProps
|
|
6359
6363
|
'dap-ds-icon-add-line': SystemAddLineProps
|
|
6360
6364
|
'dap-ds-icon-alert-fill': SystemAlertFillProps
|
|
6361
6365
|
'dap-ds-icon-alert-line': SystemAlertLineProps
|
|
@@ -6363,13 +6367,13 @@ declare global {
|
|
|
6363
6367
|
'dap-ds-icon-check-line2': SystemCheckLine2Props
|
|
6364
6368
|
'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps
|
|
6365
6369
|
'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheckProps
|
|
6366
|
-
'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
|
|
6367
6370
|
'dap-ds-icon-checkbox-circle-fill': SystemCheckboxCircleFillProps
|
|
6371
|
+
'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
|
|
6368
6372
|
'dap-ds-icon-checkbox-circle-line': SystemCheckboxCircleLineProps
|
|
6369
6373
|
'dap-ds-icon-close-circle-fill': SystemCloseCircleFillProps
|
|
6370
6374
|
'dap-ds-icon-close-circle-line': SystemCloseCircleLineProps
|
|
6371
|
-
'dap-ds-icon-close-fill': SystemCloseFillProps
|
|
6372
6375
|
'dap-ds-icon-close-line': SystemCloseLineProps
|
|
6376
|
+
'dap-ds-icon-close-fill': SystemCloseFillProps
|
|
6373
6377
|
'dap-ds-icon-delete-bin-fill': SystemDeleteBinFillProps
|
|
6374
6378
|
'dap-ds-icon-delete-bin-line': SystemDeleteBinLineProps
|
|
6375
6379
|
'dap-ds-icon-download-line': SystemDownloadLineProps
|
|
@@ -6402,10 +6406,6 @@ declare global {
|
|
|
6402
6406
|
'dap-ds-icon-upload-2-fill': SystemUpload2FillProps
|
|
6403
6407
|
'dap-ds-icon-upload-2-line': SystemUpload2LineProps
|
|
6404
6408
|
'dap-ds-icon-upload-line': SystemUploadLineProps
|
|
6405
|
-
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6406
|
-
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6407
|
-
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6408
|
-
'dap-ds-icon-user-line': UserUserLineProps
|
|
6409
6409
|
}
|
|
6410
6410
|
}
|
|
6411
6411
|
}
|