dap-design-system 0.55.2 → 0.55.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/file-input/file-input.component.d.ts +7 -0
- package/dist/{components-ChK1mSip.js → components-NHQTi00b.js} +110 -107
- package/dist/components-NHQTi00b.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +406 -404
- package/dist/manifest/vscode.html-custom-data.json +303 -298
- package/dist/manifest/web-types.json +755 -745
- package/dist/react/dap-ds-file-input/index.d.ts +1 -0
- package/dist/react/index.d.ts +13 -13
- package/dist/react-types.ts +13 -13
- package/dist/react.js +130 -130
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-ChK1mSip.js.map +0 -1
|
@@ -210,6 +210,16 @@ type DefineGenericCustomElement<
|
|
|
210
210
|
$props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
+
export interface DapDSAvatarGroupEvents {
|
|
214
|
+
/** Fired when the overflow indicator is clicked. */
|
|
215
|
+
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
export interface DapDSBannerEvents {
|
|
219
|
+
/** Event fired when the banner is closed. */
|
|
220
|
+
onDdsClose?: (event: CustomEvent) => void
|
|
221
|
+
}
|
|
222
|
+
|
|
213
223
|
export interface DapDSAccordionEvents {
|
|
214
224
|
/** Event fired when the accordion is opened. */
|
|
215
225
|
onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
@@ -224,31 +234,21 @@ export interface DapDSAvatarEvents {
|
|
|
224
234
|
onDdsError?: (event: CustomEvent) => void
|
|
225
235
|
}
|
|
226
236
|
|
|
227
|
-
export interface DapDSAvatarGroupEvents {
|
|
228
|
-
/** Fired when the overflow indicator is clicked. */
|
|
229
|
-
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
export interface DapDSBannerEvents {
|
|
233
|
-
/** Event fired when the banner is closed. */
|
|
234
|
-
onDdsClose?: (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
|
|
@@ -448,6 +448,13 @@ export interface DapDSNavigationMenuEvents {
|
|
|
448
448
|
onDdsNavigationItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
|
|
449
449
|
}
|
|
450
450
|
|
|
451
|
+
export interface DapDSOfficialWebsiteBannerEvents {
|
|
452
|
+
/** Event fired when the accordion is opened. */
|
|
453
|
+
onDdsOpened?: (event: CustomEvent) => void
|
|
454
|
+
/** Event fired when the accordion is closed. */
|
|
455
|
+
onDdsClosed?: (event: CustomEvent) => void
|
|
456
|
+
}
|
|
457
|
+
|
|
451
458
|
export interface DapDSNumberInputEvents {
|
|
452
459
|
/** Fired when the input value changes. */
|
|
453
460
|
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
@@ -461,13 +468,6 @@ export interface DapDSNumberInputEvents {
|
|
|
461
468
|
onDdsFocus?: (event: CustomEvent) => void
|
|
462
469
|
}
|
|
463
470
|
|
|
464
|
-
export interface DapDSOfficialWebsiteBannerEvents {
|
|
465
|
-
/** Event fired when the accordion is opened. */
|
|
466
|
-
onDdsOpened?: (event: CustomEvent) => void
|
|
467
|
-
/** Event fired when the accordion is closed. */
|
|
468
|
-
onDdsClosed?: (event: CustomEvent) => void
|
|
469
|
-
}
|
|
470
|
-
|
|
471
471
|
export interface DapDSOptionListEvents {
|
|
472
472
|
/** Fired when the escape key is pressed. */
|
|
473
473
|
onDdsCancel?: (event: CustomEvent) => void
|
|
@@ -655,27 +655,25 @@ export interface DapDSRadioGroupEvents {
|
|
|
655
655
|
onDdsFocus?: (event: CustomEvent) => void
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
-
export interface
|
|
659
|
-
/** The
|
|
658
|
+
export interface DapDSAvatarGroupSlots {
|
|
659
|
+
/** The avatars to display in the group. */
|
|
660
660
|
default?: () => any
|
|
661
|
-
/** The heading of the accordion. */
|
|
662
|
-
'heading'?: () => any
|
|
663
|
-
/** The icon when the accordion is opened. */
|
|
664
|
-
'icon-opened'?: () => any
|
|
665
|
-
/** The icon when the accordion is closed. */
|
|
666
|
-
'icon-closed'?: () => any
|
|
667
661
|
}
|
|
668
662
|
|
|
669
|
-
export interface
|
|
670
|
-
/** The
|
|
663
|
+
export interface DapDSBadgeSlots {
|
|
664
|
+
/** The content of the badge. */
|
|
665
|
+
default?: () => any
|
|
666
|
+
/** The icon of the badge. */
|
|
671
667
|
'icon'?: () => any
|
|
672
|
-
/** Custom fallback content when image fails to load. */
|
|
673
|
-
'fallback'?: () => any
|
|
674
668
|
}
|
|
675
669
|
|
|
676
|
-
export interface
|
|
677
|
-
/** The
|
|
670
|
+
export interface DapDSBannerSlots {
|
|
671
|
+
/** The content of the banner. */
|
|
678
672
|
default?: () => any
|
|
673
|
+
/** Actions of banner */
|
|
674
|
+
'actions'?: () => any
|
|
675
|
+
/** The icon of the banner. */
|
|
676
|
+
'icon'?: () => any
|
|
679
677
|
}
|
|
680
678
|
|
|
681
679
|
export interface DapDSBreadcrumbSlots {
|
|
@@ -685,20 +683,22 @@ export interface DapDSBreadcrumbSlots {
|
|
|
685
683
|
'separator'?: () => any
|
|
686
684
|
}
|
|
687
685
|
|
|
688
|
-
export interface
|
|
689
|
-
/** The content of the
|
|
686
|
+
export interface DapDSAccordionSlots {
|
|
687
|
+
/** The content of the accordion. */
|
|
690
688
|
default?: () => any
|
|
691
|
-
/** The
|
|
692
|
-
'
|
|
689
|
+
/** The heading of the accordion. */
|
|
690
|
+
'heading'?: () => any
|
|
691
|
+
/** The icon when the accordion is opened. */
|
|
692
|
+
'icon-opened'?: () => any
|
|
693
|
+
/** The icon when the accordion is closed. */
|
|
694
|
+
'icon-closed'?: () => any
|
|
693
695
|
}
|
|
694
696
|
|
|
695
|
-
export interface
|
|
696
|
-
/** The
|
|
697
|
-
default?: () => any
|
|
698
|
-
/** Actions of banner */
|
|
699
|
-
'actions'?: () => any
|
|
700
|
-
/** The icon of the banner. */
|
|
697
|
+
export interface DapDSAvatarSlots {
|
|
698
|
+
/** The icon to display when variant is 'icon'. */
|
|
701
699
|
'icon'?: () => any
|
|
700
|
+
/** Custom fallback content when image fails to load. */
|
|
701
|
+
'fallback'?: () => any
|
|
702
702
|
}
|
|
703
703
|
|
|
704
704
|
export interface DapDSAccordionGroupSlots {
|
|
@@ -706,16 +706,26 @@ export interface DapDSAccordionGroupSlots {
|
|
|
706
706
|
default?: () => any
|
|
707
707
|
}
|
|
708
708
|
|
|
709
|
+
export interface DapDSBreadcrumbItemSlots {
|
|
710
|
+
/** The content of the breadcrumb item. */
|
|
711
|
+
default?: () => any
|
|
712
|
+
/** The separator between breadcrumb items. Default is an arrow-right-s-line icon. */
|
|
713
|
+
'separator'?: () => any
|
|
714
|
+
}
|
|
715
|
+
|
|
709
716
|
export interface DapDSButtonSlots {
|
|
710
717
|
/** The content of the button. Can contain text, icons, or other elements. */
|
|
711
718
|
default?: () => any
|
|
712
719
|
}
|
|
713
720
|
|
|
714
|
-
export interface
|
|
715
|
-
/** The content of the
|
|
721
|
+
export interface DapDSCalendarCellSlots {
|
|
722
|
+
/** The content of the calendar cell. */
|
|
723
|
+
default?: () => any
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
export interface DapDSCalendarSlots {
|
|
727
|
+
/** The content of the calendar. */
|
|
716
728
|
default?: () => any
|
|
717
|
-
/** The separator between breadcrumb items. Default is an arrow-right-s-line icon. */
|
|
718
|
-
'separator'?: () => any
|
|
719
729
|
}
|
|
720
730
|
|
|
721
731
|
export interface DapDSCalloutSlots {
|
|
@@ -731,16 +741,6 @@ export interface DapDSCalloutSlots {
|
|
|
731
741
|
'close'?: () => any
|
|
732
742
|
}
|
|
733
743
|
|
|
734
|
-
export interface DapDSCalendarCellSlots {
|
|
735
|
-
/** The content of the calendar cell. */
|
|
736
|
-
default?: () => any
|
|
737
|
-
}
|
|
738
|
-
|
|
739
|
-
export interface DapDSCalendarSlots {
|
|
740
|
-
/** The content of the calendar. */
|
|
741
|
-
default?: () => any
|
|
742
|
-
}
|
|
743
|
-
|
|
744
744
|
export interface DapDSCardActionsSlots {
|
|
745
745
|
/** The content of the card actions. */
|
|
746
746
|
default?: () => any
|
|
@@ -924,11 +924,6 @@ export interface DapDSNotificationBadgeSlots {
|
|
|
924
924
|
default?: () => any
|
|
925
925
|
}
|
|
926
926
|
|
|
927
|
-
export interface DapDSNumberInputSlots {
|
|
928
|
-
/** The custom icon of the feedback. */
|
|
929
|
-
'feedback-icon'?: () => any
|
|
930
|
-
}
|
|
931
|
-
|
|
932
927
|
export interface DapDSOfficialWebsiteBannerSlots {
|
|
933
928
|
/** The content of the accordion. */
|
|
934
929
|
default?: () => any
|
|
@@ -940,6 +935,11 @@ export interface DapDSOfficialWebsiteBannerSlots {
|
|
|
940
935
|
'icon-closed'?: () => any
|
|
941
936
|
}
|
|
942
937
|
|
|
938
|
+
export interface DapDSNumberInputSlots {
|
|
939
|
+
/** The custom icon of the feedback. */
|
|
940
|
+
'feedback-icon'?: () => any
|
|
941
|
+
}
|
|
942
|
+
|
|
943
943
|
export interface DapDSOptionGroupSlots {
|
|
944
944
|
/** The option items in this group. */
|
|
945
945
|
default?: () => any
|
|
@@ -1134,6 +1134,60 @@ export type DapDSAnchorHeadingProps = {
|
|
|
1134
1134
|
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1135
1135
|
}
|
|
1136
1136
|
|
|
1137
|
+
export type DapDSAvatarGroupProps = {
|
|
1138
|
+
/** Layout type for the avatar group */
|
|
1139
|
+
layout?: DapDSAvatarGroup["layout"]
|
|
1140
|
+
/** Maximum number of avatars to show before showing overflow */
|
|
1141
|
+
max?: DapDSAvatarGroup["max"]
|
|
1142
|
+
/** Whether to show the total count in overflow indicator */
|
|
1143
|
+
"show-total"?: DapDSAvatarGroup["showTotal"]
|
|
1144
|
+
/** Interactive overflow indicator */
|
|
1145
|
+
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1146
|
+
/** Accessible label for the avatar group */
|
|
1147
|
+
label?: DapDSAvatarGroup["label"]
|
|
1148
|
+
/** Accessible label for the overflow indicator */
|
|
1149
|
+
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1150
|
+
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1151
|
+
size?: DapDSAvatarGroup["size"]
|
|
1152
|
+
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1153
|
+
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
export type DapDSBadgeProps = {
|
|
1157
|
+
/** The type of the badge */
|
|
1158
|
+
type?: DapDSBadge["type"]
|
|
1159
|
+
/** The icon of the badge, this is a name of a built in icon */
|
|
1160
|
+
icon?: DapDSBadge["icon"]
|
|
1161
|
+
/** Whether the badge represents dynamic content that should announce changes */
|
|
1162
|
+
live?: DapDSBadge["live"]
|
|
1163
|
+
/** The size of the badge. Default is `sm`. */
|
|
1164
|
+
size?: DapDSBadge["size"]
|
|
1165
|
+
/** Responsive size map (e.g. "md:lg"). */
|
|
1166
|
+
sizeMap?: DapDSBadge["sizeMap"]
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
export type DapDSBannerProps = {
|
|
1170
|
+
/** The variant of the banner */
|
|
1171
|
+
variant?: DapDSBanner["variant"]
|
|
1172
|
+
/** Whether the banner is closeable */
|
|
1173
|
+
closeable?: DapDSBanner["closeable"]
|
|
1174
|
+
/** State of the banner. If false banner is hidden */
|
|
1175
|
+
opened?: DapDSBanner["opened"]
|
|
1176
|
+
/** The aria-label for the close button */
|
|
1177
|
+
closeButtonLabel?: DapDSBanner["closeButtonLabel"]
|
|
1178
|
+
/** The icon of the banner, this is a name of a built icon icon */
|
|
1179
|
+
icon?: DapDSBanner["icon"]
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
export type DapDSBreadcrumbProps = {
|
|
1183
|
+
/** */
|
|
1184
|
+
variant?: DapDSBreadcrumb["variant"]
|
|
1185
|
+
/** Mobile version of the breadcrumb */
|
|
1186
|
+
mobile?: DapDSBreadcrumb["mobile"]
|
|
1187
|
+
/** The aria-labelledby of the breadcrumb */
|
|
1188
|
+
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1137
1191
|
export type DapDSAccordionProps = {
|
|
1138
1192
|
/** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
|
|
1139
1193
|
size?: DapDSAccordion["size"]
|
|
@@ -1186,60 +1240,6 @@ export type DapDSAvatarProps = {
|
|
|
1186
1240
|
sizeMap?: DapDSAvatar["sizeMap"]
|
|
1187
1241
|
}
|
|
1188
1242
|
|
|
1189
|
-
export type DapDSAvatarGroupProps = {
|
|
1190
|
-
/** Layout type for the avatar group */
|
|
1191
|
-
layout?: DapDSAvatarGroup["layout"]
|
|
1192
|
-
/** Maximum number of avatars to show before showing overflow */
|
|
1193
|
-
max?: DapDSAvatarGroup["max"]
|
|
1194
|
-
/** Whether to show the total count in overflow indicator */
|
|
1195
|
-
"show-total"?: DapDSAvatarGroup["showTotal"]
|
|
1196
|
-
/** Interactive overflow indicator */
|
|
1197
|
-
"interactive-overflow"?: DapDSAvatarGroup["interactiveOverflow"]
|
|
1198
|
-
/** Accessible label for the avatar group */
|
|
1199
|
-
label?: DapDSAvatarGroup["label"]
|
|
1200
|
-
/** Accessible label for the overflow indicator */
|
|
1201
|
-
"overflow-label"?: DapDSAvatarGroup["overflowLabel"]
|
|
1202
|
-
/** The size of avatars in the group. Default is `md`. See SizedMixin. */
|
|
1203
|
-
size?: DapDSAvatarGroup["size"]
|
|
1204
|
-
/** Responsive size map (e.g. "md:lg"); see SizedMixin. */
|
|
1205
|
-
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1206
|
-
}
|
|
1207
|
-
|
|
1208
|
-
export type DapDSBreadcrumbProps = {
|
|
1209
|
-
/** */
|
|
1210
|
-
variant?: DapDSBreadcrumb["variant"]
|
|
1211
|
-
/** Mobile version of the breadcrumb */
|
|
1212
|
-
mobile?: DapDSBreadcrumb["mobile"]
|
|
1213
|
-
/** The aria-labelledby of the breadcrumb */
|
|
1214
|
-
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
export type DapDSBadgeProps = {
|
|
1218
|
-
/** The type of the badge */
|
|
1219
|
-
type?: DapDSBadge["type"]
|
|
1220
|
-
/** The icon of the badge, this is a name of a built in icon */
|
|
1221
|
-
icon?: DapDSBadge["icon"]
|
|
1222
|
-
/** Whether the badge represents dynamic content that should announce changes */
|
|
1223
|
-
live?: DapDSBadge["live"]
|
|
1224
|
-
/** The size of the badge. Default is `sm`. */
|
|
1225
|
-
size?: DapDSBadge["size"]
|
|
1226
|
-
/** Responsive size map (e.g. "md:lg"). */
|
|
1227
|
-
sizeMap?: DapDSBadge["sizeMap"]
|
|
1228
|
-
}
|
|
1229
|
-
|
|
1230
|
-
export type DapDSBannerProps = {
|
|
1231
|
-
/** The variant of the banner */
|
|
1232
|
-
variant?: DapDSBanner["variant"]
|
|
1233
|
-
/** Whether the banner is closeable */
|
|
1234
|
-
closeable?: DapDSBanner["closeable"]
|
|
1235
|
-
/** State of the banner. If false banner is hidden */
|
|
1236
|
-
opened?: DapDSBanner["opened"]
|
|
1237
|
-
/** The aria-label for the close button */
|
|
1238
|
-
closeButtonLabel?: DapDSBanner["closeButtonLabel"]
|
|
1239
|
-
/** The icon of the banner, this is a name of a built icon icon */
|
|
1240
|
-
icon?: DapDSBanner["icon"]
|
|
1241
|
-
}
|
|
1242
|
-
|
|
1243
1243
|
export type DapDSAccordionGroupProps = {
|
|
1244
1244
|
/** Whether to close other accordions when one is opened. */
|
|
1245
1245
|
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
@@ -1247,6 +1247,19 @@ export type DapDSAccordionGroupProps = {
|
|
|
1247
1247
|
variant?: DapDSAccordionGroup["variant"]
|
|
1248
1248
|
}
|
|
1249
1249
|
|
|
1250
|
+
export type DapDSBreadcrumbItemProps = {
|
|
1251
|
+
/** The URL of the breadcrumb item. */
|
|
1252
|
+
href?: DapDSBreadcrumbItem["href"]
|
|
1253
|
+
/** The target of the breadcrumb item. */
|
|
1254
|
+
target?: DapDSBreadcrumbItem["target"]
|
|
1255
|
+
/** The rel of the breadcrumb item link. */
|
|
1256
|
+
rel?: DapDSBreadcrumbItem["rel"]
|
|
1257
|
+
/** Whether the breadcrumb item is disabled. */
|
|
1258
|
+
disabled?: DapDSBreadcrumbItem["disabled"]
|
|
1259
|
+
/** The variant of the breadcrumb item. */
|
|
1260
|
+
variant?: DapDSBreadcrumbItem["variant"]
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1250
1263
|
export type DapDSButtonProps = {
|
|
1251
1264
|
/** The visual style variant of the button */
|
|
1252
1265
|
variant?: DapDSButton["variant"]
|
|
@@ -1278,38 +1291,6 @@ export type DapDSButtonProps = {
|
|
|
1278
1291
|
sizeMap?: DapDSButton["sizeMap"]
|
|
1279
1292
|
}
|
|
1280
1293
|
|
|
1281
|
-
export type DapDSBreadcrumbItemProps = {
|
|
1282
|
-
/** The URL of the breadcrumb item. */
|
|
1283
|
-
href?: DapDSBreadcrumbItem["href"]
|
|
1284
|
-
/** The target of the breadcrumb item. */
|
|
1285
|
-
target?: DapDSBreadcrumbItem["target"]
|
|
1286
|
-
/** The rel of the breadcrumb item link. */
|
|
1287
|
-
rel?: DapDSBreadcrumbItem["rel"]
|
|
1288
|
-
/** Whether the breadcrumb item is disabled. */
|
|
1289
|
-
disabled?: DapDSBreadcrumbItem["disabled"]
|
|
1290
|
-
/** The variant of the breadcrumb item. */
|
|
1291
|
-
variant?: DapDSBreadcrumbItem["variant"]
|
|
1292
|
-
}
|
|
1293
|
-
|
|
1294
|
-
export type DapDSCalloutProps = {
|
|
1295
|
-
/** The variant of the callout */
|
|
1296
|
-
variant?: DapDSCallout["variant"]
|
|
1297
|
-
/** The alignment of the callout. Can be `vertical` or `horizontal`. */
|
|
1298
|
-
alignment?: DapDSCallout["alignment"]
|
|
1299
|
-
/** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
|
|
1300
|
-
shade?: DapDSCallout["shade"]
|
|
1301
|
-
/** If the callout has a border */
|
|
1302
|
-
noBorder?: DapDSCallout["noBorder"]
|
|
1303
|
-
/** If the callout has a close button */
|
|
1304
|
-
closeable?: DapDSCallout["closeable"]
|
|
1305
|
-
/** The header of the callout */
|
|
1306
|
-
title?: DapDSCallout["title"]
|
|
1307
|
-
/** The label of the close button */
|
|
1308
|
-
closeButtonLabel?: DapDSCallout["closeButtonLabel"]
|
|
1309
|
-
/** If the callout is opened */
|
|
1310
|
-
opened?: DapDSCallout["opened"]
|
|
1311
|
-
}
|
|
1312
|
-
|
|
1313
1294
|
export type DapDSCalendarCellProps = {
|
|
1314
1295
|
/** Whether the calendar cell is selected. */
|
|
1315
1296
|
selected?: DapDSCalendarCell["selected"]
|
|
@@ -1368,6 +1349,25 @@ export type DapDSCalendarProps = {
|
|
|
1368
1349
|
shouldHideAdjacentMonths?: DapDSCalendar["shouldHideAdjacentMonths"]
|
|
1369
1350
|
}
|
|
1370
1351
|
|
|
1352
|
+
export type DapDSCalloutProps = {
|
|
1353
|
+
/** The variant of the callout */
|
|
1354
|
+
variant?: DapDSCallout["variant"]
|
|
1355
|
+
/** The alignment of the callout. Can be `vertical` or `horizontal`. */
|
|
1356
|
+
alignment?: DapDSCallout["alignment"]
|
|
1357
|
+
/** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
|
|
1358
|
+
shade?: DapDSCallout["shade"]
|
|
1359
|
+
/** If the callout has a border */
|
|
1360
|
+
noBorder?: DapDSCallout["noBorder"]
|
|
1361
|
+
/** If the callout has a close button */
|
|
1362
|
+
closeable?: DapDSCallout["closeable"]
|
|
1363
|
+
/** The header of the callout */
|
|
1364
|
+
title?: DapDSCallout["title"]
|
|
1365
|
+
/** The label of the close button */
|
|
1366
|
+
closeButtonLabel?: DapDSCallout["closeButtonLabel"]
|
|
1367
|
+
/** If the callout is opened */
|
|
1368
|
+
opened?: DapDSCallout["opened"]
|
|
1369
|
+
}
|
|
1370
|
+
|
|
1371
1371
|
export type DapDSCardActionsProps = {
|
|
1372
1372
|
/** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
|
|
1373
1373
|
spacing?: DapDSCardActions["spacing"]
|
|
@@ -1704,6 +1704,15 @@ export type DapDSContentSwitcherProps = {
|
|
|
1704
1704
|
value?: DapDSContentSwitcher["value"]
|
|
1705
1705
|
}
|
|
1706
1706
|
|
|
1707
|
+
export type DapDSDAPBadgeProps = {
|
|
1708
|
+
/** The variant of the DÁP badge */
|
|
1709
|
+
variant?: DapDSDAPBadge["variant"]
|
|
1710
|
+
/** The size of the DÁP badge. Default is `sm`. */
|
|
1711
|
+
size?: DapDSDAPBadge["size"]
|
|
1712
|
+
/** Responsive size map (e.g. "md:lg"). */
|
|
1713
|
+
sizeMap?: DapDSDAPBadge["sizeMap"]
|
|
1714
|
+
}
|
|
1715
|
+
|
|
1707
1716
|
export type DapDSCopyBoxInputProps = {
|
|
1708
1717
|
/** The aria label of the copy button. */
|
|
1709
1718
|
copyButtonAriaLabel?: DapDSCopyBoxInput["copyButtonAriaLabel"]
|
|
@@ -1749,15 +1758,6 @@ export type DapDSCopyBoxInputProps = {
|
|
|
1749
1758
|
subtle?: DapDSCopyBoxInput["subtle"]
|
|
1750
1759
|
}
|
|
1751
1760
|
|
|
1752
|
-
export type DapDSDAPBadgeProps = {
|
|
1753
|
-
/** The variant of the DÁP badge */
|
|
1754
|
-
variant?: DapDSDAPBadge["variant"]
|
|
1755
|
-
/** The size of the DÁP badge. Default is `sm`. */
|
|
1756
|
-
size?: DapDSDAPBadge["size"]
|
|
1757
|
-
/** Responsive size map (e.g. "md:lg"). */
|
|
1758
|
-
sizeMap?: DapDSDAPBadge["sizeMap"]
|
|
1759
|
-
}
|
|
1760
|
-
|
|
1761
1761
|
export type DapDSDataTableProps<T> = {
|
|
1762
1762
|
/** Row key to use for row selection, this should be a unique key for each row */
|
|
1763
1763
|
rowKey?: DapDSDataTable<T>["rowKey"]
|
|
@@ -2083,6 +2083,8 @@ export type DapDSFileInputProps = {
|
|
|
2083
2083
|
showThumbnail?: DapDSFileInput["showThumbnail"]
|
|
2084
2084
|
/** Aria label for the dropzone. */
|
|
2085
2085
|
dropzoneAriaLabel?: DapDSFileInput["dropzoneAriaLabel"]
|
|
2086
|
+
/** Whether the dropzone is in the tab order and exposes button keyboard behavior (default: true). */
|
|
2087
|
+
dropzoneFocusable?: DapDSFileInput["dropzoneFocusable"]
|
|
2086
2088
|
/** Size of the thumbnail preview in the built-in file list */
|
|
2087
2089
|
thumbnailSize?: DapDSFileInput["thumbnailSize"]
|
|
2088
2090
|
/** The file list component to bind to */
|
|
@@ -2474,6 +2476,23 @@ export type DapDSNotificationBadgeProps = {
|
|
|
2474
2476
|
"force-circular"?: DapDSNotificationBadge["forceCircular"]
|
|
2475
2477
|
}
|
|
2476
2478
|
|
|
2479
|
+
export type DapDSOfficialWebsiteBannerProps = {
|
|
2480
|
+
/** The size of the official website banner. Default is `sm`. */
|
|
2481
|
+
size?: DapDSOfficialWebsiteBanner["size"]
|
|
2482
|
+
/** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
|
|
2483
|
+
heading?: DapDSOfficialWebsiteBanner["heading"]
|
|
2484
|
+
/** The heading level of the accordion. Default is `4`. */
|
|
2485
|
+
headingLevel?: DapDSOfficialWebsiteBanner["headingLevel"]
|
|
2486
|
+
/** Whether the accordion is opened. Default is `false`. */
|
|
2487
|
+
opened?: DapDSOfficialWebsiteBanner["opened"]
|
|
2488
|
+
/** The location of the icon. Default is `right`. */
|
|
2489
|
+
iconLocation?: DapDSOfficialWebsiteBanner["iconLocation"]
|
|
2490
|
+
/** The variant of the accordion. */
|
|
2491
|
+
variant?: DapDSOfficialWebsiteBanner["variant"]
|
|
2492
|
+
/** Whether the accordion is the last item. */
|
|
2493
|
+
lastItem?: DapDSOfficialWebsiteBanner["lastItem"]
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2477
2496
|
export type DapDSNumberInputProps = {
|
|
2478
2497
|
/** The thousand separator of the input. */
|
|
2479
2498
|
thousandSeparator?: DapDSNumberInput["thousandSeparator"]
|
|
@@ -2543,23 +2562,6 @@ export type DapDSNumberInputProps = {
|
|
|
2543
2562
|
disableEnter?: DapDSNumberInput["disableEnter"]
|
|
2544
2563
|
}
|
|
2545
2564
|
|
|
2546
|
-
export type DapDSOfficialWebsiteBannerProps = {
|
|
2547
|
-
/** The size of the official website banner. Default is `sm`. */
|
|
2548
|
-
size?: DapDSOfficialWebsiteBanner["size"]
|
|
2549
|
-
/** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
|
|
2550
|
-
heading?: DapDSOfficialWebsiteBanner["heading"]
|
|
2551
|
-
/** The heading level of the accordion. Default is `4`. */
|
|
2552
|
-
headingLevel?: DapDSOfficialWebsiteBanner["headingLevel"]
|
|
2553
|
-
/** Whether the accordion is opened. Default is `false`. */
|
|
2554
|
-
opened?: DapDSOfficialWebsiteBanner["opened"]
|
|
2555
|
-
/** The location of the icon. Default is `right`. */
|
|
2556
|
-
iconLocation?: DapDSOfficialWebsiteBanner["iconLocation"]
|
|
2557
|
-
/** The variant of the accordion. */
|
|
2558
|
-
variant?: DapDSOfficialWebsiteBanner["variant"]
|
|
2559
|
-
/** Whether the accordion is the last item. */
|
|
2560
|
-
lastItem?: DapDSOfficialWebsiteBanner["lastItem"]
|
|
2561
|
-
}
|
|
2562
|
-
|
|
2563
2565
|
export type DapDSOptionGroupProps = {
|
|
2564
2566
|
/** The label of the option group (displayed in native optgroup). */
|
|
2565
2567
|
label?: DapDSOptionGroup["label"]
|
|
@@ -2995,6 +2997,17 @@ export type DapDSSideNavProps = {
|
|
|
2995
2997
|
size?: DapDSSideNav["size"]
|
|
2996
2998
|
}
|
|
2997
2999
|
|
|
3000
|
+
export type DapDSSkipLinkProps = {
|
|
3001
|
+
/** The placement of the skip link. */
|
|
3002
|
+
placement?: DapDSSkipLink["placement"]
|
|
3003
|
+
/** The href of the skip link */
|
|
3004
|
+
href?: DapDSSkipLink["href"]
|
|
3005
|
+
/** The size of the skip link */
|
|
3006
|
+
size?: DapDSSkipLink["size"]
|
|
3007
|
+
/** Whether the skip link should have an underline */
|
|
3008
|
+
noUnderline?: DapDSSkipLink["noUnderline"]
|
|
3009
|
+
}
|
|
3010
|
+
|
|
2998
3011
|
export type DapDSSkeletonProps = {
|
|
2999
3012
|
/** The variant of the skeleton. */
|
|
3000
3013
|
variant?: DapDSSkeleton["variant"]
|
|
@@ -3011,17 +3024,6 @@ Should be a valid CSS keyframes string without the */
|
|
|
3011
3024
|
"custom-keyframes"?: DapDSSkeleton["customKeyframes"]
|
|
3012
3025
|
}
|
|
3013
3026
|
|
|
3014
|
-
export type DapDSSkipLinkProps = {
|
|
3015
|
-
/** The placement of the skip link. */
|
|
3016
|
-
placement?: DapDSSkipLink["placement"]
|
|
3017
|
-
/** The href of the skip link */
|
|
3018
|
-
href?: DapDSSkipLink["href"]
|
|
3019
|
-
/** The size of the skip link */
|
|
3020
|
-
size?: DapDSSkipLink["size"]
|
|
3021
|
-
/** Whether the skip link should have an underline */
|
|
3022
|
-
noUnderline?: DapDSSkipLink["noUnderline"]
|
|
3023
|
-
}
|
|
3024
|
-
|
|
3025
3027
|
export type DapDSSnackbarMessageProps = {
|
|
3026
3028
|
/** The actions of the snackbar item. */
|
|
3027
3029
|
actions?: DapDSSnackbarMessage["actions"]
|
|
@@ -3535,6 +3537,17 @@ export type DapDSRadioGroupProps = {
|
|
|
3535
3537
|
size?: DapDSRadioGroup["size"]
|
|
3536
3538
|
}
|
|
3537
3539
|
|
|
3540
|
+
export type BuildingsHome6LineProps = {
|
|
3541
|
+
/** (optional) The width and height in pixels */
|
|
3542
|
+
size?: BuildingsHome6Line["size"]
|
|
3543
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3544
|
+
selected?: BuildingsHome6Line["selected"]
|
|
3545
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3546
|
+
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3547
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3548
|
+
focusable?: BuildingsHome6Line["focusable"]
|
|
3549
|
+
}
|
|
3550
|
+
|
|
3538
3551
|
export type ArrowsArrowDownLineProps = {
|
|
3539
3552
|
/** (optional) The width and height in pixels */
|
|
3540
3553
|
size?: ArrowsArrowDownLine["size"]
|
|
@@ -3601,17 +3614,6 @@ export type ArrowsArrowLeftLineProps = {
|
|
|
3601
3614
|
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3602
3615
|
}
|
|
3603
3616
|
|
|
3604
|
-
export type ArrowsArrowLeftSLineProps = {
|
|
3605
|
-
/** (optional) The width and height in pixels */
|
|
3606
|
-
size?: ArrowsArrowLeftSLine["size"]
|
|
3607
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3608
|
-
selected?: ArrowsArrowLeftSLine["selected"]
|
|
3609
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3610
|
-
accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
|
|
3611
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3612
|
-
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3613
|
-
}
|
|
3614
|
-
|
|
3615
3617
|
export type ArrowsArrowLeftSFillProps = {
|
|
3616
3618
|
/** (optional) The width and height in pixels */
|
|
3617
3619
|
size?: ArrowsArrowLeftSFill["size"]
|
|
@@ -3623,15 +3625,15 @@ export type ArrowsArrowLeftSFillProps = {
|
|
|
3623
3625
|
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3624
3626
|
}
|
|
3625
3627
|
|
|
3626
|
-
export type
|
|
3628
|
+
export type ArrowsArrowLeftSLineProps = {
|
|
3627
3629
|
/** (optional) The width and height in pixels */
|
|
3628
|
-
size?:
|
|
3630
|
+
size?: ArrowsArrowLeftSLine["size"]
|
|
3629
3631
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3630
|
-
selected?:
|
|
3632
|
+
selected?: ArrowsArrowLeftSLine["selected"]
|
|
3631
3633
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3632
|
-
accessibilityTitle?:
|
|
3634
|
+
accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
|
|
3633
3635
|
/** (optional) If `true` the icon can receive focus */
|
|
3634
|
-
focusable?:
|
|
3636
|
+
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3635
3637
|
}
|
|
3636
3638
|
|
|
3637
3639
|
export type ArrowsArrowRightDownLineProps = {
|
|
@@ -3645,6 +3647,17 @@ export type ArrowsArrowRightDownLineProps = {
|
|
|
3645
3647
|
focusable?: ArrowsArrowRightDownLine["focusable"]
|
|
3646
3648
|
}
|
|
3647
3649
|
|
|
3650
|
+
export type ArrowsArrowLeftUpLineProps = {
|
|
3651
|
+
/** (optional) The width and height in pixels */
|
|
3652
|
+
size?: ArrowsArrowLeftUpLine["size"]
|
|
3653
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3654
|
+
selected?: ArrowsArrowLeftUpLine["selected"]
|
|
3655
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3656
|
+
accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
|
|
3657
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3658
|
+
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3648
3661
|
export type ArrowsArrowRightLLineProps = {
|
|
3649
3662
|
/** (optional) The width and height in pixels */
|
|
3650
3663
|
size?: ArrowsArrowRightLLine["size"]
|
|
@@ -3667,17 +3680,6 @@ export type ArrowsArrowRightLineProps = {
|
|
|
3667
3680
|
focusable?: ArrowsArrowRightLine["focusable"]
|
|
3668
3681
|
}
|
|
3669
3682
|
|
|
3670
|
-
export type ArrowsArrowRightSFillProps = {
|
|
3671
|
-
/** (optional) The width and height in pixels */
|
|
3672
|
-
size?: ArrowsArrowRightSFill["size"]
|
|
3673
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3674
|
-
selected?: ArrowsArrowRightSFill["selected"]
|
|
3675
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3676
|
-
accessibilityTitle?: ArrowsArrowRightSFill["accessibilityTitle"]
|
|
3677
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3678
|
-
focusable?: ArrowsArrowRightSFill["focusable"]
|
|
3679
|
-
}
|
|
3680
|
-
|
|
3681
3683
|
export type ArrowsArrowRightSLineProps = {
|
|
3682
3684
|
/** (optional) The width and height in pixels */
|
|
3683
3685
|
size?: ArrowsArrowRightSLine["size"]
|
|
@@ -3700,6 +3702,17 @@ export type ArrowsArrowRightUpLineProps = {
|
|
|
3700
3702
|
focusable?: ArrowsArrowRightUpLine["focusable"]
|
|
3701
3703
|
}
|
|
3702
3704
|
|
|
3705
|
+
export type ArrowsArrowRightSFillProps = {
|
|
3706
|
+
/** (optional) The width and height in pixels */
|
|
3707
|
+
size?: ArrowsArrowRightSFill["size"]
|
|
3708
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3709
|
+
selected?: ArrowsArrowRightSFill["selected"]
|
|
3710
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3711
|
+
accessibilityTitle?: ArrowsArrowRightSFill["accessibilityTitle"]
|
|
3712
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3713
|
+
focusable?: ArrowsArrowRightSFill["focusable"]
|
|
3714
|
+
}
|
|
3715
|
+
|
|
3703
3716
|
export type ArrowsArrowUpLineProps = {
|
|
3704
3717
|
/** (optional) The width and height in pixels */
|
|
3705
3718
|
size?: ArrowsArrowUpLine["size"]
|
|
@@ -3744,17 +3757,6 @@ export type ArrowsExpandUpDownFillProps = {
|
|
|
3744
3757
|
focusable?: ArrowsExpandUpDownFill["focusable"]
|
|
3745
3758
|
}
|
|
3746
3759
|
|
|
3747
|
-
export type BuildingsHome6LineProps = {
|
|
3748
|
-
/** (optional) The width and height in pixels */
|
|
3749
|
-
size?: BuildingsHome6Line["size"]
|
|
3750
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3751
|
-
selected?: BuildingsHome6Line["selected"]
|
|
3752
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3753
|
-
accessibilityTitle?: BuildingsHome6Line["accessibilityTitle"]
|
|
3754
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3755
|
-
focusable?: BuildingsHome6Line["focusable"]
|
|
3756
|
-
}
|
|
3757
|
-
|
|
3758
3760
|
export type BusinessCalendarLineProps = {
|
|
3759
3761
|
/** (optional) The width and height in pixels */
|
|
3760
3762
|
size?: BusinessCalendarLine["size"]
|
|
@@ -4327,26 +4329,26 @@ export type SystemMenuLineSProps = {
|
|
|
4327
4329
|
focusable?: SystemMenuLineS["focusable"]
|
|
4328
4330
|
}
|
|
4329
4331
|
|
|
4330
|
-
export type
|
|
4332
|
+
export type SystemMoreLineProps = {
|
|
4331
4333
|
/** (optional) The width and height in pixels */
|
|
4332
|
-
size?:
|
|
4334
|
+
size?: SystemMoreLine["size"]
|
|
4333
4335
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4334
|
-
selected?:
|
|
4336
|
+
selected?: SystemMoreLine["selected"]
|
|
4335
4337
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4336
|
-
accessibilityTitle?:
|
|
4338
|
+
accessibilityTitle?: SystemMoreLine["accessibilityTitle"]
|
|
4337
4339
|
/** (optional) If `true` the icon can receive focus */
|
|
4338
|
-
focusable?:
|
|
4340
|
+
focusable?: SystemMoreLine["focusable"]
|
|
4339
4341
|
}
|
|
4340
4342
|
|
|
4341
|
-
export type
|
|
4343
|
+
export type SystemMore2LineProps = {
|
|
4342
4344
|
/** (optional) The width and height in pixels */
|
|
4343
|
-
size?:
|
|
4345
|
+
size?: SystemMore2Line["size"]
|
|
4344
4346
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4345
|
-
selected?:
|
|
4347
|
+
selected?: SystemMore2Line["selected"]
|
|
4346
4348
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4347
|
-
accessibilityTitle?:
|
|
4349
|
+
accessibilityTitle?: SystemMore2Line["accessibilityTitle"]
|
|
4348
4350
|
/** (optional) If `true` the icon can receive focus */
|
|
4349
|
-
focusable?:
|
|
4351
|
+
focusable?: SystemMore2Line["focusable"]
|
|
4350
4352
|
}
|
|
4351
4353
|
|
|
4352
4354
|
export type SystemSearchLineProps = {
|
|
@@ -4517,66 +4519,58 @@ declare module 'vue' {
|
|
|
4517
4519
|
*/
|
|
4518
4520
|
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4519
4521
|
/**
|
|
4520
|
-
*
|
|
4522
|
+
* Avatar group component displays multiple avatars in an organized layout with overflow management.
|
|
4521
4523
|
*
|
|
4522
4524
|
* ### Events:
|
|
4523
|
-
* - **dds-
|
|
4524
|
-
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4525
|
+
* - **dds-overflow-click** - Fired when the overflow indicator is clicked.
|
|
4525
4526
|
*
|
|
4526
4527
|
* ### Slots:
|
|
4527
|
-
* - **default** - The
|
|
4528
|
-
* - **heading** - The heading of the accordion.
|
|
4529
|
-
* - **icon-opened** - The icon when the accordion is opened.
|
|
4530
|
-
* - **icon-closed** - The icon when the accordion is closed.
|
|
4528
|
+
* - **default** - The avatars to display in the group.
|
|
4531
4529
|
*
|
|
4532
4530
|
* ### CSS Parts:
|
|
4533
|
-
* - **base** - The main
|
|
4534
|
-
* - **
|
|
4535
|
-
* - **
|
|
4536
|
-
* - **content** - The content of the accordion.
|
|
4537
|
-
* - **content-container** - The container of the accordion content.
|
|
4538
|
-
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4539
|
-
* - **open-icon** - The icon when the accordion is opened.
|
|
4540
|
-
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4541
|
-
* - **close-icon** - The icon when the accordion is closed.
|
|
4542
|
-
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4531
|
+
* - **base** - The main container of the avatar group.
|
|
4532
|
+
* - **avatars** - The container for the visible avatars.
|
|
4533
|
+
* - **overflow** - The overflow indicator element.
|
|
4543
4534
|
*/
|
|
4544
|
-
'dap-ds-
|
|
4535
|
+
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4545
4536
|
/**
|
|
4546
|
-
*
|
|
4547
|
-
*
|
|
4548
|
-
* ### Events:
|
|
4549
|
-
* - **dds-load** - Fired when the image loads successfully.
|
|
4550
|
-
* - **dds-error** - Fired when the image fails to load.
|
|
4537
|
+
* A badge is a small status descriptor for UI elements.
|
|
4551
4538
|
*
|
|
4552
4539
|
* ### Slots:
|
|
4553
|
-
* - **
|
|
4554
|
-
* - **
|
|
4540
|
+
* - **default** - The content of the badge.
|
|
4541
|
+
* - **icon** - The icon of the badge.
|
|
4555
4542
|
*
|
|
4556
4543
|
* ### CSS Parts:
|
|
4557
|
-
* - **base** - The main
|
|
4558
|
-
* - **
|
|
4559
|
-
* - **
|
|
4560
|
-
* - **icon** - The icon
|
|
4561
|
-
* - **fallback** - The fallback content container.
|
|
4562
|
-
* - **loading** - The loading indicator.
|
|
4544
|
+
* - **base** - The main container of the badge.
|
|
4545
|
+
* - **icon** - The icon of the badge.
|
|
4546
|
+
* - **content** - The content of the badge.
|
|
4547
|
+
* - **icon-base** - The base of the icon.
|
|
4563
4548
|
*/
|
|
4564
|
-
'dap-ds-
|
|
4549
|
+
'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
|
|
4565
4550
|
/**
|
|
4566
|
-
*
|
|
4551
|
+
* A banner is a message displayed at the top of the page to provide important information to the user.
|
|
4567
4552
|
*
|
|
4568
4553
|
* ### Events:
|
|
4569
|
-
* - **dds-
|
|
4554
|
+
* - **dds-close** - Event fired when the banner is closed.
|
|
4570
4555
|
*
|
|
4571
4556
|
* ### Slots:
|
|
4572
|
-
* - **default** - The
|
|
4557
|
+
* - **default** - The content of the banner.
|
|
4558
|
+
* - **actions** - Actions of banner
|
|
4559
|
+
* - **icon** - The icon of the banner.
|
|
4573
4560
|
*
|
|
4574
4561
|
* ### CSS Parts:
|
|
4575
|
-
* - **base** - The main container
|
|
4576
|
-
* - **
|
|
4577
|
-
* - **
|
|
4562
|
+
* - **base** - The main banner container.
|
|
4563
|
+
* - **card-base** - The wrapper card container.
|
|
4564
|
+
* - **icon** - The icon of the banner.
|
|
4565
|
+
* - **icon-element** - The icon element of the banner.
|
|
4566
|
+
* - **icon-base** - The base of the icon.
|
|
4567
|
+
* - **closebutton** - The close button of the banner.
|
|
4568
|
+
* - **close-icon-element** - The icon element of the close button.
|
|
4569
|
+
* - **close-icon-base** - The base of the close button icon.
|
|
4570
|
+
* - **actions** - The actions of the banner.
|
|
4571
|
+
* - **title** - The title of the banner.
|
|
4578
4572
|
*/
|
|
4579
|
-
'dap-ds-
|
|
4573
|
+
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4580
4574
|
/**
|
|
4581
4575
|
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4582
4576
|
*
|
|
@@ -4590,43 +4584,51 @@ declare module 'vue' {
|
|
|
4590
4584
|
*/
|
|
4591
4585
|
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4592
4586
|
/**
|
|
4593
|
-
*
|
|
4587
|
+
* An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
|
|
4588
|
+
*
|
|
4589
|
+
* ### Events:
|
|
4590
|
+
* - **dds-opened** - Event fired when the accordion is opened.
|
|
4591
|
+
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4594
4592
|
*
|
|
4595
4593
|
* ### Slots:
|
|
4596
|
-
* - **default** - The content of the
|
|
4597
|
-
* - **
|
|
4594
|
+
* - **default** - The content of the accordion.
|
|
4595
|
+
* - **heading** - The heading of the accordion.
|
|
4596
|
+
* - **icon-opened** - The icon when the accordion is opened.
|
|
4597
|
+
* - **icon-closed** - The icon when the accordion is closed.
|
|
4598
4598
|
*
|
|
4599
4599
|
* ### CSS Parts:
|
|
4600
|
-
* - **base** - The main container
|
|
4601
|
-
* - **
|
|
4602
|
-
* - **
|
|
4603
|
-
* - **
|
|
4600
|
+
* - **base** - The main accordion container.
|
|
4601
|
+
* - **heading** - The heading of the accordion.
|
|
4602
|
+
* - **button** - The button of the accordion.
|
|
4603
|
+
* - **content** - The content of the accordion.
|
|
4604
|
+
* - **content-container** - The container of the accordion content.
|
|
4605
|
+
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4606
|
+
* - **open-icon** - The icon when the accordion is opened.
|
|
4607
|
+
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4608
|
+
* - **close-icon** - The icon when the accordion is closed.
|
|
4609
|
+
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4604
4610
|
*/
|
|
4605
|
-
'dap-ds-
|
|
4611
|
+
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4606
4612
|
/**
|
|
4607
|
-
*
|
|
4613
|
+
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4608
4614
|
*
|
|
4609
4615
|
* ### Events:
|
|
4610
|
-
* - **dds-
|
|
4616
|
+
* - **dds-load** - Fired when the image loads successfully.
|
|
4617
|
+
* - **dds-error** - Fired when the image fails to load.
|
|
4611
4618
|
*
|
|
4612
4619
|
* ### Slots:
|
|
4613
|
-
* - **
|
|
4614
|
-
* - **
|
|
4615
|
-
* - **icon** - The icon of the banner.
|
|
4620
|
+
* - **icon** - The icon to display when variant is 'icon'.
|
|
4621
|
+
* - **fallback** - Custom fallback content when image fails to load.
|
|
4616
4622
|
*
|
|
4617
4623
|
* ### CSS Parts:
|
|
4618
|
-
* - **base** - The main
|
|
4619
|
-
* - **
|
|
4620
|
-
* - **
|
|
4621
|
-
* - **icon
|
|
4622
|
-
* - **
|
|
4623
|
-
* - **
|
|
4624
|
-
* - **close-icon-element** - The icon element of the close button.
|
|
4625
|
-
* - **close-icon-base** - The base of the close button icon.
|
|
4626
|
-
* - **actions** - The actions of the banner.
|
|
4627
|
-
* - **title** - The title of the banner.
|
|
4624
|
+
* - **base** - The main avatar container.
|
|
4625
|
+
* - **img** - The avatar image.
|
|
4626
|
+
* - **initials** - The initials container.
|
|
4627
|
+
* - **icon** - The icon container.
|
|
4628
|
+
* - **fallback** - The fallback content container.
|
|
4629
|
+
* - **loading** - The loading indicator.
|
|
4628
4630
|
*/
|
|
4629
|
-
'dap-ds-
|
|
4631
|
+
'dap-ds-avatar': DefineCustomElement<DapDSAvatar, DapDSAvatarProps, DapDSAvatarEvents>
|
|
4630
4632
|
/**
|
|
4631
4633
|
* An accordion group is a collection of accordion components.
|
|
4632
4634
|
*
|
|
@@ -4637,21 +4639,6 @@ declare module 'vue' {
|
|
|
4637
4639
|
* - **base** - The main accordion group container.
|
|
4638
4640
|
*/
|
|
4639
4641
|
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4640
|
-
/**
|
|
4641
|
-
* A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
|
|
4642
|
-
*
|
|
4643
|
-
* ### Events:
|
|
4644
|
-
* - **dds-loading-timeout** - Emitted when the loading timeout is reached
|
|
4645
|
-
*
|
|
4646
|
-
* ### Slots:
|
|
4647
|
-
* - **default** - The content of the button. Can contain text, icons, or other elements.
|
|
4648
|
-
*
|
|
4649
|
-
* ### CSS Parts:
|
|
4650
|
-
* - **base** - The main button container.
|
|
4651
|
-
* - **high-contrast** - The high contrast part of the button.
|
|
4652
|
-
* - **content** - The content wrapper inside the button.
|
|
4653
|
-
*/
|
|
4654
|
-
'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
|
|
4655
4642
|
/**
|
|
4656
4643
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4657
4644
|
*
|
|
@@ -4668,29 +4655,20 @@ declare module 'vue' {
|
|
|
4668
4655
|
*/
|
|
4669
4656
|
'dap-ds-breadcrumb-item': DefineCustomElement<DapDSBreadcrumbItem, DapDSBreadcrumbItemProps, {}>
|
|
4670
4657
|
/**
|
|
4671
|
-
*
|
|
4658
|
+
* A button is a clickable element that can be used to trigger an action, submit forms, or navigate to other pages.
|
|
4672
4659
|
*
|
|
4673
4660
|
* ### Events:
|
|
4674
|
-
* - **dds-
|
|
4661
|
+
* - **dds-loading-timeout** - Emitted when the loading timeout is reached
|
|
4675
4662
|
*
|
|
4676
4663
|
* ### Slots:
|
|
4677
|
-
* - **default** - The content of the
|
|
4678
|
-
* - **title** - The title of the callout.
|
|
4679
|
-
* - **icon** - The icon of the callout.
|
|
4680
|
-
* - **actions** - The actions of the callout.
|
|
4681
|
-
* - **close** - The close button of the callout.
|
|
4664
|
+
* - **default** - The content of the button. Can contain text, icons, or other elements.
|
|
4682
4665
|
*
|
|
4683
4666
|
* ### CSS Parts:
|
|
4684
|
-
* - **base** - The main
|
|
4685
|
-
* - **
|
|
4686
|
-
* - **
|
|
4687
|
-
* - **icon** - The icon of the callout.
|
|
4688
|
-
* - **title** - The title of the callout.
|
|
4689
|
-
* - **description** - The description of the callout.
|
|
4690
|
-
* - **actions** - The actions of the callout.
|
|
4691
|
-
* - **close** - The close button of the callout.
|
|
4667
|
+
* - **base** - The main button container.
|
|
4668
|
+
* - **high-contrast** - The high contrast part of the button.
|
|
4669
|
+
* - **content** - The content wrapper inside the button.
|
|
4692
4670
|
*/
|
|
4693
|
-
'dap-ds-
|
|
4671
|
+
'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
|
|
4694
4672
|
/**
|
|
4695
4673
|
* Calendar cell represents a single cell in the calendar.
|
|
4696
4674
|
*
|
|
@@ -4724,6 +4702,30 @@ declare module 'vue' {
|
|
|
4724
4702
|
* - **calendar-header-month-select** - The month select of the calendar header.
|
|
4725
4703
|
*/
|
|
4726
4704
|
'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
|
|
4705
|
+
/**
|
|
4706
|
+
*
|
|
4707
|
+
*
|
|
4708
|
+
* ### Events:
|
|
4709
|
+
* - **dds-close** - Fired when the close button is clicked.
|
|
4710
|
+
*
|
|
4711
|
+
* ### Slots:
|
|
4712
|
+
* - **default** - The content of the callout.
|
|
4713
|
+
* - **title** - The title of the callout.
|
|
4714
|
+
* - **icon** - The icon of the callout.
|
|
4715
|
+
* - **actions** - The actions of the callout.
|
|
4716
|
+
* - **close** - The close button of the callout.
|
|
4717
|
+
*
|
|
4718
|
+
* ### CSS Parts:
|
|
4719
|
+
* - **base** - The main callout container.
|
|
4720
|
+
* - **content** - The content of the callout.
|
|
4721
|
+
* - **card-content** - The content of the card.
|
|
4722
|
+
* - **icon** - The icon of the callout.
|
|
4723
|
+
* - **title** - The title of the callout.
|
|
4724
|
+
* - **description** - The description of the callout.
|
|
4725
|
+
* - **actions** - The actions of the callout.
|
|
4726
|
+
* - **close** - The close button of the callout.
|
|
4727
|
+
*/
|
|
4728
|
+
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4727
4729
|
/**
|
|
4728
4730
|
* A card actions is a container for actions in a card.
|
|
4729
4731
|
*
|
|
@@ -4944,6 +4946,18 @@ declare module 'vue' {
|
|
|
4944
4946
|
* - **base** - The main content switcher container.
|
|
4945
4947
|
*/
|
|
4946
4948
|
'dap-ds-content-switcher': DefineCustomElement<DapDSContentSwitcher, DapDSContentSwitcherProps, DapDSContentSwitcherEvents>
|
|
4949
|
+
/**
|
|
4950
|
+
* A DÁP badge is a brand element showing the use of this system design library.
|
|
4951
|
+
*
|
|
4952
|
+
* ### Slots:
|
|
4953
|
+
* - **default** - Description of badge *
|
|
4954
|
+
*
|
|
4955
|
+
* ### CSS Parts:
|
|
4956
|
+
* - **base** - Main badge container
|
|
4957
|
+
* - **icon** - Badge icon
|
|
4958
|
+
* - **text** - Badge text
|
|
4959
|
+
*/
|
|
4960
|
+
'dap-ds-dap-badge': DefineCustomElement<DapDSDAPBadge, DapDSDAPBadgeProps, {}>
|
|
4947
4961
|
/**
|
|
4948
4962
|
* A copybox input is a field for copying an input value.
|
|
4949
4963
|
*
|
|
@@ -4966,18 +4980,6 @@ declare module 'vue' {
|
|
|
4966
4980
|
* - **copy-icon-base** - The base of the copy icon.
|
|
4967
4981
|
*/
|
|
4968
4982
|
'dap-ds-copybox-input': DefineCustomElement<DapDSCopyBoxInput, DapDSCopyBoxInputProps, DapDSCopyBoxInputEvents>
|
|
4969
|
-
/**
|
|
4970
|
-
* A DÁP badge is a brand element showing the use of this system design library.
|
|
4971
|
-
*
|
|
4972
|
-
* ### Slots:
|
|
4973
|
-
* - **default** - Description of badge *
|
|
4974
|
-
*
|
|
4975
|
-
* ### CSS Parts:
|
|
4976
|
-
* - **base** - Main badge container
|
|
4977
|
-
* - **icon** - Badge icon
|
|
4978
|
-
* - **text** - Badge text
|
|
4979
|
-
*/
|
|
4980
|
-
'dap-ds-dap-badge': DefineCustomElement<DapDSDAPBadge, DapDSDAPBadgeProps, {}>
|
|
4981
4983
|
/**
|
|
4982
4984
|
* A data table is a component that displays data in a tabular format.
|
|
4983
4985
|
*
|
|
@@ -5339,6 +5341,32 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5339
5341
|
* - **noty** - The notification badge container.
|
|
5340
5342
|
*/
|
|
5341
5343
|
'dap-ds-notification-badge': DefineCustomElement<DapDSNotificationBadge, DapDSNotificationBadgeProps, {}>
|
|
5344
|
+
/**
|
|
5345
|
+
* An official website banner is a banner that displays that the website is an official website.
|
|
5346
|
+
*
|
|
5347
|
+
* ### Events:
|
|
5348
|
+
* - **dds-opened** - Event fired when the accordion is opened.
|
|
5349
|
+
* - **dds-closed** - Event fired when the accordion is closed.
|
|
5350
|
+
*
|
|
5351
|
+
* ### Slots:
|
|
5352
|
+
* - **default** - The content of the accordion.
|
|
5353
|
+
* - **heading** - The heading of the accordion.
|
|
5354
|
+
* - **icon-opened** - The icon when the accordion is opened.
|
|
5355
|
+
* - **icon-closed** - The icon when the accordion is closed.
|
|
5356
|
+
*
|
|
5357
|
+
* ### CSS Parts:
|
|
5358
|
+
* - **base** - The main accordion container.
|
|
5359
|
+
* - **heading** - The heading of the accordion.
|
|
5360
|
+
* - **button** - The button of the accordion.
|
|
5361
|
+
* - **content** - The content of the accordion.
|
|
5362
|
+
* - **content-container** - The container of the accordion content.
|
|
5363
|
+
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
5364
|
+
* - **open-icon** - The icon when the accordion is opened.
|
|
5365
|
+
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
5366
|
+
* - **close-icon** - The icon when the accordion is closed.
|
|
5367
|
+
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
5368
|
+
*/
|
|
5369
|
+
'dap-ds-official-website-banner': DefineCustomElement<DapDSOfficialWebsiteBanner, DapDSOfficialWebsiteBannerProps, DapDSOfficialWebsiteBannerEvents>
|
|
5342
5370
|
/**
|
|
5343
5371
|
* A number input component.
|
|
5344
5372
|
*
|
|
@@ -5371,32 +5399,6 @@ Uses semantic HTML (`<nav>`) and proper navigation ARIA attributes.
|
|
|
5371
5399
|
* - **increment-button-content** - The content of the increment button.
|
|
5372
5400
|
*/
|
|
5373
5401
|
'dap-ds-number-input': DefineCustomElement<DapDSNumberInput, DapDSNumberInputProps, DapDSNumberInputEvents>
|
|
5374
|
-
/**
|
|
5375
|
-
* An official website banner is a banner that displays that the website is an official website.
|
|
5376
|
-
*
|
|
5377
|
-
* ### Events:
|
|
5378
|
-
* - **dds-opened** - Event fired when the accordion is opened.
|
|
5379
|
-
* - **dds-closed** - Event fired when the accordion is closed.
|
|
5380
|
-
*
|
|
5381
|
-
* ### Slots:
|
|
5382
|
-
* - **default** - The content of the accordion.
|
|
5383
|
-
* - **heading** - The heading of the accordion.
|
|
5384
|
-
* - **icon-opened** - The icon when the accordion is opened.
|
|
5385
|
-
* - **icon-closed** - The icon when the accordion is closed.
|
|
5386
|
-
*
|
|
5387
|
-
* ### CSS Parts:
|
|
5388
|
-
* - **base** - The main accordion container.
|
|
5389
|
-
* - **heading** - The heading of the accordion.
|
|
5390
|
-
* - **button** - The button of the accordion.
|
|
5391
|
-
* - **content** - The content of the accordion.
|
|
5392
|
-
* - **content-container** - The container of the accordion content.
|
|
5393
|
-
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
5394
|
-
* - **open-icon** - The icon when the accordion is opened.
|
|
5395
|
-
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
5396
|
-
* - **close-icon** - The icon when the accordion is closed.
|
|
5397
|
-
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
5398
|
-
*/
|
|
5399
|
-
'dap-ds-official-website-banner': DefineCustomElement<DapDSOfficialWebsiteBanner, DapDSOfficialWebsiteBannerProps, DapDSOfficialWebsiteBannerEvents>
|
|
5400
5402
|
/**
|
|
5401
5403
|
* An option group is a container for grouping related option items.
|
|
5402
5404
|
Used with dap-ds-select to create grouped options that render as native optgroup elements.
|
|
@@ -5702,13 +5704,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5702
5704
|
* - **menu** - The menu of the side navigation.
|
|
5703
5705
|
*/
|
|
5704
5706
|
'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
|
|
5705
|
-
/**
|
|
5706
|
-
* A skeleton loader component for displaying placeholder content while loading.
|
|
5707
|
-
*
|
|
5708
|
-
* ### CSS Parts:
|
|
5709
|
-
* - **base** - The main skeleton container.
|
|
5710
|
-
*/
|
|
5711
|
-
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5712
5707
|
/**
|
|
5713
5708
|
* A skip link is a link that allows keyboard users to skip to the main content of a page.
|
|
5714
5709
|
*
|
|
@@ -5721,6 +5716,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5721
5716
|
* - **high-contrast** - The high contrast outline container.
|
|
5722
5717
|
*/
|
|
5723
5718
|
'dap-ds-skip-link': DefineCustomElement<DapDSSkipLink, DapDSSkipLinkProps, {}>
|
|
5719
|
+
/**
|
|
5720
|
+
* A skeleton loader component for displaying placeholder content while loading.
|
|
5721
|
+
*
|
|
5722
|
+
* ### CSS Parts:
|
|
5723
|
+
* - **base** - The main skeleton container.
|
|
5724
|
+
*/
|
|
5725
|
+
'dap-ds-skeleton': DefineCustomElement<DapDSSkeleton, DapDSSkeletonProps, {}>
|
|
5724
5726
|
/**
|
|
5725
5727
|
* The Snackbar component shows a sliding message to the user.
|
|
5726
5728
|
*
|
|
@@ -6056,6 +6058,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6056
6058
|
* - **container** - The container of the radio group items.
|
|
6057
6059
|
*/
|
|
6058
6060
|
'dap-ds-radio-group': DefineCustomElement<DapDSRadioGroup, DapDSRadioGroupProps, DapDSRadioGroupEvents>
|
|
6061
|
+
/**
|
|
6062
|
+
* An icon
|
|
6063
|
+
*
|
|
6064
|
+
* ### CSS Parts:
|
|
6065
|
+
* - **base** - The main icon container.
|
|
6066
|
+
*/
|
|
6067
|
+
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6059
6068
|
/**
|
|
6060
6069
|
* An icon
|
|
6061
6070
|
*
|
|
@@ -6104,28 +6113,28 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6104
6113
|
* ### CSS Parts:
|
|
6105
6114
|
* - **base** - The main icon container.
|
|
6106
6115
|
*/
|
|
6107
|
-
'dap-ds-icon-arrow-left-s-
|
|
6116
|
+
'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
|
|
6108
6117
|
/**
|
|
6109
6118
|
* An icon
|
|
6110
6119
|
*
|
|
6111
6120
|
* ### CSS Parts:
|
|
6112
6121
|
* - **base** - The main icon container.
|
|
6113
6122
|
*/
|
|
6114
|
-
'dap-ds-icon-arrow-left-s-
|
|
6123
|
+
'dap-ds-icon-arrow-left-s-line': DefineCustomElement<ArrowsArrowLeftSLine, ArrowsArrowLeftSLineProps, {}>
|
|
6115
6124
|
/**
|
|
6116
6125
|
* An icon
|
|
6117
6126
|
*
|
|
6118
6127
|
* ### CSS Parts:
|
|
6119
6128
|
* - **base** - The main icon container.
|
|
6120
6129
|
*/
|
|
6121
|
-
'dap-ds-icon-arrow-
|
|
6130
|
+
'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
|
|
6122
6131
|
/**
|
|
6123
6132
|
* An icon
|
|
6124
6133
|
*
|
|
6125
6134
|
* ### CSS Parts:
|
|
6126
6135
|
* - **base** - The main icon container.
|
|
6127
6136
|
*/
|
|
6128
|
-
'dap-ds-icon-arrow-
|
|
6137
|
+
'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
|
|
6129
6138
|
/**
|
|
6130
6139
|
* An icon
|
|
6131
6140
|
*
|
|
@@ -6146,21 +6155,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6146
6155
|
* ### CSS Parts:
|
|
6147
6156
|
* - **base** - The main icon container.
|
|
6148
6157
|
*/
|
|
6149
|
-
'dap-ds-icon-arrow-right-s-
|
|
6158
|
+
'dap-ds-icon-arrow-right-s-line': DefineCustomElement<ArrowsArrowRightSLine, ArrowsArrowRightSLineProps, {}>
|
|
6150
6159
|
/**
|
|
6151
6160
|
* An icon
|
|
6152
6161
|
*
|
|
6153
6162
|
* ### CSS Parts:
|
|
6154
6163
|
* - **base** - The main icon container.
|
|
6155
6164
|
*/
|
|
6156
|
-
'dap-ds-icon-arrow-right-
|
|
6165
|
+
'dap-ds-icon-arrow-right-up-line': DefineCustomElement<ArrowsArrowRightUpLine, ArrowsArrowRightUpLineProps, {}>
|
|
6157
6166
|
/**
|
|
6158
6167
|
* An icon
|
|
6159
6168
|
*
|
|
6160
6169
|
* ### CSS Parts:
|
|
6161
6170
|
* - **base** - The main icon container.
|
|
6162
6171
|
*/
|
|
6163
|
-
'dap-ds-icon-arrow-right-
|
|
6172
|
+
'dap-ds-icon-arrow-right-s-fill': DefineCustomElement<ArrowsArrowRightSFill, ArrowsArrowRightSFillProps, {}>
|
|
6164
6173
|
/**
|
|
6165
6174
|
* An icon
|
|
6166
6175
|
*
|
|
@@ -6189,13 +6198,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6189
6198
|
* - **base** - The main icon container.
|
|
6190
6199
|
*/
|
|
6191
6200
|
'dap-ds-icon-expand-up-down-fill': DefineCustomElement<ArrowsExpandUpDownFill, ArrowsExpandUpDownFillProps, {}>
|
|
6192
|
-
/**
|
|
6193
|
-
* An icon
|
|
6194
|
-
*
|
|
6195
|
-
* ### CSS Parts:
|
|
6196
|
-
* - **base** - The main icon container.
|
|
6197
|
-
*/
|
|
6198
|
-
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6199
6201
|
/**
|
|
6200
6202
|
* An icon
|
|
6201
6203
|
*
|
|
@@ -6566,14 +6568,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6566
6568
|
* ### CSS Parts:
|
|
6567
6569
|
* - **base** - The main icon container.
|
|
6568
6570
|
*/
|
|
6569
|
-
'dap-ds-icon-more-
|
|
6571
|
+
'dap-ds-icon-more-line': DefineCustomElement<SystemMoreLine, SystemMoreLineProps, {}>
|
|
6570
6572
|
/**
|
|
6571
6573
|
* An icon
|
|
6572
6574
|
*
|
|
6573
6575
|
* ### CSS Parts:
|
|
6574
6576
|
* - **base** - The main icon container.
|
|
6575
6577
|
*/
|
|
6576
|
-
'dap-ds-icon-more-line': DefineCustomElement<
|
|
6578
|
+
'dap-ds-icon-more-2-line': DefineCustomElement<SystemMore2Line, SystemMore2LineProps, {}>
|
|
6577
6579
|
/**
|
|
6578
6580
|
* An icon
|
|
6579
6581
|
*
|
|
@@ -6680,18 +6682,18 @@ declare global {
|
|
|
6680
6682
|
namespace JSX {
|
|
6681
6683
|
interface IntrinsicElements {
|
|
6682
6684
|
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6683
|
-
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6684
|
-
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6685
6685
|
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6686
|
-
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6687
6686
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6688
6687
|
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6688
|
+
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6689
|
+
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6690
|
+
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6689
6691
|
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6690
|
-
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6691
6692
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6692
|
-
'dap-ds-
|
|
6693
|
+
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6693
6694
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
6694
6695
|
'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
|
|
6696
|
+
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6695
6697
|
'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
|
|
6696
6698
|
'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
|
|
6697
6699
|
'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
|
|
@@ -6708,8 +6710,8 @@ declare global {
|
|
|
6708
6710
|
'dap-ds-command': DapDSCommandProps & DapDSCommandEvents & DapDSCommandSlots
|
|
6709
6711
|
'dap-ds-content-switcher-item': DapDSContentSwitcherItemProps & DapDSContentSwitcherItemSlots
|
|
6710
6712
|
'dap-ds-content-switcher': DapDSContentSwitcherProps & DapDSContentSwitcherEvents & DapDSContentSwitcherSlots
|
|
6711
|
-
'dap-ds-copybox-input': DapDSCopyBoxInputProps & DapDSCopyBoxInputEvents
|
|
6712
6713
|
'dap-ds-dap-badge': DapDSDAPBadgeProps & DapDSDAPBadgeSlots
|
|
6714
|
+
'dap-ds-copybox-input': DapDSCopyBoxInputProps & DapDSCopyBoxInputEvents
|
|
6713
6715
|
'dap-ds-datatable': <T = any>(props: DapDSDataTableProps<T> & DapDSDataTableEvents<T> & DapDSDataTableSlots) => JSX.Element
|
|
6714
6716
|
'dap-ds-datepicker': DapDSDatePickerProps & DapDSDatePickerEvents
|
|
6715
6717
|
'dap-ds-divider': DapDSDividerProps
|
|
@@ -6728,8 +6730,8 @@ declare global {
|
|
|
6728
6730
|
'dap-ds-navigation-menu-item': DapDSNavigationMenuItemProps & DapDSNavigationMenuItemEvents & DapDSNavigationMenuItemSlots
|
|
6729
6731
|
'dap-ds-navigation-menu': DapDSNavigationMenuProps & DapDSNavigationMenuEvents & DapDSNavigationMenuSlots
|
|
6730
6732
|
'dap-ds-notification-badge': DapDSNotificationBadgeProps & DapDSNotificationBadgeSlots
|
|
6731
|
-
'dap-ds-number-input': DapDSNumberInputProps & DapDSNumberInputEvents & DapDSNumberInputSlots
|
|
6732
6733
|
'dap-ds-official-website-banner': DapDSOfficialWebsiteBannerProps & DapDSOfficialWebsiteBannerEvents & DapDSOfficialWebsiteBannerSlots
|
|
6734
|
+
'dap-ds-number-input': DapDSNumberInputProps & DapDSNumberInputEvents & DapDSNumberInputSlots
|
|
6733
6735
|
'dap-ds-option-group': DapDSOptionGroupProps & DapDSOptionGroupSlots
|
|
6734
6736
|
'dap-ds-option-item': DapDSOptionItemProps & DapDSOptionItemSlots
|
|
6735
6737
|
'dap-ds-option-list': DapDSOptionListProps & DapDSOptionListEvents & DapDSOptionListSlots
|
|
@@ -6747,8 +6749,8 @@ declare global {
|
|
|
6747
6749
|
'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
|
|
6748
6750
|
'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
|
|
6749
6751
|
'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
|
|
6750
|
-
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6751
6752
|
'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
|
|
6753
|
+
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6752
6754
|
'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
|
|
6753
6755
|
'dap-ds-snackbar': DapDSSnackbarProps
|
|
6754
6756
|
'dap-ds-spinner': DapDSSpinnerProps & DapDSSpinnerSlots
|
|
@@ -6773,26 +6775,26 @@ declare global {
|
|
|
6773
6775
|
'dap-ds-form-label': DapDSFormLabelProps
|
|
6774
6776
|
'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
|
|
6775
6777
|
'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
|
|
6778
|
+
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6776
6779
|
'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
|
|
6777
6780
|
'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
|
|
6778
6781
|
'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
|
|
6779
6782
|
'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
|
|
6780
6783
|
'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
|
|
6781
6784
|
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6782
|
-
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6783
6785
|
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6784
|
-
'dap-ds-icon-arrow-left-
|
|
6786
|
+
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6785
6787
|
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6788
|
+
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6786
6789
|
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
6787
6790
|
'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
|
|
6788
|
-
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
6789
6791
|
'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
|
|
6790
6792
|
'dap-ds-icon-arrow-right-up-line': ArrowsArrowRightUpLineProps
|
|
6793
|
+
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
6791
6794
|
'dap-ds-icon-arrow-up-line': ArrowsArrowUpLineProps
|
|
6792
6795
|
'dap-ds-icon-arrow-up-s-fill': ArrowsArrowUpSFillProps
|
|
6793
6796
|
'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
|
|
6794
6797
|
'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
|
|
6795
|
-
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6796
6798
|
'dap-ds-icon-calendar-line': BusinessCalendarLineProps
|
|
6797
6799
|
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6798
6800
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
@@ -6845,8 +6847,8 @@ declare global {
|
|
|
6845
6847
|
'dap-ds-icon-lock-line': SystemLockLineProps
|
|
6846
6848
|
'dap-ds-icon-menu-line': SystemMenuLineProps
|
|
6847
6849
|
'dap-ds-icon-menu-line-s': SystemMenuLineSProps
|
|
6848
|
-
'dap-ds-icon-more-2-line': SystemMore2LineProps
|
|
6849
6850
|
'dap-ds-icon-more-line': SystemMoreLineProps
|
|
6851
|
+
'dap-ds-icon-more-2-line': SystemMore2LineProps
|
|
6850
6852
|
'dap-ds-icon-search-line': SystemSearchLineProps
|
|
6851
6853
|
'dap-ds-icon-share-line': SystemShareLineProps
|
|
6852
6854
|
'dap-ds-icon-shield-check-fill': SystemShieldCheckFillProps
|