dap-design-system 0.58.2 → 0.59.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/datatable/datatable.component.d.ts +7 -0
- package/dist/components/pager/pager.component.d.ts +13 -0
- package/dist/{components-D6jorS84.js → components-CDc41tvu.js} +818 -772
- package/dist/components-CDc41tvu.js.map +1 -0
- package/dist/components.js +1 -1
- package/dist/dds.js +1 -1
- package/dist/manifest/types/vue/index.d.ts +818 -804
- package/dist/manifest/vscode.html-custom-data.json +651 -631
- package/dist/manifest/web-types.json +2713 -2673
- package/dist/react/dap-ds-datatable/index.d.ts +3 -0
- package/dist/react/dap-ds-pager/index.d.ts +6 -0
- package/dist/react/index.d.ts +20 -20
- package/dist/react-types.ts +21 -21
- package/dist/react.js +492 -492
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
- package/dist/components-D6jorS84.js.map +0 -1
|
@@ -210,13 +210,6 @@ type DefineGenericCustomElement<
|
|
|
210
210
|
$props: Partial<Omit<HTMLAttributes, keyof ElementType>> & Partial<Omit<ElementType, keyof Props>> & Props & Events
|
|
211
211
|
}
|
|
212
212
|
|
|
213
|
-
export interface DapDSAccordionEvents {
|
|
214
|
-
/** Event fired when the accordion is opened. */
|
|
215
|
-
onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
216
|
-
/** Event fired when the accordion is closed. */
|
|
217
|
-
onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
218
|
-
}
|
|
219
|
-
|
|
220
213
|
export interface DapDSAvatarEvents {
|
|
221
214
|
/** Fired when the image loads successfully. */
|
|
222
215
|
onDdsLoad?: (event: CustomEvent) => void
|
|
@@ -229,6 +222,13 @@ export interface DapDSAvatarGroupEvents {
|
|
|
229
222
|
onDdsOverflowClick?: (event: CustomEvent) => void
|
|
230
223
|
}
|
|
231
224
|
|
|
225
|
+
export interface DapDSAccordionEvents {
|
|
226
|
+
/** Event fired when the accordion is opened. */
|
|
227
|
+
onDdsOpened?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
228
|
+
/** Event fired when the accordion is closed. */
|
|
229
|
+
onDdsClosed?: (event: CustomEvent<{ open: boolean, item: AccordionBaseElement }>) => void
|
|
230
|
+
}
|
|
231
|
+
|
|
232
232
|
export interface DapDSBannerEvents {
|
|
233
233
|
/** Event fired when the banner is closed. */
|
|
234
234
|
onDdsClose?: (event: CustomEvent) => void
|
|
@@ -239,16 +239,16 @@ export interface DapDSButtonEvents {
|
|
|
239
239
|
onDdsLoadingTimeout?: (event: CustomEvent) => void
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
export interface DapDSCalendarEvents {
|
|
243
|
-
/** Fired when the calendar value changes. */
|
|
244
|
-
onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => void
|
|
245
|
-
}
|
|
246
|
-
|
|
247
242
|
export interface DapDSCalloutEvents {
|
|
248
243
|
/** Fired when the close button is clicked. */
|
|
249
244
|
onDdsClose?: (event: CustomEvent) => void
|
|
250
245
|
}
|
|
251
246
|
|
|
247
|
+
export interface DapDSCalendarEvents {
|
|
248
|
+
/** Fired when the calendar value changes. */
|
|
249
|
+
onDdsChange?: (event: CustomEvent<{ value: Dayjs }>) => 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
|
|
@@ -333,6 +333,17 @@ export interface DapDSCopyBoxInputEvents {
|
|
|
333
333
|
onDdsNotAllowed?: (event: CustomEvent) => void
|
|
334
334
|
}
|
|
335
335
|
|
|
336
|
+
export interface DapDSDataTableEvents<T> {
|
|
337
|
+
/** Fired when the sorting of the table changes. */
|
|
338
|
+
onDdsSortingChange?: (event: CustomEvent<{ sorting: SortingState }>) => void
|
|
339
|
+
/** Fired when the selection of the table changes. */
|
|
340
|
+
onDdsSelectionChange?: (event: CustomEvent<{ selection: RowSelectionState }>) => void
|
|
341
|
+
/** Fired when the pagination of the table changes. */
|
|
342
|
+
onDdsPaginationChange?: (event: CustomEvent<{ pagination: PaginationState }>) => void
|
|
343
|
+
/** Fired when a row is clicked. */
|
|
344
|
+
onDdsRowClick?: (event: CustomEvent<{ row: Row<T> }>) => void
|
|
345
|
+
}
|
|
346
|
+
|
|
336
347
|
export interface DapDSDatePickerEvents {
|
|
337
348
|
/** Fired when the datepicker value changes. */
|
|
338
349
|
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
@@ -383,17 +394,6 @@ export interface DapDSFileInputEvents {
|
|
|
383
394
|
onDdsFilesAccepted?: (event: CustomEvent<{ files: File[] }>) => void
|
|
384
395
|
}
|
|
385
396
|
|
|
386
|
-
export interface DapDSDataTableEvents<T> {
|
|
387
|
-
/** Fired when the sorting of the table changes. */
|
|
388
|
-
onDdsSortingChange?: (event: CustomEvent<{ sorting: SortingState }>) => void
|
|
389
|
-
/** Fired when the selection of the table changes. */
|
|
390
|
-
onDdsSelectionChange?: (event: CustomEvent<{ selection: RowSelectionState }>) => void
|
|
391
|
-
/** Fired when the pagination of the table changes. */
|
|
392
|
-
onDdsPaginationChange?: (event: CustomEvent<{ pagination: PaginationState }>) => void
|
|
393
|
-
/** Fired when a row is clicked. */
|
|
394
|
-
onDdsRowClick?: (event: CustomEvent<{ row: Row<T> }>) => void
|
|
395
|
-
}
|
|
396
|
-
|
|
397
397
|
export interface DapDSImageZoomEvents {
|
|
398
398
|
/** Fires when the image is about to zoom. Cancelable via event.preventDefault(). */
|
|
399
399
|
onDdsZoom?: (event: CustomEvent<CustomEvent>) => void
|
|
@@ -401,6 +401,19 @@ export interface DapDSImageZoomEvents {
|
|
|
401
401
|
onDdsUnzoom?: (event: CustomEvent<CustomEvent>) => void
|
|
402
402
|
}
|
|
403
403
|
|
|
404
|
+
export interface DapDSInputEvents {
|
|
405
|
+
/** Fired when the input value changes. */
|
|
406
|
+
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
407
|
+
/** Fired when the input value changes. */
|
|
408
|
+
onDdsInput?: (event: CustomEvent<{ value: string }>) => void
|
|
409
|
+
/** Fired when a key is pressed down. */
|
|
410
|
+
onDdsKeydown?: (event: CustomEvent<{ value: string, originalEvent: Event }>) => void
|
|
411
|
+
/** Fired when the input loses focus. */
|
|
412
|
+
onDdsBlur?: (event: CustomEvent) => void
|
|
413
|
+
/** Emitted when the input gains focus. */
|
|
414
|
+
onDdsFocus?: (event: CustomEvent) => void
|
|
415
|
+
}
|
|
416
|
+
|
|
404
417
|
export interface DapDSLinkEvents {
|
|
405
418
|
/** Emitted when the link is clicked. */
|
|
406
419
|
onDdsClick?: (event: CustomEvent<{ event: Event }>) => void
|
|
@@ -535,19 +548,6 @@ export interface DapDSSearchEvents {
|
|
|
535
548
|
onDdsInput?: (event: CustomEvent) => void
|
|
536
549
|
}
|
|
537
550
|
|
|
538
|
-
export interface DapDSInputEvents {
|
|
539
|
-
/** Fired when the input value changes. */
|
|
540
|
-
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
541
|
-
/** Fired when the input value changes. */
|
|
542
|
-
onDdsInput?: (event: CustomEvent<{ value: string }>) => void
|
|
543
|
-
/** Fired when a key is pressed down. */
|
|
544
|
-
onDdsKeydown?: (event: CustomEvent<{ value: string, originalEvent: Event }>) => void
|
|
545
|
-
/** Fired when the input loses focus. */
|
|
546
|
-
onDdsBlur?: (event: CustomEvent) => void
|
|
547
|
-
/** Emitted when the input gains focus. */
|
|
548
|
-
onDdsFocus?: (event: CustomEvent) => void
|
|
549
|
-
}
|
|
550
|
-
|
|
551
551
|
export interface DapDSSelectEvents {
|
|
552
552
|
/** Fired when the select value changes. */
|
|
553
553
|
onDdsChange?: (event: CustomEvent<{ value: string }>) => void
|
|
@@ -561,11 +561,6 @@ export interface DapDSSelectEvents {
|
|
|
561
561
|
onDdsClosed?: (event: CustomEvent) => void
|
|
562
562
|
}
|
|
563
563
|
|
|
564
|
-
export interface DapDSSideNavEvents {
|
|
565
|
-
/** Event fired when the side navigation item is clicked. */
|
|
566
|
-
onDdsItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
|
|
567
|
-
}
|
|
568
|
-
|
|
569
564
|
export interface DapDSSnackbarMessageEvents {
|
|
570
565
|
/** Fires when the snackbar closes. */
|
|
571
566
|
onDdsClose?: (event: CustomEvent<{ id: string }>) => void
|
|
@@ -587,6 +582,11 @@ export interface DapDSTabGroupEvents {
|
|
|
587
582
|
onDdsTabSelect?: (event: CustomEvent) => void
|
|
588
583
|
}
|
|
589
584
|
|
|
585
|
+
export interface DapDSSideNavEvents {
|
|
586
|
+
/** Event fired when the side navigation item is clicked. */
|
|
587
|
+
onDdsItemClick?: (event: CustomEvent<{ href: string, event: Event }>) => void
|
|
588
|
+
}
|
|
589
|
+
|
|
590
590
|
export interface DapDSTextareaEvents {
|
|
591
591
|
/** Fires when the count of the textarea changes. */
|
|
592
592
|
onDdsCountChange?: (event: CustomEvent<{ value: number }>) => void
|
|
@@ -655,15 +655,9 @@ export interface DapDSRadioGroupEvents {
|
|
|
655
655
|
onDdsFocus?: (event: CustomEvent) => void
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
-
export interface
|
|
659
|
-
/** The content of the accordion. */
|
|
658
|
+
export interface DapDSAccordionGroupSlots {
|
|
659
|
+
/** The content of the accordion 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
663
|
export interface DapDSAvatarSlots {
|
|
@@ -678,9 +672,15 @@ export interface DapDSAvatarGroupSlots {
|
|
|
678
672
|
default?: () => any
|
|
679
673
|
}
|
|
680
674
|
|
|
681
|
-
export interface
|
|
682
|
-
/** The content of the accordion
|
|
675
|
+
export interface DapDSAccordionSlots {
|
|
676
|
+
/** The content of the accordion. */
|
|
683
677
|
default?: () => any
|
|
678
|
+
/** The heading of the accordion. */
|
|
679
|
+
'heading'?: () => any
|
|
680
|
+
/** The icon when the accordion is opened. */
|
|
681
|
+
'icon-opened'?: () => any
|
|
682
|
+
/** The icon when the accordion is closed. */
|
|
683
|
+
'icon-closed'?: () => any
|
|
684
684
|
}
|
|
685
685
|
|
|
686
686
|
export interface DapDSBadgeSlots {
|
|
@@ -690,6 +690,13 @@ export interface DapDSBadgeSlots {
|
|
|
690
690
|
'icon'?: () => any
|
|
691
691
|
}
|
|
692
692
|
|
|
693
|
+
export interface DapDSBreadcrumbSlots {
|
|
694
|
+
/** The content of the breadcrumb. */
|
|
695
|
+
default?: () => any
|
|
696
|
+
/** The separator between breadcrumb items. Default is '/'. */
|
|
697
|
+
'separator'?: () => any
|
|
698
|
+
}
|
|
699
|
+
|
|
693
700
|
export interface DapDSBannerSlots {
|
|
694
701
|
/** The content of the banner. */
|
|
695
702
|
default?: () => any
|
|
@@ -699,13 +706,6 @@ export interface DapDSBannerSlots {
|
|
|
699
706
|
'icon'?: () => any
|
|
700
707
|
}
|
|
701
708
|
|
|
702
|
-
export interface DapDSBreadcrumbSlots {
|
|
703
|
-
/** The content of the breadcrumb. */
|
|
704
|
-
default?: () => any
|
|
705
|
-
/** The separator between breadcrumb items. Default is '/'. */
|
|
706
|
-
'separator'?: () => any
|
|
707
|
-
}
|
|
708
|
-
|
|
709
709
|
export interface DapDSBreadcrumbItemSlots {
|
|
710
710
|
/** The content of the breadcrumb item. */
|
|
711
711
|
default?: () => any
|
|
@@ -718,16 +718,6 @@ export interface DapDSButtonSlots {
|
|
|
718
718
|
default?: () => any
|
|
719
719
|
}
|
|
720
720
|
|
|
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. */
|
|
728
|
-
default?: () => any
|
|
729
|
-
}
|
|
730
|
-
|
|
731
721
|
export interface DapDSCalloutSlots {
|
|
732
722
|
/** The content of the callout. */
|
|
733
723
|
default?: () => any
|
|
@@ -741,6 +731,16 @@ export interface DapDSCalloutSlots {
|
|
|
741
731
|
'close'?: () => any
|
|
742
732
|
}
|
|
743
733
|
|
|
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
|
|
@@ -815,6 +815,20 @@ export interface DapDSDAPBadgeSlots {
|
|
|
815
815
|
default?: () => any
|
|
816
816
|
}
|
|
817
817
|
|
|
818
|
+
export interface DapDSDataTableSlots {
|
|
819
|
+
/** The loading content of the table. */
|
|
820
|
+
'loading'?: () => any
|
|
821
|
+
/** The empty content of the table. */
|
|
822
|
+
'empty'?: () => any
|
|
823
|
+
}
|
|
824
|
+
|
|
825
|
+
export interface DapDSFeedbackSlots {
|
|
826
|
+
/** The custom icon of the feedback. */
|
|
827
|
+
'icon'?: () => any
|
|
828
|
+
/** The text of the feedback. */
|
|
829
|
+
default?: () => any
|
|
830
|
+
}
|
|
831
|
+
|
|
818
832
|
export interface DapDSFileInputListItemSlots {
|
|
819
833
|
/** The delete button. */
|
|
820
834
|
'delete-button'?: () => any
|
|
@@ -830,13 +844,6 @@ export interface DapDSFileInputSlots {
|
|
|
830
844
|
'dropzone-content'?: () => any
|
|
831
845
|
}
|
|
832
846
|
|
|
833
|
-
export interface DapDSDataTableSlots {
|
|
834
|
-
/** The loading content of the table. */
|
|
835
|
-
'loading'?: () => any
|
|
836
|
-
/** The empty content of the table. */
|
|
837
|
-
'empty'?: () => any
|
|
838
|
-
}
|
|
839
|
-
|
|
840
847
|
export interface DapDSIconSlots {
|
|
841
848
|
/** The content of the icon for custom svg icons. */
|
|
842
849
|
default?: () => any
|
|
@@ -847,18 +854,24 @@ export interface DapDSIconButtonSlots {
|
|
|
847
854
|
default?: () => any
|
|
848
855
|
}
|
|
849
856
|
|
|
850
|
-
export interface DapDSFeedbackSlots {
|
|
851
|
-
/** The custom icon of the feedback. */
|
|
852
|
-
'icon'?: () => any
|
|
853
|
-
/** The text of the feedback. */
|
|
854
|
-
default?: () => any
|
|
855
|
-
}
|
|
856
|
-
|
|
857
857
|
export interface DapDSImageZoomSlots {
|
|
858
858
|
/** The image or content element to zoom. Should contain an <img> element. */
|
|
859
859
|
default?: () => any
|
|
860
860
|
}
|
|
861
861
|
|
|
862
|
+
export interface DapDSInputSlots {
|
|
863
|
+
/** The postfix of the input. */
|
|
864
|
+
'postfix'?: () => any
|
|
865
|
+
/** The prefix of the input. */
|
|
866
|
+
'prefix'?: () => any
|
|
867
|
+
/** The addon before the input. */
|
|
868
|
+
'addon-before'?: () => any
|
|
869
|
+
/** The addon after the input. */
|
|
870
|
+
'addon-after'?: () => any
|
|
871
|
+
/** The custom icon of the feedback. */
|
|
872
|
+
'feedback-icon'?: () => any
|
|
873
|
+
}
|
|
874
|
+
|
|
862
875
|
export interface DapDSLinkSlots {
|
|
863
876
|
/** The text of the link. */
|
|
864
877
|
default?: () => any
|
|
@@ -973,19 +986,6 @@ export interface DapDSSearchSlots {
|
|
|
973
986
|
default?: () => any
|
|
974
987
|
}
|
|
975
988
|
|
|
976
|
-
export interface DapDSInputSlots {
|
|
977
|
-
/** The postfix of the input. */
|
|
978
|
-
'postfix'?: () => any
|
|
979
|
-
/** The prefix of the input. */
|
|
980
|
-
'prefix'?: () => any
|
|
981
|
-
/** The addon before the input. */
|
|
982
|
-
'addon-before'?: () => any
|
|
983
|
-
/** The addon after the input. */
|
|
984
|
-
'addon-after'?: () => any
|
|
985
|
-
/** The custom icon of the feedback. */
|
|
986
|
-
'feedback-icon'?: () => any
|
|
987
|
-
}
|
|
988
|
-
|
|
989
989
|
export interface DapDSSelectSlots {
|
|
990
990
|
/** The option list of the select. */
|
|
991
991
|
default?: () => any
|
|
@@ -993,27 +993,6 @@ export interface DapDSSelectSlots {
|
|
|
993
993
|
'indicator-icon'?: () => any
|
|
994
994
|
}
|
|
995
995
|
|
|
996
|
-
export interface DapDSSideNavGroupSlots {
|
|
997
|
-
/** The content of the side navigation group. */
|
|
998
|
-
default?: () => any
|
|
999
|
-
/** The submenu of the side navigation group. */
|
|
1000
|
-
'submenu'?: () => any
|
|
1001
|
-
/** The suffix of the side navigation group. */
|
|
1002
|
-
'suffix'?: () => any
|
|
1003
|
-
}
|
|
1004
|
-
|
|
1005
|
-
export interface DapDSSideNavItemSlots {
|
|
1006
|
-
/** The content of the side navigation item. */
|
|
1007
|
-
default?: () => any
|
|
1008
|
-
/** The suffix of the side navigation item. */
|
|
1009
|
-
'suffix'?: () => any
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
|
-
export interface DapDSSideNavSlots {
|
|
1013
|
-
/** The content of the side navigation. */
|
|
1014
|
-
default?: () => any
|
|
1015
|
-
}
|
|
1016
|
-
|
|
1017
996
|
export interface DapDSSkipLinkSlots {
|
|
1018
997
|
/** The content of the skip link. */
|
|
1019
998
|
default?: () => any
|
|
@@ -1068,6 +1047,27 @@ export interface DapDSTableSlots {
|
|
|
1068
1047
|
default?: () => any
|
|
1069
1048
|
}
|
|
1070
1049
|
|
|
1050
|
+
export interface DapDSSideNavGroupSlots {
|
|
1051
|
+
/** The content of the side navigation group. */
|
|
1052
|
+
default?: () => any
|
|
1053
|
+
/** The submenu of the side navigation group. */
|
|
1054
|
+
'submenu'?: () => any
|
|
1055
|
+
/** The suffix of the side navigation group. */
|
|
1056
|
+
'suffix'?: () => any
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
export interface DapDSSideNavItemSlots {
|
|
1060
|
+
/** The content of the side navigation item. */
|
|
1061
|
+
default?: () => any
|
|
1062
|
+
/** The suffix of the side navigation item. */
|
|
1063
|
+
'suffix'?: () => any
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1066
|
+
export interface DapDSSideNavSlots {
|
|
1067
|
+
/** The content of the side navigation. */
|
|
1068
|
+
default?: () => any
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
1071
|
export interface DapDSTextareaSlots {
|
|
1072
1072
|
/** The custom icon of the feedback. */
|
|
1073
1073
|
'feedback-icon'?: () => any
|
|
@@ -1109,43 +1109,36 @@ export interface DapDSTypographySlots {
|
|
|
1109
1109
|
default?: () => any
|
|
1110
1110
|
}
|
|
1111
1111
|
|
|
1112
|
-
export interface
|
|
1113
|
-
/** The content of the
|
|
1112
|
+
export interface DapDSRadioGroupSlots {
|
|
1113
|
+
/** The content of the radio group. */
|
|
1114
1114
|
default?: () => any
|
|
1115
1115
|
/** The custom icon of the feedback. */
|
|
1116
1116
|
'feedback-icon'?: () => any
|
|
1117
1117
|
}
|
|
1118
1118
|
|
|
1119
|
-
export interface
|
|
1120
|
-
/** The content of the
|
|
1119
|
+
export interface DapDSInputGroupSlots {
|
|
1120
|
+
/** The content of the input group items. */
|
|
1121
1121
|
default?: () => any
|
|
1122
1122
|
/** The custom icon of the feedback. */
|
|
1123
1123
|
'feedback-icon'?: () => any
|
|
1124
1124
|
}
|
|
1125
1125
|
|
|
1126
|
-
export type
|
|
1127
|
-
/**
|
|
1128
|
-
|
|
1129
|
-
/**
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
heading
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
variant?: DapDSAccordion["variant"]
|
|
1143
|
-
/** Whether the accordion is the last item. */
|
|
1144
|
-
lastItem?: DapDSAccordion["lastItem"]
|
|
1145
|
-
/** Whether the accordion is disabled. */
|
|
1146
|
-
disabled?: DapDSAccordion["disabled"]
|
|
1147
|
-
/** Whether the accordion is in loading state. */
|
|
1148
|
-
loading?: DapDSAccordion["loading"]
|
|
1126
|
+
export type DapDSAccordionGroupProps = {
|
|
1127
|
+
/** Whether to close other accordions when one is opened. */
|
|
1128
|
+
autoClose?: DapDSAccordionGroup["autoClose"]
|
|
1129
|
+
/** The variant of the accordion */
|
|
1130
|
+
variant?: DapDSAccordionGroup["variant"]
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
export type DapDSAnchorHeadingProps = {
|
|
1134
|
+
/** The variant of the heading. Default is `h2`. Can be `h1`, `h2`, `h3`, `h4`, `h5`, or `h6`. */
|
|
1135
|
+
variant?: DapDSAnchorHeading["variant"]
|
|
1136
|
+
/** The label of the heading. */
|
|
1137
|
+
label?: DapDSAnchorHeading["label"]
|
|
1138
|
+
/** */
|
|
1139
|
+
elementId?: DapDSAnchorHeading["elementId"]
|
|
1140
|
+
/** */
|
|
1141
|
+
anchorTitle?: DapDSAnchorHeading["anchorTitle"]
|
|
1149
1142
|
}
|
|
1150
1143
|
|
|
1151
1144
|
export type DapDSAvatarProps = {
|
|
@@ -1194,22 +1187,29 @@ export type DapDSAvatarGroupProps = {
|
|
|
1194
1187
|
sizeMap?: DapDSAvatarGroup["sizeMap"]
|
|
1195
1188
|
}
|
|
1196
1189
|
|
|
1197
|
-
export type
|
|
1198
|
-
/** The
|
|
1199
|
-
|
|
1200
|
-
/**
|
|
1201
|
-
|
|
1202
|
-
/**
|
|
1203
|
-
|
|
1204
|
-
/**
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
variant
|
|
1190
|
+
export type DapDSAccordionProps = {
|
|
1191
|
+
/** The size of the accordion. Default is `sm`. Visual variants are sm and lg (other sizes map to sm). */
|
|
1192
|
+
size?: DapDSAccordion["size"]
|
|
1193
|
+
/** Responsive size map (e.g. "md:lg") */
|
|
1194
|
+
sizeMap?: DapDSAccordion["sizeMap"]
|
|
1195
|
+
/** When "true", size is taken from the parent card if present. */
|
|
1196
|
+
parentSized?: DapDSAccordion["parentSized"]
|
|
1197
|
+
/** The heading text of the accordion, this will be used as the aria label of the heading also if ariaLabel is not provided */
|
|
1198
|
+
heading?: DapDSAccordion["heading"]
|
|
1199
|
+
/** The heading level of the accordion. Default is `4`. */
|
|
1200
|
+
headingLevel?: DapDSAccordion["headingLevel"]
|
|
1201
|
+
/** Whether the accordion is opened. Default is `false`. */
|
|
1202
|
+
opened?: DapDSAccordion["opened"]
|
|
1203
|
+
/** The location of the icon. Default is `right`. */
|
|
1204
|
+
iconLocation?: DapDSAccordion["iconLocation"]
|
|
1205
|
+
/** The variant of the accordion. */
|
|
1206
|
+
variant?: DapDSAccordion["variant"]
|
|
1207
|
+
/** Whether the accordion is the last item. */
|
|
1208
|
+
lastItem?: DapDSAccordion["lastItem"]
|
|
1209
|
+
/** Whether the accordion is disabled. */
|
|
1210
|
+
disabled?: DapDSAccordion["disabled"]
|
|
1211
|
+
/** Whether the accordion is in loading state. */
|
|
1212
|
+
loading?: DapDSAccordion["loading"]
|
|
1213
1213
|
}
|
|
1214
1214
|
|
|
1215
1215
|
export type DapDSBadgeProps = {
|
|
@@ -1225,6 +1225,15 @@ export type DapDSBadgeProps = {
|
|
|
1225
1225
|
sizeMap?: DapDSBadge["sizeMap"]
|
|
1226
1226
|
}
|
|
1227
1227
|
|
|
1228
|
+
export type DapDSBreadcrumbProps = {
|
|
1229
|
+
/** */
|
|
1230
|
+
variant?: DapDSBreadcrumb["variant"]
|
|
1231
|
+
/** Mobile version of the breadcrumb */
|
|
1232
|
+
mobile?: DapDSBreadcrumb["mobile"]
|
|
1233
|
+
/** The aria-labelledby of the breadcrumb */
|
|
1234
|
+
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1235
|
+
}
|
|
1236
|
+
|
|
1228
1237
|
export type DapDSBannerProps = {
|
|
1229
1238
|
/** The variant of the banner */
|
|
1230
1239
|
variant?: DapDSBanner["variant"]
|
|
@@ -1240,15 +1249,6 @@ export type DapDSBannerProps = {
|
|
|
1240
1249
|
icon?: DapDSBanner["icon"]
|
|
1241
1250
|
}
|
|
1242
1251
|
|
|
1243
|
-
export type DapDSBreadcrumbProps = {
|
|
1244
|
-
/** */
|
|
1245
|
-
variant?: DapDSBreadcrumb["variant"]
|
|
1246
|
-
/** Mobile version of the breadcrumb */
|
|
1247
|
-
mobile?: DapDSBreadcrumb["mobile"]
|
|
1248
|
-
/** The aria-labelledby of the breadcrumb */
|
|
1249
|
-
"aria-labelledby"?: DapDSBreadcrumb["ariaLabelledBy"]
|
|
1250
|
-
}
|
|
1251
|
-
|
|
1252
1252
|
export type DapDSBreadcrumbItemProps = {
|
|
1253
1253
|
/** The URL of the breadcrumb item. */
|
|
1254
1254
|
href?: DapDSBreadcrumbItem["href"]
|
|
@@ -1293,6 +1293,27 @@ export type DapDSButtonProps = {
|
|
|
1293
1293
|
sizeMap?: DapDSButton["sizeMap"]
|
|
1294
1294
|
}
|
|
1295
1295
|
|
|
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
|
+
|
|
1296
1317
|
export type DapDSCalendarCellProps = {
|
|
1297
1318
|
/** Whether the calendar cell is selected. */
|
|
1298
1319
|
selected?: DapDSCalendarCell["selected"]
|
|
@@ -1355,27 +1376,6 @@ export type DapDSCalendarProps = {
|
|
|
1355
1376
|
shouldHideAdjacentMonths?: DapDSCalendar["shouldHideAdjacentMonths"]
|
|
1356
1377
|
}
|
|
1357
1378
|
|
|
1358
|
-
export type DapDSCalloutProps = {
|
|
1359
|
-
/** The variant of the callout */
|
|
1360
|
-
variant?: DapDSCallout["variant"]
|
|
1361
|
-
/** The alignment of the callout. Can be `vertical` or `horizontal`. */
|
|
1362
|
-
alignment?: DapDSCallout["alignment"]
|
|
1363
|
-
/** The strongness of the callout colors. Can be `subtle`, `base`, `medium`, or `strong`. */
|
|
1364
|
-
shade?: DapDSCallout["shade"]
|
|
1365
|
-
/** If the callout has a border */
|
|
1366
|
-
noBorder?: DapDSCallout["noBorder"]
|
|
1367
|
-
/** If the callout has a close button */
|
|
1368
|
-
closeable?: DapDSCallout["closeable"]
|
|
1369
|
-
/** The header of the callout */
|
|
1370
|
-
title?: DapDSCallout["title"]
|
|
1371
|
-
/** The label of the close button */
|
|
1372
|
-
closeButtonLabel?: DapDSCallout["closeButtonLabel"]
|
|
1373
|
-
/** `data-testid` for the default close button. */
|
|
1374
|
-
closeButtonTestId?: DapDSCallout["closeButtonTestId"]
|
|
1375
|
-
/** If the callout is opened */
|
|
1376
|
-
opened?: DapDSCallout["opened"]
|
|
1377
|
-
}
|
|
1378
|
-
|
|
1379
1379
|
export type DapDSCardActionsProps = {
|
|
1380
1380
|
/** The spacing of the card actions. This adds a margin to the card actions. Default is `bottom`. */
|
|
1381
1381
|
spacing?: DapDSCardActions["spacing"]
|
|
@@ -1782,6 +1782,95 @@ export type DapDSDAPBadgeProps = {
|
|
|
1782
1782
|
sizeMap?: DapDSDAPBadge["sizeMap"]
|
|
1783
1783
|
}
|
|
1784
1784
|
|
|
1785
|
+
export type DapDSDataTableProps<T> = {
|
|
1786
|
+
/** Row key to use for row selection, this should be a unique key for each row */
|
|
1787
|
+
rowKey?: DapDSDataTable<T>["rowKey"]
|
|
1788
|
+
/** Enable row selection on the table, can be a boolean or a function that returns a boolean */
|
|
1789
|
+
enableRowSelection?: DapDSDataTable<T>["enableRowSelection"]
|
|
1790
|
+
/** Enable sorting on the table */
|
|
1791
|
+
enableSorting?: DapDSDataTable<T>["enableSorting"]
|
|
1792
|
+
/** Enable manual sorting on the table */
|
|
1793
|
+
manualSorting?: DapDSDataTable<T>["manualSorting"]
|
|
1794
|
+
/** Enables manual pagination. If this option is set to true, the table will not automatically paginate rows and instead will expect you to manually paginate the rows before passing them to the table. This is useful if you are doing server-side pagination and aggregation. */
|
|
1795
|
+
manualPagination?: DapDSDataTable<T>["manualPagination"]
|
|
1796
|
+
/** If set to true, pagination will be reset to the first page when page-altering state changes eg. data is updated, filters change, grouping changes, etc. This behavior is automatically disabled when manualPagination is true but it can be overridden by explicitly assigning a boolean value to the autoResetPageIndex table option. */
|
|
1797
|
+
autoResetPageIndex?: DapDSDataTable<T>["autoResetPageIndex"]
|
|
1798
|
+
/** Enable row click on the table */
|
|
1799
|
+
enableRowClick?: DapDSDataTable<T>["enableRowClick"]
|
|
1800
|
+
/** Loading state of the table */
|
|
1801
|
+
loading?: DapDSDataTable<T>["loading"]
|
|
1802
|
+
/** Whether to enable striped rows */
|
|
1803
|
+
enableStripedRows?: DapDSDataTable<T>["enableStripedRows"]
|
|
1804
|
+
/** Number of rows in the table */
|
|
1805
|
+
rowCount?: DapDSDataTable<T>["rowCount"]
|
|
1806
|
+
/** Caption text for the table */
|
|
1807
|
+
caption?: DapDSDataTable<T>["caption"]
|
|
1808
|
+
/** The type of loading to use */
|
|
1809
|
+
loadingType?: DapDSDataTable<T>["loadingType"]
|
|
1810
|
+
/** The variant of the spinner. Only used if loadingType is 'spinner'. */
|
|
1811
|
+
loadingVariant?: DapDSDataTable<T>["loadingVariant"]
|
|
1812
|
+
/** The size of the spinner. Only used if loadingType is 'spinner'. */
|
|
1813
|
+
loadingSize?: DapDSDataTable<T>["loadingSize"]
|
|
1814
|
+
/** The size of the spinner in pixels. This overrides the size attribute. Only used if loadingType is 'spinner'. */
|
|
1815
|
+
loadingStaticSize?: DapDSDataTable<T>["loadingStaticSize"]
|
|
1816
|
+
/** The loading text. Only used if loadingType is 'spinner'. */
|
|
1817
|
+
loadingText?: DapDSDataTable<T>["loadingText"]
|
|
1818
|
+
/** The text to display when the table is empty. */
|
|
1819
|
+
emptyText?: DapDSDataTable<T>["emptyText"]
|
|
1820
|
+
/** Whether to disable the header when the table is empty. */
|
|
1821
|
+
disableHeaderOnEmpty?: DapDSDataTable<T>["disableHeaderOnEmpty"]
|
|
1822
|
+
/** Whether to show the pager component when the table is empty. */
|
|
1823
|
+
showPagerOnEmpty?: DapDSDataTable<T>["showPagerOnEmpty"]
|
|
1824
|
+
/** Whether to show the pager component */
|
|
1825
|
+
pager?: DapDSDataTable<T>["pager"]
|
|
1826
|
+
/** Show the page size options. */
|
|
1827
|
+
showPageSizeOptions?: DapDSDataTable<T>["showPageSizeOptions"]
|
|
1828
|
+
/** Show the page index. */
|
|
1829
|
+
showPageIndex?: DapDSDataTable<T>["showPageIndex"]
|
|
1830
|
+
/** Show the page count. */
|
|
1831
|
+
showPageCount?: DapDSDataTable<T>["showPageCount"]
|
|
1832
|
+
/** Show the first button. */
|
|
1833
|
+
showFirstButton?: DapDSDataTable<T>["showFirstButton"]
|
|
1834
|
+
/** Show the previous button. */
|
|
1835
|
+
showPreviousButton?: DapDSDataTable<T>["showPreviousButton"]
|
|
1836
|
+
/** Show the next button. */
|
|
1837
|
+
showNextButton?: DapDSDataTable<T>["showNextButton"]
|
|
1838
|
+
/** Show the last button. */
|
|
1839
|
+
showLastButton?: DapDSDataTable<T>["showLastButton"]
|
|
1840
|
+
/** Show numbered page buttons between the previous and next buttons. */
|
|
1841
|
+
showPageNumbers?: DapDSDataTable<T>["showPageNumbers"]
|
|
1842
|
+
/** How many page numbers to show on each side of the current page. */
|
|
1843
|
+
siblingCount?: DapDSDataTable<T>["siblingCount"]
|
|
1844
|
+
/** The label of the first button */
|
|
1845
|
+
firstButtonLabel?: DapDSDataTable<T>["firstButtonLabel"]
|
|
1846
|
+
/** The label of the previous button */
|
|
1847
|
+
previousButtonLabel?: DapDSDataTable<T>["previousButtonLabel"]
|
|
1848
|
+
/** The label of the next button */
|
|
1849
|
+
nextButtonLabel?: DapDSDataTable<T>["nextButtonLabel"]
|
|
1850
|
+
/** The label of the last button */
|
|
1851
|
+
lastButtonLabel?: DapDSDataTable<T>["lastButtonLabel"]
|
|
1852
|
+
/** `data-testid` for the column sort-toggle button. Suffixed with the column id. */
|
|
1853
|
+
sortButtonTestId?: DapDSDataTable<T>["sortButtonTestId"]
|
|
1854
|
+
/** Available page size options for the pager */
|
|
1855
|
+
pageSizeOptions?: DapDSDataTable<T>["pageSizeOptions"]
|
|
1856
|
+
/** Sorting state of the table */
|
|
1857
|
+
sorting?: DapDSDataTable<T>["sorting"]
|
|
1858
|
+
/** Selection state of the table */
|
|
1859
|
+
rowSelection?: DapDSDataTable<T>["rowSelection"]
|
|
1860
|
+
/** Pagination state of the table */
|
|
1861
|
+
pagination?: DapDSDataTable<T>["pagination"]
|
|
1862
|
+
/** Column sizing state of the table */
|
|
1863
|
+
columnSizing?: DapDSDataTable<T>["columnSizing"]
|
|
1864
|
+
/** ID of element labeling the table */
|
|
1865
|
+
ariaLabel?: DapDSDataTable<T>["ariaLabel"]
|
|
1866
|
+
/** Data to display in the table */
|
|
1867
|
+
data?: DapDSDataTable<T>["data"]
|
|
1868
|
+
/** Columns to display in the table */
|
|
1869
|
+
columns?: DapDSDataTable<T>["columns"]
|
|
1870
|
+
/** The function to determine the pager text */
|
|
1871
|
+
pageStateText?: DapDSDataTable<T>["pageStateText"]
|
|
1872
|
+
}
|
|
1873
|
+
|
|
1785
1874
|
export type DapDSDatePickerProps = {
|
|
1786
1875
|
/** The value of the datepicker. */
|
|
1787
1876
|
value?: DapDSDatePicker["value"]
|
|
@@ -1884,6 +1973,21 @@ export type DapDSDividerProps = {
|
|
|
1884
1973
|
variant?: DapDSDivider["variant"]
|
|
1885
1974
|
}
|
|
1886
1975
|
|
|
1976
|
+
export type DapDSFeedbackProps = {
|
|
1977
|
+
/** The feedback message. */
|
|
1978
|
+
feedback?: DapDSFeedback["feedback"]
|
|
1979
|
+
/** The size of the feedback. Default is `sm`. */
|
|
1980
|
+
feedbackSize?: DapDSFeedback["feedbackSize"]
|
|
1981
|
+
/** The type of the feedback. */
|
|
1982
|
+
feedbackType?: DapDSFeedback["feedbackType"]
|
|
1983
|
+
/** The weight of the feedback. */
|
|
1984
|
+
feedbackSubtle?: DapDSFeedback["feedbackSubtle"]
|
|
1985
|
+
/** Removes the margins around the feedback. */
|
|
1986
|
+
feedbackNoMargin?: DapDSFeedback["feedbackNoMargin"]
|
|
1987
|
+
/** The id of the feedback. */
|
|
1988
|
+
feedbackId?: DapDSFeedback["feedbackId"]
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1887
1991
|
export type DapDSFileInputListItemProps = {
|
|
1888
1992
|
/** Disables the file input list item. */
|
|
1889
1993
|
disabled?: DapDSFileInputListItem["disabled"]
|
|
@@ -2069,91 +2173,6 @@ export type DapDSFileInputProps = {
|
|
|
2069
2173
|
subtle?: DapDSFileInput["subtle"]
|
|
2070
2174
|
}
|
|
2071
2175
|
|
|
2072
|
-
export type DapDSDataTableProps<T> = {
|
|
2073
|
-
/** Row key to use for row selection, this should be a unique key for each row */
|
|
2074
|
-
rowKey?: DapDSDataTable<T>["rowKey"]
|
|
2075
|
-
/** Enable row selection on the table, can be a boolean or a function that returns a boolean */
|
|
2076
|
-
enableRowSelection?: DapDSDataTable<T>["enableRowSelection"]
|
|
2077
|
-
/** Enable sorting on the table */
|
|
2078
|
-
enableSorting?: DapDSDataTable<T>["enableSorting"]
|
|
2079
|
-
/** Enable manual sorting on the table */
|
|
2080
|
-
manualSorting?: DapDSDataTable<T>["manualSorting"]
|
|
2081
|
-
/** Enables manual pagination. If this option is set to true, the table will not automatically paginate rows and instead will expect you to manually paginate the rows before passing them to the table. This is useful if you are doing server-side pagination and aggregation. */
|
|
2082
|
-
manualPagination?: DapDSDataTable<T>["manualPagination"]
|
|
2083
|
-
/** If set to true, pagination will be reset to the first page when page-altering state changes eg. data is updated, filters change, grouping changes, etc. This behavior is automatically disabled when manualPagination is true but it can be overridden by explicitly assigning a boolean value to the autoResetPageIndex table option. */
|
|
2084
|
-
autoResetPageIndex?: DapDSDataTable<T>["autoResetPageIndex"]
|
|
2085
|
-
/** Enable row click on the table */
|
|
2086
|
-
enableRowClick?: DapDSDataTable<T>["enableRowClick"]
|
|
2087
|
-
/** Loading state of the table */
|
|
2088
|
-
loading?: DapDSDataTable<T>["loading"]
|
|
2089
|
-
/** Whether to enable striped rows */
|
|
2090
|
-
enableStripedRows?: DapDSDataTable<T>["enableStripedRows"]
|
|
2091
|
-
/** Number of rows in the table */
|
|
2092
|
-
rowCount?: DapDSDataTable<T>["rowCount"]
|
|
2093
|
-
/** Caption text for the table */
|
|
2094
|
-
caption?: DapDSDataTable<T>["caption"]
|
|
2095
|
-
/** The type of loading to use */
|
|
2096
|
-
loadingType?: DapDSDataTable<T>["loadingType"]
|
|
2097
|
-
/** The variant of the spinner. Only used if loadingType is 'spinner'. */
|
|
2098
|
-
loadingVariant?: DapDSDataTable<T>["loadingVariant"]
|
|
2099
|
-
/** The size of the spinner. Only used if loadingType is 'spinner'. */
|
|
2100
|
-
loadingSize?: DapDSDataTable<T>["loadingSize"]
|
|
2101
|
-
/** The size of the spinner in pixels. This overrides the size attribute. Only used if loadingType is 'spinner'. */
|
|
2102
|
-
loadingStaticSize?: DapDSDataTable<T>["loadingStaticSize"]
|
|
2103
|
-
/** The loading text. Only used if loadingType is 'spinner'. */
|
|
2104
|
-
loadingText?: DapDSDataTable<T>["loadingText"]
|
|
2105
|
-
/** The text to display when the table is empty. */
|
|
2106
|
-
emptyText?: DapDSDataTable<T>["emptyText"]
|
|
2107
|
-
/** Whether to disable the header when the table is empty. */
|
|
2108
|
-
disableHeaderOnEmpty?: DapDSDataTable<T>["disableHeaderOnEmpty"]
|
|
2109
|
-
/** Whether to show the pager component when the table is empty. */
|
|
2110
|
-
showPagerOnEmpty?: DapDSDataTable<T>["showPagerOnEmpty"]
|
|
2111
|
-
/** Whether to show the pager component */
|
|
2112
|
-
pager?: DapDSDataTable<T>["pager"]
|
|
2113
|
-
/** Show the page size options. */
|
|
2114
|
-
showPageSizeOptions?: DapDSDataTable<T>["showPageSizeOptions"]
|
|
2115
|
-
/** Show the page index. */
|
|
2116
|
-
showPageIndex?: DapDSDataTable<T>["showPageIndex"]
|
|
2117
|
-
/** Show the page count. */
|
|
2118
|
-
showPageCount?: DapDSDataTable<T>["showPageCount"]
|
|
2119
|
-
/** Show the first button. */
|
|
2120
|
-
showFirstButton?: DapDSDataTable<T>["showFirstButton"]
|
|
2121
|
-
/** Show the previous button. */
|
|
2122
|
-
showPreviousButton?: DapDSDataTable<T>["showPreviousButton"]
|
|
2123
|
-
/** Show the next button. */
|
|
2124
|
-
showNextButton?: DapDSDataTable<T>["showNextButton"]
|
|
2125
|
-
/** Show the last button. */
|
|
2126
|
-
showLastButton?: DapDSDataTable<T>["showLastButton"]
|
|
2127
|
-
/** The label of the first button */
|
|
2128
|
-
firstButtonLabel?: DapDSDataTable<T>["firstButtonLabel"]
|
|
2129
|
-
/** The label of the previous button */
|
|
2130
|
-
previousButtonLabel?: DapDSDataTable<T>["previousButtonLabel"]
|
|
2131
|
-
/** The label of the next button */
|
|
2132
|
-
nextButtonLabel?: DapDSDataTable<T>["nextButtonLabel"]
|
|
2133
|
-
/** The label of the last button */
|
|
2134
|
-
lastButtonLabel?: DapDSDataTable<T>["lastButtonLabel"]
|
|
2135
|
-
/** `data-testid` for the column sort-toggle button. Suffixed with the column id. */
|
|
2136
|
-
sortButtonTestId?: DapDSDataTable<T>["sortButtonTestId"]
|
|
2137
|
-
/** Available page size options for the pager */
|
|
2138
|
-
pageSizeOptions?: DapDSDataTable<T>["pageSizeOptions"]
|
|
2139
|
-
/** Sorting state of the table */
|
|
2140
|
-
sorting?: DapDSDataTable<T>["sorting"]
|
|
2141
|
-
/** Selection state of the table */
|
|
2142
|
-
rowSelection?: DapDSDataTable<T>["rowSelection"]
|
|
2143
|
-
/** Pagination state of the table */
|
|
2144
|
-
pagination?: DapDSDataTable<T>["pagination"]
|
|
2145
|
-
/** Column sizing state of the table */
|
|
2146
|
-
columnSizing?: DapDSDataTable<T>["columnSizing"]
|
|
2147
|
-
/** ID of element labeling the table */
|
|
2148
|
-
ariaLabel?: DapDSDataTable<T>["ariaLabel"]
|
|
2149
|
-
/** Data to display in the table */
|
|
2150
|
-
data?: DapDSDataTable<T>["data"]
|
|
2151
|
-
/** Columns to display in the table */
|
|
2152
|
-
columns?: DapDSDataTable<T>["columns"]
|
|
2153
|
-
/** The function to determine the pager text */
|
|
2154
|
-
pageStateText?: DapDSDataTable<T>["pageStateText"]
|
|
2155
|
-
}
|
|
2156
|
-
|
|
2157
2176
|
export type DapDSIconProps = {
|
|
2158
2177
|
/** The name of the icon */
|
|
2159
2178
|
name?: DapDSIcon["name"]
|
|
@@ -2190,46 +2209,6 @@ export type DapDSIconButtonProps = {
|
|
|
2190
2209
|
ariaLabel?: DapDSIconButton["ariaLabel"]
|
|
2191
2210
|
}
|
|
2192
2211
|
|
|
2193
|
-
export type DapDSFeedbackProps = {
|
|
2194
|
-
/** The feedback message. */
|
|
2195
|
-
feedback?: DapDSFeedback["feedback"]
|
|
2196
|
-
/** The size of the feedback. Default is `sm`. */
|
|
2197
|
-
feedbackSize?: DapDSFeedback["feedbackSize"]
|
|
2198
|
-
/** The type of the feedback. */
|
|
2199
|
-
feedbackType?: DapDSFeedback["feedbackType"]
|
|
2200
|
-
/** The weight of the feedback. */
|
|
2201
|
-
feedbackSubtle?: DapDSFeedback["feedbackSubtle"]
|
|
2202
|
-
/** Removes the margins around the feedback. */
|
|
2203
|
-
feedbackNoMargin?: DapDSFeedback["feedbackNoMargin"]
|
|
2204
|
-
/** The id of the feedback. */
|
|
2205
|
-
feedbackId?: DapDSFeedback["feedbackId"]
|
|
2206
|
-
}
|
|
2207
|
-
|
|
2208
|
-
export type DapDSLabelProps = {
|
|
2209
|
-
/** The label text */
|
|
2210
|
-
label?: DapDSLabel["label"]
|
|
2211
|
-
/** The description of the label */
|
|
2212
|
-
description?: DapDSLabel["description"]
|
|
2213
|
-
/** The tooltip text */
|
|
2214
|
-
tooltip?: DapDSLabel["tooltip"]
|
|
2215
|
-
/** The size of the input. Default is `sm`. */
|
|
2216
|
-
size?: DapDSLabel["size"]
|
|
2217
|
-
/** The tooltip placement of the label. */
|
|
2218
|
-
tooltipPlacement?: DapDSLabel["tooltipPlacement"]
|
|
2219
|
-
/** If the label is optional. Default value is `false`. */
|
|
2220
|
-
optional?: DapDSLabel["optional"]
|
|
2221
|
-
/** Label of optional text */
|
|
2222
|
-
optionalLabel?: DapDSLabel["optionalLabel"]
|
|
2223
|
-
/** Indicator of required text (default: '*') */
|
|
2224
|
-
requiredLabel?: DapDSLabel["requiredLabel"]
|
|
2225
|
-
/** Text weight of label. If true the label is subtle. Default value is `false`. */
|
|
2226
|
-
subtle?: DapDSLabel["subtle"]
|
|
2227
|
-
/** The disabled state of the label. Default is `false`. */
|
|
2228
|
-
disabled?: DapDSLabel["disabled"]
|
|
2229
|
-
/** The required state of the label. Default is `false`. */
|
|
2230
|
-
required?: DapDSLabel["required"]
|
|
2231
|
-
}
|
|
2232
|
-
|
|
2233
2212
|
export type DapDSImageZoomProps = {
|
|
2234
2213
|
/** The open/zoomed state. Can be used for controlled mode. */
|
|
2235
2214
|
open?: DapDSImageZoom["open"]
|
|
@@ -2257,6 +2236,96 @@ export type DapDSImageZoomProps = {
|
|
|
2257
2236
|
unzoomButtonTestId?: DapDSImageZoom["unzoomButtonTestId"]
|
|
2258
2237
|
}
|
|
2259
2238
|
|
|
2239
|
+
export type DapDSInputProps = {
|
|
2240
|
+
/** The label of the input. */
|
|
2241
|
+
label?: DapDSInput["label"]
|
|
2242
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
2243
|
+
hideLabel?: DapDSInput["hideLabel"]
|
|
2244
|
+
/** The description of the input. */
|
|
2245
|
+
description?: DapDSInput["description"]
|
|
2246
|
+
/** Text of optional label. */
|
|
2247
|
+
optionalLabel?: DapDSInput["optionalLabel"]
|
|
2248
|
+
/** Text of required indicator. (default: '*') */
|
|
2249
|
+
requiredLabel?: DapDSInput["requiredLabel"]
|
|
2250
|
+
/** Text weight of label. If true the label is subtle. Default value is false. */
|
|
2251
|
+
subtle?: DapDSInput["subtle"]
|
|
2252
|
+
/** The value of the input. */
|
|
2253
|
+
value?: DapDSInput["value"]
|
|
2254
|
+
/** The placeholder of the input. */
|
|
2255
|
+
placeholder?: DapDSInput["placeholder"]
|
|
2256
|
+
/** The loading state of the input. Default is false. */
|
|
2257
|
+
loading?: DapDSInput["loading"]
|
|
2258
|
+
/** The tooltip of the input. */
|
|
2259
|
+
tooltip?: DapDSInput["tooltip"]
|
|
2260
|
+
/** The tooltip placement of the input. */
|
|
2261
|
+
tooltipPlacement?: DapDSInput["tooltipPlacement"]
|
|
2262
|
+
/** The aria label of the tooltip. */
|
|
2263
|
+
tooltipAriaLabel?: DapDSInput["tooltipAriaLabel"]
|
|
2264
|
+
/** The feedback of the input. */
|
|
2265
|
+
feedback?: DapDSInput["feedback"]
|
|
2266
|
+
/** The feedback type of the input. Can be `negative`, `positive`, or `warning`. */
|
|
2267
|
+
feedbackType?: DapDSInput["feedbackType"]
|
|
2268
|
+
/** The status of the input. Can be `success` or `error`. */
|
|
2269
|
+
status?: DapDSInput["status"]
|
|
2270
|
+
/** The size of the input. Default is `sm`. */
|
|
2271
|
+
size?: DapDSInput["size"]
|
|
2272
|
+
/** Responsive size map (e.g. "xs:lg"). */
|
|
2273
|
+
sizeMap?: DapDSInput["sizeMap"]
|
|
2274
|
+
/** The name of the input. */
|
|
2275
|
+
name?: DapDSInput["name"]
|
|
2276
|
+
/** The type of the input. Default is 'text'. */
|
|
2277
|
+
type?: DapDSInput["type"]
|
|
2278
|
+
/** The disabled state of the input. Default is false. */
|
|
2279
|
+
disabled?: DapDSInput["disabled"]
|
|
2280
|
+
/** The required state of the input. Default is false. */
|
|
2281
|
+
required?: DapDSInput["required"]
|
|
2282
|
+
/** The readonly state of the input. Default is false. */
|
|
2283
|
+
readonly?: DapDSInput["readonly"]
|
|
2284
|
+
/** The autofocus state of the input. Default is false. */
|
|
2285
|
+
autofocus?: DapDSInput["autofocus"]
|
|
2286
|
+
/** The autocapitalize state of the input. Default is false. */
|
|
2287
|
+
autocapitalize?: DapDSInput["autocapitalize"]
|
|
2288
|
+
/** The minimum length of the input. */
|
|
2289
|
+
minlength?: DapDSInput["minlength"]
|
|
2290
|
+
/** The maximum length of the input. */
|
|
2291
|
+
maxlength?: DapDSInput["maxlength"]
|
|
2292
|
+
/** The minimum value of the number input. */
|
|
2293
|
+
min?: DapDSInput["min"]
|
|
2294
|
+
/** The maximum value of the number input. */
|
|
2295
|
+
max?: DapDSInput["max"]
|
|
2296
|
+
/** The step value of the number input. */
|
|
2297
|
+
step?: DapDSInput["step"]
|
|
2298
|
+
/** The inputmode of the input. */
|
|
2299
|
+
inputmode?: DapDSInput["inputmode"]
|
|
2300
|
+
/** The regex pattern of the input. */
|
|
2301
|
+
pattern?: DapDSInput["pattern"]
|
|
2302
|
+
}
|
|
2303
|
+
|
|
2304
|
+
export type DapDSLabelProps = {
|
|
2305
|
+
/** The label text */
|
|
2306
|
+
label?: DapDSLabel["label"]
|
|
2307
|
+
/** The description of the label */
|
|
2308
|
+
description?: DapDSLabel["description"]
|
|
2309
|
+
/** The tooltip text */
|
|
2310
|
+
tooltip?: DapDSLabel["tooltip"]
|
|
2311
|
+
/** The size of the input. Default is `sm`. */
|
|
2312
|
+
size?: DapDSLabel["size"]
|
|
2313
|
+
/** The tooltip placement of the label. */
|
|
2314
|
+
tooltipPlacement?: DapDSLabel["tooltipPlacement"]
|
|
2315
|
+
/** If the label is optional. Default value is `false`. */
|
|
2316
|
+
optional?: DapDSLabel["optional"]
|
|
2317
|
+
/** Label of optional text */
|
|
2318
|
+
optionalLabel?: DapDSLabel["optionalLabel"]
|
|
2319
|
+
/** Indicator of required text (default: '*') */
|
|
2320
|
+
requiredLabel?: DapDSLabel["requiredLabel"]
|
|
2321
|
+
/** Text weight of label. If true the label is subtle. Default value is `false`. */
|
|
2322
|
+
subtle?: DapDSLabel["subtle"]
|
|
2323
|
+
/** The disabled state of the label. Default is `false`. */
|
|
2324
|
+
disabled?: DapDSLabel["disabled"]
|
|
2325
|
+
/** The required state of the label. Default is `false`. */
|
|
2326
|
+
required?: DapDSLabel["required"]
|
|
2327
|
+
}
|
|
2328
|
+
|
|
2260
2329
|
export type DapDSLinkProps = {
|
|
2261
2330
|
/** The size of the link */
|
|
2262
2331
|
size?: DapDSLink["size"]
|
|
@@ -2650,6 +2719,10 @@ export type DapDSPagerProps = {
|
|
|
2650
2719
|
showNextButton?: DapDSPager["showNextButton"]
|
|
2651
2720
|
/** Show the last button. */
|
|
2652
2721
|
showLastButton?: DapDSPager["showLastButton"]
|
|
2722
|
+
/** Show numbered page buttons between the previous and next buttons. */
|
|
2723
|
+
showPageNumbers?: DapDSPager["showPageNumbers"]
|
|
2724
|
+
/** How many page numbers to show on each side of the current page. */
|
|
2725
|
+
siblingCount?: DapDSPager["siblingCount"]
|
|
2653
2726
|
/** The first button label. */
|
|
2654
2727
|
firstButtonLabel?: DapDSPager["firstButtonLabel"]
|
|
2655
2728
|
/** The previous button label. */
|
|
@@ -2916,71 +2989,6 @@ export type DapDSSearchProps = {
|
|
|
2916
2989
|
subtle?: DapDSSearch["subtle"]
|
|
2917
2990
|
}
|
|
2918
2991
|
|
|
2919
|
-
export type DapDSInputProps = {
|
|
2920
|
-
/** The label of the input. */
|
|
2921
|
-
label?: DapDSInput["label"]
|
|
2922
|
-
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
2923
|
-
hideLabel?: DapDSInput["hideLabel"]
|
|
2924
|
-
/** The description of the input. */
|
|
2925
|
-
description?: DapDSInput["description"]
|
|
2926
|
-
/** Text of optional label. */
|
|
2927
|
-
optionalLabel?: DapDSInput["optionalLabel"]
|
|
2928
|
-
/** Text of required indicator. (default: '*') */
|
|
2929
|
-
requiredLabel?: DapDSInput["requiredLabel"]
|
|
2930
|
-
/** Text weight of label. If true the label is subtle. Default value is false. */
|
|
2931
|
-
subtle?: DapDSInput["subtle"]
|
|
2932
|
-
/** The value of the input. */
|
|
2933
|
-
value?: DapDSInput["value"]
|
|
2934
|
-
/** The placeholder of the input. */
|
|
2935
|
-
placeholder?: DapDSInput["placeholder"]
|
|
2936
|
-
/** The loading state of the input. Default is false. */
|
|
2937
|
-
loading?: DapDSInput["loading"]
|
|
2938
|
-
/** The tooltip of the input. */
|
|
2939
|
-
tooltip?: DapDSInput["tooltip"]
|
|
2940
|
-
/** The tooltip placement of the input. */
|
|
2941
|
-
tooltipPlacement?: DapDSInput["tooltipPlacement"]
|
|
2942
|
-
/** The aria label of the tooltip. */
|
|
2943
|
-
tooltipAriaLabel?: DapDSInput["tooltipAriaLabel"]
|
|
2944
|
-
/** The feedback of the input. */
|
|
2945
|
-
feedback?: DapDSInput["feedback"]
|
|
2946
|
-
/** The feedback type of the input. Can be `negative`, `positive`, or `warning`. */
|
|
2947
|
-
feedbackType?: DapDSInput["feedbackType"]
|
|
2948
|
-
/** The status of the input. Can be `success` or `error`. */
|
|
2949
|
-
status?: DapDSInput["status"]
|
|
2950
|
-
/** The size of the input. Default is `sm`. */
|
|
2951
|
-
size?: DapDSInput["size"]
|
|
2952
|
-
/** Responsive size map (e.g. "xs:lg"). */
|
|
2953
|
-
sizeMap?: DapDSInput["sizeMap"]
|
|
2954
|
-
/** The name of the input. */
|
|
2955
|
-
name?: DapDSInput["name"]
|
|
2956
|
-
/** The type of the input. Default is 'text'. */
|
|
2957
|
-
type?: DapDSInput["type"]
|
|
2958
|
-
/** The disabled state of the input. Default is false. */
|
|
2959
|
-
disabled?: DapDSInput["disabled"]
|
|
2960
|
-
/** The required state of the input. Default is false. */
|
|
2961
|
-
required?: DapDSInput["required"]
|
|
2962
|
-
/** The readonly state of the input. Default is false. */
|
|
2963
|
-
readonly?: DapDSInput["readonly"]
|
|
2964
|
-
/** The autofocus state of the input. Default is false. */
|
|
2965
|
-
autofocus?: DapDSInput["autofocus"]
|
|
2966
|
-
/** The autocapitalize state of the input. Default is false. */
|
|
2967
|
-
autocapitalize?: DapDSInput["autocapitalize"]
|
|
2968
|
-
/** The minimum length of the input. */
|
|
2969
|
-
minlength?: DapDSInput["minlength"]
|
|
2970
|
-
/** The maximum length of the input. */
|
|
2971
|
-
maxlength?: DapDSInput["maxlength"]
|
|
2972
|
-
/** The minimum value of the number input. */
|
|
2973
|
-
min?: DapDSInput["min"]
|
|
2974
|
-
/** The maximum value of the number input. */
|
|
2975
|
-
max?: DapDSInput["max"]
|
|
2976
|
-
/** The step value of the number input. */
|
|
2977
|
-
step?: DapDSInput["step"]
|
|
2978
|
-
/** The inputmode of the input. */
|
|
2979
|
-
inputmode?: DapDSInput["inputmode"]
|
|
2980
|
-
/** The regex pattern of the input. */
|
|
2981
|
-
pattern?: DapDSInput["pattern"]
|
|
2982
|
-
}
|
|
2983
|
-
|
|
2984
2992
|
export type DapDSSelectProps = {
|
|
2985
2993
|
/** The popup placement of the select */
|
|
2986
2994
|
placement?: DapDSSelect["placement"]
|
|
@@ -3050,55 +3058,6 @@ export type DapDSSelectProps = {
|
|
|
3050
3058
|
subtle?: DapDSSelect["subtle"]
|
|
3051
3059
|
}
|
|
3052
3060
|
|
|
3053
|
-
export type DapDSSideNavGroupProps = {
|
|
3054
|
-
/** The href of the side navigation item */
|
|
3055
|
-
href?: DapDSSideNavGroup["href"]
|
|
3056
|
-
/** Whether the side navigation item is active */
|
|
3057
|
-
active?: DapDSSideNavGroup["active"]
|
|
3058
|
-
/** The spacing of the side navigation item */
|
|
3059
|
-
spacing?: DapDSSideNavGroup["spacing"]
|
|
3060
|
-
/** Whether the side navigation group is open */
|
|
3061
|
-
open?: DapDSSideNavGroup["open"]
|
|
3062
|
-
/** The size of the side navigation group */
|
|
3063
|
-
size?: DapDSSideNavGroup["size"]
|
|
3064
|
-
}
|
|
3065
|
-
|
|
3066
|
-
export type DapDSSideNavItemProps = {
|
|
3067
|
-
/** The href of the side navigation item */
|
|
3068
|
-
href?: DapDSSideNavItem["href"]
|
|
3069
|
-
/** Whether the side navigation item is active */
|
|
3070
|
-
active?: DapDSSideNavItem["active"]
|
|
3071
|
-
/** Which `aria-current` token to expose on the link when `active` is set.
|
|
3072
|
-
|
|
3073
|
-
`aria-current` has to sit on the anchor that assistive technology actually
|
|
3074
|
-
exposes. Setting it on this host does nothing: the host is a role-less custom
|
|
3075
|
-
element, so the attribute is stranded there and screen-reader users cannot tell
|
|
3076
|
-
which item is current. Use `current="step"` inside a stepper. */
|
|
3077
|
-
current?: DapDSSideNavItem["current"]
|
|
3078
|
-
/** The spacing of the side navigation item */
|
|
3079
|
-
spacing?: DapDSSideNavItem["spacing"]
|
|
3080
|
-
/** The size of the side navigation item */
|
|
3081
|
-
size?: DapDSSideNavItem["size"]
|
|
3082
|
-
}
|
|
3083
|
-
|
|
3084
|
-
export type DapDSSideNavProps = {
|
|
3085
|
-
/** The label of the side navigation, if aria label is not provided, it will be used as aria label */
|
|
3086
|
-
label?: DapDSSideNav["label"]
|
|
3087
|
-
/** The active href of the side navigation, to explicitly set the active item, if not provided, it will be set based on the current location */
|
|
3088
|
-
activeHref?: DapDSSideNav["activeHref"]
|
|
3089
|
-
/** The size of the side navigation */
|
|
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"]
|
|
3100
|
-
}
|
|
3101
|
-
|
|
3102
3061
|
export type DapDSSkeletonProps = {
|
|
3103
3062
|
/** The variant of the skeleton. */
|
|
3104
3063
|
variant?: DapDSSkeleton["variant"]
|
|
@@ -3280,6 +3239,55 @@ export type DapDSTableProps = {
|
|
|
3280
3239
|
caption?: DapDSTable["caption"]
|
|
3281
3240
|
}
|
|
3282
3241
|
|
|
3242
|
+
export type DapDSSideNavGroupProps = {
|
|
3243
|
+
/** The href of the side navigation item */
|
|
3244
|
+
href?: DapDSSideNavGroup["href"]
|
|
3245
|
+
/** Whether the side navigation item is active */
|
|
3246
|
+
active?: DapDSSideNavGroup["active"]
|
|
3247
|
+
/** The spacing of the side navigation item */
|
|
3248
|
+
spacing?: DapDSSideNavGroup["spacing"]
|
|
3249
|
+
/** Whether the side navigation group is open */
|
|
3250
|
+
open?: DapDSSideNavGroup["open"]
|
|
3251
|
+
/** The size of the side navigation group */
|
|
3252
|
+
size?: DapDSSideNavGroup["size"]
|
|
3253
|
+
}
|
|
3254
|
+
|
|
3255
|
+
export type DapDSSideNavItemProps = {
|
|
3256
|
+
/** The href of the side navigation item */
|
|
3257
|
+
href?: DapDSSideNavItem["href"]
|
|
3258
|
+
/** Whether the side navigation item is active */
|
|
3259
|
+
active?: DapDSSideNavItem["active"]
|
|
3260
|
+
/** Which `aria-current` token to expose on the link when `active` is set.
|
|
3261
|
+
|
|
3262
|
+
`aria-current` has to sit on the anchor that assistive technology actually
|
|
3263
|
+
exposes. Setting it on this host does nothing: the host is a role-less custom
|
|
3264
|
+
element, so the attribute is stranded there and screen-reader users cannot tell
|
|
3265
|
+
which item is current. Use `current="step"` inside a stepper. */
|
|
3266
|
+
current?: DapDSSideNavItem["current"]
|
|
3267
|
+
/** The spacing of the side navigation item */
|
|
3268
|
+
spacing?: DapDSSideNavItem["spacing"]
|
|
3269
|
+
/** The size of the side navigation item */
|
|
3270
|
+
size?: DapDSSideNavItem["size"]
|
|
3271
|
+
}
|
|
3272
|
+
|
|
3273
|
+
export type DapDSSideNavProps = {
|
|
3274
|
+
/** The label of the side navigation, if aria label is not provided, it will be used as aria label */
|
|
3275
|
+
label?: DapDSSideNav["label"]
|
|
3276
|
+
/** The active href of the side navigation, to explicitly set the active item, if not provided, it will be set based on the current location */
|
|
3277
|
+
activeHref?: DapDSSideNav["activeHref"]
|
|
3278
|
+
/** The size of the side navigation */
|
|
3279
|
+
size?: DapDSSideNav["size"]
|
|
3280
|
+
/** The landmark element to render. `aside` exposes a complementary landmark; `nav`
|
|
3281
|
+
exposes a navigation landmark, so the sidenav is listed when a screen-reader user
|
|
3282
|
+
asks for the page's navigation.
|
|
3283
|
+
|
|
3284
|
+
Defaults to `aside` because that is what this component has always rendered, and
|
|
3285
|
+
changing the landmark of every existing sidenav is not this component's call: a
|
|
3286
|
+
sidenav that is genuinely a sidebar should stay complementary. Set `nav` when the
|
|
3287
|
+
sidenav is the primary way to move around the view. */
|
|
3288
|
+
landmark?: DapDSSideNav["landmark"]
|
|
3289
|
+
}
|
|
3290
|
+
|
|
3283
3291
|
export type DapDSTextareaProps = {
|
|
3284
3292
|
/** Hide character counter. */
|
|
3285
3293
|
hideCounter?: DapDSTextarea["hideCounter"]
|
|
@@ -3601,41 +3609,6 @@ export type DapDSFormLabelProps = {
|
|
|
3601
3609
|
hideLabel?: DapDSFormLabel["hideLabel"]
|
|
3602
3610
|
}
|
|
3603
3611
|
|
|
3604
|
-
export type DapDSInputGroupProps = {
|
|
3605
|
-
/** */
|
|
3606
|
-
allInputs?: DapDSInputGroup["allInputs"]
|
|
3607
|
-
/** The label of the input group. */
|
|
3608
|
-
label?: DapDSInputGroup["label"]
|
|
3609
|
-
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3610
|
-
hideLabel?: DapDSInputGroup["hideLabel"]
|
|
3611
|
-
/** The description of the input group. */
|
|
3612
|
-
description?: DapDSInputGroup["description"]
|
|
3613
|
-
/** The tooltip of the input group. */
|
|
3614
|
-
tooltip?: DapDSInputGroup["tooltip"]
|
|
3615
|
-
/** The tooltip placement of the input group. */
|
|
3616
|
-
tooltipPlacement?: DapDSInputGroup["tooltipPlacement"]
|
|
3617
|
-
/** The aria label of the tooltip. */
|
|
3618
|
-
tooltipAriaLabel?: DapDSInputGroup["tooltipAriaLabel"]
|
|
3619
|
-
/** The label of the input group when it is optional. */
|
|
3620
|
-
optionalLabel?: DapDSInputGroup["optionalLabel"]
|
|
3621
|
-
/** The indicator of the input group when it is required. (default: '*') */
|
|
3622
|
-
requiredLabel?: DapDSInputGroup["requiredLabel"]
|
|
3623
|
-
/** Whether the input group is disabled. */
|
|
3624
|
-
disabled?: DapDSInputGroup["disabled"]
|
|
3625
|
-
/** The size of the input group. Default is `sm`. */
|
|
3626
|
-
size?: DapDSInputGroup["size"]
|
|
3627
|
-
/** Whether the input group is required. */
|
|
3628
|
-
required?: DapDSInputGroup["required"]
|
|
3629
|
-
/** Whether the input group is optional. */
|
|
3630
|
-
optional?: DapDSInputGroup["optional"]
|
|
3631
|
-
/** The feedback of the input. */
|
|
3632
|
-
feedback?: DapDSInputGroup["feedback"]
|
|
3633
|
-
/** The type of the feedback. */
|
|
3634
|
-
feedbackType?: DapDSInputGroup["feedbackType"]
|
|
3635
|
-
/** Whether the input group label is subtle. */
|
|
3636
|
-
subtle?: DapDSInputGroup["subtle"]
|
|
3637
|
-
}
|
|
3638
|
-
|
|
3639
3612
|
export type DapDSRadioGroupProps = {
|
|
3640
3613
|
/** The tooltip placement of the radio group. */
|
|
3641
3614
|
tooltipPlacement?: DapDSRadioGroup["tooltipPlacement"]
|
|
@@ -3677,6 +3650,41 @@ export type DapDSRadioGroupProps = {
|
|
|
3677
3650
|
size?: DapDSRadioGroup["size"]
|
|
3678
3651
|
}
|
|
3679
3652
|
|
|
3653
|
+
export type DapDSInputGroupProps = {
|
|
3654
|
+
/** */
|
|
3655
|
+
allInputs?: DapDSInputGroup["allInputs"]
|
|
3656
|
+
/** The label of the input group. */
|
|
3657
|
+
label?: DapDSInputGroup["label"]
|
|
3658
|
+
/** Visually hides the label while keeping it available to assistive technology. (default: false) */
|
|
3659
|
+
hideLabel?: DapDSInputGroup["hideLabel"]
|
|
3660
|
+
/** The description of the input group. */
|
|
3661
|
+
description?: DapDSInputGroup["description"]
|
|
3662
|
+
/** The tooltip of the input group. */
|
|
3663
|
+
tooltip?: DapDSInputGroup["tooltip"]
|
|
3664
|
+
/** The tooltip placement of the input group. */
|
|
3665
|
+
tooltipPlacement?: DapDSInputGroup["tooltipPlacement"]
|
|
3666
|
+
/** The aria label of the tooltip. */
|
|
3667
|
+
tooltipAriaLabel?: DapDSInputGroup["tooltipAriaLabel"]
|
|
3668
|
+
/** The label of the input group when it is optional. */
|
|
3669
|
+
optionalLabel?: DapDSInputGroup["optionalLabel"]
|
|
3670
|
+
/** The indicator of the input group when it is required. (default: '*') */
|
|
3671
|
+
requiredLabel?: DapDSInputGroup["requiredLabel"]
|
|
3672
|
+
/** Whether the input group is disabled. */
|
|
3673
|
+
disabled?: DapDSInputGroup["disabled"]
|
|
3674
|
+
/** The size of the input group. Default is `sm`. */
|
|
3675
|
+
size?: DapDSInputGroup["size"]
|
|
3676
|
+
/** Whether the input group is required. */
|
|
3677
|
+
required?: DapDSInputGroup["required"]
|
|
3678
|
+
/** Whether the input group is optional. */
|
|
3679
|
+
optional?: DapDSInputGroup["optional"]
|
|
3680
|
+
/** The feedback of the input. */
|
|
3681
|
+
feedback?: DapDSInputGroup["feedback"]
|
|
3682
|
+
/** The type of the feedback. */
|
|
3683
|
+
feedbackType?: DapDSInputGroup["feedbackType"]
|
|
3684
|
+
/** Whether the input group label is subtle. */
|
|
3685
|
+
subtle?: DapDSInputGroup["subtle"]
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3680
3688
|
export type ArrowsArrowDownLineProps = {
|
|
3681
3689
|
/** (optional) The width and height in pixels */
|
|
3682
3690
|
size?: ArrowsArrowDownLine["size"]
|
|
@@ -3732,17 +3740,6 @@ export type ArrowsArrowLeftLLineProps = {
|
|
|
3732
3740
|
focusable?: ArrowsArrowLeftLLine["focusable"]
|
|
3733
3741
|
}
|
|
3734
3742
|
|
|
3735
|
-
export type ArrowsArrowLeftLineProps = {
|
|
3736
|
-
/** (optional) The width and height in pixels */
|
|
3737
|
-
size?: ArrowsArrowLeftLine["size"]
|
|
3738
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3739
|
-
selected?: ArrowsArrowLeftLine["selected"]
|
|
3740
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3741
|
-
accessibilityTitle?: ArrowsArrowLeftLine["accessibilityTitle"]
|
|
3742
|
-
/** (optional) If `true` the icon can receive focus */
|
|
3743
|
-
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3744
|
-
}
|
|
3745
|
-
|
|
3746
3743
|
export type ArrowsArrowLeftSFillProps = {
|
|
3747
3744
|
/** (optional) The width and height in pixels */
|
|
3748
3745
|
size?: ArrowsArrowLeftSFill["size"]
|
|
@@ -3754,26 +3751,26 @@ export type ArrowsArrowLeftSFillProps = {
|
|
|
3754
3751
|
focusable?: ArrowsArrowLeftSFill["focusable"]
|
|
3755
3752
|
}
|
|
3756
3753
|
|
|
3757
|
-
export type
|
|
3754
|
+
export type ArrowsArrowLeftLineProps = {
|
|
3758
3755
|
/** (optional) The width and height in pixels */
|
|
3759
|
-
size?:
|
|
3756
|
+
size?: ArrowsArrowLeftLine["size"]
|
|
3760
3757
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3761
|
-
selected?:
|
|
3758
|
+
selected?: ArrowsArrowLeftLine["selected"]
|
|
3762
3759
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3763
|
-
accessibilityTitle?:
|
|
3760
|
+
accessibilityTitle?: ArrowsArrowLeftLine["accessibilityTitle"]
|
|
3764
3761
|
/** (optional) If `true` the icon can receive focus */
|
|
3765
|
-
focusable?:
|
|
3762
|
+
focusable?: ArrowsArrowLeftLine["focusable"]
|
|
3766
3763
|
}
|
|
3767
3764
|
|
|
3768
|
-
export type
|
|
3765
|
+
export type ArrowsArrowLeftSLineProps = {
|
|
3769
3766
|
/** (optional) The width and height in pixels */
|
|
3770
|
-
size?:
|
|
3767
|
+
size?: ArrowsArrowLeftSLine["size"]
|
|
3771
3768
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3772
|
-
selected?:
|
|
3769
|
+
selected?: ArrowsArrowLeftSLine["selected"]
|
|
3773
3770
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3774
|
-
accessibilityTitle?:
|
|
3771
|
+
accessibilityTitle?: ArrowsArrowLeftSLine["accessibilityTitle"]
|
|
3775
3772
|
/** (optional) If `true` the icon can receive focus */
|
|
3776
|
-
focusable?:
|
|
3773
|
+
focusable?: ArrowsArrowLeftSLine["focusable"]
|
|
3777
3774
|
}
|
|
3778
3775
|
|
|
3779
3776
|
export type ArrowsArrowRightDownLineProps = {
|
|
@@ -3798,6 +3795,17 @@ export type ArrowsArrowRightLLineProps = {
|
|
|
3798
3795
|
focusable?: ArrowsArrowRightLLine["focusable"]
|
|
3799
3796
|
}
|
|
3800
3797
|
|
|
3798
|
+
export type ArrowsArrowLeftUpLineProps = {
|
|
3799
|
+
/** (optional) The width and height in pixels */
|
|
3800
|
+
size?: ArrowsArrowLeftUpLine["size"]
|
|
3801
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3802
|
+
selected?: ArrowsArrowLeftUpLine["selected"]
|
|
3803
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3804
|
+
accessibilityTitle?: ArrowsArrowLeftUpLine["accessibilityTitle"]
|
|
3805
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3806
|
+
focusable?: ArrowsArrowLeftUpLine["focusable"]
|
|
3807
|
+
}
|
|
3808
|
+
|
|
3801
3809
|
export type ArrowsArrowRightLineProps = {
|
|
3802
3810
|
/** (optional) The width and height in pixels */
|
|
3803
3811
|
size?: ArrowsArrowRightLine["size"]
|
|
@@ -3897,6 +3905,17 @@ export type BuildingsHome6LineProps = {
|
|
|
3897
3905
|
focusable?: BuildingsHome6Line["focusable"]
|
|
3898
3906
|
}
|
|
3899
3907
|
|
|
3908
|
+
export type BusinessCalendarLineProps = {
|
|
3909
|
+
/** (optional) The width and height in pixels */
|
|
3910
|
+
size?: BusinessCalendarLine["size"]
|
|
3911
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3912
|
+
selected?: BusinessCalendarLine["selected"]
|
|
3913
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3914
|
+
accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
|
|
3915
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3916
|
+
focusable?: BusinessCalendarLine["focusable"]
|
|
3917
|
+
}
|
|
3918
|
+
|
|
3900
3919
|
export type DesignEditLineProps = {
|
|
3901
3920
|
/** (optional) The width and height in pixels */
|
|
3902
3921
|
size?: DesignEditLine["size"]
|
|
@@ -3963,6 +3982,17 @@ export type DocumentFileImageLineProps = {
|
|
|
3963
3982
|
focusable?: DocumentFileImageLine["focusable"]
|
|
3964
3983
|
}
|
|
3965
3984
|
|
|
3985
|
+
export type DocumentFileMusicLineProps = {
|
|
3986
|
+
/** (optional) The width and height in pixels */
|
|
3987
|
+
size?: DocumentFileMusicLine["size"]
|
|
3988
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
3989
|
+
selected?: DocumentFileMusicLine["selected"]
|
|
3990
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
3991
|
+
accessibilityTitle?: DocumentFileMusicLine["accessibilityTitle"]
|
|
3992
|
+
/** (optional) If `true` the icon can receive focus */
|
|
3993
|
+
focusable?: DocumentFileMusicLine["focusable"]
|
|
3994
|
+
}
|
|
3995
|
+
|
|
3966
3996
|
export type DocumentFileTextLineProps = {
|
|
3967
3997
|
/** (optional) The width and height in pixels */
|
|
3968
3998
|
size?: DocumentFileTextLine["size"]
|
|
@@ -4040,26 +4070,26 @@ export type HealthHeartLineProps = {
|
|
|
4040
4070
|
focusable?: HealthHeartLine["focusable"]
|
|
4041
4071
|
}
|
|
4042
4072
|
|
|
4043
|
-
export type
|
|
4073
|
+
export type SystemAddLineProps = {
|
|
4044
4074
|
/** (optional) The width and height in pixels */
|
|
4045
|
-
size?:
|
|
4075
|
+
size?: SystemAddLine["size"]
|
|
4046
4076
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4047
|
-
selected?:
|
|
4077
|
+
selected?: SystemAddLine["selected"]
|
|
4048
4078
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4049
|
-
accessibilityTitle?:
|
|
4079
|
+
accessibilityTitle?: SystemAddLine["accessibilityTitle"]
|
|
4050
4080
|
/** (optional) If `true` the icon can receive focus */
|
|
4051
|
-
focusable?:
|
|
4081
|
+
focusable?: SystemAddLine["focusable"]
|
|
4052
4082
|
}
|
|
4053
4083
|
|
|
4054
|
-
export type
|
|
4084
|
+
export type OthersCookieLineProps = {
|
|
4055
4085
|
/** (optional) The width and height in pixels */
|
|
4056
|
-
size?:
|
|
4086
|
+
size?: OthersCookieLine["size"]
|
|
4057
4087
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4058
|
-
selected?:
|
|
4088
|
+
selected?: OthersCookieLine["selected"]
|
|
4059
4089
|
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4060
|
-
accessibilityTitle?:
|
|
4090
|
+
accessibilityTitle?: OthersCookieLine["accessibilityTitle"]
|
|
4061
4091
|
/** (optional) If `true` the icon can receive focus */
|
|
4062
|
-
focusable?:
|
|
4092
|
+
focusable?: OthersCookieLine["focusable"]
|
|
4063
4093
|
}
|
|
4064
4094
|
|
|
4065
4095
|
export type SystemAlertFillProps = {
|
|
@@ -4073,6 +4103,17 @@ export type SystemAlertFillProps = {
|
|
|
4073
4103
|
focusable?: SystemAlertFill["focusable"]
|
|
4074
4104
|
}
|
|
4075
4105
|
|
|
4106
|
+
export type SystemAlertLineProps = {
|
|
4107
|
+
/** (optional) The width and height in pixels */
|
|
4108
|
+
size?: SystemAlertLine["size"]
|
|
4109
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4110
|
+
selected?: SystemAlertLine["selected"]
|
|
4111
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4112
|
+
accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
|
|
4113
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4114
|
+
focusable?: SystemAlertLine["focusable"]
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4076
4117
|
export type SystemCheckLineProps = {
|
|
4077
4118
|
/** (optional) The width and height in pixels */
|
|
4078
4119
|
size?: SystemCheckLine["size"]
|
|
@@ -4095,18 +4136,7 @@ export type SystemCheckLine2Props = {
|
|
|
4095
4136
|
focusable?: SystemCheckLine2["focusable"]
|
|
4096
4137
|
}
|
|
4097
4138
|
|
|
4098
|
-
export type
|
|
4099
|
-
/** (optional) The width and height in pixels */
|
|
4100
|
-
size?: SystemAlertLine["size"]
|
|
4101
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4102
|
-
selected?: SystemAlertLine["selected"]
|
|
4103
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4104
|
-
accessibilityTitle?: SystemAlertLine["accessibilityTitle"]
|
|
4105
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4106
|
-
focusable?: SystemAlertLine["focusable"]
|
|
4107
|
-
}
|
|
4108
|
-
|
|
4109
|
-
export type SystemCheckboxBlankCircleFillProps = {
|
|
4139
|
+
export type SystemCheckboxBlankCircleFillProps = {
|
|
4110
4140
|
/** (optional) The width and height in pixels */
|
|
4111
4141
|
size?: SystemCheckboxBlankCircleFill["size"]
|
|
4112
4142
|
/** (optional) Sets the icon color via the `fill` attribute */
|
|
@@ -4260,6 +4290,17 @@ export type SystemErrorWarningLineProps = {
|
|
|
4260
4290
|
focusable?: SystemErrorWarningLine["focusable"]
|
|
4261
4291
|
}
|
|
4262
4292
|
|
|
4293
|
+
export type SystemExternalLinkLineProps = {
|
|
4294
|
+
/** (optional) The width and height in pixels */
|
|
4295
|
+
size?: SystemExternalLinkLine["size"]
|
|
4296
|
+
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4297
|
+
selected?: SystemExternalLinkLine["selected"]
|
|
4298
|
+
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4299
|
+
accessibilityTitle?: SystemExternalLinkLine["accessibilityTitle"]
|
|
4300
|
+
/** (optional) If `true` the icon can receive focus */
|
|
4301
|
+
focusable?: SystemExternalLinkLine["focusable"]
|
|
4302
|
+
}
|
|
4303
|
+
|
|
4263
4304
|
export type SystemEyeLineProps = {
|
|
4264
4305
|
/** (optional) The width and height in pixels */
|
|
4265
4306
|
size?: SystemEyeLine["size"]
|
|
@@ -4315,17 +4356,6 @@ export type SystemInformationFillProps = {
|
|
|
4315
4356
|
focusable?: SystemInformationFill["focusable"]
|
|
4316
4357
|
}
|
|
4317
4358
|
|
|
4318
|
-
export type DocumentFileMusicLineProps = {
|
|
4319
|
-
/** (optional) The width and height in pixels */
|
|
4320
|
-
size?: DocumentFileMusicLine["size"]
|
|
4321
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4322
|
-
selected?: DocumentFileMusicLine["selected"]
|
|
4323
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4324
|
-
accessibilityTitle?: DocumentFileMusicLine["accessibilityTitle"]
|
|
4325
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4326
|
-
focusable?: DocumentFileMusicLine["focusable"]
|
|
4327
|
-
}
|
|
4328
|
-
|
|
4329
4359
|
export type SystemInformationLineProps = {
|
|
4330
4360
|
/** (optional) The width and height in pixels */
|
|
4331
4361
|
size?: SystemInformationLine["size"]
|
|
@@ -4579,17 +4609,6 @@ export type SystemZoomOutLineProps = {
|
|
|
4579
4609
|
focusable?: SystemZoomOutLine["focusable"]
|
|
4580
4610
|
}
|
|
4581
4611
|
|
|
4582
|
-
export type SystemExternalLinkLineProps = {
|
|
4583
|
-
/** (optional) The width and height in pixels */
|
|
4584
|
-
size?: SystemExternalLinkLine["size"]
|
|
4585
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4586
|
-
selected?: SystemExternalLinkLine["selected"]
|
|
4587
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4588
|
-
accessibilityTitle?: SystemExternalLinkLine["accessibilityTitle"]
|
|
4589
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4590
|
-
focusable?: SystemExternalLinkLine["focusable"]
|
|
4591
|
-
}
|
|
4592
|
-
|
|
4593
4612
|
export type UserAccountCircleFillProps = {
|
|
4594
4613
|
/** (optional) The width and height in pixels */
|
|
4595
4614
|
size?: UserAccountCircleFill["size"]
|
|
@@ -4634,46 +4653,29 @@ export type UserUserLineProps = {
|
|
|
4634
4653
|
focusable?: UserUserLine["focusable"]
|
|
4635
4654
|
}
|
|
4636
4655
|
|
|
4637
|
-
export type BusinessCalendarLineProps = {
|
|
4638
|
-
/** (optional) The width and height in pixels */
|
|
4639
|
-
size?: BusinessCalendarLine["size"]
|
|
4640
|
-
/** (optional) Sets the icon color via the `fill` attribute */
|
|
4641
|
-
selected?: BusinessCalendarLine["selected"]
|
|
4642
|
-
/** (optional) When using the icon standalone, make it meaningful for accessibility */
|
|
4643
|
-
accessibilityTitle?: BusinessCalendarLine["accessibilityTitle"]
|
|
4644
|
-
/** (optional) If `true` the icon can receive focus */
|
|
4645
|
-
focusable?: BusinessCalendarLine["focusable"]
|
|
4646
|
-
}
|
|
4647
|
-
|
|
4648
4656
|
// Augment Vue's GlobalComponents interface
|
|
4649
4657
|
declare module 'vue' {
|
|
4650
4658
|
interface GlobalComponents {
|
|
4651
4659
|
/**
|
|
4652
|
-
* An accordion is a
|
|
4653
|
-
*
|
|
4654
|
-
* ### Events:
|
|
4655
|
-
* - **dds-opened** - Event fired when the accordion is opened.
|
|
4656
|
-
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4660
|
+
* An accordion group is a collection of accordion components.
|
|
4657
4661
|
*
|
|
4658
4662
|
* ### Slots:
|
|
4659
|
-
* - **default** - The content of the accordion.
|
|
4660
|
-
* - **heading** - The heading of the accordion.
|
|
4661
|
-
* - **icon-opened** - The icon when the accordion is opened.
|
|
4662
|
-
* - **icon-closed** - The icon when the accordion is closed.
|
|
4663
|
+
* - **default** - The content of the accordion group.
|
|
4663
4664
|
*
|
|
4664
4665
|
* ### CSS Parts:
|
|
4665
|
-
* - **base** - The main accordion container.
|
|
4666
|
-
* - **heading** - The heading of the accordion.
|
|
4667
|
-
* - **button** - The button of the accordion.
|
|
4668
|
-
* - **content** - The content of the accordion.
|
|
4669
|
-
* - **content-container** - The container of the accordion content.
|
|
4670
|
-
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4671
|
-
* - **open-icon** - The icon when the accordion is opened.
|
|
4672
|
-
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4673
|
-
* - **close-icon** - The icon when the accordion is closed.
|
|
4674
|
-
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4666
|
+
* - **base** - The main accordion group container.
|
|
4675
4667
|
*/
|
|
4676
|
-
'dap-ds-accordion': DefineCustomElement<
|
|
4668
|
+
'dap-ds-accordion-group': DefineCustomElement<DapDSAccordionGroup, DapDSAccordionGroupProps, {}>
|
|
4669
|
+
/**
|
|
4670
|
+
* Anchor heading is a heading with an anchor link.
|
|
4671
|
+
*
|
|
4672
|
+
* ### CSS Parts:
|
|
4673
|
+
* - **base** - The main anchor heading container.
|
|
4674
|
+
* - **link** - The link of the anchor heading. dap-ds-link element.
|
|
4675
|
+
* - **link-base** - The base of the link part.
|
|
4676
|
+
* - **text** - The text of the anchor heading.
|
|
4677
|
+
*/
|
|
4678
|
+
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4677
4679
|
/**
|
|
4678
4680
|
* Avatar component can be used to display user profile images, initials, or icons.
|
|
4679
4681
|
*
|
|
@@ -4710,25 +4712,31 @@ declare module 'vue' {
|
|
|
4710
4712
|
*/
|
|
4711
4713
|
'dap-ds-avatar-group': DefineCustomElement<DapDSAvatarGroup, DapDSAvatarGroupProps, DapDSAvatarGroupEvents>
|
|
4712
4714
|
/**
|
|
4713
|
-
*
|
|
4715
|
+
* An accordion is a vertically stacked list of interactive items that can be expanded or collapsed to reveal or hide content.
|
|
4714
4716
|
*
|
|
4715
|
-
* ###
|
|
4716
|
-
* - **
|
|
4717
|
-
* - **
|
|
4718
|
-
* - **link-base** - The base of the link part.
|
|
4719
|
-
* - **text** - The text of the anchor heading.
|
|
4720
|
-
*/
|
|
4721
|
-
'dap-ds-anchor-heading': DefineCustomElement<DapDSAnchorHeading, DapDSAnchorHeadingProps, {}>
|
|
4722
|
-
/**
|
|
4723
|
-
* An accordion group is a collection of accordion components.
|
|
4717
|
+
* ### Events:
|
|
4718
|
+
* - **dds-opened** - Event fired when the accordion is opened.
|
|
4719
|
+
* - **dds-closed** - Event fired when the accordion is closed.
|
|
4724
4720
|
*
|
|
4725
4721
|
* ### Slots:
|
|
4726
|
-
* - **default** - The content of the accordion
|
|
4722
|
+
* - **default** - The content of the accordion.
|
|
4723
|
+
* - **heading** - The heading of the accordion.
|
|
4724
|
+
* - **icon-opened** - The icon when the accordion is opened.
|
|
4725
|
+
* - **icon-closed** - The icon when the accordion is closed.
|
|
4727
4726
|
*
|
|
4728
4727
|
* ### CSS Parts:
|
|
4729
|
-
* - **base** - The main accordion
|
|
4728
|
+
* - **base** - The main accordion container.
|
|
4729
|
+
* - **heading** - The heading of the accordion.
|
|
4730
|
+
* - **button** - The button of the accordion.
|
|
4731
|
+
* - **content** - The content of the accordion.
|
|
4732
|
+
* - **content-container** - The container of the accordion content.
|
|
4733
|
+
* - **icon-wrapper** - The icon wrapper of the accordion.
|
|
4734
|
+
* - **open-icon** - The icon when the accordion is opened.
|
|
4735
|
+
* - **open-icon-base** - The base of the icon when the accordion is opened.
|
|
4736
|
+
* - **close-icon** - The icon when the accordion is closed.
|
|
4737
|
+
* - **close-icon-base** - The base of the icon when the accordion is closed.
|
|
4730
4738
|
*/
|
|
4731
|
-
'dap-ds-accordion
|
|
4739
|
+
'dap-ds-accordion': DefineCustomElement<DapDSAccordion, DapDSAccordionProps, DapDSAccordionEvents>
|
|
4732
4740
|
/**
|
|
4733
4741
|
* A badge is a small status descriptor for UI elements.
|
|
4734
4742
|
*
|
|
@@ -4743,6 +4751,18 @@ declare module 'vue' {
|
|
|
4743
4751
|
* - **icon-base** - The base of the icon.
|
|
4744
4752
|
*/
|
|
4745
4753
|
'dap-ds-badge': DefineCustomElement<DapDSBadge, DapDSBadgeProps, {}>
|
|
4754
|
+
/**
|
|
4755
|
+
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4756
|
+
*
|
|
4757
|
+
* ### Slots:
|
|
4758
|
+
* - **default** - The content of the breadcrumb.
|
|
4759
|
+
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4760
|
+
*
|
|
4761
|
+
* ### CSS Parts:
|
|
4762
|
+
* - **base** - The main breadcrumb container.
|
|
4763
|
+
* - **separator** - The separator of the breadcrumb.
|
|
4764
|
+
*/
|
|
4765
|
+
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4746
4766
|
/**
|
|
4747
4767
|
* A banner is a message displayed at the top of the page to provide important information to the user.
|
|
4748
4768
|
*
|
|
@@ -4767,18 +4787,6 @@ declare module 'vue' {
|
|
|
4767
4787
|
* - **title** - The title of the banner.
|
|
4768
4788
|
*/
|
|
4769
4789
|
'dap-ds-banner': DefineCustomElement<DapDSBanner, DapDSBannerProps, DapDSBannerEvents>
|
|
4770
|
-
/**
|
|
4771
|
-
* A breadcrumb is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4772
|
-
*
|
|
4773
|
-
* ### Slots:
|
|
4774
|
-
* - **default** - The content of the breadcrumb.
|
|
4775
|
-
* - **separator** - The separator between breadcrumb items. Default is '/'.
|
|
4776
|
-
*
|
|
4777
|
-
* ### CSS Parts:
|
|
4778
|
-
* - **base** - The main breadcrumb container.
|
|
4779
|
-
* - **separator** - The separator of the breadcrumb.
|
|
4780
|
-
*/
|
|
4781
|
-
'dap-ds-breadcrumb': DefineCustomElement<DapDSBreadcrumb, DapDSBreadcrumbProps, {}>
|
|
4782
4790
|
/**
|
|
4783
4791
|
* A breadcrumb item is a secondary navigation scheme that reveals the user's location in a website or Web application.
|
|
4784
4792
|
*
|
|
@@ -4809,6 +4817,30 @@ declare module 'vue' {
|
|
|
4809
4817
|
* - **content** - The content wrapper inside the button.
|
|
4810
4818
|
*/
|
|
4811
4819
|
'dap-ds-button': DefineCustomElement<DapDSButton, DapDSButtonProps, DapDSButtonEvents>
|
|
4820
|
+
/**
|
|
4821
|
+
*
|
|
4822
|
+
*
|
|
4823
|
+
* ### Events:
|
|
4824
|
+
* - **dds-close** - Fired when the close button is clicked.
|
|
4825
|
+
*
|
|
4826
|
+
* ### Slots:
|
|
4827
|
+
* - **default** - The content of the callout.
|
|
4828
|
+
* - **title** - The title of the callout.
|
|
4829
|
+
* - **icon** - The icon of the callout.
|
|
4830
|
+
* - **actions** - The actions of the callout.
|
|
4831
|
+
* - **close** - The close button of the callout.
|
|
4832
|
+
*
|
|
4833
|
+
* ### CSS Parts:
|
|
4834
|
+
* - **base** - The main callout container.
|
|
4835
|
+
* - **content** - The content of the callout.
|
|
4836
|
+
* - **card-content** - The content of the card.
|
|
4837
|
+
* - **icon** - The icon of the callout.
|
|
4838
|
+
* - **title** - The title of the callout.
|
|
4839
|
+
* - **description** - The description of the callout.
|
|
4840
|
+
* - **actions** - The actions of the callout.
|
|
4841
|
+
* - **close** - The close button of the callout.
|
|
4842
|
+
*/
|
|
4843
|
+
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4812
4844
|
/**
|
|
4813
4845
|
* Calendar cell represents a single cell in the calendar.
|
|
4814
4846
|
*
|
|
@@ -4842,30 +4874,6 @@ declare module 'vue' {
|
|
|
4842
4874
|
* - **calendar-header-month-select** - The month select of the calendar header.
|
|
4843
4875
|
*/
|
|
4844
4876
|
'dap-ds-calendar': DefineCustomElement<DapDSCalendar, DapDSCalendarProps, DapDSCalendarEvents>
|
|
4845
|
-
/**
|
|
4846
|
-
*
|
|
4847
|
-
*
|
|
4848
|
-
* ### Events:
|
|
4849
|
-
* - **dds-close** - Fired when the close button is clicked.
|
|
4850
|
-
*
|
|
4851
|
-
* ### Slots:
|
|
4852
|
-
* - **default** - The content of the callout.
|
|
4853
|
-
* - **title** - The title of the callout.
|
|
4854
|
-
* - **icon** - The icon of the callout.
|
|
4855
|
-
* - **actions** - The actions of the callout.
|
|
4856
|
-
* - **close** - The close button of the callout.
|
|
4857
|
-
*
|
|
4858
|
-
* ### CSS Parts:
|
|
4859
|
-
* - **base** - The main callout container.
|
|
4860
|
-
* - **content** - The content of the callout.
|
|
4861
|
-
* - **card-content** - The content of the card.
|
|
4862
|
-
* - **icon** - The icon of the callout.
|
|
4863
|
-
* - **title** - The title of the callout.
|
|
4864
|
-
* - **description** - The description of the callout.
|
|
4865
|
-
* - **actions** - The actions of the callout.
|
|
4866
|
-
* - **close** - The close button of the callout.
|
|
4867
|
-
*/
|
|
4868
|
-
'dap-ds-callout': DefineCustomElement<DapDSCallout, DapDSCalloutProps, DapDSCalloutEvents>
|
|
4869
4877
|
/**
|
|
4870
4878
|
* A card actions is a container for actions in a card.
|
|
4871
4879
|
*
|
|
@@ -5120,6 +5128,38 @@ declare module 'vue' {
|
|
|
5120
5128
|
* - **text** - Badge text
|
|
5121
5129
|
*/
|
|
5122
5130
|
'dap-ds-dap-badge': DefineCustomElement<DapDSDAPBadge, DapDSDAPBadgeProps, {}>
|
|
5131
|
+
/**
|
|
5132
|
+
* A data table is a component that displays data in a tabular format.
|
|
5133
|
+
*
|
|
5134
|
+
* ### Events:
|
|
5135
|
+
* - **dds-sorting-change** - Fired when the sorting of the table changes.
|
|
5136
|
+
* - **dds-selection-change** - Fired when the selection of the table changes.
|
|
5137
|
+
* - **dds-pagination-change** - Fired when the pagination of the table changes.
|
|
5138
|
+
* - **dds-row-click** - Fired when a row is clicked.
|
|
5139
|
+
*
|
|
5140
|
+
* ### Slots:
|
|
5141
|
+
* - **loading** - The loading content of the table.
|
|
5142
|
+
* - **empty** - The empty content of the table.
|
|
5143
|
+
*
|
|
5144
|
+
* ### CSS Parts:
|
|
5145
|
+
* - **base** - The main table container.
|
|
5146
|
+
* - **header** - The header of the table.
|
|
5147
|
+
* - **header-row** - The header row of the table.
|
|
5148
|
+
* - **header-cell** - All cells of the header.
|
|
5149
|
+
* - **body** - The body of the table.
|
|
5150
|
+
* - **empty** - The empty content of the table.
|
|
5151
|
+
* - **loading** - The loading content of the table.
|
|
5152
|
+
* - **row** - All rows of the table.
|
|
5153
|
+
* - **cell** - All cells of the table.
|
|
5154
|
+
* - **pager** - The pager of the table.
|
|
5155
|
+
* - **pager-base** - The base of the pager.
|
|
5156
|
+
* - **pager-first** - The first button of the pager.
|
|
5157
|
+
* - **pager-previous** - The previous button of the pager.
|
|
5158
|
+
* - **pager-next** - The next button of the pager.
|
|
5159
|
+
* - **pager-last** - The last button of the pager.
|
|
5160
|
+
* - **pager-page-size-select** - The page size select of the pager.
|
|
5161
|
+
*/
|
|
5162
|
+
'dap-ds-datatable': DefineGenericCustomElement<DapDSDataTable<any>, DapDSDataTableProps<any>, any, DapDSDataTableEvents<any>>
|
|
5123
5163
|
/**
|
|
5124
5164
|
* A datepicker is a graphical user interface widget that allows the user to select a date from a calendar and/or time from a time range.
|
|
5125
5165
|
*
|
|
@@ -5153,6 +5193,19 @@ declare module 'vue' {
|
|
|
5153
5193
|
* A divider is a visual separator between elements.
|
|
5154
5194
|
*/
|
|
5155
5195
|
'dap-ds-divider': DefineCustomElement<DapDSDivider, DapDSDividerProps, {}>
|
|
5196
|
+
/**
|
|
5197
|
+
* A feedback is a container for feedback messages.
|
|
5198
|
+
*
|
|
5199
|
+
* ### Slots:
|
|
5200
|
+
* - **icon** - The custom icon of the feedback.
|
|
5201
|
+
* - **default** - The text of the feedback.
|
|
5202
|
+
*
|
|
5203
|
+
* ### CSS Parts:
|
|
5204
|
+
* - **base** - The main feedback container.
|
|
5205
|
+
* - **icon** - The icon of the feedback.
|
|
5206
|
+
* - **text** - The text of the feedback.
|
|
5207
|
+
*/
|
|
5208
|
+
'dap-ds-feedback': DefineCustomElement<DapDSFeedback, DapDSFeedbackProps, {}>
|
|
5156
5209
|
/**
|
|
5157
5210
|
* A file input list item is a container for file input list items.
|
|
5158
5211
|
*
|
|
@@ -5217,38 +5270,6 @@ declare module 'vue' {
|
|
|
5217
5270
|
* - **dropzone** - The dropzone area.
|
|
5218
5271
|
*/
|
|
5219
5272
|
'dap-ds-file-input': DefineCustomElement<DapDSFileInput, DapDSFileInputProps, DapDSFileInputEvents>
|
|
5220
|
-
/**
|
|
5221
|
-
* A data table is a component that displays data in a tabular format.
|
|
5222
|
-
*
|
|
5223
|
-
* ### Events:
|
|
5224
|
-
* - **dds-sorting-change** - Fired when the sorting of the table changes.
|
|
5225
|
-
* - **dds-selection-change** - Fired when the selection of the table changes.
|
|
5226
|
-
* - **dds-pagination-change** - Fired when the pagination of the table changes.
|
|
5227
|
-
* - **dds-row-click** - Fired when a row is clicked.
|
|
5228
|
-
*
|
|
5229
|
-
* ### Slots:
|
|
5230
|
-
* - **loading** - The loading content of the table.
|
|
5231
|
-
* - **empty** - The empty content of the table.
|
|
5232
|
-
*
|
|
5233
|
-
* ### CSS Parts:
|
|
5234
|
-
* - **base** - The main table container.
|
|
5235
|
-
* - **header** - The header of the table.
|
|
5236
|
-
* - **header-row** - The header row of the table.
|
|
5237
|
-
* - **header-cell** - All cells of the header.
|
|
5238
|
-
* - **body** - The body of the table.
|
|
5239
|
-
* - **empty** - The empty content of the table.
|
|
5240
|
-
* - **loading** - The loading content of the table.
|
|
5241
|
-
* - **row** - All rows of the table.
|
|
5242
|
-
* - **cell** - All cells of the table.
|
|
5243
|
-
* - **pager** - The pager of the table.
|
|
5244
|
-
* - **pager-base** - The base of the pager.
|
|
5245
|
-
* - **pager-first** - The first button of the pager.
|
|
5246
|
-
* - **pager-previous** - The previous button of the pager.
|
|
5247
|
-
* - **pager-next** - The next button of the pager.
|
|
5248
|
-
* - **pager-last** - The last button of the pager.
|
|
5249
|
-
* - **pager-page-size-select** - The page size select of the pager.
|
|
5250
|
-
*/
|
|
5251
|
-
'dap-ds-datatable': DefineGenericCustomElement<DapDSDataTable<any>, DapDSDataTableProps<any>, any, DapDSDataTableEvents<any>>
|
|
5252
5273
|
/**
|
|
5253
5274
|
* An icon is a graphical symbol that represents an object or action.
|
|
5254
5275
|
*
|
|
@@ -5273,32 +5294,6 @@ declare module 'vue' {
|
|
|
5273
5294
|
* - **icon-base** - The base of the icon.
|
|
5274
5295
|
*/
|
|
5275
5296
|
'dap-ds-icon-button': DefineCustomElement<DapDSIconButton, DapDSIconButtonProps, {}>
|
|
5276
|
-
/**
|
|
5277
|
-
* A feedback is a container for feedback messages.
|
|
5278
|
-
*
|
|
5279
|
-
* ### Slots:
|
|
5280
|
-
* - **icon** - The custom icon of the feedback.
|
|
5281
|
-
* - **default** - The text of the feedback.
|
|
5282
|
-
*
|
|
5283
|
-
* ### CSS Parts:
|
|
5284
|
-
* - **base** - The main feedback container.
|
|
5285
|
-
* - **icon** - The icon of the feedback.
|
|
5286
|
-
* - **text** - The text of the feedback.
|
|
5287
|
-
*/
|
|
5288
|
-
'dap-ds-feedback': DefineCustomElement<DapDSFeedback, DapDSFeedbackProps, {}>
|
|
5289
|
-
/**
|
|
5290
|
-
* A label is a container for labels intended for general use. It contains a label text, description, and tooltip.
|
|
5291
|
-
*
|
|
5292
|
-
* ### CSS Parts:
|
|
5293
|
-
* - **base** - The main label container.
|
|
5294
|
-
* - **label** - Tha main label container. dap-ds-form-label element.
|
|
5295
|
-
* - **label-base** - The label text.
|
|
5296
|
-
* - **label-required** - The required indicator of the label.
|
|
5297
|
-
* - **label-optional** - The optional indicator of the label.
|
|
5298
|
-
* - **tooltip** - The tooltip of the label. dap-ds-tooltip element.
|
|
5299
|
-
* - **description** - The description of the label.
|
|
5300
|
-
*/
|
|
5301
|
-
'dap-ds-label': DefineCustomElement<DapDSLabel, DapDSLabelProps, {}>
|
|
5302
5297
|
/**
|
|
5303
5298
|
* An image zoom component that provides a Medium.com-style zoom experience. Click an image to expand it to fill the viewport with a smooth animation.
|
|
5304
5299
|
*
|
|
@@ -5323,7 +5318,50 @@ declare module 'vue' {
|
|
|
5323
5318
|
* - **expand-button-icon** - The icon of the expand button.
|
|
5324
5319
|
* - **unzoom-button-icon** - The icon of the unzoom button.
|
|
5325
5320
|
*/
|
|
5326
|
-
'dap-ds-image-zoom': DefineCustomElement<DapDSImageZoom, DapDSImageZoomProps, DapDSImageZoomEvents>
|
|
5321
|
+
'dap-ds-image-zoom': DefineCustomElement<DapDSImageZoom, DapDSImageZoomProps, DapDSImageZoomEvents>
|
|
5322
|
+
/**
|
|
5323
|
+
* An input is a field used to collect user input.
|
|
5324
|
+
*
|
|
5325
|
+
* ### Events:
|
|
5326
|
+
* - **dds-change** - Fired when the input value changes.
|
|
5327
|
+
* - **dds-input** - Fired when the input value changes.
|
|
5328
|
+
* - **dds-keydown** - Fired when a key is pressed down.
|
|
5329
|
+
* - **dds-blur** - Fired when the input loses focus.
|
|
5330
|
+
* - **dds-focus** - Emitted when the input gains focus.
|
|
5331
|
+
*
|
|
5332
|
+
* ### Slots:
|
|
5333
|
+
* - **postfix** - The postfix of the input.
|
|
5334
|
+
* - **prefix** - The prefix of the input.
|
|
5335
|
+
* - **addon-before** - The addon before the input.
|
|
5336
|
+
* - **addon-after** - The addon after the input.
|
|
5337
|
+
* - **feedback-icon** - The custom icon of the feedback.
|
|
5338
|
+
*
|
|
5339
|
+
* ### CSS Parts:
|
|
5340
|
+
* - **base** - The main input container.
|
|
5341
|
+
* - **input** - The input element.
|
|
5342
|
+
* - **label** - The label of the input.
|
|
5343
|
+
* - **description** - The description of the input.
|
|
5344
|
+
* - **feedback** - The feedback of the input.
|
|
5345
|
+
* - **tooltip** - The tooltip of the input.
|
|
5346
|
+
* - **addon-before** - The addon before the input.
|
|
5347
|
+
* - **addon-after** - The addon after the input.
|
|
5348
|
+
* - **prefix** - The prefix of the input.
|
|
5349
|
+
* - **postfix** - The postfix of the input.
|
|
5350
|
+
*/
|
|
5351
|
+
'dap-ds-input': DefineCustomElement<DapDSInput, DapDSInputProps, DapDSInputEvents>
|
|
5352
|
+
/**
|
|
5353
|
+
* A label is a container for labels intended for general use. It contains a label text, description, and tooltip.
|
|
5354
|
+
*
|
|
5355
|
+
* ### CSS Parts:
|
|
5356
|
+
* - **base** - The main label container.
|
|
5357
|
+
* - **label** - Tha main label container. dap-ds-form-label element.
|
|
5358
|
+
* - **label-base** - The label text.
|
|
5359
|
+
* - **label-required** - The required indicator of the label.
|
|
5360
|
+
* - **label-optional** - The optional indicator of the label.
|
|
5361
|
+
* - **tooltip** - The tooltip of the label. dap-ds-tooltip element.
|
|
5362
|
+
* - **description** - The description of the label.
|
|
5363
|
+
*/
|
|
5364
|
+
'dap-ds-label': DefineCustomElement<DapDSLabel, DapDSLabelProps, {}>
|
|
5327
5365
|
/**
|
|
5328
5366
|
* A link is a reference to a web resource.
|
|
5329
5367
|
*
|
|
@@ -5597,6 +5635,12 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5597
5635
|
* - **pager-button-last-content** - The content of the last page button.
|
|
5598
5636
|
* - **page-size-select-base** - The base of the page size select.
|
|
5599
5637
|
* - **page-size-select-trigger** - The trigger of the page size select.
|
|
5638
|
+
* - **page-numbers** - The container of the numbered page buttons (shown when showPageNumbers is 'true').
|
|
5639
|
+
* - **page-number** - Each numbered page button.
|
|
5640
|
+
* - **page-number-active** - The active (current) numbered page button.
|
|
5641
|
+
* - **page-number-base** - The base of each numbered page button.
|
|
5642
|
+
* - **page-number-content** - The content of each numbered page button.
|
|
5643
|
+
* - **page-info** - The page info / total count text.
|
|
5600
5644
|
*/
|
|
5601
5645
|
'dap-ds-pager': DefineCustomElement<DapDSPager, DapDSPagerProps, DapDSPagerEvents>
|
|
5602
5646
|
/**
|
|
@@ -5736,36 +5780,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5736
5780
|
* - **input** - The input of the search.
|
|
5737
5781
|
*/
|
|
5738
5782
|
'dap-ds-search': DefineCustomElement<DapDSSearch, DapDSSearchProps, DapDSSearchEvents>
|
|
5739
|
-
/**
|
|
5740
|
-
* An input is a field used to collect user input.
|
|
5741
|
-
*
|
|
5742
|
-
* ### Events:
|
|
5743
|
-
* - **dds-change** - Fired when the input value changes.
|
|
5744
|
-
* - **dds-input** - Fired when the input value changes.
|
|
5745
|
-
* - **dds-keydown** - Fired when a key is pressed down.
|
|
5746
|
-
* - **dds-blur** - Fired when the input loses focus.
|
|
5747
|
-
* - **dds-focus** - Emitted when the input gains focus.
|
|
5748
|
-
*
|
|
5749
|
-
* ### Slots:
|
|
5750
|
-
* - **postfix** - The postfix of the input.
|
|
5751
|
-
* - **prefix** - The prefix of the input.
|
|
5752
|
-
* - **addon-before** - The addon before the input.
|
|
5753
|
-
* - **addon-after** - The addon after the input.
|
|
5754
|
-
* - **feedback-icon** - The custom icon of the feedback.
|
|
5755
|
-
*
|
|
5756
|
-
* ### CSS Parts:
|
|
5757
|
-
* - **base** - The main input container.
|
|
5758
|
-
* - **input** - The input element.
|
|
5759
|
-
* - **label** - The label of the input.
|
|
5760
|
-
* - **description** - The description of the input.
|
|
5761
|
-
* - **feedback** - The feedback of the input.
|
|
5762
|
-
* - **tooltip** - The tooltip of the input.
|
|
5763
|
-
* - **addon-before** - The addon before the input.
|
|
5764
|
-
* - **addon-after** - The addon after the input.
|
|
5765
|
-
* - **prefix** - The prefix of the input.
|
|
5766
|
-
* - **postfix** - The postfix of the input.
|
|
5767
|
-
*/
|
|
5768
|
-
'dap-ds-input': DefineCustomElement<DapDSInput, DapDSInputProps, DapDSInputEvents>
|
|
5769
5783
|
/**
|
|
5770
5784
|
* A select is a form element that allows the user to select one option from a set.
|
|
5771
5785
|
*
|
|
@@ -5802,48 +5816,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5802
5816
|
* - **mobile-footer** - The mobile footer of the select.
|
|
5803
5817
|
*/
|
|
5804
5818
|
'dap-ds-select': DefineCustomElement<DapDSSelect, DapDSSelectProps, DapDSSelectEvents>
|
|
5805
|
-
/**
|
|
5806
|
-
* Side navigation group
|
|
5807
|
-
*
|
|
5808
|
-
* ### Slots:
|
|
5809
|
-
* - **default** - The content of the side navigation group.
|
|
5810
|
-
* - **submenu** - The submenu of the side navigation group.
|
|
5811
|
-
* - **suffix** - The suffix of the side navigation group.
|
|
5812
|
-
*
|
|
5813
|
-
* ### CSS Parts:
|
|
5814
|
-
* - **base** - The main side navigation group container.
|
|
5815
|
-
* - **title** - The title of the side navigation group.
|
|
5816
|
-
* - **link** - The link of the side navigation group.
|
|
5817
|
-
* - **toggle** - The toggle button of the side navigation group.
|
|
5818
|
-
* - **submenu** - The submenu of the side navigation group.
|
|
5819
|
-
*/
|
|
5820
|
-
'dap-ds-sidenav-group': DefineCustomElement<DapDSSideNavGroup, DapDSSideNavGroupProps, {}>
|
|
5821
|
-
/**
|
|
5822
|
-
* Side navigation item
|
|
5823
|
-
*
|
|
5824
|
-
* ### Slots:
|
|
5825
|
-
* - **default** - The content of the side navigation item.
|
|
5826
|
-
* - **suffix** - The suffix of the side navigation item.
|
|
5827
|
-
*
|
|
5828
|
-
* ### CSS Parts:
|
|
5829
|
-
* - **base** - The main side navigation item container.
|
|
5830
|
-
* - **link** - The link of the side navigation item.
|
|
5831
|
-
*/
|
|
5832
|
-
'dap-ds-sidenav-item': DefineCustomElement<DapDSSideNavItem, DapDSSideNavItemProps, {}>
|
|
5833
|
-
/**
|
|
5834
|
-
* Side navigation is a list of links that are used to navigate to different sections of a page.
|
|
5835
|
-
*
|
|
5836
|
-
* ### Events:
|
|
5837
|
-
* - **dds-item-click** - Event fired when the side navigation item is clicked.
|
|
5838
|
-
*
|
|
5839
|
-
* ### Slots:
|
|
5840
|
-
* - **default** - The content of the side navigation.
|
|
5841
|
-
*
|
|
5842
|
-
* ### CSS Parts:
|
|
5843
|
-
* - **base** - The main side navigation container.
|
|
5844
|
-
* - **menu** - The menu of the side navigation.
|
|
5845
|
-
*/
|
|
5846
|
-
'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
|
|
5847
5819
|
/**
|
|
5848
5820
|
* A skeleton loader component for displaying placeholder content while loading.
|
|
5849
5821
|
*
|
|
@@ -5995,6 +5967,48 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
5995
5967
|
* - **default** - The default slot. Accepts `dap-ds-table-row` elements.
|
|
5996
5968
|
*/
|
|
5997
5969
|
'dap-ds-table': DefineCustomElement<DapDSTable, DapDSTableProps, {}>
|
|
5970
|
+
/**
|
|
5971
|
+
* Side navigation group
|
|
5972
|
+
*
|
|
5973
|
+
* ### Slots:
|
|
5974
|
+
* - **default** - The content of the side navigation group.
|
|
5975
|
+
* - **submenu** - The submenu of the side navigation group.
|
|
5976
|
+
* - **suffix** - The suffix of the side navigation group.
|
|
5977
|
+
*
|
|
5978
|
+
* ### CSS Parts:
|
|
5979
|
+
* - **base** - The main side navigation group container.
|
|
5980
|
+
* - **title** - The title of the side navigation group.
|
|
5981
|
+
* - **link** - The link of the side navigation group.
|
|
5982
|
+
* - **toggle** - The toggle button of the side navigation group.
|
|
5983
|
+
* - **submenu** - The submenu of the side navigation group.
|
|
5984
|
+
*/
|
|
5985
|
+
'dap-ds-sidenav-group': DefineCustomElement<DapDSSideNavGroup, DapDSSideNavGroupProps, {}>
|
|
5986
|
+
/**
|
|
5987
|
+
* Side navigation item
|
|
5988
|
+
*
|
|
5989
|
+
* ### Slots:
|
|
5990
|
+
* - **default** - The content of the side navigation item.
|
|
5991
|
+
* - **suffix** - The suffix of the side navigation item.
|
|
5992
|
+
*
|
|
5993
|
+
* ### CSS Parts:
|
|
5994
|
+
* - **base** - The main side navigation item container.
|
|
5995
|
+
* - **link** - The link of the side navigation item.
|
|
5996
|
+
*/
|
|
5997
|
+
'dap-ds-sidenav-item': DefineCustomElement<DapDSSideNavItem, DapDSSideNavItemProps, {}>
|
|
5998
|
+
/**
|
|
5999
|
+
* Side navigation is a list of links that are used to navigate to different sections of a page.
|
|
6000
|
+
*
|
|
6001
|
+
* ### Events:
|
|
6002
|
+
* - **dds-item-click** - Event fired when the side navigation item is clicked.
|
|
6003
|
+
*
|
|
6004
|
+
* ### Slots:
|
|
6005
|
+
* - **default** - The content of the side navigation.
|
|
6006
|
+
*
|
|
6007
|
+
* ### CSS Parts:
|
|
6008
|
+
* - **base** - The main side navigation container.
|
|
6009
|
+
* - **menu** - The menu of the side navigation.
|
|
6010
|
+
*/
|
|
6011
|
+
'dap-ds-sidenav': DefineCustomElement<DapDSSideNav, DapDSSideNavProps, DapDSSideNavEvents>
|
|
5998
6012
|
/**
|
|
5999
6013
|
* A textarea is a multi-line text input field.
|
|
6000
6014
|
*
|
|
@@ -6164,21 +6178,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6164
6178
|
* - **optional** - The optional indicator of the form label.
|
|
6165
6179
|
*/
|
|
6166
6180
|
'dap-ds-form-label': DefineCustomElement<DapDSFormLabel, DapDSFormLabelProps, {}>
|
|
6167
|
-
/**
|
|
6168
|
-
* An input group is a container for inputs.
|
|
6169
|
-
*
|
|
6170
|
-
* ### Slots:
|
|
6171
|
-
* - **default** - The content of the input group items.
|
|
6172
|
-
* - **feedback-icon** - The custom icon of the feedback.
|
|
6173
|
-
*
|
|
6174
|
-
* ### CSS Parts:
|
|
6175
|
-
* - **base** - The main input group container.
|
|
6176
|
-
* - **label** - The label of the input group.
|
|
6177
|
-
* - **description** - The description of the input group.
|
|
6178
|
-
* - **tooltip** - The tooltip of the input group.
|
|
6179
|
-
* - **container** - The container of the input group items.
|
|
6180
|
-
*/
|
|
6181
|
-
'dap-ds-input-group': DefineCustomElement<DapDSInputGroup, DapDSInputGroupProps, {}>
|
|
6182
6181
|
/**
|
|
6183
6182
|
* A radio group is a form element that allows the user to select one option from a set.
|
|
6184
6183
|
*
|
|
@@ -6198,6 +6197,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6198
6197
|
* - **container** - The container of the radio group items.
|
|
6199
6198
|
*/
|
|
6200
6199
|
'dap-ds-radio-group': DefineCustomElement<DapDSRadioGroup, DapDSRadioGroupProps, DapDSRadioGroupEvents>
|
|
6200
|
+
/**
|
|
6201
|
+
* An input group is a container for inputs.
|
|
6202
|
+
*
|
|
6203
|
+
* ### Slots:
|
|
6204
|
+
* - **default** - The content of the input group items.
|
|
6205
|
+
* - **feedback-icon** - The custom icon of the feedback.
|
|
6206
|
+
*
|
|
6207
|
+
* ### CSS Parts:
|
|
6208
|
+
* - **base** - The main input group container.
|
|
6209
|
+
* - **label** - The label of the input group.
|
|
6210
|
+
* - **description** - The description of the input group.
|
|
6211
|
+
* - **tooltip** - The tooltip of the input group.
|
|
6212
|
+
* - **container** - The container of the input group items.
|
|
6213
|
+
*/
|
|
6214
|
+
'dap-ds-input-group': DefineCustomElement<DapDSInputGroup, DapDSInputGroupProps, {}>
|
|
6201
6215
|
/**
|
|
6202
6216
|
* An icon
|
|
6203
6217
|
*
|
|
@@ -6239,14 +6253,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6239
6253
|
* ### CSS Parts:
|
|
6240
6254
|
* - **base** - The main icon container.
|
|
6241
6255
|
*/
|
|
6242
|
-
'dap-ds-icon-arrow-left-
|
|
6256
|
+
'dap-ds-icon-arrow-left-s-fill': DefineCustomElement<ArrowsArrowLeftSFill, ArrowsArrowLeftSFillProps, {}>
|
|
6243
6257
|
/**
|
|
6244
6258
|
* An icon
|
|
6245
6259
|
*
|
|
6246
6260
|
* ### CSS Parts:
|
|
6247
6261
|
* - **base** - The main icon container.
|
|
6248
6262
|
*/
|
|
6249
|
-
'dap-ds-icon-arrow-left-
|
|
6263
|
+
'dap-ds-icon-arrow-left-line': DefineCustomElement<ArrowsArrowLeftLine, ArrowsArrowLeftLineProps, {}>
|
|
6250
6264
|
/**
|
|
6251
6265
|
* An icon
|
|
6252
6266
|
*
|
|
@@ -6260,21 +6274,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6260
6274
|
* ### CSS Parts:
|
|
6261
6275
|
* - **base** - The main icon container.
|
|
6262
6276
|
*/
|
|
6263
|
-
'dap-ds-icon-arrow-
|
|
6277
|
+
'dap-ds-icon-arrow-right-down-line': DefineCustomElement<ArrowsArrowRightDownLine, ArrowsArrowRightDownLineProps, {}>
|
|
6264
6278
|
/**
|
|
6265
6279
|
* An icon
|
|
6266
6280
|
*
|
|
6267
6281
|
* ### CSS Parts:
|
|
6268
6282
|
* - **base** - The main icon container.
|
|
6269
6283
|
*/
|
|
6270
|
-
'dap-ds-icon-arrow-right-
|
|
6284
|
+
'dap-ds-icon-arrow-right-l-line': DefineCustomElement<ArrowsArrowRightLLine, ArrowsArrowRightLLineProps, {}>
|
|
6271
6285
|
/**
|
|
6272
6286
|
* An icon
|
|
6273
6287
|
*
|
|
6274
6288
|
* ### CSS Parts:
|
|
6275
6289
|
* - **base** - The main icon container.
|
|
6276
6290
|
*/
|
|
6277
|
-
'dap-ds-icon-arrow-
|
|
6291
|
+
'dap-ds-icon-arrow-left-up-line': DefineCustomElement<ArrowsArrowLeftUpLine, ArrowsArrowLeftUpLineProps, {}>
|
|
6278
6292
|
/**
|
|
6279
6293
|
* An icon
|
|
6280
6294
|
*
|
|
@@ -6338,6 +6352,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6338
6352
|
* - **base** - The main icon container.
|
|
6339
6353
|
*/
|
|
6340
6354
|
'dap-ds-icon-home-6-line': DefineCustomElement<BuildingsHome6Line, BuildingsHome6LineProps, {}>
|
|
6355
|
+
/**
|
|
6356
|
+
* An icon
|
|
6357
|
+
*
|
|
6358
|
+
* ### CSS Parts:
|
|
6359
|
+
* - **base** - The main icon container.
|
|
6360
|
+
*/
|
|
6361
|
+
'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
|
|
6341
6362
|
/**
|
|
6342
6363
|
* An icon
|
|
6343
6364
|
*
|
|
@@ -6380,6 +6401,13 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6380
6401
|
* - **base** - The main icon container.
|
|
6381
6402
|
*/
|
|
6382
6403
|
'dap-ds-icon-file-image-line': DefineCustomElement<DocumentFileImageLine, DocumentFileImageLineProps, {}>
|
|
6404
|
+
/**
|
|
6405
|
+
* An icon
|
|
6406
|
+
*
|
|
6407
|
+
* ### CSS Parts:
|
|
6408
|
+
* - **base** - The main icon container.
|
|
6409
|
+
*/
|
|
6410
|
+
'dap-ds-icon-file-music-line': DefineCustomElement<DocumentFileMusicLine, DocumentFileMusicLineProps, {}>
|
|
6383
6411
|
/**
|
|
6384
6412
|
* An icon
|
|
6385
6413
|
*
|
|
@@ -6435,14 +6463,14 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6435
6463
|
* ### CSS Parts:
|
|
6436
6464
|
* - **base** - The main icon container.
|
|
6437
6465
|
*/
|
|
6438
|
-
'dap-ds-icon-
|
|
6466
|
+
'dap-ds-icon-add-line': DefineCustomElement<SystemAddLine, SystemAddLineProps, {}>
|
|
6439
6467
|
/**
|
|
6440
6468
|
* An icon
|
|
6441
6469
|
*
|
|
6442
6470
|
* ### CSS Parts:
|
|
6443
6471
|
* - **base** - The main icon container.
|
|
6444
6472
|
*/
|
|
6445
|
-
'dap-ds-icon-
|
|
6473
|
+
'dap-ds-icon-cookie-line': DefineCustomElement<OthersCookieLine, OthersCookieLineProps, {}>
|
|
6446
6474
|
/**
|
|
6447
6475
|
* An icon
|
|
6448
6476
|
*
|
|
@@ -6456,21 +6484,21 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6456
6484
|
* ### CSS Parts:
|
|
6457
6485
|
* - **base** - The main icon container.
|
|
6458
6486
|
*/
|
|
6459
|
-
'dap-ds-icon-
|
|
6487
|
+
'dap-ds-icon-alert-line': DefineCustomElement<SystemAlertLine, SystemAlertLineProps, {}>
|
|
6460
6488
|
/**
|
|
6461
6489
|
* An icon
|
|
6462
6490
|
*
|
|
6463
6491
|
* ### CSS Parts:
|
|
6464
6492
|
* - **base** - The main icon container.
|
|
6465
6493
|
*/
|
|
6466
|
-
'dap-ds-icon-check-
|
|
6494
|
+
'dap-ds-icon-check-line': DefineCustomElement<SystemCheckLine, SystemCheckLineProps, {}>
|
|
6467
6495
|
/**
|
|
6468
6496
|
* An icon
|
|
6469
6497
|
*
|
|
6470
6498
|
* ### CSS Parts:
|
|
6471
6499
|
* - **base** - The main icon container.
|
|
6472
6500
|
*/
|
|
6473
|
-
'dap-ds-icon-
|
|
6501
|
+
'dap-ds-icon-check-line2': DefineCustomElement<SystemCheckLine2, SystemCheckLine2Props, {}>
|
|
6474
6502
|
/**
|
|
6475
6503
|
* An icon
|
|
6476
6504
|
*
|
|
@@ -6575,42 +6603,42 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6575
6603
|
* ### CSS Parts:
|
|
6576
6604
|
* - **base** - The main icon container.
|
|
6577
6605
|
*/
|
|
6578
|
-
'dap-ds-icon-
|
|
6606
|
+
'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
|
|
6579
6607
|
/**
|
|
6580
6608
|
* An icon
|
|
6581
6609
|
*
|
|
6582
6610
|
* ### CSS Parts:
|
|
6583
6611
|
* - **base** - The main icon container.
|
|
6584
6612
|
*/
|
|
6585
|
-
'dap-ds-icon-eye-
|
|
6613
|
+
'dap-ds-icon-eye-line': DefineCustomElement<SystemEyeLine, SystemEyeLineProps, {}>
|
|
6586
6614
|
/**
|
|
6587
6615
|
* An icon
|
|
6588
6616
|
*
|
|
6589
6617
|
* ### CSS Parts:
|
|
6590
6618
|
* - **base** - The main icon container.
|
|
6591
6619
|
*/
|
|
6592
|
-
'dap-ds-icon-
|
|
6620
|
+
'dap-ds-icon-eye-off-line': DefineCustomElement<SystemEyeOffLine, SystemEyeOffLineProps, {}>
|
|
6593
6621
|
/**
|
|
6594
6622
|
* An icon
|
|
6595
6623
|
*
|
|
6596
6624
|
* ### CSS Parts:
|
|
6597
6625
|
* - **base** - The main icon container.
|
|
6598
6626
|
*/
|
|
6599
|
-
'dap-ds-icon-
|
|
6627
|
+
'dap-ds-icon-forbid-fill': DefineCustomElement<SystemForbidFill, SystemForbidFillProps, {}>
|
|
6600
6628
|
/**
|
|
6601
6629
|
* An icon
|
|
6602
6630
|
*
|
|
6603
6631
|
* ### CSS Parts:
|
|
6604
6632
|
* - **base** - The main icon container.
|
|
6605
6633
|
*/
|
|
6606
|
-
'dap-ds-icon-information-fill': DefineCustomElement<
|
|
6634
|
+
'dap-ds-icon-information-2-fill': DefineCustomElement<SystemInformation2Fill, SystemInformation2FillProps, {}>
|
|
6607
6635
|
/**
|
|
6608
6636
|
* An icon
|
|
6609
6637
|
*
|
|
6610
6638
|
* ### CSS Parts:
|
|
6611
6639
|
* - **base** - The main icon container.
|
|
6612
6640
|
*/
|
|
6613
|
-
'dap-ds-icon-
|
|
6641
|
+
'dap-ds-icon-information-fill': DefineCustomElement<SystemInformationFill, SystemInformationFillProps, {}>
|
|
6614
6642
|
/**
|
|
6615
6643
|
* An icon
|
|
6616
6644
|
*
|
|
@@ -6772,13 +6800,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6772
6800
|
* - **base** - The main icon container.
|
|
6773
6801
|
*/
|
|
6774
6802
|
'dap-ds-icon-zoom-out-line': DefineCustomElement<SystemZoomOutLine, SystemZoomOutLineProps, {}>
|
|
6775
|
-
/**
|
|
6776
|
-
* An icon
|
|
6777
|
-
*
|
|
6778
|
-
* ### CSS Parts:
|
|
6779
|
-
* - **base** - The main icon container.
|
|
6780
|
-
*/
|
|
6781
|
-
'dap-ds-icon-external-link-line': DefineCustomElement<SystemExternalLinkLine, SystemExternalLinkLineProps, {}>
|
|
6782
6803
|
/**
|
|
6783
6804
|
* An icon
|
|
6784
6805
|
*
|
|
@@ -6807,13 +6828,6 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6807
6828
|
* - **base** - The main icon container.
|
|
6808
6829
|
*/
|
|
6809
6830
|
'dap-ds-icon-user-line': DefineCustomElement<UserUserLine, UserUserLineProps, {}>
|
|
6810
|
-
/**
|
|
6811
|
-
* An icon
|
|
6812
|
-
*
|
|
6813
|
-
* ### CSS Parts:
|
|
6814
|
-
* - **base** - The main icon container.
|
|
6815
|
-
*/
|
|
6816
|
-
'dap-ds-icon-calendar-line': DefineCustomElement<BusinessCalendarLine, BusinessCalendarLineProps, {}>
|
|
6817
6831
|
}
|
|
6818
6832
|
}
|
|
6819
6833
|
|
|
@@ -6821,19 +6835,19 @@ Used with dap-ds-select to create grouped options that render as native optgroup
|
|
|
6821
6835
|
declare global {
|
|
6822
6836
|
namespace JSX {
|
|
6823
6837
|
interface IntrinsicElements {
|
|
6824
|
-
'dap-ds-accordion':
|
|
6838
|
+
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6839
|
+
'dap-ds-anchor-heading': DapDSAnchorHeadingProps
|
|
6825
6840
|
'dap-ds-avatar': DapDSAvatarProps & DapDSAvatarEvents & DapDSAvatarSlots
|
|
6826
6841
|
'dap-ds-avatar-group': DapDSAvatarGroupProps & DapDSAvatarGroupEvents & DapDSAvatarGroupSlots
|
|
6827
|
-
'dap-ds-
|
|
6828
|
-
'dap-ds-accordion-group': DapDSAccordionGroupProps & DapDSAccordionGroupSlots
|
|
6842
|
+
'dap-ds-accordion': DapDSAccordionProps & DapDSAccordionEvents & DapDSAccordionSlots
|
|
6829
6843
|
'dap-ds-badge': DapDSBadgeProps & DapDSBadgeSlots
|
|
6830
|
-
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6831
6844
|
'dap-ds-breadcrumb': DapDSBreadcrumbProps & DapDSBreadcrumbSlots
|
|
6845
|
+
'dap-ds-banner': DapDSBannerProps & DapDSBannerEvents & DapDSBannerSlots
|
|
6832
6846
|
'dap-ds-breadcrumb-item': DapDSBreadcrumbItemProps & DapDSBreadcrumbItemSlots
|
|
6833
6847
|
'dap-ds-button': DapDSButtonProps & DapDSButtonEvents & DapDSButtonSlots
|
|
6848
|
+
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6834
6849
|
'dap-ds-calendar-cell': DapDSCalendarCellProps & DapDSCalendarCellSlots
|
|
6835
6850
|
'dap-ds-calendar': DapDSCalendarProps & DapDSCalendarEvents & DapDSCalendarSlots
|
|
6836
|
-
'dap-ds-callout': DapDSCalloutProps & DapDSCalloutEvents & DapDSCalloutSlots
|
|
6837
6851
|
'dap-ds-card-actions': DapDSCardActionsProps & DapDSCardActionsSlots
|
|
6838
6852
|
'dap-ds-card-content': DapDSCardContentProps & DapDSCardContentSlots
|
|
6839
6853
|
'dap-ds-card-image': DapDSCardImageProps & DapDSCardImageSlots
|
|
@@ -6852,17 +6866,18 @@ declare global {
|
|
|
6852
6866
|
'dap-ds-content-switcher': DapDSContentSwitcherProps & DapDSContentSwitcherEvents & DapDSContentSwitcherSlots
|
|
6853
6867
|
'dap-ds-copybox-input': DapDSCopyBoxInputProps & DapDSCopyBoxInputEvents
|
|
6854
6868
|
'dap-ds-dap-badge': DapDSDAPBadgeProps & DapDSDAPBadgeSlots
|
|
6869
|
+
'dap-ds-datatable': <T = any>(props: DapDSDataTableProps<T> & DapDSDataTableEvents<T> & DapDSDataTableSlots) => JSX.Element
|
|
6855
6870
|
'dap-ds-datepicker': DapDSDatePickerProps & DapDSDatePickerEvents
|
|
6856
6871
|
'dap-ds-divider': DapDSDividerProps
|
|
6872
|
+
'dap-ds-feedback': DapDSFeedbackProps & DapDSFeedbackSlots
|
|
6857
6873
|
'dap-ds-file-input-list-item': DapDSFileInputListItemProps & DapDSFileInputListItemEvents & DapDSFileInputListItemSlots
|
|
6858
6874
|
'dap-ds-file-input-list': DapDSFileInputListProps & DapDSFileInputListEvents & DapDSFileInputListSlots
|
|
6859
6875
|
'dap-ds-file-input': DapDSFileInputProps & DapDSFileInputEvents & DapDSFileInputSlots
|
|
6860
|
-
'dap-ds-datatable': <T = any>(props: DapDSDataTableProps<T> & DapDSDataTableEvents<T> & DapDSDataTableSlots) => JSX.Element
|
|
6861
6876
|
'dap-ds-icon': DapDSIconProps & DapDSIconSlots
|
|
6862
6877
|
'dap-ds-icon-button': DapDSIconButtonProps & DapDSIconButtonSlots
|
|
6863
|
-
'dap-ds-feedback': DapDSFeedbackProps & DapDSFeedbackSlots
|
|
6864
|
-
'dap-ds-label': DapDSLabelProps
|
|
6865
6878
|
'dap-ds-image-zoom': DapDSImageZoomProps & DapDSImageZoomEvents & DapDSImageZoomSlots
|
|
6879
|
+
'dap-ds-input': DapDSInputProps & DapDSInputEvents & DapDSInputSlots
|
|
6880
|
+
'dap-ds-label': DapDSLabelProps
|
|
6866
6881
|
'dap-ds-link': DapDSLinkProps & DapDSLinkEvents & DapDSLinkSlots
|
|
6867
6882
|
'dap-ds-list-item': DapDSListItemProps & DapDSListItemSlots
|
|
6868
6883
|
'dap-ds-modal': DapDSModalProps & DapDSModalEvents & DapDSModalSlots
|
|
@@ -6884,11 +6899,7 @@ declare global {
|
|
|
6884
6899
|
'dap-ds-scroll-area': DapDSScrollAreaProps & DapDSScrollAreaSlots
|
|
6885
6900
|
'dap-ds-scroll-progress': DapDSScrollProgressProps
|
|
6886
6901
|
'dap-ds-search': DapDSSearchProps & DapDSSearchEvents & DapDSSearchSlots
|
|
6887
|
-
'dap-ds-input': DapDSInputProps & DapDSInputEvents & DapDSInputSlots
|
|
6888
6902
|
'dap-ds-select': DapDSSelectProps & DapDSSelectEvents & DapDSSelectSlots
|
|
6889
|
-
'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
|
|
6890
|
-
'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
|
|
6891
|
-
'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
|
|
6892
6903
|
'dap-ds-skeleton': DapDSSkeletonProps
|
|
6893
6904
|
'dap-ds-skip-link': DapDSSkipLinkProps & DapDSSkipLinkSlots
|
|
6894
6905
|
'dap-ds-snackbar-message': DapDSSnackbarMessageProps & DapDSSnackbarMessageEvents & DapDSSnackbarMessageSlots
|
|
@@ -6902,6 +6913,9 @@ declare global {
|
|
|
6902
6913
|
'dap-ds-table-header': DapDSTableHeaderProps & DapDSTableHeaderSlots
|
|
6903
6914
|
'dap-ds-table-row': DapDSTableRowProps & DapDSTableRowSlots
|
|
6904
6915
|
'dap-ds-table': DapDSTableProps & DapDSTableSlots
|
|
6916
|
+
'dap-ds-sidenav-group': DapDSSideNavGroupProps & DapDSSideNavGroupSlots
|
|
6917
|
+
'dap-ds-sidenav-item': DapDSSideNavItemProps & DapDSSideNavItemSlots
|
|
6918
|
+
'dap-ds-sidenav': DapDSSideNavProps & DapDSSideNavEvents & DapDSSideNavSlots
|
|
6905
6919
|
'dap-ds-textarea': DapDSTextareaProps & DapDSTextareaEvents & DapDSTextareaSlots
|
|
6906
6920
|
'dap-ds-timeline-item': DapDSTimelineItemProps & DapDSTimelineItemSlots
|
|
6907
6921
|
'dap-ds-timeline': DapDSTimelineProps & DapDSTimelineSlots
|
|
@@ -6913,19 +6927,19 @@ declare global {
|
|
|
6913
6927
|
'dap-ds-tray': DapDSTrayProps & DapDSTrayEvents & DapDSTraySlots
|
|
6914
6928
|
'dap-ds-typography': DapDSTypographyProps & DapDSTypographySlots
|
|
6915
6929
|
'dap-ds-form-label': DapDSFormLabelProps
|
|
6916
|
-
'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
|
|
6917
6930
|
'dap-ds-radio-group': DapDSRadioGroupProps & DapDSRadioGroupEvents & DapDSRadioGroupSlots
|
|
6931
|
+
'dap-ds-input-group': DapDSInputGroupProps & DapDSInputGroupSlots
|
|
6918
6932
|
'dap-ds-icon-arrow-down-line': ArrowsArrowDownLineProps
|
|
6919
6933
|
'dap-ds-icon-arrow-down-s-fill': ArrowsArrowDownSFillProps
|
|
6920
6934
|
'dap-ds-icon-arrow-down-s-line': ArrowsArrowDownSLineProps
|
|
6921
6935
|
'dap-ds-icon-arrow-left-down-line': ArrowsArrowLeftDownLineProps
|
|
6922
6936
|
'dap-ds-icon-arrow-left-l-line': ArrowsArrowLeftLLineProps
|
|
6923
|
-
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6924
6937
|
'dap-ds-icon-arrow-left-s-fill': ArrowsArrowLeftSFillProps
|
|
6938
|
+
'dap-ds-icon-arrow-left-line': ArrowsArrowLeftLineProps
|
|
6925
6939
|
'dap-ds-icon-arrow-left-s-line': ArrowsArrowLeftSLineProps
|
|
6926
|
-
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6927
6940
|
'dap-ds-icon-arrow-right-down-line': ArrowsArrowRightDownLineProps
|
|
6928
6941
|
'dap-ds-icon-arrow-right-l-line': ArrowsArrowRightLLineProps
|
|
6942
|
+
'dap-ds-icon-arrow-left-up-line': ArrowsArrowLeftUpLineProps
|
|
6929
6943
|
'dap-ds-icon-arrow-right-line': ArrowsArrowRightLineProps
|
|
6930
6944
|
'dap-ds-icon-arrow-right-s-fill': ArrowsArrowRightSFillProps
|
|
6931
6945
|
'dap-ds-icon-arrow-right-s-line': ArrowsArrowRightSLineProps
|
|
@@ -6935,12 +6949,14 @@ declare global {
|
|
|
6935
6949
|
'dap-ds-icon-arrow-up-s-line': ArrowsArrowUpSLineProps
|
|
6936
6950
|
'dap-ds-icon-expand-up-down-fill': ArrowsExpandUpDownFillProps
|
|
6937
6951
|
'dap-ds-icon-home-6-line': BuildingsHome6LineProps
|
|
6952
|
+
'dap-ds-icon-calendar-line': BusinessCalendarLineProps
|
|
6938
6953
|
'dap-ds-icon-edit-line': DesignEditLineProps
|
|
6939
6954
|
'dap-ds-icon-tools-line': DesignToolsLineProps
|
|
6940
6955
|
'dap-ds-icon-computer-line': DeviceComputerLineProps
|
|
6941
6956
|
'dap-ds-icon-clipboard-line': DocumentClipboardLineProps
|
|
6942
6957
|
'dap-ds-icon-file-copy-line': DocumentFileCopyLineProps
|
|
6943
6958
|
'dap-ds-icon-file-image-line': DocumentFileImageLineProps
|
|
6959
|
+
'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
|
|
6944
6960
|
'dap-ds-icon-file-text-line': DocumentFileTextLineProps
|
|
6945
6961
|
'dap-ds-icon-file-video-line': DocumentFileVideoLineProps
|
|
6946
6962
|
'dap-ds-icon-folder-line': DocumentFolderLineProps
|
|
@@ -6948,12 +6964,12 @@ declare global {
|
|
|
6948
6964
|
'dap-ds-icon-separator': EditorSeparatorProps
|
|
6949
6965
|
'dap-ds-icon-heart-fill': HealthHeartFillProps
|
|
6950
6966
|
'dap-ds-icon-heart-line': HealthHeartLineProps
|
|
6951
|
-
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6952
6967
|
'dap-ds-icon-add-line': SystemAddLineProps
|
|
6968
|
+
'dap-ds-icon-cookie-line': OthersCookieLineProps
|
|
6953
6969
|
'dap-ds-icon-alert-fill': SystemAlertFillProps
|
|
6970
|
+
'dap-ds-icon-alert-line': SystemAlertLineProps
|
|
6954
6971
|
'dap-ds-icon-check-line': SystemCheckLineProps
|
|
6955
6972
|
'dap-ds-icon-check-line2': SystemCheckLine2Props
|
|
6956
|
-
'dap-ds-icon-alert-line': SystemAlertLineProps
|
|
6957
6973
|
'dap-ds-icon-checkbox-blank-circle-fill': SystemCheckboxBlankCircleFillProps
|
|
6958
6974
|
'dap-ds-icon-checkbox-blank-circle-fill-check': SystemCheckboxBlankCircleFillCheckProps
|
|
6959
6975
|
'dap-ds-icon-checkbox-blank-circle-line': SystemCheckboxBlankCircleLineProps
|
|
@@ -6968,12 +6984,12 @@ declare global {
|
|
|
6968
6984
|
'dap-ds-icon-download-line': SystemDownloadLineProps
|
|
6969
6985
|
'dap-ds-icon-error-warning-fill': SystemErrorWarningFillProps
|
|
6970
6986
|
'dap-ds-icon-error-warning-line': SystemErrorWarningLineProps
|
|
6987
|
+
'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
|
|
6971
6988
|
'dap-ds-icon-eye-line': SystemEyeLineProps
|
|
6972
6989
|
'dap-ds-icon-eye-off-line': SystemEyeOffLineProps
|
|
6973
6990
|
'dap-ds-icon-forbid-fill': SystemForbidFillProps
|
|
6974
6991
|
'dap-ds-icon-information-2-fill': SystemInformation2FillProps
|
|
6975
6992
|
'dap-ds-icon-information-fill': SystemInformationFillProps
|
|
6976
|
-
'dap-ds-icon-file-music-line': DocumentFileMusicLineProps
|
|
6977
6993
|
'dap-ds-icon-information-line': SystemInformationLineProps
|
|
6978
6994
|
'dap-ds-icon-lightbulb-fill': SystemLightbulbFillProps
|
|
6979
6995
|
'dap-ds-icon-loading-spinner': SystemLoadingSpinnerProps
|
|
@@ -6997,12 +7013,10 @@ declare global {
|
|
|
6997
7013
|
'dap-ds-icon-upload-line': SystemUploadLineProps
|
|
6998
7014
|
'dap-ds-icon-zoom-in-line': SystemZoomInLineProps
|
|
6999
7015
|
'dap-ds-icon-zoom-out-line': SystemZoomOutLineProps
|
|
7000
|
-
'dap-ds-icon-external-link-line': SystemExternalLinkLineProps
|
|
7001
7016
|
'dap-ds-icon-account-circle-fill': UserAccountCircleFillProps
|
|
7002
7017
|
'dap-ds-icon-account-circle-line': UserAccountCircleLineProps
|
|
7003
7018
|
'dap-ds-icon-user-fill': UserUserFillProps
|
|
7004
7019
|
'dap-ds-icon-user-line': UserUserLineProps
|
|
7005
|
-
'dap-ds-icon-calendar-line': BusinessCalendarLineProps
|
|
7006
7020
|
}
|
|
7007
7021
|
}
|
|
7008
7022
|
}
|