dap-design-system 0.50.1 → 0.50.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 +417 -417
- package/dist/manifest/vscode.html-custom-data.json +321 -321
- package/dist/manifest/web-types.json +860 -860
- package/dist/react/index.d.ts +17 -17
- package/dist/react-types.ts +20 -20
- package/dist/react.js +274 -274
- package/dist/react.js.map +1 -1
- package/package.json +3 -3
|
@@ -393,6 +393,18 @@ export interface DapDSLinkEvents {
|
|
|
393
393
|
onDdsClick?: (event: CustomEvent<{ event: Event }>) => void
|
|
394
394
|
}
|
|
395
395
|
|
|
396
|
+
export interface DapDSNavigationMenuItemEvents {
|
|
397
|
+
/** Fired when a navigation item is clicked. */
|
|
398
|
+
onDdsNavigationItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
|
|
399
|
+
/** Fired when a navigation dropdown is opened. */
|
|
400
|
+
onDdsNavigationDropdownOpen?: (event: CustomEvent<{ item: DapDSNavigationMenuItem }>) => void
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
export interface DapDSNavigationMenuEvents {
|
|
404
|
+
/** Fired when a navigation item is clicked. */
|
|
405
|
+
onDdsNavigationItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
|
|
406
|
+
}
|
|
407
|
+
|
|
396
408
|
export interface DapDSModalEvents {
|
|
397
409
|
/** Fires before the modal opens. */
|
|
398
410
|
onDdsBeforeOpen?: (event: CustomEvent) => void
|
|
@@ -410,18 +422,6 @@ export interface DapDSModalEvents {
|
|
|
410
422
|
onDdsCancel?: (event: CustomEvent) => void
|
|
411
423
|
}
|
|
412
424
|
|
|
413
|
-
export interface DapDSNavigationMenuItemEvents {
|
|
414
|
-
/** Fired when a navigation item is clicked. */
|
|
415
|
-
onDdsNavigationItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
|
|
416
|
-
/** Fired when a navigation dropdown is opened. */
|
|
417
|
-
onDdsNavigationDropdownOpen?: (event: CustomEvent<{ item: DapDSNavigationMenuItem }>) => void
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
export interface DapDSNavigationMenuEvents {
|
|
421
|
-
/** Fired when a navigation item is clicked. */
|
|
422
|
-
onDdsNavigationItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
|
|
423
|
-
}
|
|
424
|
-
|
|
425
425
|
export interface DapDSNumberInputEvents {
|
|
426
426
|
/** Fired when the input value changes. */
|
|
427
427
|
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
@@ -640,11 +640,6 @@ export interface DapDSAccordionSlots {
|
|
|
640
640
|
'icon-closed'?: () => any
|
|
641
641
|
}
|
|
642
642
|
|
|
643
|
-
export interface DapDSAccordionGroupSlots {
|
|
644
|
-
/** The content of the accordion group. */
|
|
645
|
-
default?: () => any
|
|
646
|
-
}
|
|
647
|
-
|
|
648
643
|
export interface DapDSAvatarSlots {
|
|
649
644
|
/** The icon to display when variant is 'icon'. */
|
|
650
645
|
'icon'?: () => any
|
|
@@ -673,6 +668,11 @@ export interface DapDSBannerSlots {
|
|
|
673
668
|
'icon'?: () => any
|
|
674
669
|
}
|
|
675
670
|
|
|
671
|
+
export interface DapDSAccordionGroupSlots {
|
|
672
|
+
/** The content of the accordion group. */
|
|
673
|
+
default?: () => any
|
|
674
|
+
}
|
|
675
|
+
|
|
676
676
|
export interface DapDSBreadcrumbSlots {
|
|
677
677
|
/** The content of the breadcrumb. */
|
|
678
678
|
default?: () => any
|
|
@@ -852,17 +852,6 @@ export interface DapDSListItemSlots {
|
|
|
852
852
|
'actions'?: () => any
|
|
853
853
|
}
|
|
854
854
|
|
|
855
|
-
export interface DapDSModalSlots {
|
|
856
|
-
/** The content of the modal. */
|
|
857
|
-
default?: () => any
|
|
858
|
-
/** The title of the modal. */
|
|
859
|
-
'title'?: () => any
|
|
860
|
-
/** The description of the modal. */
|
|
861
|
-
'description'?: () => any
|
|
862
|
-
/** The footer of the modal. */
|
|
863
|
-
'footer'?: () => any
|
|
864
|
-
}
|
|
865
|
-
|
|
866
855
|
export interface DapDSNavigationMenuItemSlots {
|
|
867
856
|
/** The trigger element (link, button, etc.) for this navigation item. */
|
|
868
857
|
'trigger'?: () => any
|
|
@@ -879,6 +868,17 @@ export interface DapDSNavigationMenuSlots {
|
|
|
879
868
|
default?: () => any
|
|
880
869
|
}
|
|
881
870
|
|
|
871
|
+
export interface DapDSModalSlots {
|
|
872
|
+
/** The content of the modal. */
|
|
873
|
+
default?: () => any
|
|
874
|
+
/** The title of the modal. */
|
|
875
|
+
'title'?: () => any
|
|
876
|
+
/** The description of the modal. */
|
|
877
|
+
'description'?: () => any
|
|
878
|
+
/** The footer of the modal. */
|
|
879
|
+
'footer'?: () => any
|
|
880
|
+
}
|
|
881
|
+
|
|
882
882
|
export interface DapDSNotificationBadgeSlots {
|
|
883
883
|
/** The content of the notification badge. */
|
|
884
884
|
default?: () => any
|
|
@@ -900,6 +900,11 @@ export interface DapDSOfficialWebsiteBannerSlots {
|
|
|
900
900
|
'icon-closed'?: () => any
|
|
901
901
|
}
|
|
902
902
|
|
|
903
|
+
export interface DapDSOptionListSlots {
|
|
904
|
+
/** The default slot for the options. */
|
|
905
|
+
default?: () => any
|
|
906
|
+
}
|
|
907
|
+
|
|
903
908
|
export interface DapDSOptionItemSlots {
|
|
904
909
|
/** The prefix of the option item. */
|
|
905
910
|
'prefix'?: () => any
|
|
@@ -909,11 +914,6 @@ export interface DapDSOptionItemSlots {
|
|
|
909
914
|
'suffix'?: () => any
|
|
910
915
|
}
|
|
911
916
|
|
|
912
|
-
export interface DapDSOptionListSlots {
|
|
913
|
-
/** The default slot for the options. */
|
|
914
|
-
default?: () => any
|
|
915
|
-
}
|
|
916
|
-
|
|
917
917
|
export interface DapDSOverlaySlots {
|
|
918
918
|
/** The content of the overlay. */
|
|
919
919
|
default?: () => any
|
|
@@ -991,18 +991,6 @@ export interface DapDSStackSlots {
|
|
|
991
991
|
default?: () => any
|
|
992
992
|
}
|
|
993
993
|
|
|
994
|
-
export interface DapDSTabGroupSlots {
|
|
995
|
-
/** The tab items. */
|
|
996
|
-
default?: () => any
|
|
997
|
-
}
|
|
998
|
-
|
|
999
|
-
export interface DapDSTabSlots {
|
|
1000
|
-
/** The tab title template. */
|
|
1001
|
-
default?: () => any
|
|
1002
|
-
/** The tab content. */
|
|
1003
|
-
'content'?: () => any
|
|
1004
|
-
}
|
|
1005
|
-
|
|
1006
994
|
export interface DapDSTableCellSlots {
|
|
1007
995
|
/** The default slot. */
|
|
1008
996
|
default?: () => any
|
|
@@ -1023,6 +1011,18 @@ export interface DapDSTableSlots {
|
|
|
1023
1011
|
default?: () => any
|
|
1024
1012
|
}
|
|
1025
1013
|
|
|
1014
|
+
export interface DapDSTabGroupSlots {
|
|
1015
|
+
/** The tab items. */
|
|
1016
|
+
default?: () => any
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
export interface DapDSTabSlots {
|
|
1020
|
+
/** The tab title template. */
|
|
1021
|
+
default?: () => any
|
|
1022
|
+
/** The tab content. */
|
|
1023
|
+
'content'?: () => any
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
1026
|
export interface DapDSTextareaSlots {
|
|
1027
1027
|
/** The custom icon of the feedback. */
|
|
1028
1028
|
'feedback-icon'?: () => any
|
|
@@ -1099,13 +1099,6 @@ export type DapDSAccordionProps = {
|
|
|
1099
1099
|
loading?: DapDSAccordion["loading"]
|
|
1100
1100
|
}
|
|
1101
1101
|
|
|
1102
|
-
export type DapDSAccordionGroupProps = {
|
|
1103
|
-
/** Whether to close other accordions when one is opened. */
|
|
1104
|
-
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1105
|
-
/** The variant of the accordion */
|
|
1106
|
-
variant?: DapDSAccordionGroup["variant"]
|
|
1107
|
-
}
|
|
1108
|
-
|
|
1109
1102
|
export type DapDSAvatarProps = {
|
|
1110
1103
|
/** The size of the avatar */
|
|
1111
1104
|
size?: DapDSAvatar["size"]
|
|
@@ -1131,17 +1124,6 @@ export type DapDSAvatarProps = {
|
|
|
1131
1124
|
height?: DapDSAvatar["height"]
|
|
1132
1125
|
}
|
|
1133
1126
|
|
|
1134
|
-
export type DapDSAnchorHeadingProps = {
|
|
1135
|
-
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1136
|
-
variant?: DapDSAnchorHeading["variant"]
|
|
1137
|
-
/** The label of the heading. */
|
|
1138
|
-
label?: DapDSAnchorHeading["label"]
|
|
1139
|
-
/** */
|
|
1140
|
-
elementId?: DapDSAnchorHeading["elementId"]
|
|
1141
|
-
/** */
|
|
1142
|
-
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1143
|
-
}
|
|
1144
|
-
|
|
1145
1127
|
export type DapDSAvatarGroupProps = {
|
|
1146
1128
|
/** The size of avatars in the group */
|
|
1147
1129
|
size?: DapDSAvatarGroup["size"]
|
|
@@ -1159,6 +1141,17 @@ export type DapDSAvatarGroupProps = {
|
|
|
1159
1141
|
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1160
1142
|
}
|
|
1161
1143
|
|
|
1144
|
+
export type DapDSAnchorHeadingProps = {
|
|
1145
|
+
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1146
|
+
variant?: DapDSAnchorHeading["variant"]
|
|
1147
|
+
/** The label of the heading. */
|
|
1148
|
+
label?: DapDSAnchorHeading["label"]
|
|
1149
|
+
/** */
|
|
1150
|
+
elementId?: DapDSAnchorHeading["elementId"]
|
|
1151
|
+
/** */
|
|
1152
|
+
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1153
|
+
}
|
|
1154
|
+
|
|
1162
1155
|
export type DapDSBadgeProps = {
|
|
1163
1156
|
/** The type of the badge */
|
|
1164
1157
|
type?: DapDSBadge["type"]
|
|
@@ -1183,6 +1176,13 @@ export type DapDSBannerProps = {
|
|
|
1183
1176
|
icon?: DapDSBanner["icon"]
|
|
1184
1177
|
}
|
|
1185
1178
|
|
|
1179
|
+
export type DapDSAccordionGroupProps = {
|
|
1180
|
+
/** Whether to close other accordions when one is opened. */
|
|
1181
|
+
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1182
|
+
/** The variant of the accordion */
|
|
1183
|
+
variant?: DapDSAccordionGroup["variant"]
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
1186
|
export type DapDSBreadcrumbProps = {
|
|
1187
1187
|
/** */
|
|
1188
1188
|
variant?: DapDSBreadcrumb["variant"]
|
|
@@ -2166,55 +2166,6 @@ export type DapDSListItemProps = {
|
|
|
2166
2166
|
renderAs?: DapDSListItem["renderAs"]
|
|
2167
2167
|
}
|
|
2168
2168
|
|
|
2169
|
-
export type DapDSModalProps = {
|
|
2170
|
-
/** Pushes the footer to bottom. */
|
|
2171
|
-
bottomFooter?: DapDSModal["bottomFooter"]
|
|
2172
|
-
/** The open state of the modal. */
|
|
2173
|
-
open?: DapDSModal["open"]
|
|
2174
|
-
/** The full screen version of the modal. */
|
|
2175
|
-
fullScreen?: DapDSModal["fullScreen"]
|
|
2176
|
-
/** The size of the modal. Default is 'sm'. */
|
|
2177
|
-
size?: DapDSModal["size"]
|
|
2178
|
-
/** Wide layout mode for footer. */
|
|
2179
|
-
wideFooter?: DapDSModal["wideFooter"]
|
|
2180
|
-
/** Fixes the header to the top of the modal. */
|
|
2181
|
-
fixedHeader?: DapDSModal["fixedHeader"]
|
|
2182
|
-
/** Fixes the footer to the bottom of the modal. */
|
|
2183
|
-
fixedFooter?: DapDSModal["fixedFooter"]
|
|
2184
|
-
/** Whether the modal should close on pressing the escape key. Default is true. */
|
|
2185
|
-
closeOnEsc?: DapDSModal["closeOnEsc"]
|
|
2186
|
-
/** Whether the modal should close on clicking the overlay. Default is true. */
|
|
2187
|
-
closeOnOverlayClick?: DapDSModal["closeOnOverlayClick"]
|
|
2188
|
-
/** Whether the modal should have a close button. Default is true. */
|
|
2189
|
-
closeButton?: DapDSModal["closeButton"]
|
|
2190
|
-
/** The title of the modal. */
|
|
2191
|
-
title?: DapDSModal["title"]
|
|
2192
|
-
/** The description of the modal. */
|
|
2193
|
-
description?: DapDSModal["description"]
|
|
2194
|
-
/** The label of the OK button. */
|
|
2195
|
-
okButtonLabel?: DapDSModal["okButtonLabel"]
|
|
2196
|
-
/** The label of the Cancel button. */
|
|
2197
|
-
cancelButtonLabel?: DapDSModal["cancelButtonLabel"]
|
|
2198
|
-
/** Whether the OK button should be disabled. */
|
|
2199
|
-
okButtonDisabled?: DapDSModal["okButtonDisabled"]
|
|
2200
|
-
/** Whether the Cancel button should be disabled. */
|
|
2201
|
-
cancelButtonDisabled?: DapDSModal["cancelButtonDisabled"]
|
|
2202
|
-
/** Whether the Cancel button should be a danger button. */
|
|
2203
|
-
cancelButtonDanger?: DapDSModal["cancelButtonDanger"]
|
|
2204
|
-
/** Whether the OK button should be a danger button. */
|
|
2205
|
-
okButtonDanger?: DapDSModal["okButtonDanger"]
|
|
2206
|
-
/** Whether the OK button should be hidden. */
|
|
2207
|
-
hideOkButton?: DapDSModal["hideOkButton"]
|
|
2208
|
-
/** Whether the Cancel button should be hidden. */
|
|
2209
|
-
hideCancelButton?: DapDSModal["hideCancelButton"]
|
|
2210
|
-
/** Whether the modal should have a footer. Default is true. */
|
|
2211
|
-
footer?: DapDSModal["footer"]
|
|
2212
|
-
/** Whether the modal should have a header. Default is true. */
|
|
2213
|
-
header?: DapDSModal["header"]
|
|
2214
|
-
/** Whether the modal should use native focus. Default is false. */
|
|
2215
|
-
useNativeFocus?: DapDSModal["useNativeFocus"]
|
|
2216
|
-
}
|
|
2217
|
-
|
|
2218
2169
|
export type DapDSNavigationMenuItemProps = {
|
|
2219
2170
|
/** The disabled state of the popup. Default is false. */
|
|
2220
2171
|
disabled?: DapDSNavigationMenuItem["disabled"]
|
|
@@ -2273,6 +2224,55 @@ export type DapDSNavigationMenuProps = {
|
|
|
2273
2224
|
allowMultipleOpen?: DapDSNavigationMenu["allowMultipleOpen"]
|
|
2274
2225
|
}
|
|
2275
2226
|
|
|
2227
|
+
export type DapDSModalProps = {
|
|
2228
|
+
/** Pushes the footer to bottom. */
|
|
2229
|
+
bottomFooter?: DapDSModal["bottomFooter"]
|
|
2230
|
+
/** The open state of the modal. */
|
|
2231
|
+
open?: DapDSModal["open"]
|
|
2232
|
+
/** The full screen version of the modal. */
|
|
2233
|
+
fullScreen?: DapDSModal["fullScreen"]
|
|
2234
|
+
/** The size of the modal. Default is 'sm'. */
|
|
2235
|
+
size?: DapDSModal["size"]
|
|
2236
|
+
/** Wide layout mode for footer. */
|
|
2237
|
+
wideFooter?: DapDSModal["wideFooter"]
|
|
2238
|
+
/** Fixes the header to the top of the modal. */
|
|
2239
|
+
fixedHeader?: DapDSModal["fixedHeader"]
|
|
2240
|
+
/** Fixes the footer to the bottom of the modal. */
|
|
2241
|
+
fixedFooter?: DapDSModal["fixedFooter"]
|
|
2242
|
+
/** Whether the modal should close on pressing the escape key. Default is true. */
|
|
2243
|
+
closeOnEsc?: DapDSModal["closeOnEsc"]
|
|
2244
|
+
/** Whether the modal should close on clicking the overlay. Default is true. */
|
|
2245
|
+
closeOnOverlayClick?: DapDSModal["closeOnOverlayClick"]
|
|
2246
|
+
/** Whether the modal should have a close button. Default is true. */
|
|
2247
|
+
closeButton?: DapDSModal["closeButton"]
|
|
2248
|
+
/** The title of the modal. */
|
|
2249
|
+
title?: DapDSModal["title"]
|
|
2250
|
+
/** The description of the modal. */
|
|
2251
|
+
description?: DapDSModal["description"]
|
|
2252
|
+
/** The label of the OK button. */
|
|
2253
|
+
okButtonLabel?: DapDSModal["okButtonLabel"]
|
|
2254
|
+
/** The label of the Cancel button. */
|
|
2255
|
+
cancelButtonLabel?: DapDSModal["cancelButtonLabel"]
|
|
2256
|
+
/** Whether the OK button should be disabled. */
|
|
2257
|
+
okButtonDisabled?: DapDSModal["okButtonDisabled"]
|
|
2258
|
+
/** Whether the Cancel button should be disabled. */
|
|
2259
|
+
cancelButtonDisabled?: DapDSModal["cancelButtonDisabled"]
|
|
2260
|
+
/** Whether the Cancel button should be a danger button. */
|
|
2261
|
+
cancelButtonDanger?: DapDSModal["cancelButtonDanger"]
|
|
2262
|
+
/** Whether the OK button should be a danger button. */
|
|
2263
|
+
okButtonDanger?: DapDSModal["okButtonDanger"]
|
|
2264
|
+
/** Whether the OK button should be hidden. */
|
|
2265
|
+
hideOkButton?: DapDSModal["hideOkButton"]
|
|
2266
|
+
/** Whether the Cancel button should be hidden. */
|
|
2267
|
+
hideCancelButton?: DapDSModal["hideCancelButton"]
|
|
2268
|
+
/** Whether the modal should have a footer. Default is true. */
|
|
2269
|
+
footer?: DapDSModal["footer"]
|
|
2270
|
+
/** Whether the modal should have a header. Default is true. */
|
|
2271
|
+
header?: DapDSModal["header"]
|
|
2272
|
+
/** Whether the modal should use native focus. Default is false. */
|
|
2273
|
+
useNativeFocus?: DapDSModal["useNativeFocus"]
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
2276
|
export type DapDSNotificationBadgeProps = {
|
|
2277
2277
|
/** The content of the badge, it can be a number or a string. Content tried to be parsed as a number, if it's not a number, it will be displayed as a string. */
|
|
2278
2278
|
badgeContent?: DapDSNotificationBadge["badgeContent"]
|
|
@@ -2378,25 +2378,6 @@ export type DapDSOfficialWebsiteBannerProps = {
|
|
|
2378
2378
|
lastItem?: DapDSOfficialWebsiteBanner["lastItem"]
|
|
2379
2379
|
}
|
|
2380
2380
|
|
|
2381
|
-
export type DapDSOptionItemProps = {
|
|
2382
|
-
/** The selected state of the option item */
|
|
2383
|
-
selected?: DapDSOptionItem["selected"]
|
|
2384
|
-
/** Wheteher the item is selectable, whether it shows the selected icon */
|
|
2385
|
-
selectable?: DapDSOptionItem["selectable"]
|
|
2386
|
-
/** The position of the selected icon */
|
|
2387
|
-
selectedIconPosition?: DapDSOptionItem["selectedIconPosition"]
|
|
2388
|
-
/** The value of the option item */
|
|
2389
|
-
value?: DapDSOptionItem["value"]
|
|
2390
|
-
/** The disabled state of the option item */
|
|
2391
|
-
disabled?: DapDSOptionItem["disabled"]
|
|
2392
|
-
/** The focused state of the option item */
|
|
2393
|
-
focused?: DapDSOptionItem["focused"]
|
|
2394
|
-
/** The label of the option item, it can be a simplier version of an item */
|
|
2395
|
-
label?: DapDSOptionItem["label"]
|
|
2396
|
-
/** */
|
|
2397
|
-
optionText?: DapDSOptionItem["optionText"]
|
|
2398
|
-
}
|
|
2399
|
-
|
|
2400
2381
|
export type DapDSOptionListProps = {
|
|
2401
2382
|
/** The filter text of the option list */
|
|
2402
2383
|
filterText?: DapDSOptionList["filterText"]
|
|
@@ -2426,19 +2407,38 @@ export type DapDSOptionListProps = {
|
|
|
2426
2407
|
buildQueryString?: DapDSOptionList["buildQueryString"]
|
|
2427
2408
|
}
|
|
2428
2409
|
|
|
2429
|
-
export type
|
|
2430
|
-
/** The
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2410
|
+
export type DapDSOptionItemProps = {
|
|
2411
|
+
/** The selected state of the option item */
|
|
2412
|
+
selected?: DapDSOptionItem["selected"]
|
|
2413
|
+
/** Wheteher the item is selectable, whether it shows the selected icon */
|
|
2414
|
+
selectable?: DapDSOptionItem["selectable"]
|
|
2415
|
+
/** The position of the selected icon */
|
|
2416
|
+
selectedIconPosition?: DapDSOptionItem["selectedIconPosition"]
|
|
2417
|
+
/** The value of the option item */
|
|
2418
|
+
value?: DapDSOptionItem["value"]
|
|
2419
|
+
/** The disabled state of the option item */
|
|
2420
|
+
disabled?: DapDSOptionItem["disabled"]
|
|
2421
|
+
/** The focused state of the option item */
|
|
2422
|
+
focused?: DapDSOptionItem["focused"]
|
|
2423
|
+
/** The label of the option item, it can be a simplier version of an item */
|
|
2424
|
+
label?: DapDSOptionItem["label"]
|
|
2425
|
+
/** */
|
|
2426
|
+
optionText?: DapDSOptionItem["optionText"]
|
|
2427
|
+
}
|
|
2428
|
+
|
|
2429
|
+
export type DapDSOverlayProps = {
|
|
2430
|
+
/** The open state of the overlay. */
|
|
2431
|
+
open?: DapDSOverlay["open"]
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
export type DapDSPagerProps = {
|
|
2435
|
+
/** Whether the pager is disabled. */
|
|
2436
|
+
disabled?: DapDSPager["disabled"]
|
|
2437
|
+
/** Enable manual pagination. If true, the component will not automatically update the page index. */
|
|
2438
|
+
manualPagination?: DapDSPager["manualPagination"]
|
|
2439
|
+
/** The current page index. */
|
|
2440
|
+
pageIndex?: DapDSPager["pageIndex"]
|
|
2441
|
+
/** The number of items per page. */
|
|
2442
2442
|
pageSize?: DapDSPager["pageSize"]
|
|
2443
2443
|
/** The total number of rows. */
|
|
2444
2444
|
totalRows?: DapDSPager["totalRows"]
|
|
@@ -2753,6 +2753,22 @@ export type DapDSSelectProps = {
|
|
|
2753
2753
|
subtle?: DapDSSelect["subtle"]
|
|
2754
2754
|
}
|
|
2755
2755
|
|
|
2756
|
+
export type DapDSSkeletonProps = {
|
|
2757
|
+
/** The variant of the skeleton. */
|
|
2758
|
+
variant?: DapDSSkeleton["variant"]
|
|
2759
|
+
/** The width of the skeleton. Can be any valid CSS width value. */
|
|
2760
|
+
width?: DapDSSkeleton["width"]
|
|
2761
|
+
/** The height of the skeleton. Can be any valid CSS height value. */
|
|
2762
|
+
height?: DapDSSkeleton["height"]
|
|
2763
|
+
/** Whether to animate the skeleton. */
|
|
2764
|
+
noAnimation?: DapDSSkeleton["noAnimation"]
|
|
2765
|
+
/** The animation type for the skeleton. */
|
|
2766
|
+
animation?: DapDSSkeleton["animation"]
|
|
2767
|
+
/** Custom keyframes for the animation when animation="custom".
|
|
2768
|
+
Should be a valid CSS keyframes string without the */
|
|
2769
|
+
"custom-keyframes"?: DapDSSkeleton["customKeyframes"]
|
|
2770
|
+
}
|
|
2771
|
+
|
|
2756
2772
|
export type DapDSSideNavGroupProps = {
|
|
2757
2773
|
/** The href of the side navigation item */
|
|
2758
2774
|
href?: DapDSSideNavGroup["href"]
|
|
@@ -2786,22 +2802,6 @@ export type DapDSSideNavProps = {
|
|
|
2786
2802
|
size?: DapDSSideNav["size"]
|
|
2787
2803
|
}
|
|
2788
2804
|
|
|
2789
|
-
export type DapDSSkeletonProps = {
|
|
2790
|
-
/** The variant of the skeleton. */
|
|
2791
|
-
variant?: DapDSSkeleton["variant"]
|
|
2792
|
-
/** The width of the skeleton. Can be any valid CSS width value. */
|
|
2793
|
-
width?: DapDSSkeleton["width"]
|
|
2794
|
-
/** The height of the skeleton. Can be any valid CSS height value. */
|
|
2795
|
-
height?: DapDSSkeleton["height"]
|
|
2796
|
-
/** Whether to animate the skeleton. */
|
|
2797
|
-
noAnimation?: DapDSSkeleton["noAnimation"]
|
|
2798
|
-
/** The animation type for the skeleton. */
|
|
2799
|
-
animation?: DapDSSkeleton["animation"]
|
|
2800
|
-
/** Custom keyframes for the animation when animation="custom".
|
|
2801
|
-
Should be a valid CSS keyframes string without the */
|
|
2802
|
-
"custom-keyframes"?: DapDSSkeleton["customKeyframes"]
|
|
2803
|
-
}
|
|
2804
|
-
|
|
2805
2805
|
export type DapDSSkipLinkProps = {
|
|
2806
2806
|
/** The placement of the skip link. */
|
|
2807
2807
|
placement?: DapDSSkipLink["placement"]
|
|
@@ -2913,22 +2913,6 @@ export type DapDSSwitchProps = {
|
|
|
2913
2913
|
optionalLabel?: DapDSSwitch["optionalLabel"]
|
|
2914
2914
|
}
|
|
2915
2915
|
|
|
2916
|
-
export type DapDSTabGroupProps = {
|
|
2917
|
-
/** The selected tab id. */
|
|
2918
|
-
selectedTabId?: DapDSTabGroup["selectedTabId"]
|
|
2919
|
-
/** The size of the tab buttons. Default is `sm`. Can be `sm` or `lg`. */
|
|
2920
|
-
size?: DapDSTabGroup["size"]
|
|
2921
|
-
/** If true, the tab group will be displayed in mobile mode. */
|
|
2922
|
-
mobile?: DapDSTabGroup["mobile"]
|
|
2923
|
-
}
|
|
2924
|
-
|
|
2925
|
-
export type DapDSTabProps = {
|
|
2926
|
-
/** The tab id. Required */
|
|
2927
|
-
tabId?: DapDSTab["tabId"]
|
|
2928
|
-
/** The disabled state of the tab. */
|
|
2929
|
-
disabled?: DapDSTab["disabled"]
|
|
2930
|
-
}
|
|
2931
|
-
|
|
2932
2916
|
export type DapDSTableCellProps = {
|
|
2933
2917
|
/** If the cell is the last one. */
|
|
2934
2918
|
last?: DapDSTableCell["last"]
|
|
@@ -2959,6 +2943,22 @@ export type DapDSTableProps = {
|
|
|
2959
2943
|
caption?: DapDSTable["caption"]
|
|
2960
2944
|
}
|
|
2961
2945
|
|
|
2946
|
+
export type DapDSTabGroupProps = {
|
|
2947
|
+
/** The selected tab id. */
|
|
2948
|
+
selectedTabId?: DapDSTabGroup["selectedTabId"]
|
|
2949
|
+
/** The size of the tab buttons. Default is `sm`. Can be `sm` or `lg`. */
|
|
2950
|
+
size?: DapDSTabGroup["size"]
|
|
2951
|
+
/** If true, the tab group will be displayed in mobile mode. */
|
|
2952
|
+
mobile?: DapDSTabGroup["mobile"]
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
export type DapDSTabProps = {
|
|
2956
|
+
/** The tab id. Required */
|
|
2957
|
+
tabId?: DapDSTab["tabId"]
|
|
2958
|
+
/** The disabled state of the tab. */
|
|
2959
|
+
disabled?: DapDSTab["disabled"]
|
|
2960
|
+
}
|
|
2961
|
+
|
|
2962
2962
|
export type DapDSTextareaProps = {
|
|
2963
2963
|
/** Hide character counter. */
|
|
2964
2964
|
hideCounter?: DapDSTextarea["hideCounter"]
|
|
@@ -3574,6 +3574,39 @@ export type DeviceComputerLineProps = {
|
|
|
3574
3574
|
focusable?: DeviceComputerLine["focusable"]
|
|
3575
3575
|
}
|
|
3576
3576
|
|
|
3577
|
+
export type HealthHeartFillProps = {
|
|
3578
|
+
/** (optional) The width and height in pixels */
|
|
3579
|
+
size?: HealthHeartFill["size"]
|
|
3580
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3581
|
+
selected?: HealthHeartFill["selected"]
|
|
3582
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3583
|
+
accessibilityTitle?: HealthHeartFill["accessibilityTitle"]
|
|
3584
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3585
|
+
focusable?: HealthHeartFill["focusable"]
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
export type HealthHeartLineProps = {
|
|
3589
|
+
/** (optional) The width and height in pixels */
|
|
3590
|
+
size?: HealthHeartLine["size"]
|
|
3591
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3592
|
+
selected?: HealthHeartLine["selected"]
|
|
3593
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3594
|
+
accessibilityTitle?: HealthHeartLine["accessibilityTitle"]
|
|
3595
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3596
|
+
focusable?: HealthHeartLine["focusable"]
|
|
3597
|
+
}
|
|
3598
|
+
|
|
3599
|
+
export type OthersCookieLineProps = {
|
|
3600
|
+
/** (optional) The width and height in pixels */
|
|
3601
|
+
size?: OthersCookieLine["size"]
|
|
3602
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3603
|
+
selected?: OthersCookieLine["selected"]
|
|
3604
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3605
|
+
accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
|
|
3606
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3607
|
+
focusable?: OthersCookieLine["focusable"]
|
|
3608
|
+
}
|
|
3609
|
+
|
|
3577
3610
|
export type DocumentClipboardLineProps = {
|
|
3578
3611
|
/** (optional) The width and height in pixels */
|
|
3579
3612
|
size?: DocumentClipboardLine["size"]
|
|
@@ -3662,37 +3695,48 @@ export type DocumentFolderOpenLineProps = {
|
|
|
3662
3695
|
focusable?: DocumentFolderOpenLine["focusable"]
|
|
3663
3696
|
}
|
|
3664
3697
|
|
|
3665
|
-
export type
|
|
3698
|
+
export type UserAccountCircleFillProps = {
|
|
3666
3699
|
/** (optional) The width and height in pixels */
|
|
3667
|
-
size?:
|
|
3700
|
+
size?: UserAccountCircleFill["size"]
|
|
3668
3701
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3669
|
-
selected?:
|
|
3702
|
+
selected?: UserAccountCircleFill["selected"]
|
|
3670
3703
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3671
|
-
accessibilityTitle?:
|
|
3704
|
+
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
3672
3705
|
/** (optional) If `true` the icon can receive focus */
|
|
3673
|
-
focusable?:
|
|
3706
|
+
focusable?: UserAccountCircleFill["focusable"]
|
|
3674
3707
|
}
|
|
3675
3708
|
|
|
3676
|
-
export type
|
|
3709
|
+
export type UserAccountCircleLineProps = {
|
|
3677
3710
|
/** (optional) The width and height in pixels */
|
|
3678
|
-
size?:
|
|
3711
|
+
size?: UserAccountCircleLine["size"]
|
|
3679
3712
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3680
|
-
selected?:
|
|
3713
|
+
selected?: UserAccountCircleLine["selected"]
|
|
3681
3714
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3682
|
-
accessibilityTitle?:
|
|
3715
|
+
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
3683
3716
|
/** (optional) If `true` the icon can receive focus */
|
|
3684
|
-
focusable?:
|
|
3717
|
+
focusable?: UserAccountCircleLine["focusable"]
|
|
3685
3718
|
}
|
|
3686
3719
|
|
|
3687
|
-
export type
|
|
3720
|
+
export type UserUserFillProps = {
|
|
3688
3721
|
/** (optional) The width and height in pixels */
|
|
3689
|
-
size?:
|
|
3722
|
+
size?: UserUserFill["size"]
|
|
3690
3723
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3691
|
-
selected?:
|
|
3724
|
+
selected?: UserUserFill["selected"]
|
|
3692
3725
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3693
|
-
accessibilityTitle?:
|
|
3726
|
+
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
3694
3727
|
/** (optional) If `true` the icon can receive focus */
|
|
3695
|
-
focusable?:
|
|
3728
|
+
focusable?: UserUserFill["focusable"]
|
|
3729
|
+
}
|
|
3730
|
+
|
|
3731
|
+
export type UserUserLineProps = {
|
|
3732
|
+
/** (optional) The width and height in pixels */
|
|
3733
|
+
size?: UserUserLine["size"]
|
|
3734
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3735
|
+
selected?: UserUserLine["selected"]
|
|
3736
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3737
|
+
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
3738
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3739
|
+
focusable?: UserUserLine["focusable"]
|
|
3696
3740
|
}
|
|
3697
3741
|
|
|
3698
3742
|
export type SystemAddLineProps = {
|
|
@@ -3772,26 +3816,26 @@ export type SystemCheckboxBlankCircleFillCheckProps = {
|
|
|
3772
3816
|
focusable?: SystemCheckboxBlankCircleFillCheck["focusable"]
|
|
3773
3817
|
}
|
|
3774
3818
|
|
|
3775
|
-
export type
|
|
3819
|
+
export type SystemCheckboxCircleFillProps = {
|
|
3776
3820
|
/** (optional) The width and height in pixels */
|
|
3777
|
-
size?:
|
|
3821
|
+
size?: SystemCheckboxCircleFill["size"]
|
|
3778
3822
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3779
|
-
selected?:
|
|
3823
|
+
selected?: SystemCheckboxCircleFill["selected"]
|
|
3780
3824
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3781
|
-
accessibilityTitle?:
|
|
3825
|
+
accessibilityTitle?: SystemCheckboxCircleFill["accessibilityTitle"]
|
|
3782
3826
|
/** (optional) If `true` the icon can receive focus */
|
|
3783
|
-
focusable?:
|
|
3827
|
+
focusable?: SystemCheckboxCircleFill["focusable"]
|
|
3784
3828
|
}
|
|
3785
3829
|
|
|
3786
|
-
export type
|
|
3830
|
+
export type SystemCheckboxBlankCircleLineProps = {
|
|
3787
3831
|
/** (optional) The width and height in pixels */
|
|
3788
|
-
size?:
|
|
3832
|
+
size?: SystemCheckboxBlankCircleLine["size"]
|
|
3789
3833
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3790
|
-
selected?:
|
|
3834
|
+
selected?: SystemCheckboxBlankCircleLine["selected"]
|
|
3791
3835
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3792
|
-
accessibilityTitle?:
|
|
3836
|
+
accessibilityTitle?: SystemCheckboxBlankCircleLine["accessibilityTitle"]
|
|
3793
3837
|
/** (optional) If `true` the icon can receive focus */
|
|
3794
|
-
focusable?:
|
|
3838
|
+
focusable?: SystemCheckboxBlankCircleLine["focusable"]
|
|
3795
3839
|
}
|
|
3796
3840
|
|
|
3797
3841
|
export type SystemCheckboxCircleLineProps = {
|
|
@@ -3992,26 +4036,26 @@ export type SystemLightbulbFillProps = {
|
|
|
3992
4036
|
focusable?: SystemLightbulbFill["focusable"]
|
|
3993
4037
|
}
|
|
3994
4038
|
|
|
3995
|
-
export type
|
|
4039
|
+
export type SystemLockFillProps = {
|
|
3996
4040
|
/** (optional) The width and height in pixels */
|
|
3997
|
-
size?:
|
|
4041
|
+
size?: SystemLockFill["size"]
|
|
3998
4042
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3999
|
-
selected?:
|
|
4043
|
+
selected?: SystemLockFill["selected"]
|
|
4000
4044
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4001
|
-
accessibilityTitle?:
|
|
4045
|
+
accessibilityTitle?: SystemLockFill["accessibilityTitle"]
|
|
4002
4046
|
/** (optional) If `true` the icon can receive focus */
|
|
4003
|
-
focusable?:
|
|
4047
|
+
focusable?: SystemLockFill["focusable"]
|
|
4004
4048
|
}
|
|
4005
4049
|
|
|
4006
|
-
export type
|
|
4050
|
+
export type SystemLoadingSpinnerProps = {
|
|
4007
4051
|
/** (optional) The width and height in pixels */
|
|
4008
|
-
size?:
|
|
4052
|
+
size?: SystemLoadingSpinner["size"]
|
|
4009
4053
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4010
|
-
selected?:
|
|
4054
|
+
selected?: SystemLoadingSpinner["selected"]
|
|
4011
4055
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4012
|
-
accessibilityTitle?:
|
|
4056
|
+
accessibilityTitle?: SystemLoadingSpinner["accessibilityTitle"]
|
|
4013
4057
|
/** (optional) If `true` the icon can receive focus */
|
|
4014
|
-
focusable?:
|
|
4058
|
+
focusable?: SystemLoadingSpinner["focusable"]
|
|
4015
4059
|
}
|
|
4016
4060
|
|
|
4017
4061
|
export type SystemLockLineProps = {
|
|
@@ -4157,17 +4201,6 @@ export type SystemTimeFillProps = {
|
|
|
4157
4201
|
focusable?: SystemTimeFill["focusable"]
|
|
4158
4202
|
}
|
|
4159
4203
|
|
|
4160
|
-
export type SystemTimeLineProps = {
|
|
4161
|
-
/** (optional) The width and height in pixels */
|
|
4162
|
-
size?: SystemTimeLine["size"]
|
|
4163
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4164
|
-
selected?: SystemTimeLine["selected"]
|
|
4165
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4166
|
-
accessibilityTitle?: SystemTimeLine["accessibilityTitle"]
|
|
4167
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4168
|
-
focusable?: SystemTimeLine["focusable"]
|
|
4169
|
-
}
|
|
4170
|
-
|
|
4171
4204
|
export type SystemUpload2FillProps = {
|
|
4172
4205
|
/** (optional) The width and height in pixels */
|
|
4173
4206
|
size?: SystemUpload2Fill["size"]
|
|
@@ -4190,59 +4223,26 @@ export type SystemUpload2LineProps = {
|
|
|
4190
4223
|
focusable?: SystemUpload2Line["focusable"]
|
|
4191
4224
|
}
|
|
4192
4225
|
|
|
4193
|
-
export type
|
|
4194
|
-
/** (optional) The width and height in pixels */
|
|
4195
|
-
size?: SystemUploadLine["size"]
|
|
4196
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4197
|
-
selected?: SystemUploadLine["selected"]
|
|
4198
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4199
|
-
accessibilityTitle?: SystemUploadLine["accessibilityTitle"]
|
|
4200
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4201
|
-
focusable?: SystemUploadLine["focusable"]
|
|
4202
|
-
}
|
|
4203
|
-
|
|
4204
|
-
export type UserAccountCircleFillProps = {
|
|
4226
|
+
export type SystemTimeLineProps = {
|
|
4205
4227
|
/** (optional) The width and height in pixels */
|
|
4206
|
-
size?:
|
|
4228
|
+
size?: SystemTimeLine["size"]
|
|
4207
4229
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4208
|
-
selected?:
|
|
4230
|
+
selected?: SystemTimeLine["selected"]
|
|
4209
4231
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4210
|
-
accessibilityTitle?:
|
|
4232
|
+
accessibilityTitle?: SystemTimeLine["accessibilityTitle"]
|
|
4211
4233
|
/** (optional) If `true` the icon can receive focus */
|
|
4212
|
-
focusable?:
|
|
4234
|
+
focusable?: SystemTimeLine["focusable"]
|
|
4213
4235
|
}
|
|
4214
4236
|
|
|
4215
|
-
export type
|
|
4237
|
+
export type SystemUploadLineProps = {
|
|
4216
4238
|
/** (optional) The width and height in pixels */
|
|
4217
|
-
size?:
|
|
4239
|
+
size?: SystemUploadLine["size"]
|
|
4218
4240
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4219
|
-
selected?:
|
|
4241
|
+
selected?: SystemUploadLine["selected"]
|
|
4220
4242
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4221
|
-
accessibilityTitle?:
|
|
4243
|
+
accessibilityTitle?: SystemUploadLine["accessibilityTitle"]
|
|
4222
4244
|
/** (optional) If `true` the icon can receive focus */
|
|
4223
|
-
focusable?:
|
|
4224
|
-
}
|
|
4225
|
-
|
|
4226
|
-
export type UserUserFillProps = {
|
|
4227
|
-
/** (optional) The width and height in pixels */
|
|
4228
|
-
size?: UserUserFill["size"]
|
|
4229
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4230
|
-
selected?: UserUserFill["selected"]
|
|
4231
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4232
|
-
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
4233
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4234
|
-
focusable?: UserUserFill["focusable"]
|
|
4235
|
-
}
|
|
4236
|
-
|
|
4237
|
-
export type UserUserLineProps = {
|
|
4238
|
-
/** (optional) The width and height in pixels */
|
|
4239
|
-
size?: UserUserLine["size"]
|
|
4240
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4241
|
-
selected?: UserUserLine["selected"]
|
|
4242
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4243
|
-
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
4244
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4245
|
-
focusable?: UserUserLine["focusable"]
|
|
4245
|
+
focusable?: SystemUploadLine["focusable"]
|
|
4246
4246
|
}
|
|
4247
4247
|
|
|
4248
4248
|
// Augment Vue's GlobalComponents interface
|
|
@@ -4274,16 +4274,6 @@ declare module 'vue' {
|
|
|
4274
4274
|
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4275
4275
|
*/
|
|
4276
4276
|
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4277
|
-
/**
|
|
4278
|
-
* An accordion group is a collection of accordion components.
|
|
4279
|
-
*
|
|
4280
|
-
* ### Slots:
|
|
4281
|
-
* - **default** - The content of the accordion group.
|
|
4282
|
-
*
|
|
4283
|
-
* ### CSS Parts:
|
|
4284
|
-
* - **base** - The main accordion group container.
|
|
4285
|
-
*/
|
|
4286
|
-
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4287
4277
|
/**
|
|
4288
4278
|
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4289
4279
|
*
|
|
@@ -4305,16 +4295,6 @@ declare module 'vue' {
|
|
|
4305
4295
|
* - **loading** - The loading indicator.
|
|
4306
4296
|
*/
|
|
4307
4297
|
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4308
|
-
/**
|
|
4309
|
-
* Anchor heading is a heading with an anchor link.
|
|
4310
|
-
*
|
|
4311
|
-
* ### CSS Parts:
|
|
4312
|
-
* - **base** - The main anchor heading container.
|
|
4313
|
-
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
4314
|
-
* - **link-base** - The base of the link part.
|
|
4315
|
-
* - **text** - The text of the anchor heading.
|
|
4316
|
-
*/
|
|
4317
|
-
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4318
4298
|
/**
|
|
4319
4299
|
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4320
4300
|
*
|
|
@@ -4330,6 +4310,16 @@ declare module 'vue' {
|
|
|
4330
4310
|
* - **overflow** - The overflow indicator element.
|
|
4331
4311
|
*/
|
|
4332
4312
|
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4313
|
+
/**
|
|
4314
|
+
* Anchor heading is a heading with an anchor link.
|
|
4315
|
+
*
|
|
4316
|
+
* ### CSS Parts:
|
|
4317
|
+
* - **base** - The main anchor heading container.
|
|
4318
|
+
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
4319
|
+
* - **link-base** - The base of the link part.
|
|
4320
|
+
* - **text** - The text of the anchor heading.
|
|
4321
|
+
*/
|
|
4322
|
+
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4333
4323
|
/**
|
|
4334
4324
|
* A badge is a small status descriptor for UI elements.
|
|
4335
4325
|
*
|
|
@@ -4368,6 +4358,16 @@ declare module 'vue' {
|
|
|
4368
4358
|
* - **title** - The title of the banner.
|
|
4369
4359
|
*/
|
|
4370
4360
|
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4361
|
+
/**
|
|
4362
|
+
* An accordion group is a collection of accordion components.
|
|
4363
|
+
*
|
|
4364
|
+
* ### Slots:
|
|
4365
|
+
* - **default** - The content of the accordion group.
|
|
4366
|
+
*
|
|
4367
|
+
* ### CSS Parts:
|
|
4368
|
+
* - **base** - The main accordion group container.
|
|
4369
|
+
*/
|
|
4370
|
+
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4371
4371
|
/**
|
|
4372
4372
|
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4373
4373
|
*
|
|
@@ -4929,36 +4929,6 @@ declare module 'vue' {
|
|
|
4929
4929
|
* - **iteractive-indicator-container** - The container of the interactive indicator.
|
|
4930
4930
|
*/
|
|
4931
4931
|
'dap-ds-list-item': DefineCustomElement<DapDSListItem, DapDSListItemProps, {}>
|
|
4932
|
-
/**
|
|
4933
|
-
* A modal is a container for modal content.
|
|
4934
|
-
*
|
|
4935
|
-
* ### Events:
|
|
4936
|
-
* - **dds-before-open** - Fires before the modal opens.
|
|
4937
|
-
* - **dds-opened** - Fires after the modal opens.
|
|
4938
|
-
* - **dds-before-close** - Fires before the modal closes.
|
|
4939
|
-
* - **dds-closed** - Fires after the modal closed.
|
|
4940
|
-
* - **dds-close** - Fires when the modal is closes. You can prevent the modal from closing by calling `event.preventDefault()`.
|
|
4941
|
-
* - **dds-ok** - Fires when the OK button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
|
|
4942
|
-
* - **dds-cancel** - Fires when the Cancel button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
|
|
4943
|
-
*
|
|
4944
|
-
* ### Slots:
|
|
4945
|
-
* - **default** - The content of the modal.
|
|
4946
|
-
* - **title** - The title of the modal.
|
|
4947
|
-
* - **description** - The description of the modal.
|
|
4948
|
-
* - **footer** - The footer of the modal.
|
|
4949
|
-
*
|
|
4950
|
-
* ### CSS Parts:
|
|
4951
|
-
* - **base** - The main modal container.
|
|
4952
|
-
* - **panel** - The panel of the modal.
|
|
4953
|
-
* - **header** - The header of the modal.
|
|
4954
|
-
* - **header-container** - The container of the header.
|
|
4955
|
-
* - **title** - The title of the modal.
|
|
4956
|
-
* - **description** - The description of the modal.
|
|
4957
|
-
* - **footer** - The footer of the modal.
|
|
4958
|
-
* - **content** - The body of the modal.
|
|
4959
|
-
* - **closebutton** - The close button of the modal.
|
|
4960
|
-
*/
|
|
4961
|
-
'dap-ds-modal': DefineCustomElement<DapDSModal, DapDSModalProps, DapDSModalEvents>
|
|
4962
4932
|
/**
|
|
4963
4933
|
* A navigation menu item that can contain either a simple link or dropdown content.
|
|
4964
4934
|
Supports nested items with cascading flyout behavior. Part of the navigation menu system.
|
|
@@ -4996,6 +4966,36 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
4996
4966
|
* - **base** - The main navigation menu container (nav element).
|
|
4997
4967
|
*/
|
|
4998
4968
|
'dap-ds-navigation-menu': DefineCustomElement<DapDSNavigationMenu, DapDSNavigationMenuProps, DapDSNavigationMenuEvents>
|
|
4969
|
+
/**
|
|
4970
|
+
* A modal is a container for modal content.
|
|
4971
|
+
*
|
|
4972
|
+
* ### Events:
|
|
4973
|
+
* - **dds-before-open** - Fires before the modal opens.
|
|
4974
|
+
* - **dds-opened** - Fires after the modal opens.
|
|
4975
|
+
* - **dds-before-close** - Fires before the modal closes.
|
|
4976
|
+
* - **dds-closed** - Fires after the modal closed.
|
|
4977
|
+
* - **dds-close** - Fires when the modal is closes. You can prevent the modal from closing by calling `event.preventDefault()`.
|
|
4978
|
+
* - **dds-ok** - Fires when the OK button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
|
|
4979
|
+
* - **dds-cancel** - Fires when the Cancel button is clicked. You can prevent the modal from closing by calling `event.preventDefault()`.
|
|
4980
|
+
*
|
|
4981
|
+
* ### Slots:
|
|
4982
|
+
* - **default** - The content of the modal.
|
|
4983
|
+
* - **title** - The title of the modal.
|
|
4984
|
+
* - **description** - The description of the modal.
|
|
4985
|
+
* - **footer** - The footer of the modal.
|
|
4986
|
+
*
|
|
4987
|
+
* ### CSS Parts:
|
|
4988
|
+
* - **base** - The main modal container.
|
|
4989
|
+
* - **panel** - The panel of the modal.
|
|
4990
|
+
* - **header** - The header of the modal.
|
|
4991
|
+
* - **header-container** - The container of the header.
|
|
4992
|
+
* - **title** - The title of the modal.
|
|
4993
|
+
* - **description** - The description of the modal.
|
|
4994
|
+
* - **footer** - The footer of the modal.
|
|
4995
|
+
* - **content** - The body of the modal.
|
|
4996
|
+
* - **closebutton** - The close button of the modal.
|
|
4997
|
+
*/
|
|
4998
|
+
'dap-ds-modal': DefineCustomElement<DapDSModal, DapDSModalProps, DapDSModalEvents>
|
|
4999
4999
|
/**
|
|
5000
5000
|
* A notification badge component is a user interface element that visually indicates the presence of new information or updates, often displaying a numeric count of unread notifications, messages, or items requiring attention.
|
|
5001
5001
|
*
|
|
@@ -5065,21 +5065,6 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5065
5065
|
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
5066
5066
|
*/
|
|
5067
5067
|
'dap-ds-official-website-banner': DefineCustomElement<DapDSOfficialWebsiteBanner, DapDSOfficialWebsiteBannerProps, DapDSOfficialWebsiteBannerEvents>
|
|
5068
|
-
/**
|
|
5069
|
-
* An option item is a selectable item in a list of options.
|
|
5070
|
-
*
|
|
5071
|
-
* ### Slots:
|
|
5072
|
-
* - **prefix** - The prefix of the option item.
|
|
5073
|
-
* - **default** - The label of the option item.
|
|
5074
|
-
* - **suffix** - The suffix of the option item.
|
|
5075
|
-
*
|
|
5076
|
-
* ### CSS Parts:
|
|
5077
|
-
* - **base** - The main option item container.
|
|
5078
|
-
* - **prefix** - The prefix of the option item.
|
|
5079
|
-
* - **label** - The label of the option item.
|
|
5080
|
-
* - **suffix** - The suffix of the option item.
|
|
5081
|
-
*/
|
|
5082
|
-
'dap-ds-option-item': DefineCustomElement<DapDSOptionItem, DapDSOptionItemProps, {}>
|
|
5083
5068
|
/**
|
|
5084
5069
|
* An option list is a list of selectable options.
|
|
5085
5070
|
*
|
|
@@ -5102,6 +5087,21 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5102
5087
|
* - **option-item-suffix** - The suffix of the option item.
|
|
5103
5088
|
*/
|
|
5104
5089
|
'dap-ds-option-list': DefineCustomElement<DapDSOptionList, DapDSOptionListProps, DapDSOptionListEvents>
|
|
5090
|
+
/**
|
|
5091
|
+
* An option item is a selectable item in a list of options.
|
|
5092
|
+
*
|
|
5093
|
+
* ### Slots:
|
|
5094
|
+
* - **prefix** - The prefix of the option item.
|
|
5095
|
+
* - **default** - The label of the option item.
|
|
5096
|
+
* - **suffix** - The suffix of the option item.
|
|
5097
|
+
*
|
|
5098
|
+
* ### CSS Parts:
|
|
5099
|
+
* - **base** - The main option item container.
|
|
5100
|
+
* - **prefix** - The prefix of the option item.
|
|
5101
|
+
* - **label** - The label of the option item.
|
|
5102
|
+
* - **suffix** - The suffix of the option item.
|
|
5103
|
+
*/
|
|
5104
|
+
'dap-ds-option-item': DefineCustomElement<DapDSOptionItem, DapDSOptionItemProps, {}>
|
|
5105
5105
|
/**
|
|
5106
5106
|
* An overlay is a container for overlay content.
|
|
5107
5107
|
*
|
|
@@ -5307,6 +5307,13 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5307
5307
|
* - **mobile-footer** - The mobile footer of the select.
|
|
5308
5308
|
*/
|
|
5309
5309
|
'dap-ds-select': DefineCustomElement<DapDSSelect, DapDSSelectProps, DapDSSelectEvents>
|
|
5310
|
+
/**
|
|
5311
|
+
* A skeleton loader component for displaying placeholder content while loading.
|
|
5312
|
+
*
|
|
5313
|
+
* ### CSS Parts:
|
|
5314
|
+
* - **base** - The main skeleton container.
|
|
5315
|
+
*/
|
|
5316
|
+
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5310
5317
|
/**
|
|
5311
5318
|
* Side navigation group
|
|
5312
5319
|
*
|
|
@@ -5349,13 +5356,6 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5349
5356
|
* - **menu** - The menu of the side navigation.
|
|
5350
5357
|
*/
|
|
5351
5358
|
'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
|
|
5352
|
-
/**
|
|
5353
|
-
* A skeleton loader component for displaying placeholder content while loading.
|
|
5354
|
-
*
|
|
5355
|
-
* ### CSS Parts:
|
|
5356
|
-
* - **base** - The main skeleton container.
|
|
5357
|
-
*/
|
|
5358
|
-
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5359
5359
|
/**
|
|
5360
5360
|
* A skip link is a link that allows keyboard users to skip to the main content of a page.
|
|
5361
5361
|
*
|
|
@@ -5440,32 +5440,6 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5440
5440
|
* - **description** - The description of the switch.
|
|
5441
5441
|
*/
|
|
5442
5442
|
'dap-ds-switch': DefineCustomElement<DapDSSwitch, DapDSSwitchProps, DapDSSwitchEvents>
|
|
5443
|
-
/**
|
|
5444
|
-
* A tab group component. It is used with dap-ds-tab component to create a tab group.
|
|
5445
|
-
*
|
|
5446
|
-
* ### Events:
|
|
5447
|
-
* - **dds-tab-select** - Fired when select a new tab.
|
|
5448
|
-
*
|
|
5449
|
-
* ### Slots:
|
|
5450
|
-
* - **default** - The tab items.
|
|
5451
|
-
*
|
|
5452
|
-
* ### CSS Parts:
|
|
5453
|
-
* - **base** - The main container.
|
|
5454
|
-
* - **tab-nav** - The tab navigation container.
|
|
5455
|
-
* - **tab-content** - The tab content container.
|
|
5456
|
-
*/
|
|
5457
|
-
'dap-ds-tab-group': DefineCustomElement<DapDSTabGroup, DapDSTabGroupProps, DapDSTabGroupEvents>
|
|
5458
|
-
/**
|
|
5459
|
-
* A tab item component. It is used in dap-ds-tab-group component slot to create a tab item.
|
|
5460
|
-
*
|
|
5461
|
-
* ### Slots:
|
|
5462
|
-
* - **default** - The tab title template.
|
|
5463
|
-
* - **content** - The tab content.
|
|
5464
|
-
*
|
|
5465
|
-
* ### CSS Parts:
|
|
5466
|
-
* - **base** - The main tab content container.
|
|
5467
|
-
*/
|
|
5468
|
-
'dap-ds-tab': DefineCustomElement<DapDSTab, DapDSTabProps, {}>
|
|
5469
5443
|
/**
|
|
5470
5444
|
*
|
|
5471
5445
|
*
|
|
@@ -5500,6 +5474,32 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5500
5474
|
* - **default** - The default slot. Accepts `dap-ds-table-row` elements.
|
|
5501
5475
|
*/
|
|
5502
5476
|
'dap-ds-table': DefineCustomElement<DapDSTable, DapDSTableProps, {}>
|
|
5477
|
+
/**
|
|
5478
|
+
* A tab group component. It is used with dap-ds-tab component to create a tab group.
|
|
5479
|
+
*
|
|
5480
|
+
* ### Events:
|
|
5481
|
+
* - **dds-tab-select** - Fired when select a new tab.
|
|
5482
|
+
*
|
|
5483
|
+
* ### Slots:
|
|
5484
|
+
* - **default** - The tab items.
|
|
5485
|
+
*
|
|
5486
|
+
* ### CSS Parts:
|
|
5487
|
+
* - **base** - The main container.
|
|
5488
|
+
* - **tab-nav** - The tab navigation container.
|
|
5489
|
+
* - **tab-content** - The tab content container.
|
|
5490
|
+
*/
|
|
5491
|
+
'dap-ds-tab-group': DefineCustomElement<DapDSTabGroup, DapDSTabGroupProps, DapDSTabGroupEvents>
|
|
5492
|
+
/**
|
|
5493
|
+
* A tab item component. It is used in dap-ds-tab-group component slot to create a tab item.
|
|
5494
|
+
*
|
|
5495
|
+
* ### Slots:
|
|
5496
|
+
* - **default** - The tab title template.
|
|
5497
|
+
* - **content** - The tab content.
|
|
5498
|
+
*
|
|
5499
|
+
* ### CSS Parts:
|
|
5500
|
+
* - **base** - The main tab content container.
|
|
5501
|
+
*/
|
|
5502
|
+
'dap-ds-tab': DefineCustomElement<DapDSTab, DapDSTabProps, {}>
|
|
5503
5503
|
/**
|
|
5504
5504
|
* A textarea is a multi-line text input field.
|
|
5505
5505
|
*
|
|
@@ -5868,6 +5868,27 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5868
5868
|
* - **base** - The main icon container.
|
|
5869
5869
|
*/
|
|
5870
5870
|
'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
|
|
5871
|
+
/**
|
|
5872
|
+
* An icon
|
|
5873
|
+
*
|
|
5874
|
+
* ### CSS Parts:
|
|
5875
|
+
* - **base** - The main icon container.
|
|
5876
|
+
*/
|
|
5877
|
+
'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
|
|
5878
|
+
/**
|
|
5879
|
+
* An icon
|
|
5880
|
+
*
|
|
5881
|
+
* ### CSS Parts:
|
|
5882
|
+
* - **base** - The main icon container.
|
|
5883
|
+
*/
|
|
5884
|
+
'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
|
|
5885
|
+
/**
|
|
5886
|
+
* An icon
|
|
5887
|
+
*
|
|
5888
|
+
* ### CSS Parts:
|
|
5889
|
+
* - **base** - The main icon container.
|
|
5890
|
+
*/
|
|
5891
|
+
'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
|
|
5871
5892
|
/**
|
|
5872
5893
|
* An icon
|
|
5873
5894
|
*
|
|
@@ -5930,21 +5951,28 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5930
5951
|
* ### CSS Parts:
|
|
5931
5952
|
* - **base** - The main icon container.
|
|
5932
5953
|
*/
|
|
5933
|
-
'dap-ds-icon-
|
|
5954
|
+
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
5934
5955
|
/**
|
|
5935
5956
|
* An icon
|
|
5936
5957
|
*
|
|
5937
5958
|
* ### CSS Parts:
|
|
5938
5959
|
* - **base** - The main icon container.
|
|
5939
5960
|
*/
|
|
5940
|
-
'dap-ds-icon-
|
|
5961
|
+
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
5941
5962
|
/**
|
|
5942
5963
|
* An icon
|
|
5943
5964
|
*
|
|
5944
5965
|
* ### CSS Parts:
|
|
5945
5966
|
* - **base** - The main icon container.
|
|
5946
5967
|
*/
|
|
5947
|
-
'dap-ds-icon-
|
|
5968
|
+
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
5969
|
+
/**
|
|
5970
|
+
* An icon
|
|
5971
|
+
*
|
|
5972
|
+
* ### CSS Parts:
|
|
5973
|
+
* - **base** - The main icon container.
|
|
5974
|
+
*/
|
|
5975
|
+
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
5948
5976
|
/**
|
|
5949
5977
|
* An icon
|
|
5950
5978
|
*
|
|
@@ -6000,14 +6028,14 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
6000
6028
|
* ### CSS Parts:
|
|
6001
6029
|
* - **base** - The main icon container.
|
|
6002
6030
|
*/
|
|
6003
|
-
'dap-ds-icon-checkbox-
|
|
6031
|
+
'dap-ds-icon-checkbox-circle-fill': DefineCustomElement<SystemCheckboxCircleFill, SystemCheckboxCircleFillProps, {}>
|
|
6004
6032
|
/**
|
|
6005
6033
|
* An icon
|
|
6006
6034
|
*
|
|
6007
6035
|
* ### CSS Parts:
|
|
6008
6036
|
* - **base** - The main icon container.
|
|
6009
6037
|
*/
|
|
6010
|
-
'dap-ds-icon-checkbox-circle-
|
|
6038
|
+
'dap-ds-icon-checkbox-blank-circle-line': DefineCustomElement<SystemCheckboxBlankCircleLine, SystemCheckboxBlankCircleLineProps, {}>
|
|
6011
6039
|
/**
|
|
6012
6040
|
* An icon
|
|
6013
6041
|
*
|
|
@@ -6140,14 +6168,14 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
6140
6168
|
* ### CSS Parts:
|
|
6141
6169
|
* - **base** - The main icon container.
|
|
6142
6170
|
*/
|
|
6143
|
-
'dap-ds-icon-
|
|
6171
|
+
'dap-ds-icon-lock-fill': DefineCustomElement<SystemLockFill, SystemLockFillProps, {}>
|
|
6144
6172
|
/**
|
|
6145
6173
|
* An icon
|
|
6146
6174
|
*
|
|
6147
6175
|
* ### CSS Parts:
|
|
6148
6176
|
* - **base** - The main icon container.
|
|
6149
6177
|
*/
|
|
6150
|
-
'dap-ds-icon-
|
|
6178
|
+
'dap-ds-icon-loading-spinner': DefineCustomElement<SystemLoadingSpinner, SystemLoadingSpinnerProps, {}>
|
|
6151
6179
|
/**
|
|
6152
6180
|
* An icon
|
|
6153
6181
|
*
|
|
@@ -6239,13 +6267,6 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
6239
6267
|
* - **base** - The main icon container.
|
|
6240
6268
|
*/
|
|
6241
6269
|
'dap-ds-icon-time-fill': DefineCustomElement<SystemTimeFill, SystemTimeFillProps, {}>
|
|
6242
|
-
/**
|
|
6243
|
-
* An icon
|
|
6244
|
-
*
|
|
6245
|
-
* ### CSS Parts:
|
|
6246
|
-
* - **base** - The main icon container.
|
|
6247
|
-
*/
|
|
6248
|
-
'dap-ds-icon-time-line': DefineCustomElement<SystemTimeLine, SystemTimeLineProps, {}>
|
|
6249
6270
|
/**
|
|
6250
6271
|
* An icon
|
|
6251
6272
|
*
|
|
@@ -6266,35 +6287,14 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
6266
6287
|
* ### CSS Parts:
|
|
6267
6288
|
* - **base** - The main icon container.
|
|
6268
6289
|
*/
|
|
6269
|
-
'dap-ds-icon-
|
|
6270
|
-
/**
|
|
6271
|
-
* An icon
|
|
6272
|
-
*
|
|
6273
|
-
* ### CSS Parts:
|
|
6274
|
-
* - **base** - The main icon container.
|
|
6275
|
-
*/
|
|
6276
|
-
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
6277
|
-
/**
|
|
6278
|
-
* An icon
|
|
6279
|
-
*
|
|
6280
|
-
* ### CSS Parts:
|
|
6281
|
-
* - **base** - The main icon container.
|
|
6282
|
-
*/
|
|
6283
|
-
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
6284
|
-
/**
|
|
6285
|
-
* An icon
|
|
6286
|
-
*
|
|
6287
|
-
* ### CSS Parts:
|
|
6288
|
-
* - **base** - The main icon container.
|
|
6289
|
-
*/
|
|
6290
|
-
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
6290
|
+
'dap-ds-icon-time-line': DefineCustomElement<SystemTimeLine, SystemTimeLineProps, {}>
|
|
6291
6291
|
/**
|
|
6292
6292
|
* An icon
|
|
6293
6293
|
*
|
|
6294
6294
|
* ### CSS Parts:
|
|
6295
6295
|
* - **base** - The main icon container.
|
|
6296
6296
|
*/
|
|
6297
|
-
'dap-ds-icon-
|
|
6297
|
+
'dap-ds-icon-upload-line': DefineCustomElement<SystemUploadLine, SystemUploadLineProps, {}>
|
|
6298
6298
|
}
|
|
6299
6299
|
}
|
|
6300
6300
|
|
|
@@ -6303,12 +6303,12 @@ declare global {
|
|
|
6303
6303
|
namespace JSX {
|
|
6304
6304
|
interface IntrinsicElements {
|
|
6305
6305
|
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6306
|
-
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6307
6306
|
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6308
|
-
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6309
6307
|
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6308
|
+
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6310
6309
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6311
6310
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6311
|
+
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6312
6312
|
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6313
6313
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6314
6314
|
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
@@ -6344,14 +6344,14 @@ declare global {
|
|
|
6344
6344
|
'dap-ds-label': DapDSLabelProps
|
|
6345
6345
|
'dap-ds-link': DapDSLinkProps & DapDSLinkEvents & DapDSLinkSlots
|
|
6346
6346
|
'dap-ds-list-item': DapDSListItemProps & DapDSListItemSlots
|
|
6347
|
-
'dap-ds-modal': DapDSModalProps & DapDSModalEvents & DapDSModalSlots
|
|
6348
6347
|
'dap-ds-navigation-menu-item': DapDSNavigationMenuItemProps & DapDSNavigationMenuItemEvents & DapDSNavigationMenuItemSlots
|
|
6349
6348
|
'dap-ds-navigation-menu': DapDSNavigationMenuProps & DapDSNavigationMenuEvents & DapDSNavigationMenuSlots
|
|
6349
|
+
'dap-ds-modal': DapDSModalProps & DapDSModalEvents & DapDSModalSlots
|
|
6350
6350
|
'dap-ds-notification-badge': DapDSNotificationBadgeProps & DapDSNotificationBadgeSlots
|
|
6351
6351
|
'dap-ds-number-input': DapDSNumberInputProps & DapDSNumberInputEvents & DapDSNumberInputSlots
|
|
6352
6352
|
'dap-ds-official-website-banner': DapDSOfficialWebsiteBannerProps & DapDSOfficialWebsiteBannerEvents & DapDSOfficialWebsiteBannerSlots
|
|
6353
|
-
'dap-ds-option-item': DapDSOptionItemProps & DapDSOptionItemSlots
|
|
6354
6353
|
'dap-ds-option-list': DapDSOptionListProps & DapDSOptionListEvents & DapDSOptionListSlots
|
|
6354
|
+
'dap-ds-option-item': DapDSOptionItemProps & DapDSOptionItemSlots
|
|
6355
6355
|
'dap-ds-overlay': DapDSOverlayProps & DapDSOverlayEvents & DapDSOverlaySlots
|
|
6356
6356
|
'dap-ds-pager': DapDSPagerProps & DapDSPagerEvents
|
|
6357
6357
|
'dap-ds-password-input': DapDSPasswordInputProps & DapDSPasswordInputEvents
|
|
@@ -6362,22 +6362,22 @@ declare global {
|
|
|
6362
6362
|
'dap-ds-scroll-area': DapDSScrollAreaProps & DapDSScrollAreaSlots
|
|
6363
6363
|
'dap-ds-search': DapDSSearchProps & DapDSSearchEvents & DapDSSearchSlots
|
|
6364
6364
|
'dap-ds-select': DapDSSelectProps & DapDSSelectEvents & DapDSSelectSlots
|
|
6365
|
+
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6365
6366
|
'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
|
|
6366
6367
|
'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
|
|
6367
6368
|
'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
|
|
6368
|
-
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6369
6369
|
'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
|
|
6370
6370
|
'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
|
|
6371
6371
|
'dap-ds-snackbar': DapDSSnackbarProps
|
|
6372
6372
|
'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
|
|
6373
6373
|
'dap-ds-stack': DapDSStackProps & DapDSStackSlots
|
|
6374
6374
|
'dap-ds-switch': DapDSSwitchProps & DapDSSwitchEvents
|
|
6375
|
-
'dap-ds-tab-group': DapDSTabGroupProps & DapDSTabGroupEvents & DapDSTabGroupSlots
|
|
6376
|
-
'dap-ds-tab': DapDSTabProps & DapDSTabSlots
|
|
6377
6375
|
'dap-ds-table-cell': DapDSTableCellProps & DapDSTableCellSlots
|
|
6378
6376
|
'dap-ds-table-header': DapDSTableHeaderProps & DapDSTableHeaderSlots
|
|
6379
6377
|
'dap-ds-table-row': DapDSTableRowProps & DapDSTableRowSlots
|
|
6380
6378
|
'dap-ds-table': DapDSTableProps & DapDSTableSlots
|
|
6379
|
+
'dap-ds-tab-group': DapDSTabGroupProps & DapDSTabGroupEvents & DapDSTabGroupSlots
|
|
6380
|
+
'dap-ds-tab': DapDSTabProps & DapDSTabSlots
|
|
6381
6381
|
'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
|
|
6382
6382
|
'dap-ds-timeline-item': DapDSTimelineItemProps & DapDSTimelineItemSlots
|
|
6383
6383
|
'dap-ds-timeline': DapDSTimelineProps & DapDSTimelineSlots
|
|
@@ -6415,6 +6415,9 @@ declare global {
|
|
|
6415
6415
|
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6416
6416
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
6417
6417
|
'dap-ds-icon-computer-line': DeviceComputerLineProps
|
|
6418
|
+
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6419
|
+
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6420
|
+
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6418
6421
|
'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
|
|
6419
6422
|
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6420
6423
|
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
@@ -6423,9 +6426,10 @@ declare global {
|
|
|
6423
6426
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6424
6427
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
6425
6428
|
'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
|
|
6426
|
-
'dap-ds-icon-
|
|
6427
|
-
'dap-ds-icon-
|
|
6428
|
-
'dap-ds-icon-
|
|
6429
|
+
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6430
|
+
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6431
|
+
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6432
|
+
'dap-ds-icon-user-line': UserUserLineProps
|
|
6429
6433
|
'dap-ds-icon-add-line': SystemAddLineProps
|
|
6430
6434
|
'dap-ds-icon-alert-fill': SystemAlertFillProps
|
|
6431
6435
|
'dap-ds-icon-alert-line': SystemAlertLineProps
|
|
@@ -6433,8 +6437,8 @@ declare global {
|
|
|
6433
6437
|
'dap-ds-icon-check-line2': SystemCheckLine2Props
|
|
6434
6438
|
'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps
|
|
6435
6439
|
'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheckProps
|
|
6436
|
-
'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
|
|
6437
6440
|
'dap-ds-icon-checkbox-circle-fill': SystemCheckboxCircleFillProps
|
|
6441
|
+
'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
|
|
6438
6442
|
'dap-ds-icon-checkbox-circle-line': SystemCheckboxCircleLineProps
|
|
6439
6443
|
'dap-ds-icon-close-circle-fill': SystemCloseCircleFillProps
|
|
6440
6444
|
'dap-ds-icon-close-circle-line': SystemCloseCircleLineProps
|
|
@@ -6453,8 +6457,8 @@ declare global {
|
|
|
6453
6457
|
'dap-ds-icon-information-fill': SystemInformationFillProps
|
|
6454
6458
|
'dap-ds-icon-information-line': SystemInformationLineProps
|
|
6455
6459
|
'dap-ds-icon-lightbulb-fill': SystemLightbulbFillProps
|
|
6456
|
-
'dap-ds-icon-loading-spinner': SystemLoadingSpinnerProps
|
|
6457
6460
|
'dap-ds-icon-lock-fill': SystemLockFillProps
|
|
6461
|
+
'dap-ds-icon-loading-spinner': SystemLoadingSpinnerProps
|
|
6458
6462
|
'dap-ds-icon-lock-line': SystemLockLineProps
|
|
6459
6463
|
'dap-ds-icon-menu-line': SystemMenuLineProps
|
|
6460
6464
|
'dap-ds-icon-menu-line-s': SystemMenuLineSProps
|
|
@@ -6468,14 +6472,10 @@ declare global {
|
|
|
6468
6472
|
'dap-ds-icon-subtract-line': SystemSubtractLineProps
|
|
6469
6473
|
'dap-ds-icon-subtract-line2': SystemSubtractLine2Props
|
|
6470
6474
|
'dap-ds-icon-time-fill': SystemTimeFillProps
|
|
6471
|
-
'dap-ds-icon-time-line': SystemTimeLineProps
|
|
6472
6475
|
'dap-ds-icon-upload-2-fill': SystemUpload2FillProps
|
|
6473
6476
|
'dap-ds-icon-upload-2-line': SystemUpload2LineProps
|
|
6477
|
+
'dap-ds-icon-time-line': SystemTimeLineProps
|
|
6474
6478
|
'dap-ds-icon-upload-line': SystemUploadLineProps
|
|
6475
|
-
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6476
|
-
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6477
|
-
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6478
|
-
'dap-ds-icon-user-line': UserUserLineProps
|
|
6479
6479
|
}
|
|
6480
6480
|
}
|
|
6481
6481
|
}
|