dap-design-system 0.57.10 → 0.58.0
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/components/checkbox/checkbox.component.d.ts +1 -0
- package/dist/components/code-puncher/code-puncher.component.d.ts +1 -0
- package/dist/components/combobox/combobox.component.d.ts +1 -0
- package/dist/components/datepicker/datepicker.component.d.ts +1 -0
- package/dist/components/file-input/file-input.component.d.ts +1 -0
- package/dist/components/form/form-label/form-label.component.d.ts +1 -0
- package/dist/components/form/input-group/input-group.component.d.ts +1 -0
- package/dist/components/form/radio-group/radio-group.component.d.ts +1 -0
- package/dist/components/input/input.component.d.ts +1 -0
- package/dist/components/number-input/number-input.component.d.ts +1 -0
- package/dist/components/radio-button/radio-button.component.d.ts +1 -0
- package/dist/components/select/select.component.d.ts +1 -0
- package/dist/components/sidenav/sidenav.component.d.ts +18 -0
- package/dist/components/switch/switch.component.d.ts +1 -0
- package/dist/components/textarea/textarea.component.d.ts +1 -0
- package/dist/components/timepicker/timepicker.component.d.ts +1 -0
- package/dist/{components-Dgr06usf.js → components-Bo0Y80lA.js} +5460 -5434
- package/dist/components-Bo0Y80lA.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/components.native.css +11 -0
- package/dist/components.native.css.map +1 -1
- package/dist/dds.js +2 -2
- package/dist/{icon-DiAH7AY5.js → icon-vfk3FBvE.js} +199 -194
- package/dist/{icon-DiAH7AY5.js.map → icon-vfk3FBvE.js.map} +1 -1
- package/dist/icons.js +1 -1
- package/dist/internal/mixin/labelableMixin.d.ts +1 -0
- package/dist/manifest/types/vue/index.d.ts +472 -433
- package/dist/manifest/vscode.html-custom-data.json +512 -507
- package/dist/manifest/web-types.json +865 -780
- package/dist/react/dap-ds-checkbox/index.d.ts +1 -0
- package/dist/react/dap-ds-code-puncher/index.d.ts +1 -0
- package/dist/react/dap-ds-combobox/index.d.ts +1 -0
- package/dist/react/dap-ds-datepicker/index.d.ts +1 -0
- package/dist/react/dap-ds-file-input/index.d.ts +1 -0
- package/dist/react/dap-ds-form-label/index.d.ts +1 -0
- package/dist/react/dap-ds-input/index.d.ts +1 -0
- package/dist/react/dap-ds-input-group/index.d.ts +1 -0
- package/dist/react/dap-ds-number-input/index.d.ts +1 -0
- package/dist/react/dap-ds-radio-button/index.d.ts +1 -0
- package/dist/react/dap-ds-radio-group/index.d.ts +1 -0
- package/dist/react/dap-ds-select/index.d.ts +1 -0
- package/dist/react/dap-ds-switch/index.d.ts +1 -0
- package/dist/react/dap-ds-textarea/index.d.ts +1 -0
- package/dist/react/dap-ds-timepicker/index.d.ts +1 -0
- package/dist/react/index.d.ts +19 -19
- package/dist/react-types.ts +20 -20
- package/dist/react.js +365 -365
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-Dgr06usf.js.map +0 -1
|
@@ -217,13 +217,6 @@ export interface DapDSAccordionEvents {
|
|
|
217
217
|
onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
export interface DapDSAvatarEvents {
|
|
221
|
-
/** Fired when the image loads successfully. */
|
|
222
|
-
onDdsLoad?: (event: CustomEvent) => void
|
|
223
|
-
/** Fired when the image fails to load. */
|
|
224
|
-
onDdsError?: (event: CustomEvent) => void
|
|
225
|
-
}
|
|
226
|
-
|
|
227
220
|
export interface DapDSAvatarGroupEvents {
|
|
228
221
|
/** Fired when the overflow indicator is clicked. */
|
|
229
222
|
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
@@ -234,21 +227,28 @@ export interface DapDSBannerEvents {
|
|
|
234
227
|
onDdsClose?: (event: CustomEvent) => void
|
|
235
228
|
}
|
|
236
229
|
|
|
230
|
+
export interface DapDSAvatarEvents {
|
|
231
|
+
/** Fired when the image loads successfully. */
|
|
232
|
+
onDdsLoad?: (event: CustomEvent) => void
|
|
233
|
+
/** Fired when the image fails to load. */
|
|
234
|
+
onDdsError?: (event: CustomEvent) => void
|
|
235
|
+
}
|
|
236
|
+
|
|
237
237
|
export interface DapDSButtonEvents {
|
|
238
238
|
/** Emitted when the loading timeout is reached */
|
|
239
239
|
onDdsLoadingTimeout?: (event: CustomEvent) => void
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
export interface DapDSCalloutEvents {
|
|
243
|
-
/** Fired when the close button is clicked. */
|
|
244
|
-
onDdsClose?: (event: CustomEvent) => void
|
|
245
|
-
}
|
|
246
|
-
|
|
247
242
|
export interface DapDSCalendarEvents {
|
|
248
243
|
/** Fired when the calendar value changes. */
|
|
249
244
|
onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => void
|
|
250
245
|
}
|
|
251
246
|
|
|
247
|
+
export interface DapDSCalloutEvents {
|
|
248
|
+
/** Fired when the close button is clicked. */
|
|
249
|
+
onDdsClose?: (event: CustomEvent) => void
|
|
250
|
+
}
|
|
251
|
+
|
|
252
252
|
export interface DapDSCheckboxEvents {
|
|
253
253
|
/** Fired when the checkbox is checked or unchecked. */
|
|
254
254
|
onDdsChange?: (event: CustomEvent<{ checked: boolean, indeterminate: boolean, value: string, disabled: boolean, readonly: boolean, type: 'checkbox' }>) => void
|
|
@@ -666,18 +666,6 @@ export interface DapDSAccordionSlots {
|
|
|
666
666
|
'icon-closed'?: () => any
|
|
667
667
|
}
|
|
668
668
|
|
|
669
|
-
export interface DapDSAvatarSlots {
|
|
670
|
-
/** The icon to display when variant is 'icon'. */
|
|
671
|
-
'icon'?: () => any
|
|
672
|
-
/** Custom fallback content when image fails to load. */
|
|
673
|
-
'fallback'?: () => any
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
export interface DapDSAccordionGroupSlots {
|
|
677
|
-
/** The content of the accordion group. */
|
|
678
|
-
default?: () => any
|
|
679
|
-
}
|
|
680
|
-
|
|
681
669
|
export interface DapDSAvatarGroupSlots {
|
|
682
670
|
/** The avatars to display in the group. */
|
|
683
671
|
default?: () => any
|
|
@@ -699,11 +687,16 @@ export interface DapDSBannerSlots {
|
|
|
699
687
|
'icon'?: () => any
|
|
700
688
|
}
|
|
701
689
|
|
|
702
|
-
export interface
|
|
703
|
-
/** The content of the
|
|
690
|
+
export interface DapDSAccordionGroupSlots {
|
|
691
|
+
/** The content of the accordion group. */
|
|
704
692
|
default?: () => any
|
|
705
|
-
|
|
706
|
-
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
export interface DapDSAvatarSlots {
|
|
696
|
+
/** The icon to display when variant is 'icon'. */
|
|
697
|
+
'icon'?: () => any
|
|
698
|
+
/** Custom fallback content when image fails to load. */
|
|
699
|
+
'fallback'?: () => any
|
|
707
700
|
}
|
|
708
701
|
|
|
709
702
|
export interface DapDSBreadcrumbItemSlots {
|
|
@@ -718,19 +711,6 @@ export interface DapDSButtonSlots {
|
|
|
718
711
|
default?: () => any
|
|
719
712
|
}
|
|
720
713
|
|
|
721
|
-
export interface DapDSCalloutSlots {
|
|
722
|
-
/** The content of the callout. */
|
|
723
|
-
default?: () => any
|
|
724
|
-
/** The title of the callout. */
|
|
725
|
-
'title'?: () => any
|
|
726
|
-
/** The icon of the callout. */
|
|
727
|
-
'icon'?: () => any
|
|
728
|
-
/** The actions of the callout. */
|
|
729
|
-
'actions'?: () => any
|
|
730
|
-
/** The close button of the callout. */
|
|
731
|
-
'close'?: () => any
|
|
732
|
-
}
|
|
733
|
-
|
|
734
714
|
export interface DapDSCalendarCellSlots {
|
|
735
715
|
/** The content of the calendar cell. */
|
|
736
716
|
default?: () => any
|
|
@@ -771,6 +751,26 @@ export interface DapDSCardSlots {
|
|
|
771
751
|
default?: () => any
|
|
772
752
|
}
|
|
773
753
|
|
|
754
|
+
export interface DapDSCalloutSlots {
|
|
755
|
+
/** The content of the callout. */
|
|
756
|
+
default?: () => any
|
|
757
|
+
/** The title of the callout. */
|
|
758
|
+
'title'?: () => any
|
|
759
|
+
/** The icon of the callout. */
|
|
760
|
+
'icon'?: () => any
|
|
761
|
+
/** The actions of the callout. */
|
|
762
|
+
'actions'?: () => any
|
|
763
|
+
/** The close button of the callout. */
|
|
764
|
+
'close'?: () => any
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
export interface DapDSBreadcrumbSlots {
|
|
768
|
+
/** The content of the breadcrumb. */
|
|
769
|
+
default?: () => any
|
|
770
|
+
/** The separator between breadcrumb items. Default is '/'. */
|
|
771
|
+
'separator'?: () => any
|
|
772
|
+
}
|
|
773
|
+
|
|
774
774
|
export interface DapDSCodePuncherSlots {
|
|
775
775
|
/** Slot for code-puncher-group, code-puncher-slot, and code-puncher-separator elements. */
|
|
776
776
|
default?: () => any
|
|
@@ -1024,11 +1024,6 @@ export interface DapDSSnackbarMessageSlots {
|
|
|
1024
1024
|
default?: () => any
|
|
1025
1025
|
}
|
|
1026
1026
|
|
|
1027
|
-
export interface DapDSStackSlots {
|
|
1028
|
-
/** The content of the stack. */
|
|
1029
|
-
default?: () => any
|
|
1030
|
-
}
|
|
1031
|
-
|
|
1032
1027
|
export interface DapDSSpinnerSlots {
|
|
1033
1028
|
/** The loading text content. */
|
|
1034
1029
|
default?: () => any
|
|
@@ -1036,6 +1031,11 @@ export interface DapDSSpinnerSlots {
|
|
|
1036
1031
|
'icon'?: () => any
|
|
1037
1032
|
}
|
|
1038
1033
|
|
|
1034
|
+
export interface DapDSStackSlots {
|
|
1035
|
+
/** The content of the stack. */
|
|
1036
|
+
default?: () => any
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
1039
|
export interface DapDSTabGroupSlots {
|
|
1040
1040
|
/** The tab items. */
|
|
1041
1041
|
default?: () => any
|
|
@@ -1123,6 +1123,17 @@ export interface DapDSRadioGroupSlots {
|
|
|
1123
1123
|
'feedback-icon'?: () => any
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
1126
|
+
export type DapDSAnchorHeadingProps = {
|
|
1127
|
+
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1128
|
+
variant?: DapDSAnchorHeading["variant"]
|
|
1129
|
+
/** The label of the heading. */
|
|
1130
|
+
label?: DapDSAnchorHeading["label"]
|
|
1131
|
+
/** */
|
|
1132
|
+
elementId?: DapDSAnchorHeading["elementId"]
|
|
1133
|
+
/** */
|
|
1134
|
+
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1126
1137
|
export type DapDSAccordionProps = {
|
|
1127
1138
|
/** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
|
|
1128
1139
|
size?: DapDSAccordion["size"]
|
|
@@ -1148,51 +1159,6 @@ export type DapDSAccordionProps = {
|
|
|
1148
1159
|
loading?: DapDSAccordion["loading"]
|
|
1149
1160
|
}
|
|
1150
1161
|
|
|
1151
|
-
export type DapDSAvatarProps = {
|
|
1152
|
-
/** The shape of the avatar */
|
|
1153
|
-
shape?: DapDSAvatar["shape"]
|
|
1154
|
-
/** The variant type of the avatar */
|
|
1155
|
-
variant?: DapDSAvatar["variant"]
|
|
1156
|
-
/** The source of the avatar image */
|
|
1157
|
-
src?: DapDSAvatar["src"]
|
|
1158
|
-
/** The alt text of the avatar */
|
|
1159
|
-
alt?: DapDSAvatar["alt"]
|
|
1160
|
-
/** The initials to display when variant is 'initials' */
|
|
1161
|
-
initials?: DapDSAvatar["initials"]
|
|
1162
|
-
/** Accessible label for the avatar */
|
|
1163
|
-
label?: DapDSAvatar["label"]
|
|
1164
|
-
/** Loading state indicator */
|
|
1165
|
-
loading?: DapDSAvatar["loading"]
|
|
1166
|
-
/** Whether the avatar is interactive (clickable) */
|
|
1167
|
-
interactive?: DapDSAvatar["interactive"]
|
|
1168
|
-
/** The width of the avatar. This will override the size */
|
|
1169
|
-
width?: DapDSAvatar["width"]
|
|
1170
|
-
/** The height of the avatar. This will override the size */
|
|
1171
|
-
height?: DapDSAvatar["height"]
|
|
1172
|
-
/** The size of the avatar. Default is `md`. */
|
|
1173
|
-
size?: DapDSAvatar["size"]
|
|
1174
|
-
/** Responsive size map (e.g. "md:lg"). */
|
|
1175
|
-
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
export type DapDSAnchorHeadingProps = {
|
|
1179
|
-
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1180
|
-
variant?: DapDSAnchorHeading["variant"]
|
|
1181
|
-
/** The label of the heading. */
|
|
1182
|
-
label?: DapDSAnchorHeading["label"]
|
|
1183
|
-
/** */
|
|
1184
|
-
elementId?: DapDSAnchorHeading["elementId"]
|
|
1185
|
-
/** */
|
|
1186
|
-
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
export type DapDSAccordionGroupProps = {
|
|
1190
|
-
/** Whether to close other accordions when one is opened. */
|
|
1191
|
-
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1192
|
-
/** The variant of the accordion */
|
|
1193
|
-
variant?: DapDSAccordionGroup["variant"]
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
1162
|
export type DapDSAvatarGroupProps = {
|
|
1197
1163
|
/** Layout type for the avatar group */
|
|
1198
1164
|
layout?: DapDSAvatarGroup["layout"]
|
|
@@ -1240,13 +1206,38 @@ export type DapDSBannerProps = {
|
|
|
1240
1206
|
icon?: DapDSBanner["icon"]
|
|
1241
1207
|
}
|
|
1242
1208
|
|
|
1243
|
-
export type
|
|
1244
|
-
/**
|
|
1245
|
-
|
|
1246
|
-
/**
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1209
|
+
export type DapDSAccordionGroupProps = {
|
|
1210
|
+
/** Whether to close other accordions when one is opened. */
|
|
1211
|
+
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1212
|
+
/** The variant of the accordion */
|
|
1213
|
+
variant?: DapDSAccordionGroup["variant"]
|
|
1214
|
+
}
|
|
1215
|
+
|
|
1216
|
+
export type DapDSAvatarProps = {
|
|
1217
|
+
/** The shape of the avatar */
|
|
1218
|
+
shape?: DapDSAvatar["shape"]
|
|
1219
|
+
/** The variant type of the avatar */
|
|
1220
|
+
variant?: DapDSAvatar["variant"]
|
|
1221
|
+
/** The source of the avatar image */
|
|
1222
|
+
src?: DapDSAvatar["src"]
|
|
1223
|
+
/** The alt text of the avatar */
|
|
1224
|
+
alt?: DapDSAvatar["alt"]
|
|
1225
|
+
/** The initials to display when variant is 'initials' */
|
|
1226
|
+
initials?: DapDSAvatar["initials"]
|
|
1227
|
+
/** Accessible label for the avatar */
|
|
1228
|
+
label?: DapDSAvatar["label"]
|
|
1229
|
+
/** Loading state indicator */
|
|
1230
|
+
loading?: DapDSAvatar["loading"]
|
|
1231
|
+
/** Whether the avatar is interactive (clickable) */
|
|
1232
|
+
interactive?: DapDSAvatar["interactive"]
|
|
1233
|
+
/** The width of the avatar. This will override the size */
|
|
1234
|
+
width?: DapDSAvatar["width"]
|
|
1235
|
+
/** The height of the avatar. This will override the size */
|
|
1236
|
+
height?: DapDSAvatar["height"]
|
|
1237
|
+
/** The size of the avatar. Default is `md`. */
|
|
1238
|
+
size?: DapDSAvatar["size"]
|
|
1239
|
+
/** Responsive size map (e.g. "md:lg"). */
|
|
1240
|
+
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1250
1241
|
}
|
|
1251
1242
|
|
|
1252
1243
|
export type DapDSBreadcrumbItemProps = {
|
|
@@ -1293,27 +1284,6 @@ export type DapDSButtonProps = {
|
|
|
1293
1284
|
sizeMap?: DapDSButton["sizeMap"]
|
|
1294
1285
|
}
|
|
1295
1286
|
|
|
1296
|
-
export type DapDSCalloutProps = {
|
|
1297
|
-
/** The variant of the callout */
|
|
1298
|
-
variant?: DapDSCallout["variant"]
|
|
1299
|
-
/** The alignment of the callout. Can be `vertical` or `horizontal`. */
|
|
1300
|
-
alignment?: DapDSCallout["alignment"]
|
|
1301
|
-
/** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
|
|
1302
|
-
shade?: DapDSCallout["shade"]
|
|
1303
|
-
/** If the callout has a border */
|
|
1304
|
-
noBorder?: DapDSCallout["noBorder"]
|
|
1305
|
-
/** If the callout has a close button */
|
|
1306
|
-
closeable?: DapDSCallout["closeable"]
|
|
1307
|
-
/** The header of the callout */
|
|
1308
|
-
title?: DapDSCallout["title"]
|
|
1309
|
-
/** The label of the close button */
|
|
1310
|
-
closeButtonLabel?: DapDSCallout["closeButtonLabel"]
|
|
1311
|
-
/** `data-testid` for the default close button. */
|
|
1312
|
-
closeButtonTestId?: DapDSCallout["closeButtonTestId"]
|
|
1313
|
-
/** If the callout is opened */
|
|
1314
|
-
opened?: DapDSCallout["opened"]
|
|
1315
|
-
}
|
|
1316
|
-
|
|
1317
1287
|
export type DapDSCalendarCellProps = {
|
|
1318
1288
|
/** Whether the calendar cell is selected. */
|
|
1319
1289
|
selected?: DapDSCalendarCell["selected"]
|
|
@@ -1462,6 +1432,27 @@ export type DapDSCardProps = {
|
|
|
1462
1432
|
sizeMap?: DapDSCard["sizeMap"]
|
|
1463
1433
|
}
|
|
1464
1434
|
|
|
1435
|
+
export type DapDSCalloutProps = {
|
|
1436
|
+
/** The variant of the callout */
|
|
1437
|
+
variant?: DapDSCallout["variant"]
|
|
1438
|
+
/** The alignment of the callout. Can be `vertical` or `horizontal`. */
|
|
1439
|
+
alignment?: DapDSCallout["alignment"]
|
|
1440
|
+
/** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
|
|
1441
|
+
shade?: DapDSCallout["shade"]
|
|
1442
|
+
/** If the callout has a border */
|
|
1443
|
+
noBorder?: DapDSCallout["noBorder"]
|
|
1444
|
+
/** If the callout has a close button */
|
|
1445
|
+
closeable?: DapDSCallout["closeable"]
|
|
1446
|
+
/** The header of the callout */
|
|
1447
|
+
title?: DapDSCallout["title"]
|
|
1448
|
+
/** The label of the close button */
|
|
1449
|
+
closeButtonLabel?: DapDSCallout["closeButtonLabel"]
|
|
1450
|
+
/** `data-testid` for the default close button. */
|
|
1451
|
+
closeButtonTestId?: DapDSCallout["closeButtonTestId"]
|
|
1452
|
+
/** If the callout is opened */
|
|
1453
|
+
opened?: DapDSCallout["opened"]
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1465
1456
|
export type DapDSCheckboxProps = {
|
|
1466
1457
|
/** Whether the checkbox is indeterminate */
|
|
1467
1458
|
indeterminate?: DapDSCheckbox["indeterminate"]
|
|
@@ -1485,6 +1476,8 @@ export type DapDSCheckboxProps = {
|
|
|
1485
1476
|
checked?: DapDSCheckbox["checked"]
|
|
1486
1477
|
/** The label of the checkbox. */
|
|
1487
1478
|
label?: DapDSCheckbox["label"]
|
|
1479
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
1480
|
+
hideLabel?: DapDSCheckbox["hideLabel"]
|
|
1488
1481
|
/** The description of the checkbox. */
|
|
1489
1482
|
description?: DapDSCheckbox["description"]
|
|
1490
1483
|
/** Whether the checkbox is disabled. */
|
|
@@ -1536,6 +1529,15 @@ export type DapDSChipProps = {
|
|
|
1536
1529
|
sizeMap?: DapDSChip["sizeMap"]
|
|
1537
1530
|
}
|
|
1538
1531
|
|
|
1532
|
+
export type DapDSBreadcrumbProps = {
|
|
1533
|
+
/** */
|
|
1534
|
+
variant?: DapDSBreadcrumb["variant"]
|
|
1535
|
+
/** Mobile version of the breadcrumb */
|
|
1536
|
+
mobile?: DapDSBreadcrumb["mobile"]
|
|
1537
|
+
/** The aria-labelledby of the breadcrumb */
|
|
1538
|
+
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1539
|
+
}
|
|
1540
|
+
|
|
1539
1541
|
export type DapDSCodePuncherSlotProps = {
|
|
1540
1542
|
/** */
|
|
1541
1543
|
disabled?: DapDSCodePuncherSlot["disabled"]
|
|
@@ -1562,6 +1564,8 @@ export type DapDSCodePuncherProps = {
|
|
|
1562
1564
|
size?: DapDSCodePuncher["size"]
|
|
1563
1565
|
/** The label of the component. */
|
|
1564
1566
|
label?: DapDSCodePuncher["label"]
|
|
1567
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
1568
|
+
hideLabel?: DapDSCodePuncher["hideLabel"]
|
|
1565
1569
|
/** The description of the component. */
|
|
1566
1570
|
description?: DapDSCodePuncher["description"]
|
|
1567
1571
|
/** The tooltip of the component. */
|
|
@@ -1597,6 +1601,8 @@ export type DapDSComboboxProps = {
|
|
|
1597
1601
|
sync?: DapDSCombobox["sync"]
|
|
1598
1602
|
/** The label of the select. */
|
|
1599
1603
|
label?: DapDSCombobox["label"]
|
|
1604
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
1605
|
+
hideLabel?: DapDSCombobox["hideLabel"]
|
|
1600
1606
|
/** The description of the select. */
|
|
1601
1607
|
description?: DapDSCombobox["description"]
|
|
1602
1608
|
/** The tooltip of the select. */
|
|
@@ -1920,6 +1926,8 @@ export type DapDSDatePickerProps = {
|
|
|
1920
1926
|
feedbackId?: DapDSDatePicker["feedbackId"]
|
|
1921
1927
|
/** The label of the datepicker. */
|
|
1922
1928
|
label?: DapDSDatePicker["label"]
|
|
1929
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
1930
|
+
hideLabel?: DapDSDatePicker["hideLabel"]
|
|
1923
1931
|
/** The description of the datepicker. */
|
|
1924
1932
|
description?: DapDSDatePicker["description"]
|
|
1925
1933
|
/** The size of the datepicker. */
|
|
@@ -2133,6 +2141,8 @@ export type DapDSFileInputProps = {
|
|
|
2133
2141
|
status?: DapDSFileInput["status"]
|
|
2134
2142
|
/** The label for the file input. */
|
|
2135
2143
|
label?: DapDSFileInput["label"]
|
|
2144
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
2145
|
+
hideLabel?: DapDSFileInput["hideLabel"]
|
|
2136
2146
|
/** The description for the file input. */
|
|
2137
2147
|
description?: DapDSFileInput["description"]
|
|
2138
2148
|
/** The tooltip for the file input. */
|
|
@@ -2225,6 +2235,8 @@ export type DapDSImageZoomProps = {
|
|
|
2225
2235
|
export type DapDSInputProps = {
|
|
2226
2236
|
/** The label of the input. */
|
|
2227
2237
|
label?: DapDSInput["label"]
|
|
2238
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
2239
|
+
hideLabel?: DapDSInput["hideLabel"]
|
|
2228
2240
|
/** The description of the input. */
|
|
2229
2241
|
description?: DapDSInput["description"]
|
|
2230
2242
|
/** Text of optional label. */
|
|
@@ -2549,6 +2561,8 @@ export type DapDSNumberInputProps = {
|
|
|
2549
2561
|
type?: DapDSNumberInput["type"]
|
|
2550
2562
|
/** The label of the input. */
|
|
2551
2563
|
label?: DapDSNumberInput["label"]
|
|
2564
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
2565
|
+
hideLabel?: DapDSNumberInput["hideLabel"]
|
|
2552
2566
|
/** The placeholder of the input. */
|
|
2553
2567
|
placeholder?: DapDSNumberInput["placeholder"]
|
|
2554
2568
|
/** The description of the input. */
|
|
@@ -2845,6 +2859,8 @@ export type DapDSRadioButtonProps = {
|
|
|
2845
2859
|
checked?: DapDSRadioButton["checked"]
|
|
2846
2860
|
/** The label of the radio button. */
|
|
2847
2861
|
label?: DapDSRadioButton["label"]
|
|
2862
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
2863
|
+
hideLabel?: DapDSRadioButton["hideLabel"]
|
|
2848
2864
|
/** The description of the radio button. */
|
|
2849
2865
|
description?: DapDSRadioButton["description"]
|
|
2850
2866
|
/** Whether the radio button is disabled. */
|
|
@@ -3000,6 +3016,8 @@ export type DapDSSelectProps = {
|
|
|
3000
3016
|
value?: DapDSSelect["value"]
|
|
3001
3017
|
/** The label of the select. */
|
|
3002
3018
|
label?: DapDSSelect["label"]
|
|
3019
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3020
|
+
hideLabel?: DapDSSelect["hideLabel"]
|
|
3003
3021
|
/** The description of the select. */
|
|
3004
3022
|
description?: DapDSSelect["description"]
|
|
3005
3023
|
/** The tooltip of the select. */
|
|
@@ -3032,22 +3050,6 @@ export type DapDSSelectProps = {
|
|
|
3032
3050
|
subtle?: DapDSSelect["subtle"]
|
|
3033
3051
|
}
|
|
3034
3052
|
|
|
3035
|
-
export type DapDSSkeletonProps = {
|
|
3036
|
-
/** The variant of the skeleton. */
|
|
3037
|
-
variant?: DapDSSkeleton["variant"]
|
|
3038
|
-
/** The width of the skeleton. Can be any valid CSS width value. */
|
|
3039
|
-
width?: DapDSSkeleton["width"]
|
|
3040
|
-
/** The height of the skeleton. Can be any valid CSS height value. */
|
|
3041
|
-
height?: DapDSSkeleton["height"]
|
|
3042
|
-
/** Whether to animate the skeleton. */
|
|
3043
|
-
noAnimation?: DapDSSkeleton["noAnimation"]
|
|
3044
|
-
/** The animation type for the skeleton. */
|
|
3045
|
-
animation?: DapDSSkeleton["animation"]
|
|
3046
|
-
/** Custom keyframes for the animation when animation="custom".
|
|
3047
|
-
Should be a valid CSS keyframes string without the */
|
|
3048
|
-
"custom-keyframes"?: DapDSSkeleton["customKeyframes"]
|
|
3049
|
-
}
|
|
3050
|
-
|
|
3051
3053
|
export type DapDSSideNavGroupProps = {
|
|
3052
3054
|
/** The href of the side navigation item */
|
|
3053
3055
|
href?: DapDSSideNavGroup["href"]
|
|
@@ -3086,9 +3088,34 @@ export type DapDSSideNavProps = {
|
|
|
3086
3088
|
activeHref?: DapDSSideNav["activeHref"]
|
|
3087
3089
|
/** The size of the side navigation */
|
|
3088
3090
|
size?: DapDSSideNav["size"]
|
|
3091
|
+
/** The landmark element to render. `aside` exposes a complementary landmark; `nav`
|
|
3092
|
+
exposes a navigation landmark, so the sidenav is listed when a screen-reader user
|
|
3093
|
+
asks for the page's navigation.
|
|
3094
|
+
|
|
3095
|
+
Defaults to `aside` because that is what this component has always rendered, and
|
|
3096
|
+
changing the landmark of every existing sidenav is not this component's call: a
|
|
3097
|
+
sidenav that is genuinely a sidebar should stay complementary. Set `nav` when the
|
|
3098
|
+
sidenav is the primary way to move around the view. */
|
|
3099
|
+
landmark?: DapDSSideNav["landmark"]
|
|
3089
3100
|
}
|
|
3090
3101
|
|
|
3091
|
-
export type
|
|
3102
|
+
export type DapDSSkeletonProps = {
|
|
3103
|
+
/** The variant of the skeleton. */
|
|
3104
|
+
variant?: DapDSSkeleton["variant"]
|
|
3105
|
+
/** The width of the skeleton. Can be any valid CSS width value. */
|
|
3106
|
+
width?: DapDSSkeleton["width"]
|
|
3107
|
+
/** The height of the skeleton. Can be any valid CSS height value. */
|
|
3108
|
+
height?: DapDSSkeleton["height"]
|
|
3109
|
+
/** Whether to animate the skeleton. */
|
|
3110
|
+
noAnimation?: DapDSSkeleton["noAnimation"]
|
|
3111
|
+
/** The animation type for the skeleton. */
|
|
3112
|
+
animation?: DapDSSkeleton["animation"]
|
|
3113
|
+
/** Custom keyframes for the animation when animation="custom".
|
|
3114
|
+
Should be a valid CSS keyframes string without the */
|
|
3115
|
+
"custom-keyframes"?: DapDSSkeleton["customKeyframes"]
|
|
3116
|
+
}
|
|
3117
|
+
|
|
3118
|
+
export type DapDSSkipLinkProps = {
|
|
3092
3119
|
/** The placement of the skip link. */
|
|
3093
3120
|
placement?: DapDSSkipLink["placement"]
|
|
3094
3121
|
/** The href of the skip link */
|
|
@@ -3127,17 +3154,6 @@ export type DapDSSnackbarProps = {
|
|
|
3127
3154
|
announceMessages?: DapDSSnackbar["announceMessages"]
|
|
3128
3155
|
}
|
|
3129
3156
|
|
|
3130
|
-
export type DapDSStackProps = {
|
|
3131
|
-
/** The direction of the stack. */
|
|
3132
|
-
direction?: DapDSStack["direction"]
|
|
3133
|
-
/** Adds margin to the end of the stack. */
|
|
3134
|
-
endMargin?: DapDSStack["endMargin"]
|
|
3135
|
-
/** Adds margin to the start of the stack. */
|
|
3136
|
-
startMargin?: DapDSStack["startMargin"]
|
|
3137
|
-
/** The spacing of the stack. Uses the system spacing scale (100, 200, 300...etc) */
|
|
3138
|
-
spacing?: DapDSStack["spacing"]
|
|
3139
|
-
}
|
|
3140
|
-
|
|
3141
3157
|
export type DapDSSpinnerProps = {
|
|
3142
3158
|
/** The variant of the spinner. */
|
|
3143
3159
|
variant?: DapDSSpinner["variant"]
|
|
@@ -3160,6 +3176,17 @@ Prevents flash for quick operations. */
|
|
|
3160
3176
|
sizeMap?: DapDSSpinner["sizeMap"]
|
|
3161
3177
|
}
|
|
3162
3178
|
|
|
3179
|
+
export type DapDSStackProps = {
|
|
3180
|
+
/** The direction of the stack. */
|
|
3181
|
+
direction?: DapDSStack["direction"]
|
|
3182
|
+
/** Adds margin to the end of the stack. */
|
|
3183
|
+
endMargin?: DapDSStack["endMargin"]
|
|
3184
|
+
/** Adds margin to the start of the stack. */
|
|
3185
|
+
startMargin?: DapDSStack["startMargin"]
|
|
3186
|
+
/** The spacing of the stack. Uses the system spacing scale (100, 200, 300...etc) */
|
|
3187
|
+
spacing?: DapDSStack["spacing"]
|
|
3188
|
+
}
|
|
3189
|
+
|
|
3163
3190
|
export type DapDSSwitchProps = {
|
|
3164
3191
|
/** This sets up border around the switch, when true. */
|
|
3165
3192
|
border?: DapDSSwitch["border"]
|
|
@@ -3175,6 +3202,8 @@ export type DapDSSwitchProps = {
|
|
|
3175
3202
|
value?: DapDSSwitch["value"]
|
|
3176
3203
|
/** The label of the switch. */
|
|
3177
3204
|
label?: DapDSSwitch["label"]
|
|
3205
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3206
|
+
hideLabel?: DapDSSwitch["hideLabel"]
|
|
3178
3207
|
/** The description of the switch. */
|
|
3179
3208
|
description?: DapDSSwitch["description"]
|
|
3180
3209
|
/** The checked state of the switch. */
|
|
@@ -3288,6 +3317,8 @@ export type DapDSTextareaProps = {
|
|
|
3288
3317
|
required?: DapDSTextarea["required"]
|
|
3289
3318
|
/** The label of the textarea. */
|
|
3290
3319
|
label?: DapDSTextarea["label"]
|
|
3320
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3321
|
+
hideLabel?: DapDSTextarea["hideLabel"]
|
|
3291
3322
|
/** The description of the textarea. */
|
|
3292
3323
|
description?: DapDSTextarea["description"]
|
|
3293
3324
|
/** The feedback of the textarea. */
|
|
@@ -3406,6 +3437,8 @@ export type DapDSTimePickerProps = {
|
|
|
3406
3437
|
feedbackId?: DapDSTimePicker["feedbackId"]
|
|
3407
3438
|
/** The label of the timepicker. */
|
|
3408
3439
|
label?: DapDSTimePicker["label"]
|
|
3440
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3441
|
+
hideLabel?: DapDSTimePicker["hideLabel"]
|
|
3409
3442
|
/** The description of the timepicker. */
|
|
3410
3443
|
description?: DapDSTimePicker["description"]
|
|
3411
3444
|
/** The size of the timepicker. */
|
|
@@ -3438,21 +3471,6 @@ export type DapDSTimePickerProps = {
|
|
|
3438
3471
|
autocomplete?: DapDSTimePicker["autocomplete"]
|
|
3439
3472
|
}
|
|
3440
3473
|
|
|
3441
|
-
export type DapDSToggleButtonProps = {
|
|
3442
|
-
/** Whether the button is active. */
|
|
3443
|
-
active?: DapDSToggleButton["active"]
|
|
3444
|
-
/** The shape of the button */
|
|
3445
|
-
shape?: DapDSToggleButton["shape"]
|
|
3446
|
-
/** */
|
|
3447
|
-
sizeChildren?: DapDSToggleButton["sizeChildren"]
|
|
3448
|
-
/** */
|
|
3449
|
-
focusElement?: DapDSToggleButton["focusElement"]
|
|
3450
|
-
/** The size of the toggle button. Default is `md` */
|
|
3451
|
-
size?: DapDSToggleButton["size"]
|
|
3452
|
-
/** Responsive size map (e.g. "md:lg") */
|
|
3453
|
-
sizeMap?: DapDSToggleButton["sizeMap"]
|
|
3454
|
-
}
|
|
3455
|
-
|
|
3456
3474
|
export type DapDSTOCProps = {
|
|
3457
3475
|
/** The root element to observe [`IntersectionObserver`](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API#root) */
|
|
3458
3476
|
root?: DapDSTOC["root"]
|
|
@@ -3482,6 +3500,21 @@ export type DapDSTOCProps = {
|
|
|
3482
3500
|
sizeMap?: DapDSTOC["sizeMap"]
|
|
3483
3501
|
}
|
|
3484
3502
|
|
|
3503
|
+
export type DapDSToggleButtonProps = {
|
|
3504
|
+
/** Whether the button is active. */
|
|
3505
|
+
active?: DapDSToggleButton["active"]
|
|
3506
|
+
/** The shape of the button */
|
|
3507
|
+
shape?: DapDSToggleButton["shape"]
|
|
3508
|
+
/** */
|
|
3509
|
+
sizeChildren?: DapDSToggleButton["sizeChildren"]
|
|
3510
|
+
/** */
|
|
3511
|
+
focusElement?: DapDSToggleButton["focusElement"]
|
|
3512
|
+
/** The size of the toggle button. Default is `md` */
|
|
3513
|
+
size?: DapDSToggleButton["size"]
|
|
3514
|
+
/** Responsive size map (e.g. "md:lg") */
|
|
3515
|
+
sizeMap?: DapDSToggleButton["sizeMap"]
|
|
3516
|
+
}
|
|
3517
|
+
|
|
3485
3518
|
export type DapDSTooltipProps = {
|
|
3486
3519
|
/** The content of the tooltip, supporting text only. */
|
|
3487
3520
|
content?: DapDSTooltip["content"]
|
|
@@ -3564,6 +3597,8 @@ export type DapDSFormLabelProps = {
|
|
|
3564
3597
|
requiredLabel?: DapDSFormLabel["requiredLabel"]
|
|
3565
3598
|
/** The label text. */
|
|
3566
3599
|
label?: DapDSFormLabel["label"]
|
|
3600
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3601
|
+
hideLabel?: DapDSFormLabel["hideLabel"]
|
|
3567
3602
|
}
|
|
3568
3603
|
|
|
3569
3604
|
export type DapDSInputGroupProps = {
|
|
@@ -3571,6 +3606,8 @@ export type DapDSInputGroupProps = {
|
|
|
3571
3606
|
allInputs?: DapDSInputGroup["allInputs"]
|
|
3572
3607
|
/** The label of the input group. */
|
|
3573
3608
|
label?: DapDSInputGroup["label"]
|
|
3609
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3610
|
+
hideLabel?: DapDSInputGroup["hideLabel"]
|
|
3574
3611
|
/** The description of the input group. */
|
|
3575
3612
|
description?: DapDSInputGroup["description"]
|
|
3576
3613
|
/** The tooltip of the input group. */
|
|
@@ -3620,6 +3657,8 @@ export type DapDSRadioGroupProps = {
|
|
|
3620
3657
|
required?: DapDSRadioGroup["required"]
|
|
3621
3658
|
/** The label of the radio group. */
|
|
3622
3659
|
label?: DapDSRadioGroup["label"]
|
|
3660
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3661
|
+
hideLabel?: DapDSRadioGroup["hideLabel"]
|
|
3623
3662
|
/** The description of the radio group. */
|
|
3624
3663
|
description?: DapDSRadioGroup["description"]
|
|
3625
3664
|
/** The tooltip of the radio group. */
|
|
@@ -3638,17 +3677,6 @@ export type DapDSRadioGroupProps = {
|
|
|
3638
3677
|
size?: DapDSRadioGroup["size"]
|
|
3639
3678
|
}
|
|
3640
3679
|
|
|
3641
|
-
export type BuildingsHome6LineProps = {
|
|
3642
|
-
/** (optional) The width and height in pixels */
|
|
3643
|
-
size?: BuildingsHome6Line["size"]
|
|
3644
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3645
|
-
selected?: BuildingsHome6Line["selected"]
|
|
3646
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3647
|
-
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3648
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3649
|
-
focusable?: BuildingsHome6Line["focusable"]
|
|
3650
|
-
}
|
|
3651
|
-
|
|
3652
3680
|
export type ArrowsArrowDownLineProps = {
|
|
3653
3681
|
/** (optional) The width and height in pixels */
|
|
3654
3682
|
size?: ArrowsArrowDownLine["size"]
|
|
@@ -3715,17 +3743,6 @@ export type ArrowsArrowLeftLineProps = {
|
|
|
3715
3743
|
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3716
3744
|
}
|
|
3717
3745
|
|
|
3718
|
-
export type ArrowsArrowLeftSFillProps = {
|
|
3719
|
-
/** (optional) The width and height in pixels */
|
|
3720
|
-
size?: ArrowsArrowLeftSFill["size"]
|
|
3721
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3722
|
-
selected?: ArrowsArrowLeftSFill["selected"]
|
|
3723
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3724
|
-
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
|
|
3725
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3726
|
-
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3727
|
-
}
|
|
3728
|
-
|
|
3729
3746
|
export type ArrowsArrowLeftSLineProps = {
|
|
3730
3747
|
/** (optional) The width and height in pixels */
|
|
3731
3748
|
size?: ArrowsArrowLeftSLine["size"]
|
|
@@ -3737,15 +3754,15 @@ export type ArrowsArrowLeftSLineProps = {
|
|
|
3737
3754
|
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3738
3755
|
}
|
|
3739
3756
|
|
|
3740
|
-
export type
|
|
3757
|
+
export type ArrowsArrowLeftSFillProps = {
|
|
3741
3758
|
/** (optional) The width and height in pixels */
|
|
3742
|
-
size?:
|
|
3759
|
+
size?: ArrowsArrowLeftSFill["size"]
|
|
3743
3760
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3744
|
-
selected?:
|
|
3761
|
+
selected?: ArrowsArrowLeftSFill["selected"]
|
|
3745
3762
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3746
|
-
accessibilityTitle?:
|
|
3763
|
+
accessibilityTitle?: ArrowsArrowLeftSFill["accessibilityTitle"]
|
|
3747
3764
|
/** (optional) If `true` the icon can receive focus */
|
|
3748
|
-
focusable?:
|
|
3765
|
+
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3749
3766
|
}
|
|
3750
3767
|
|
|
3751
3768
|
export type ArrowsArrowLeftUpLineProps = {
|
|
@@ -3759,6 +3776,17 @@ export type ArrowsArrowLeftUpLineProps = {
|
|
|
3759
3776
|
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3760
3777
|
}
|
|
3761
3778
|
|
|
3779
|
+
export type ArrowsArrowRightDownLineProps = {
|
|
3780
|
+
/** (optional) The width and height in pixels */
|
|
3781
|
+
size?: ArrowsArrowRightDownLine["size"]
|
|
3782
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3783
|
+
selected?: ArrowsArrowRightDownLine["selected"]
|
|
3784
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3785
|
+
accessibilityTitle?: ArrowsArrowRightDownLine["accessibilityTitle"]
|
|
3786
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3787
|
+
focusable?: ArrowsArrowRightDownLine["focusable"]
|
|
3788
|
+
}
|
|
3789
|
+
|
|
3762
3790
|
export type ArrowsArrowRightLLineProps = {
|
|
3763
3791
|
/** (optional) The width and height in pixels */
|
|
3764
3792
|
size?: ArrowsArrowRightLLine["size"]
|
|
@@ -3792,26 +3820,26 @@ export type ArrowsArrowRightSFillProps = {
|
|
|
3792
3820
|
focusable?: ArrowsArrowRightSFill["focusable"]
|
|
3793
3821
|
}
|
|
3794
3822
|
|
|
3795
|
-
export type
|
|
3823
|
+
export type ArrowsArrowRightSLineProps = {
|
|
3796
3824
|
/** (optional) The width and height in pixels */
|
|
3797
|
-
size?:
|
|
3825
|
+
size?: ArrowsArrowRightSLine["size"]
|
|
3798
3826
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3799
|
-
selected?:
|
|
3827
|
+
selected?: ArrowsArrowRightSLine["selected"]
|
|
3800
3828
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3801
|
-
accessibilityTitle?:
|
|
3829
|
+
accessibilityTitle?: ArrowsArrowRightSLine["accessibilityTitle"]
|
|
3802
3830
|
/** (optional) If `true` the icon can receive focus */
|
|
3803
|
-
focusable?:
|
|
3831
|
+
focusable?: ArrowsArrowRightSLine["focusable"]
|
|
3804
3832
|
}
|
|
3805
3833
|
|
|
3806
|
-
export type
|
|
3834
|
+
export type ArrowsArrowRightUpLineProps = {
|
|
3807
3835
|
/** (optional) The width and height in pixels */
|
|
3808
|
-
size?:
|
|
3836
|
+
size?: ArrowsArrowRightUpLine["size"]
|
|
3809
3837
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3810
|
-
selected?:
|
|
3838
|
+
selected?: ArrowsArrowRightUpLine["selected"]
|
|
3811
3839
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3812
|
-
accessibilityTitle?:
|
|
3840
|
+
accessibilityTitle?: ArrowsArrowRightUpLine["accessibilityTitle"]
|
|
3813
3841
|
/** (optional) If `true` the icon can receive focus */
|
|
3814
|
-
focusable?:
|
|
3842
|
+
focusable?: ArrowsArrowRightUpLine["focusable"]
|
|
3815
3843
|
}
|
|
3816
3844
|
|
|
3817
3845
|
export type ArrowsArrowUpLineProps = {
|
|
@@ -3858,15 +3886,15 @@ export type ArrowsExpandUpDownFillProps = {
|
|
|
3858
3886
|
focusable?: ArrowsExpandUpDownFill["focusable"]
|
|
3859
3887
|
}
|
|
3860
3888
|
|
|
3861
|
-
export type
|
|
3889
|
+
export type BuildingsHome6LineProps = {
|
|
3862
3890
|
/** (optional) The width and height in pixels */
|
|
3863
|
-
size?:
|
|
3891
|
+
size?: BuildingsHome6Line["size"]
|
|
3864
3892
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3865
|
-
selected?:
|
|
3893
|
+
selected?: BuildingsHome6Line["selected"]
|
|
3866
3894
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3867
|
-
accessibilityTitle?:
|
|
3895
|
+
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3868
3896
|
/** (optional) If `true` the icon can receive focus */
|
|
3869
|
-
focusable?:
|
|
3897
|
+
focusable?: BuildingsHome6Line["focusable"]
|
|
3870
3898
|
}
|
|
3871
3899
|
|
|
3872
3900
|
export type BusinessCalendarLineProps = {
|
|
@@ -3880,6 +3908,17 @@ export type BusinessCalendarLineProps = {
|
|
|
3880
3908
|
focusable?: BusinessCalendarLine["focusable"]
|
|
3881
3909
|
}
|
|
3882
3910
|
|
|
3911
|
+
export type DesignEditLineProps = {
|
|
3912
|
+
/** (optional) The width and height in pixels */
|
|
3913
|
+
size?: DesignEditLine["size"]
|
|
3914
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3915
|
+
selected?: DesignEditLine["selected"]
|
|
3916
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3917
|
+
accessibilityTitle?: DesignEditLine["accessibilityTitle"]
|
|
3918
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3919
|
+
focusable?: DesignEditLine["focusable"]
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3883
3922
|
export type DesignToolsLineProps = {
|
|
3884
3923
|
/** (optional) The width and height in pixels */
|
|
3885
3924
|
size?: DesignToolsLine["size"]
|
|
@@ -3902,6 +3941,17 @@ export type DeviceComputerLineProps = {
|
|
|
3902
3941
|
focusable?: DeviceComputerLine["focusable"]
|
|
3903
3942
|
}
|
|
3904
3943
|
|
|
3944
|
+
export type EditorSeparatorProps = {
|
|
3945
|
+
/** (optional) The width and height in pixels */
|
|
3946
|
+
size?: EditorSeparator["size"]
|
|
3947
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3948
|
+
selected?: EditorSeparator["selected"]
|
|
3949
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3950
|
+
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
3951
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3952
|
+
focusable?: EditorSeparator["focusable"]
|
|
3953
|
+
}
|
|
3954
|
+
|
|
3905
3955
|
export type DocumentClipboardLineProps = {
|
|
3906
3956
|
/** (optional) The width and height in pixels */
|
|
3907
3957
|
size?: DocumentClipboardLine["size"]
|
|
@@ -3990,17 +4040,6 @@ export type DocumentFolderOpenLineProps = {
|
|
|
3990
4040
|
focusable?: DocumentFolderOpenLine["focusable"]
|
|
3991
4041
|
}
|
|
3992
4042
|
|
|
3993
|
-
export type EditorSeparatorProps = {
|
|
3994
|
-
/** (optional) The width and height in pixels */
|
|
3995
|
-
size?: EditorSeparator["size"]
|
|
3996
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3997
|
-
selected?: EditorSeparator["selected"]
|
|
3998
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3999
|
-
accessibilityTitle?: EditorSeparator["accessibilityTitle"]
|
|
4000
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4001
|
-
focusable?: EditorSeparator["focusable"]
|
|
4002
|
-
}
|
|
4003
|
-
|
|
4004
4043
|
export type HealthHeartFillProps = {
|
|
4005
4044
|
/** (optional) The width and height in pixels */
|
|
4006
4045
|
size?: HealthHeartFill["size"]
|
|
@@ -4034,26 +4073,59 @@ export type OthersCookieLineProps = {
|
|
|
4034
4073
|
focusable?: OthersCookieLine["focusable"]
|
|
4035
4074
|
}
|
|
4036
4075
|
|
|
4037
|
-
export type
|
|
4076
|
+
export type UserAccountCircleFillProps = {
|
|
4038
4077
|
/** (optional) The width and height in pixels */
|
|
4039
|
-
size?:
|
|
4078
|
+
size?: UserAccountCircleFill["size"]
|
|
4040
4079
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4041
|
-
selected?:
|
|
4080
|
+
selected?: UserAccountCircleFill["selected"]
|
|
4042
4081
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4043
|
-
accessibilityTitle?:
|
|
4082
|
+
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
4044
4083
|
/** (optional) If `true` the icon can receive focus */
|
|
4045
|
-
focusable?:
|
|
4084
|
+
focusable?: UserAccountCircleFill["focusable"]
|
|
4046
4085
|
}
|
|
4047
4086
|
|
|
4048
|
-
export type
|
|
4087
|
+
export type UserAccountCircleLineProps = {
|
|
4049
4088
|
/** (optional) The width and height in pixels */
|
|
4050
|
-
size?:
|
|
4089
|
+
size?: UserAccountCircleLine["size"]
|
|
4051
4090
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4052
|
-
selected?:
|
|
4091
|
+
selected?: UserAccountCircleLine["selected"]
|
|
4053
4092
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4054
|
-
accessibilityTitle?:
|
|
4093
|
+
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
4055
4094
|
/** (optional) If `true` the icon can receive focus */
|
|
4056
|
-
focusable?:
|
|
4095
|
+
focusable?: UserAccountCircleLine["focusable"]
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
export type UserUserFillProps = {
|
|
4099
|
+
/** (optional) The width and height in pixels */
|
|
4100
|
+
size?: UserUserFill["size"]
|
|
4101
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4102
|
+
selected?: UserUserFill["selected"]
|
|
4103
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4104
|
+
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
4105
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4106
|
+
focusable?: UserUserFill["focusable"]
|
|
4107
|
+
}
|
|
4108
|
+
|
|
4109
|
+
export type UserUserLineProps = {
|
|
4110
|
+
/** (optional) The width and height in pixels */
|
|
4111
|
+
size?: UserUserLine["size"]
|
|
4112
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4113
|
+
selected?: UserUserLine["selected"]
|
|
4114
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4115
|
+
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
4116
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4117
|
+
focusable?: UserUserLine["focusable"]
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
export type SystemAddLineProps = {
|
|
4121
|
+
/** (optional) The width and height in pixels */
|
|
4122
|
+
size?: SystemAddLine["size"]
|
|
4123
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4124
|
+
selected?: SystemAddLine["selected"]
|
|
4125
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4126
|
+
accessibilityTitle?: SystemAddLine["accessibilityTitle"]
|
|
4127
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4128
|
+
focusable?: SystemAddLine["focusable"]
|
|
4057
4129
|
}
|
|
4058
4130
|
|
|
4059
4131
|
export type SystemAlertLineProps = {
|
|
@@ -4067,6 +4139,17 @@ export type SystemAlertLineProps = {
|
|
|
4067
4139
|
focusable?: SystemAlertLine["focusable"]
|
|
4068
4140
|
}
|
|
4069
4141
|
|
|
4142
|
+
export type SystemAlertFillProps = {
|
|
4143
|
+
/** (optional) The width and height in pixels */
|
|
4144
|
+
size?: SystemAlertFill["size"]
|
|
4145
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4146
|
+
selected?: SystemAlertFill["selected"]
|
|
4147
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4148
|
+
accessibilityTitle?: SystemAlertFill["accessibilityTitle"]
|
|
4149
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4150
|
+
focusable?: SystemAlertFill["focusable"]
|
|
4151
|
+
}
|
|
4152
|
+
|
|
4070
4153
|
export type SystemCheckLineProps = {
|
|
4071
4154
|
/** (optional) The width and height in pixels */
|
|
4072
4155
|
size?: SystemCheckLine["size"]
|
|
@@ -4562,53 +4645,19 @@ export type SystemZoomOutLineProps = {
|
|
|
4562
4645
|
focusable?: SystemZoomOutLine["focusable"]
|
|
4563
4646
|
}
|
|
4564
4647
|
|
|
4565
|
-
export type UserAccountCircleFillProps = {
|
|
4566
|
-
/** (optional) The width and height in pixels */
|
|
4567
|
-
size?: UserAccountCircleFill["size"]
|
|
4568
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4569
|
-
selected?: UserAccountCircleFill["selected"]
|
|
4570
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4571
|
-
accessibilityTitle?: UserAccountCircleFill["accessibilityTitle"]
|
|
4572
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4573
|
-
focusable?: UserAccountCircleFill["focusable"]
|
|
4574
|
-
}
|
|
4575
|
-
|
|
4576
|
-
export type UserAccountCircleLineProps = {
|
|
4577
|
-
/** (optional) The width and height in pixels */
|
|
4578
|
-
size?: UserAccountCircleLine["size"]
|
|
4579
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4580
|
-
selected?: UserAccountCircleLine["selected"]
|
|
4581
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4582
|
-
accessibilityTitle?: UserAccountCircleLine["accessibilityTitle"]
|
|
4583
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4584
|
-
focusable?: UserAccountCircleLine["focusable"]
|
|
4585
|
-
}
|
|
4586
|
-
|
|
4587
|
-
export type UserUserFillProps = {
|
|
4588
|
-
/** (optional) The width and height in pixels */
|
|
4589
|
-
size?: UserUserFill["size"]
|
|
4590
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4591
|
-
selected?: UserUserFill["selected"]
|
|
4592
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4593
|
-
accessibilityTitle?: UserUserFill["accessibilityTitle"]
|
|
4594
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4595
|
-
focusable?: UserUserFill["focusable"]
|
|
4596
|
-
}
|
|
4597
|
-
|
|
4598
|
-
export type UserUserLineProps = {
|
|
4599
|
-
/** (optional) The width and height in pixels */
|
|
4600
|
-
size?: UserUserLine["size"]
|
|
4601
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4602
|
-
selected?: UserUserLine["selected"]
|
|
4603
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4604
|
-
accessibilityTitle?: UserUserLine["accessibilityTitle"]
|
|
4605
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4606
|
-
focusable?: UserUserLine["focusable"]
|
|
4607
|
-
}
|
|
4608
|
-
|
|
4609
4648
|
// Augment Vue's GlobalComponents interface
|
|
4610
4649
|
declare module 'vue' {
|
|
4611
4650
|
interface GlobalComponents {
|
|
4651
|
+
/**
|
|
4652
|
+
* Anchor heading is a heading with an anchor link.
|
|
4653
|
+
*
|
|
4654
|
+
* ### CSS Parts:
|
|
4655
|
+
* - **base** - The main anchor heading container.
|
|
4656
|
+
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
4657
|
+
* - **link-base** - The base of the link part.
|
|
4658
|
+
* - **text** - The text of the anchor heading.
|
|
4659
|
+
*/
|
|
4660
|
+
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4612
4661
|
/**
|
|
4613
4662
|
* An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
|
|
4614
4663
|
*
|
|
@@ -4635,46 +4684,6 @@ declare module 'vue' {
|
|
|
4635
4684
|
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4636
4685
|
*/
|
|
4637
4686
|
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4638
|
-
/**
|
|
4639
|
-
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4640
|
-
*
|
|
4641
|
-
* ### Events:
|
|
4642
|
-
* - **dds-load** - Fired when the image loads successfully.
|
|
4643
|
-
* - **dds-error** - Fired when the image fails to load.
|
|
4644
|
-
*
|
|
4645
|
-
* ### Slots:
|
|
4646
|
-
* - **icon** - The icon to display when variant is 'icon'.
|
|
4647
|
-
* - **fallback** - Custom fallback content when image fails to load.
|
|
4648
|
-
*
|
|
4649
|
-
* ### CSS Parts:
|
|
4650
|
-
* - **base** - The main avatar container.
|
|
4651
|
-
* - **img** - The avatar image.
|
|
4652
|
-
* - **initials** - The initials container.
|
|
4653
|
-
* - **icon** - The icon container.
|
|
4654
|
-
* - **fallback** - The fallback content container.
|
|
4655
|
-
* - **loading** - The loading indicator.
|
|
4656
|
-
*/
|
|
4657
|
-
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4658
|
-
/**
|
|
4659
|
-
* Anchor heading is a heading with an anchor link.
|
|
4660
|
-
*
|
|
4661
|
-
* ### CSS Parts:
|
|
4662
|
-
* - **base** - The main anchor heading container.
|
|
4663
|
-
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
4664
|
-
* - **link-base** - The base of the link part.
|
|
4665
|
-
* - **text** - The text of the anchor heading.
|
|
4666
|
-
*/
|
|
4667
|
-
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4668
|
-
/**
|
|
4669
|
-
* An accordion group is a collection of accordion components.
|
|
4670
|
-
*
|
|
4671
|
-
* ### Slots:
|
|
4672
|
-
* - **default** - The content of the accordion group.
|
|
4673
|
-
*
|
|
4674
|
-
* ### CSS Parts:
|
|
4675
|
-
* - **base** - The main accordion group container.
|
|
4676
|
-
*/
|
|
4677
|
-
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4678
4687
|
/**
|
|
4679
4688
|
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4680
4689
|
*
|
|
@@ -4729,17 +4738,35 @@ declare module 'vue' {
|
|
|
4729
4738
|
*/
|
|
4730
4739
|
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4731
4740
|
/**
|
|
4732
|
-
*
|
|
4741
|
+
* An accordion group is a collection of accordion components.
|
|
4733
4742
|
*
|
|
4734
4743
|
* ### Slots:
|
|
4735
|
-
* - **default** - The content of the
|
|
4736
|
-
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4744
|
+
* - **default** - The content of the accordion group.
|
|
4737
4745
|
*
|
|
4738
4746
|
* ### CSS Parts:
|
|
4739
|
-
* - **base** - The main
|
|
4740
|
-
|
|
4747
|
+
* - **base** - The main accordion group container.
|
|
4748
|
+
*/
|
|
4749
|
+
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4750
|
+
/**
|
|
4751
|
+
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4752
|
+
*
|
|
4753
|
+
* ### Events:
|
|
4754
|
+
* - **dds-load** - Fired when the image loads successfully.
|
|
4755
|
+
* - **dds-error** - Fired when the image fails to load.
|
|
4756
|
+
*
|
|
4757
|
+
* ### Slots:
|
|
4758
|
+
* - **icon** - The icon to display when variant is 'icon'.
|
|
4759
|
+
* - **fallback** - Custom fallback content when image fails to load.
|
|
4760
|
+
*
|
|
4761
|
+
* ### CSS Parts:
|
|
4762
|
+
* - **base** - The main avatar container.
|
|
4763
|
+
* - **img** - The avatar image.
|
|
4764
|
+
* - **initials** - The initials container.
|
|
4765
|
+
* - **icon** - The icon container.
|
|
4766
|
+
* - **fallback** - The fallback content container.
|
|
4767
|
+
* - **loading** - The loading indicator.
|
|
4741
4768
|
*/
|
|
4742
|
-
'dap-ds-
|
|
4769
|
+
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4743
4770
|
/**
|
|
4744
4771
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4745
4772
|
*
|
|
@@ -4770,30 +4797,6 @@ declare module 'vue' {
|
|
|
4770
4797
|
* - **content** - The content wrapper inside the button.
|
|
4771
4798
|
*/
|
|
4772
4799
|
'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
|
|
4773
|
-
/**
|
|
4774
|
-
*
|
|
4775
|
-
*
|
|
4776
|
-
* ### Events:
|
|
4777
|
-
* - **dds-close** - Fired when the close button is clicked.
|
|
4778
|
-
*
|
|
4779
|
-
* ### Slots:
|
|
4780
|
-
* - **default** - The content of the callout.
|
|
4781
|
-
* - **title** - The title of the callout.
|
|
4782
|
-
* - **icon** - The icon of the callout.
|
|
4783
|
-
* - **actions** - The actions of the callout.
|
|
4784
|
-
* - **close** - The close button of the callout.
|
|
4785
|
-
*
|
|
4786
|
-
* ### CSS Parts:
|
|
4787
|
-
* - **base** - The main callout container.
|
|
4788
|
-
* - **content** - The content of the callout.
|
|
4789
|
-
* - **card-content** - The content of the card.
|
|
4790
|
-
* - **icon** - The icon of the callout.
|
|
4791
|
-
* - **title** - The title of the callout.
|
|
4792
|
-
* - **description** - The description of the callout.
|
|
4793
|
-
* - **actions** - The actions of the callout.
|
|
4794
|
-
* - **close** - The close button of the callout.
|
|
4795
|
-
*/
|
|
4796
|
-
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4797
4800
|
/**
|
|
4798
4801
|
* Calendar cell represents a single cell in the calendar.
|
|
4799
4802
|
*
|
|
@@ -4887,6 +4890,30 @@ declare module 'vue' {
|
|
|
4887
4890
|
* - **base** - The main card container.
|
|
4888
4891
|
*/
|
|
4889
4892
|
'dap-ds-card': DefineCustomElement<DapDSCard, DapDSCardProps, {}>
|
|
4893
|
+
/**
|
|
4894
|
+
*
|
|
4895
|
+
*
|
|
4896
|
+
* ### Events:
|
|
4897
|
+
* - **dds-close** - Fired when the close button is clicked.
|
|
4898
|
+
*
|
|
4899
|
+
* ### Slots:
|
|
4900
|
+
* - **default** - The content of the callout.
|
|
4901
|
+
* - **title** - The title of the callout.
|
|
4902
|
+
* - **icon** - The icon of the callout.
|
|
4903
|
+
* - **actions** - The actions of the callout.
|
|
4904
|
+
* - **close** - The close button of the callout.
|
|
4905
|
+
*
|
|
4906
|
+
* ### CSS Parts:
|
|
4907
|
+
* - **base** - The main callout container.
|
|
4908
|
+
* - **content** - The content of the callout.
|
|
4909
|
+
* - **card-content** - The content of the card.
|
|
4910
|
+
* - **icon** - The icon of the callout.
|
|
4911
|
+
* - **title** - The title of the callout.
|
|
4912
|
+
* - **description** - The description of the callout.
|
|
4913
|
+
* - **actions** - The actions of the callout.
|
|
4914
|
+
* - **close** - The close button of the callout.
|
|
4915
|
+
*/
|
|
4916
|
+
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4890
4917
|
/**
|
|
4891
4918
|
* A checkbox is a form element that allows the user to select one or more options from a set.
|
|
4892
4919
|
*
|
|
@@ -4924,6 +4951,18 @@ declare module 'vue' {
|
|
|
4924
4951
|
* - **remove-icon-base-base** - The base of the remove icon base
|
|
4925
4952
|
*/
|
|
4926
4953
|
'dap-ds-chip': DefineCustomElement<DapDSChip, DapDSChipProps, DapDSChipEvents>
|
|
4954
|
+
/**
|
|
4955
|
+
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4956
|
+
*
|
|
4957
|
+
* ### Slots:
|
|
4958
|
+
* - **default** - The content of the breadcrumb.
|
|
4959
|
+
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4960
|
+
*
|
|
4961
|
+
* ### CSS Parts:
|
|
4962
|
+
* - **base** - The main breadcrumb container.
|
|
4963
|
+
* - **separator** - The separator of the breadcrumb.
|
|
4964
|
+
*/
|
|
4965
|
+
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4927
4966
|
/**
|
|
4928
4967
|
* Individual digit input slot for code puncher.
|
|
4929
4968
|
*
|
|
@@ -5763,13 +5802,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5763
5802
|
* - **mobile-footer** - The mobile footer of the select.
|
|
5764
5803
|
*/
|
|
5765
5804
|
'dap-ds-select': DefineCustomElement<DapDSSelect, DapDSSelectProps, DapDSSelectEvents>
|
|
5766
|
-
/**
|
|
5767
|
-
* A skeleton loader component for displaying placeholder content while loading.
|
|
5768
|
-
*
|
|
5769
|
-
* ### CSS Parts:
|
|
5770
|
-
* - **base** - The main skeleton container.
|
|
5771
|
-
*/
|
|
5772
|
-
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5773
5805
|
/**
|
|
5774
5806
|
* Side navigation group
|
|
5775
5807
|
*
|
|
@@ -5812,6 +5844,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5812
5844
|
* - **menu** - The menu of the side navigation.
|
|
5813
5845
|
*/
|
|
5814
5846
|
'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
|
|
5847
|
+
/**
|
|
5848
|
+
* A skeleton loader component for displaying placeholder content while loading.
|
|
5849
|
+
*
|
|
5850
|
+
* ### CSS Parts:
|
|
5851
|
+
* - **base** - The main skeleton container.
|
|
5852
|
+
*/
|
|
5853
|
+
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5815
5854
|
/**
|
|
5816
5855
|
* A skip link is a link that allows keyboard users to skip to the main content of a page.
|
|
5817
5856
|
*
|
|
@@ -5853,16 +5892,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5853
5892
|
* - **message-actions** - The actions part of the message
|
|
5854
5893
|
*/
|
|
5855
5894
|
'dap-ds-snackbar': DefineCustomElement<DapDSSnackbar, DapDSSnackbarProps, {}>
|
|
5856
|
-
/**
|
|
5857
|
-
* A stack is a container for stacked content.
|
|
5858
|
-
*
|
|
5859
|
-
* ### Slots:
|
|
5860
|
-
* - **default** - The content of the stack.
|
|
5861
|
-
*
|
|
5862
|
-
* ### CSS Parts:
|
|
5863
|
-
* - **stack** - The main stack container.
|
|
5864
|
-
*/
|
|
5865
|
-
'dap-ds-stack': DefineCustomElement<DapDSStack, DapDSStackProps, {}>
|
|
5866
5895
|
/**
|
|
5867
5896
|
* Loading spinner component.
|
|
5868
5897
|
*
|
|
@@ -5878,6 +5907,16 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5878
5907
|
* - **text** - The loading text element.
|
|
5879
5908
|
*/
|
|
5880
5909
|
'dap-ds-spinner': DefineCustomElement<DapDSSpinner, DapDSSpinnerProps, {}>
|
|
5910
|
+
/**
|
|
5911
|
+
* A stack is a container for stacked content.
|
|
5912
|
+
*
|
|
5913
|
+
* ### Slots:
|
|
5914
|
+
* - **default** - The content of the stack.
|
|
5915
|
+
*
|
|
5916
|
+
* ### CSS Parts:
|
|
5917
|
+
* - **stack** - The main stack container.
|
|
5918
|
+
*/
|
|
5919
|
+
'dap-ds-stack': DefineCustomElement<DapDSStack, DapDSStackProps, {}>
|
|
5881
5920
|
/**
|
|
5882
5921
|
* A switch is a graphical control element that allows the user to toggle between two states.
|
|
5883
5922
|
*
|
|
@@ -6047,6 +6086,16 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6047
6086
|
* - **clear-button** - The clear button of the timepicker.
|
|
6048
6087
|
*/
|
|
6049
6088
|
'dap-ds-timepicker': DefineCustomElement<DapDSTimePicker, DapDSTimePickerProps, DapDSTimePickerEvents>
|
|
6089
|
+
/**
|
|
6090
|
+
* A table of contents (TOC) is a list of links that allows users to quickly navigate to sections within a document.
|
|
6091
|
+
*
|
|
6092
|
+
* ### Events:
|
|
6093
|
+
* - **dds-anchor-change** - Event that is triggered when the anchor changes.
|
|
6094
|
+
*
|
|
6095
|
+
* ### CSS Parts:
|
|
6096
|
+
* - **base** - The main container of the toc.
|
|
6097
|
+
*/
|
|
6098
|
+
'dap-ds-toc': DefineCustomElement<DapDSTOC, DapDSTOCProps, DapDSTOCEvents>
|
|
6050
6099
|
/**
|
|
6051
6100
|
* A toggle button is a button that can be toggled on (active) or off (inactive).
|
|
6052
6101
|
*
|
|
@@ -6058,16 +6107,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6058
6107
|
* - **high-contrast** - The high contrast part of the button.
|
|
6059
6108
|
*/
|
|
6060
6109
|
'dap-ds-toggle-button': DefineCustomElement<DapDSToggleButton, DapDSToggleButtonProps, {}>
|
|
6061
|
-
/**
|
|
6062
|
-
* A table of contents (TOC) is a list of links that allows users to quickly navigate to sections within a document.
|
|
6063
|
-
*
|
|
6064
|
-
* ### Events:
|
|
6065
|
-
* - **dds-anchor-change** - Event that is triggered when the anchor changes.
|
|
6066
|
-
*
|
|
6067
|
-
* ### CSS Parts:
|
|
6068
|
-
* - **base** - The main container of the toc.
|
|
6069
|
-
*/
|
|
6070
|
-
'dap-ds-toc': DefineCustomElement<DapDSTOC, DapDSTOCProps, DapDSTOCEvents>
|
|
6071
6110
|
/**
|
|
6072
6111
|
* A tooltip is a container for tooltip content.
|
|
6073
6112
|
*
|
|
@@ -6159,13 +6198,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6159
6198
|
* - **container** - The container of the radio group items.
|
|
6160
6199
|
*/
|
|
6161
6200
|
'dap-ds-radio-group': DefineCustomElement<DapDSRadioGroup, DapDSRadioGroupProps, DapDSRadioGroupEvents>
|
|
6162
|
-
/**
|
|
6163
|
-
* An icon
|
|
6164
|
-
*
|
|
6165
|
-
* ### CSS Parts:
|
|
6166
|
-
* - **base** - The main icon container.
|
|
6167
|
-
*/
|
|
6168
|
-
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6169
6201
|
/**
|
|
6170
6202
|
* An icon
|
|
6171
6203
|
*
|
|
@@ -6214,28 +6246,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6214
6246
|
* ### CSS Parts:
|
|
6215
6247
|
* - **base** - The main icon container.
|
|
6216
6248
|
*/
|
|
6217
|
-
'dap-ds-icon-arrow-left-s-
|
|
6249
|
+
'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
|
|
6218
6250
|
/**
|
|
6219
6251
|
* An icon
|
|
6220
6252
|
*
|
|
6221
6253
|
* ### CSS Parts:
|
|
6222
6254
|
* - **base** - The main icon container.
|
|
6223
6255
|
*/
|
|
6224
|
-
'dap-ds-icon-arrow-left-s-
|
|
6256
|
+
'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
|
|
6225
6257
|
/**
|
|
6226
6258
|
* An icon
|
|
6227
6259
|
*
|
|
6228
6260
|
* ### CSS Parts:
|
|
6229
6261
|
* - **base** - The main icon container.
|
|
6230
6262
|
*/
|
|
6231
|
-
'dap-ds-icon-arrow-
|
|
6263
|
+
'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
|
|
6232
6264
|
/**
|
|
6233
6265
|
* An icon
|
|
6234
6266
|
*
|
|
6235
6267
|
* ### CSS Parts:
|
|
6236
6268
|
* - **base** - The main icon container.
|
|
6237
6269
|
*/
|
|
6238
|
-
'dap-ds-icon-arrow-
|
|
6270
|
+
'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
|
|
6239
6271
|
/**
|
|
6240
6272
|
* An icon
|
|
6241
6273
|
*
|
|
@@ -6263,14 +6295,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6263
6295
|
* ### CSS Parts:
|
|
6264
6296
|
* - **base** - The main icon container.
|
|
6265
6297
|
*/
|
|
6266
|
-
'dap-ds-icon-arrow-right-
|
|
6298
|
+
'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
|
|
6267
6299
|
/**
|
|
6268
6300
|
* An icon
|
|
6269
6301
|
*
|
|
6270
6302
|
* ### CSS Parts:
|
|
6271
6303
|
* - **base** - The main icon container.
|
|
6272
6304
|
*/
|
|
6273
|
-
'dap-ds-icon-arrow-right-
|
|
6305
|
+
'dap-ds-icon-arrow-right-up-line': DefineCustomElement<ArrowsArrowRightUpLine, ArrowsArrowRightUpLineProps, {}>
|
|
6274
6306
|
/**
|
|
6275
6307
|
* An icon
|
|
6276
6308
|
*
|
|
@@ -6305,7 +6337,7 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6305
6337
|
* ### CSS Parts:
|
|
6306
6338
|
* - **base** - The main icon container.
|
|
6307
6339
|
*/
|
|
6308
|
-
'dap-ds-icon-
|
|
6340
|
+
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6309
6341
|
/**
|
|
6310
6342
|
* An icon
|
|
6311
6343
|
*
|
|
@@ -6313,6 +6345,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6313
6345
|
* - **base** - The main icon container.
|
|
6314
6346
|
*/
|
|
6315
6347
|
'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
|
|
6348
|
+
/**
|
|
6349
|
+
* An icon
|
|
6350
|
+
*
|
|
6351
|
+
* ### CSS Parts:
|
|
6352
|
+
* - **base** - The main icon container.
|
|
6353
|
+
*/
|
|
6354
|
+
'dap-ds-icon-edit-line': DefineCustomElement<DesignEditLine, DesignEditLineProps, {}>
|
|
6316
6355
|
/**
|
|
6317
6356
|
* An icon
|
|
6318
6357
|
*
|
|
@@ -6327,6 +6366,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6327
6366
|
* - **base** - The main icon container.
|
|
6328
6367
|
*/
|
|
6329
6368
|
'dap-ds-icon-computer-line': DefineCustomElement<DeviceComputerLine, DeviceComputerLineProps, {}>
|
|
6369
|
+
/**
|
|
6370
|
+
* An icon
|
|
6371
|
+
*
|
|
6372
|
+
* ### CSS Parts:
|
|
6373
|
+
* - **base** - The main icon container.
|
|
6374
|
+
*/
|
|
6375
|
+
'dap-ds-icon-separator': DefineCustomElement<EditorSeparator, EditorSeparatorProps, {}>
|
|
6330
6376
|
/**
|
|
6331
6377
|
* An icon
|
|
6332
6378
|
*
|
|
@@ -6389,42 +6435,56 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6389
6435
|
* ### CSS Parts:
|
|
6390
6436
|
* - **base** - The main icon container.
|
|
6391
6437
|
*/
|
|
6392
|
-
'dap-ds-icon-
|
|
6438
|
+
'dap-ds-icon-heart-fill': DefineCustomElement<HealthHeartFill, HealthHeartFillProps, {}>
|
|
6393
6439
|
/**
|
|
6394
6440
|
* An icon
|
|
6395
6441
|
*
|
|
6396
6442
|
* ### CSS Parts:
|
|
6397
6443
|
* - **base** - The main icon container.
|
|
6398
6444
|
*/
|
|
6399
|
-
'dap-ds-icon-heart-
|
|
6445
|
+
'dap-ds-icon-heart-line': DefineCustomElement<HealthHeartLine, HealthHeartLineProps, {}>
|
|
6400
6446
|
/**
|
|
6401
6447
|
* An icon
|
|
6402
6448
|
*
|
|
6403
6449
|
* ### CSS Parts:
|
|
6404
6450
|
* - **base** - The main icon container.
|
|
6405
6451
|
*/
|
|
6406
|
-
'dap-ds-icon-
|
|
6452
|
+
'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
|
|
6407
6453
|
/**
|
|
6408
6454
|
* An icon
|
|
6409
6455
|
*
|
|
6410
6456
|
* ### CSS Parts:
|
|
6411
6457
|
* - **base** - The main icon container.
|
|
6412
6458
|
*/
|
|
6413
|
-
'dap-ds-icon-
|
|
6459
|
+
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
6414
6460
|
/**
|
|
6415
6461
|
* An icon
|
|
6416
6462
|
*
|
|
6417
6463
|
* ### CSS Parts:
|
|
6418
6464
|
* - **base** - The main icon container.
|
|
6419
6465
|
*/
|
|
6420
|
-
'dap-ds-icon-
|
|
6466
|
+
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
6421
6467
|
/**
|
|
6422
6468
|
* An icon
|
|
6423
6469
|
*
|
|
6424
6470
|
* ### CSS Parts:
|
|
6425
6471
|
* - **base** - The main icon container.
|
|
6426
6472
|
*/
|
|
6427
|
-
'dap-ds-icon-
|
|
6473
|
+
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
6474
|
+
/**
|
|
6475
|
+
* An icon
|
|
6476
|
+
*
|
|
6477
|
+
* ### CSS Parts:
|
|
6478
|
+
* - **base** - The main icon container.
|
|
6479
|
+
*/
|
|
6480
|
+
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
6481
|
+
/**
|
|
6482
|
+
* An icon
|
|
6483
|
+
*
|
|
6484
|
+
* ### CSS Parts:
|
|
6485
|
+
* - **base** - The main icon container.
|
|
6486
|
+
*/
|
|
6487
|
+
'dap-ds-icon-add-line': DefineCustomElement<SystemAddLine, SystemAddLineProps, {}>
|
|
6428
6488
|
/**
|
|
6429
6489
|
* An icon
|
|
6430
6490
|
*
|
|
@@ -6432,6 +6492,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6432
6492
|
* - **base** - The main icon container.
|
|
6433
6493
|
*/
|
|
6434
6494
|
'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
|
|
6495
|
+
/**
|
|
6496
|
+
* An icon
|
|
6497
|
+
*
|
|
6498
|
+
* ### CSS Parts:
|
|
6499
|
+
* - **base** - The main icon container.
|
|
6500
|
+
*/
|
|
6501
|
+
'dap-ds-icon-alert-fill': DefineCustomElement<SystemAlertFill, SystemAlertFillProps, {}>
|
|
6435
6502
|
/**
|
|
6436
6503
|
* An icon
|
|
6437
6504
|
*
|
|
@@ -6747,34 +6814,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6747
6814
|
* - **base** - The main icon container.
|
|
6748
6815
|
*/
|
|
6749
6816
|
'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
|
|
6750
|
-
/**
|
|
6751
|
-
* An icon
|
|
6752
|
-
*
|
|
6753
|
-
* ### CSS Parts:
|
|
6754
|
-
* - **base** - The main icon container.
|
|
6755
|
-
*/
|
|
6756
|
-
'dap-ds-icon-account-circle-fill': DefineCustomElement<UserAccountCircleFill, UserAccountCircleFillProps, {}>
|
|
6757
|
-
/**
|
|
6758
|
-
* An icon
|
|
6759
|
-
*
|
|
6760
|
-
* ### CSS Parts:
|
|
6761
|
-
* - **base** - The main icon container.
|
|
6762
|
-
*/
|
|
6763
|
-
'dap-ds-icon-account-circle-line': DefineCustomElement<UserAccountCircleLine, UserAccountCircleLineProps, {}>
|
|
6764
|
-
/**
|
|
6765
|
-
* An icon
|
|
6766
|
-
*
|
|
6767
|
-
* ### CSS Parts:
|
|
6768
|
-
* - **base** - The main icon container.
|
|
6769
|
-
*/
|
|
6770
|
-
'dap-ds-icon-user-fill': DefineCustomElement<UserUserFill, UserUserFillProps, {}>
|
|
6771
|
-
/**
|
|
6772
|
-
* An icon
|
|
6773
|
-
*
|
|
6774
|
-
* ### CSS Parts:
|
|
6775
|
-
* - **base** - The main icon container.
|
|
6776
|
-
*/
|
|
6777
|
-
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
6778
6817
|
}
|
|
6779
6818
|
}
|
|
6780
6819
|
|
|
@@ -6782,17 +6821,15 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6782
6821
|
declare global {
|
|
6783
6822
|
namespace JSX {
|
|
6784
6823
|
interface IntrinsicElements {
|
|
6785
|
-
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6786
|
-
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6787
6824
|
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6788
|
-
'dap-ds-accordion
|
|
6825
|
+
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6789
6826
|
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6790
6827
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6791
6828
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6792
|
-
'dap-ds-
|
|
6829
|
+
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6830
|
+
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6793
6831
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6794
6832
|
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6795
|
-
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6796
6833
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
6797
6834
|
'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
|
|
6798
6835
|
'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
|
|
@@ -6801,8 +6838,10 @@ declare global {
|
|
|
6801
6838
|
'dap-ds-card-subtitle': DapDSCardSubtitleProps & DapDSCardSubtitleSlots
|
|
6802
6839
|
'dap-ds-card-title': DapDSCardTitleProps & DapDSCardTitleSlots
|
|
6803
6840
|
'dap-ds-card': DapDSCardProps & DapDSCardSlots
|
|
6841
|
+
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6804
6842
|
'dap-ds-checkbox': DapDSCheckboxProps & DapDSCheckboxEvents
|
|
6805
6843
|
'dap-ds-chip': DapDSChipProps & DapDSChipEvents
|
|
6844
|
+
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6806
6845
|
'dap-ds-code-puncher-slot': DapDSCodePuncherSlotProps
|
|
6807
6846
|
'dap-ds-code-puncher': DapDSCodePuncherProps & DapDSCodePuncherEvents & DapDSCodePuncherSlots
|
|
6808
6847
|
'dap-ds-combobox': DapDSComboboxProps & DapDSComboboxEvents & DapDSComboboxSlots
|
|
@@ -6847,15 +6886,15 @@ declare global {
|
|
|
6847
6886
|
'dap-ds-scroll-progress': DapDSScrollProgressProps
|
|
6848
6887
|
'dap-ds-search': DapDSSearchProps & DapDSSearchEvents & DapDSSearchSlots
|
|
6849
6888
|
'dap-ds-select': DapDSSelectProps & DapDSSelectEvents & DapDSSelectSlots
|
|
6850
|
-
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6851
6889
|
'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
|
|
6852
6890
|
'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
|
|
6853
6891
|
'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
|
|
6892
|
+
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6854
6893
|
'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
|
|
6855
6894
|
'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
|
|
6856
6895
|
'dap-ds-snackbar': DapDSSnackbarProps
|
|
6857
|
-
'dap-ds-stack': DapDSStackProps & DapDSStackSlots
|
|
6858
6896
|
'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
|
|
6897
|
+
'dap-ds-stack': DapDSStackProps & DapDSStackSlots
|
|
6859
6898
|
'dap-ds-switch': DapDSSwitchProps & DapDSSwitchEvents
|
|
6860
6899
|
'dap-ds-tab-group': DapDSTabGroupProps & DapDSTabGroupEvents & DapDSTabGroupSlots
|
|
6861
6900
|
'dap-ds-tab': DapDSTabProps & DapDSTabSlots
|
|
@@ -6868,38 +6907,39 @@ declare global {
|
|
|
6868
6907
|
'dap-ds-timeline': DapDSTimelineProps & DapDSTimelineSlots
|
|
6869
6908
|
'dap-ds-time-grid': DapDSTimeGridProps & DapDSTimeGridEvents
|
|
6870
6909
|
'dap-ds-timepicker': DapDSTimePickerProps & DapDSTimePickerEvents
|
|
6871
|
-
'dap-ds-toggle-button': DapDSToggleButtonProps & DapDSToggleButtonSlots
|
|
6872
6910
|
'dap-ds-toc': DapDSTOCProps & DapDSTOCEvents
|
|
6911
|
+
'dap-ds-toggle-button': DapDSToggleButtonProps & DapDSToggleButtonSlots
|
|
6873
6912
|
'dap-ds-tooltip': DapDSTooltipProps & DapDSTooltipSlots
|
|
6874
6913
|
'dap-ds-tray': DapDSTrayProps & DapDSTrayEvents & DapDSTraySlots
|
|
6875
6914
|
'dap-ds-typography': DapDSTypographyProps & DapDSTypographySlots
|
|
6876
6915
|
'dap-ds-form-label': DapDSFormLabelProps
|
|
6877
6916
|
'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
|
|
6878
6917
|
'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
|
|
6879
|
-
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6880
6918
|
'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
|
|
6881
6919
|
'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
|
|
6882
6920
|
'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
|
|
6883
6921
|
'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
|
|
6884
6922
|
'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
|
|
6885
6923
|
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6886
|
-
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6887
6924
|
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6888
|
-
'dap-ds-icon-arrow-
|
|
6925
|
+
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6889
6926
|
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6927
|
+
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6890
6928
|
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
6891
6929
|
'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
|
|
6892
6930
|
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
6893
|
-
'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
|
|
6894
6931
|
'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
|
|
6932
|
+
'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
|
|
6895
6933
|
'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
|
|
6896
6934
|
'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
|
|
6897
6935
|
'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
|
|
6898
6936
|
'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
|
|
6899
|
-
'dap-ds-icon-
|
|
6937
|
+
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6900
6938
|
'dap-ds-icon-calendar-line': BusinessCalendarLineProps
|
|
6939
|
+
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6901
6940
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
6902
6941
|
'dap-ds-icon-computer-line': DeviceComputerLineProps
|
|
6942
|
+
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6903
6943
|
'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
|
|
6904
6944
|
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6905
6945
|
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
@@ -6908,13 +6948,16 @@ declare global {
|
|
|
6908
6948
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6909
6949
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
6910
6950
|
'dap-ds-icon-folder-open-line': DocumentFolderOpenLineProps
|
|
6911
|
-
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6912
6951
|
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6913
6952
|
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6914
6953
|
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6954
|
+
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6955
|
+
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6956
|
+
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6957
|
+
'dap-ds-icon-user-line': UserUserLineProps
|
|
6915
6958
|
'dap-ds-icon-add-line': SystemAddLineProps
|
|
6916
|
-
'dap-ds-icon-alert-fill': SystemAlertFillProps
|
|
6917
6959
|
'dap-ds-icon-alert-line': SystemAlertLineProps
|
|
6960
|
+
'dap-ds-icon-alert-fill': SystemAlertFillProps
|
|
6918
6961
|
'dap-ds-icon-check-line': SystemCheckLineProps
|
|
6919
6962
|
'dap-ds-icon-check-line2': SystemCheckLine2Props
|
|
6920
6963
|
'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps
|
|
@@ -6960,10 +7003,6 @@ declare global {
|
|
|
6960
7003
|
'dap-ds-icon-upload-line': SystemUploadLineProps
|
|
6961
7004
|
'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
|
|
6962
7005
|
'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
|
|
6963
|
-
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
6964
|
-
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
6965
|
-
'dap-ds-icon-user-fill': UserUserFillProps
|
|
6966
|
-
'dap-ds-icon-user-line': UserUserLineProps
|
|
6967
7006
|
}
|
|
6968
7007
|
}
|
|
6969
7008
|
}
|