dap-design-system 0.53.21 → 0.54.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.
Files changed (31) hide show
  1. package/dist/common/types.d.ts +1 -0
  2. package/dist/components/icons/system/system-zoom-in-line/system-zoom-in-line.component.d.ts +30 -0
  3. package/dist/components/icons/system/system-zoom-in-line/system-zoom-in-line.d.ts +8 -0
  4. package/dist/components/icons/system/system-zoom-out-line/system-zoom-out-line.component.d.ts +30 -0
  5. package/dist/components/icons/system/system-zoom-out-line/system-zoom-out-line.d.ts +8 -0
  6. package/dist/components/image-zoom/image-zoom.component.d.ts +78 -0
  7. package/dist/{components-Dz0ahnZp.js → components-DA73YE3_.js} +5634 -5428
  8. package/dist/components-DA73YE3_.js.map +1 -0
  9. package/dist/components.d.ts +1 -0
  10. package/dist/components.js +56 -55
  11. package/dist/dap-design-system.d.ts +3 -0
  12. package/dist/dds.js +320 -215
  13. package/dist/dds.js.map +1 -1
  14. package/dist/events/dds-change.d.ts +1 -59
  15. package/dist/events/dds-unzoom.d.ts +6 -0
  16. package/dist/events/dds-zoom.d.ts +6 -0
  17. package/dist/events/events.d.ts +2 -0
  18. package/dist/icons.js +1 -2
  19. package/dist/icons.js.map +1 -1
  20. package/dist/manifest/types/vue/index.d.ts +729 -635
  21. package/dist/manifest/vscode.html-custom-data.json +660 -539
  22. package/dist/manifest/web-types.json +1599 -1362
  23. package/dist/react/dap-ds-icon-zoom-in-line/index.d.ts +18 -0
  24. package/dist/react/dap-ds-icon-zoom-out-line/index.d.ts +18 -0
  25. package/dist/react/dap-ds-image-zoom/index.d.ts +42 -0
  26. package/dist/react/index.d.ts +24 -21
  27. package/dist/react-types.ts +26 -23
  28. package/dist/react.js +729 -705
  29. package/dist/react.js.map +1 -1
  30. package/package.json +1 -1
  31. package/dist/components-Dz0ahnZp.js.map +0 -1
@@ -0,0 +1,18 @@
1
+ import { default as Component } from '../../components/icons/system/system-zoom-in-line/system-zoom-in-line.component.js';
2
+ /**
3
+ * `dap-ds-icon-zoom-in-line`
4
+ * @summary An icon
5
+ * @element dap-ds-icon-zoom-in-line
6
+ * @title - SystemZoomInLine
7
+ * @group icon
8
+ * @icontype system
9
+ *
10
+ * @attribute {number} size - (optional) The width and height in pixels
11
+ * @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
12
+ * @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
13
+ * @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
14
+ *
15
+ * @csspart base - The main icon container.
16
+ */
17
+ declare const reactWrapper: import('@lit/react').ReactWebComponent<Component, {}>;
18
+ export default reactWrapper;
@@ -0,0 +1,18 @@
1
+ import { default as Component } from '../../components/icons/system/system-zoom-out-line/system-zoom-out-line.component.js';
2
+ /**
3
+ * `dap-ds-icon-zoom-out-line`
4
+ * @summary An icon
5
+ * @element dap-ds-icon-zoom-out-line
6
+ * @title - SystemZoomOutLine
7
+ * @group icon
8
+ * @icontype system
9
+ *
10
+ * @attribute {number} size - (optional) The width and height in pixels
11
+ * @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
12
+ * @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
13
+ * @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
14
+ *
15
+ * @csspart base - The main icon container.
16
+ */
17
+ declare const reactWrapper: import('@lit/react').ReactWebComponent<Component, {}>;
18
+ export default reactWrapper;
@@ -0,0 +1,42 @@
1
+ import { EventName } from '@lit/react';
2
+ import { default as Component } from '../../components/image-zoom/image-zoom.component.js';
3
+ import { DdsZoomEvent, DdsUnzoomEvent } from '../../events/events';
4
+ export type { DdsZoomEvent } from '../../events/events';
5
+ export type { DdsUnzoomEvent } from '../../events/events';
6
+ /**
7
+ * `dap-ds-image-zoom`
8
+ * @summary 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.
9
+ * @element dap-ds-image-zoom
10
+ * @title - Image Zoom
11
+ *
12
+ * @property {boolean} open - The open/zoomed state. Can be used for controlled mode.
13
+ * @property {boolean} isDisabled - Disables zoom functionality.
14
+ * @property {number} zoomMargin - Margin in pixels from viewport edges when zoomed. Default is 0.
15
+ * @property {string} expandButtonAriaLabel - Accessible label for the zoom trigger. Default is 'Expand image'.
16
+ * @property {string} unzoomButtonAriaLabel - Accessible label for the unzoom button. Default is 'Minimize image'.
17
+ * @property {boolean} hideButtons - Hides the expand and unzoom buttons. Default is false.
18
+ * @property {boolean} canSwipeToUnzoom - Enables swipe gesture to close when zoomed. Default is true.
19
+ * @property {number} swipeToUnzoomThreshold - Swipe distance in pixels required to trigger unzoom. Default is 10.
20
+ * @property {string} zoomSrc - URL of a higher quality image to display when zoomed. Falls back to the slotted image src.
21
+ *
22
+ * @event {CustomEvent} dds-zoom - Fires when the image is about to zoom. Cancelable via event.preventDefault().
23
+ * @event {CustomEvent} dds-unzoom - Fires after the image has unzoomed.
24
+ *
25
+ * @slot - The image or content element to zoom. Should contain an <img> element.
26
+ *
27
+ * @csspart trigger - The zoom trigger wrapper element.
28
+ * @csspart dialog - The zoom dialog element.
29
+ * @csspart overlay - The backdrop overlay element.
30
+ * @csspart zoomed-image - The zoomed image element.
31
+ * @csspart unzoom-button - The button to close the zoomed view.
32
+ * @csspart expand-button - The button to expand the image.
33
+ *
34
+ * @cssproperty --dds-image-zoom-overlay-bg - Overlay background color (default: rgba(0, 0, 0, 0.8)).
35
+ * @cssproperty --dds-image-zoom-transition-speed - Animation duration (default: 300ms).
36
+ * @cssproperty --dds-image-zoom-transition-timing - Animation timing function (default: var(--dds-easing-ease-in-out, ease-in-out)).
37
+ */
38
+ declare const reactWrapper: import('@lit/react').ReactWebComponent<Component, {
39
+ onDdsZoom: EventName<DdsZoomEvent>;
40
+ onDdsUnzoom: EventName<DdsUnzoomEvent>;
41
+ }>;
42
+ export default reactWrapper;
@@ -1,15 +1,15 @@
1
+ export { default as DapDSAccordionReact } from './dap-ds-accordion/index.js';
1
2
  export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
2
- export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
3
3
  export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/index.js';
4
+ export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
4
5
  export { default as DapDSBadgeReact } from './dap-ds-badge/index.js';
6
+ export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
5
7
  export { default as DapDSBannerReact } from './dap-ds-banner/index.js';
6
8
  export { default as DapDSBreadcrumbReact } from './dap-ds-breadcrumb/index.js';
7
- export { default as DapDSAccordionReact } from './dap-ds-accordion/index.js';
8
- export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
9
9
  export { default as DapDSBreadcrumbItemReact } from './dap-ds-breadcrumb-item/index.js';
10
- export { default as DapDSButtonReact } from './dap-ds-button/index.js';
11
10
  export { default as DapDSCalendarCellReact } from './dap-ds-calendar-cell/index.js';
12
11
  export { default as DapDSCalendarReact } from './dap-ds-calendar/index.js';
12
+ export { default as DapDSButtonReact } from './dap-ds-button/index.js';
13
13
  export { default as DapDSCalloutReact } from './dap-ds-callout/index.js';
14
14
  export { default as DapDSCardActionsReact } from './dap-ds-card-actions/index.js';
15
15
  export { default as DapDSCardContentReact } from './dap-ds-card-content/index.js';
@@ -17,8 +17,8 @@ export { default as DapDSCardImageReact } from './dap-ds-card-image/index.js';
17
17
  export { default as DapDSCardSubtitleReact } from './dap-ds-card-subtitle/index.js';
18
18
  export { default as DapDSCardTitleReact } from './dap-ds-card-title/index.js';
19
19
  export { default as DapDSCardReact } from './dap-ds-card/index.js';
20
- export { default as DapDSChipReact } from './dap-ds-chip/index.js';
21
20
  export { default as DapDSCheckboxReact } from './dap-ds-checkbox/index.js';
21
+ export { default as DapDSChipReact } from './dap-ds-chip/index.js';
22
22
  export { default as DapDSCodePuncherSlotReact } from './dap-ds-code-puncher-slot/index.js';
23
23
  export { default as DapDSCodePuncherReact } from './dap-ds-code-puncher/index.js';
24
24
  export { default as DapDSComboboxReact } from './dap-ds-combobox/index.js';
@@ -38,6 +38,7 @@ export { default as DapDSFileInputListReact } from './dap-ds-file-input-list/ind
38
38
  export { default as DapDSFileInputReact } from './dap-ds-file-input/index.js';
39
39
  export { default as DapDSIconReact } from './dap-ds-icon/index.js';
40
40
  export { default as DapDSIconButtonReact } from './dap-ds-icon-button/index.js';
41
+ export { default as DapDSImageZoomReact } from './dap-ds-image-zoom/index.js';
41
42
  export { default as DapDSInputReact } from './dap-ds-input/index.js';
42
43
  export { default as DapDSLabelReact } from './dap-ds-label/index.js';
43
44
  export { default as DapDSLinkReact } from './dap-ds-link/index.js';
@@ -61,28 +62,28 @@ export { default as DapDSRatingReact } from './dap-ds-rating/index.js';
61
62
  export { default as DapDSScrollAreaReact } from './dap-ds-scroll-area/index.js';
62
63
  export { default as DapDSScrollProgressReact } from './dap-ds-scroll-progress/index.js';
63
64
  export { default as DapDSSearchReact } from './dap-ds-search/index.js';
65
+ export { default as DapDSSelectReact } from './dap-ds-select/index.js';
64
66
  export { default as DapDSSideNavGroupReact } from './dap-ds-sidenav-group/index.js';
65
67
  export { default as DapDSSideNavItemReact } from './dap-ds-sidenav-item/index.js';
66
68
  export { default as DapDSSideNavReact } from './dap-ds-sidenav/index.js';
67
- export { default as DapDSSelectReact } from './dap-ds-select/index.js';
69
+ export { default as DapDSSkeletonReact } from './dap-ds-skeleton/index.js';
68
70
  export { default as DapDSSkipLinkReact } from './dap-ds-skip-link/index.js';
69
71
  export { default as DapDSSnackbarMessageReact } from './dap-ds-snackbar-message/index.js';
70
72
  export { default as DapDSSnackbarReact } from './dap-ds-snackbar/index.js';
71
- export { default as DapDSSkeletonReact } from './dap-ds-skeleton/index.js';
72
73
  export { default as DapDSSpinnerReact } from './dap-ds-spinner/index.js';
73
74
  export { default as DapDSStackReact } from './dap-ds-stack/index.js';
74
75
  export { default as DapDSSwitchReact } from './dap-ds-switch/index.js';
76
+ export { default as DapDSTabGroupReact } from './dap-ds-tab-group/index.js';
77
+ export { default as DapDSTabReact } from './dap-ds-tab/index.js';
75
78
  export { default as DapDSTableCellReact } from './dap-ds-table-cell/index.js';
76
79
  export { default as DapDSTableHeaderReact } from './dap-ds-table-header/index.js';
77
80
  export { default as DapDSTableRowReact } from './dap-ds-table-row/index.js';
78
81
  export { default as DapDSTableReact } from './dap-ds-table/index.js';
79
82
  export { default as DapDSTextareaReact } from './dap-ds-textarea/index.js';
80
- export { default as DapDSTimeGridReact } from './dap-ds-time-grid/index.js';
81
- export { default as DapDSTimePickerReact } from './dap-ds-timepicker/index.js';
82
83
  export { default as DapDSTimelineItemReact } from './dap-ds-timeline-item/index.js';
83
84
  export { default as DapDSTimelineReact } from './dap-ds-timeline/index.js';
84
- export { default as DapDSTabGroupReact } from './dap-ds-tab-group/index.js';
85
- export { default as DapDSTabReact } from './dap-ds-tab/index.js';
85
+ export { default as DapDSTimeGridReact } from './dap-ds-time-grid/index.js';
86
+ export { default as DapDSTimePickerReact } from './dap-ds-timepicker/index.js';
86
87
  export { default as DapDSTOCReact } from './dap-ds-toc/index.js';
87
88
  export { default as DapDSToggleButtonReact } from './dap-ds-toggle-button/index.js';
88
89
  export { default as DapDSTooltipReact } from './dap-ds-tooltip/index.js';
@@ -95,23 +96,23 @@ export { default as ArrowsArrowDownLineReact } from './dap-ds-icon-arrow-down-li
95
96
  export { default as ArrowsArrowDownSFillReact } from './dap-ds-icon-arrow-down-s-fill/index.js';
96
97
  export { default as ArrowsArrowDownSLineReact } from './dap-ds-icon-arrow-down-s-line/index.js';
97
98
  export { default as ArrowsArrowLeftDownLineReact } from './dap-ds-icon-arrow-left-down-line/index.js';
98
- export { default as ArrowsArrowLeftLineReact } from './dap-ds-icon-arrow-left-line/index.js';
99
99
  export { default as ArrowsArrowLeftLLineReact } from './dap-ds-icon-arrow-left-l-line/index.js';
100
+ export { default as ArrowsArrowLeftLineReact } from './dap-ds-icon-arrow-left-line/index.js';
100
101
  export { default as ArrowsArrowLeftSFillReact } from './dap-ds-icon-arrow-left-s-fill/index.js';
101
102
  export { default as ArrowsArrowLeftSLineReact } from './dap-ds-icon-arrow-left-s-line/index.js';
102
103
  export { default as ArrowsArrowLeftUpLineReact } from './dap-ds-icon-arrow-left-up-line/index.js';
103
104
  export { default as ArrowsArrowRightDownLineReact } from './dap-ds-icon-arrow-right-down-line/index.js';
104
105
  export { default as ArrowsArrowRightLLineReact } from './dap-ds-icon-arrow-right-l-line/index.js';
105
106
  export { default as ArrowsArrowRightLineReact } from './dap-ds-icon-arrow-right-line/index.js';
106
- export { default as ArrowsArrowRightSLineReact } from './dap-ds-icon-arrow-right-s-line/index.js';
107
107
  export { default as ArrowsArrowRightSFillReact } from './dap-ds-icon-arrow-right-s-fill/index.js';
108
+ export { default as ArrowsArrowRightSLineReact } from './dap-ds-icon-arrow-right-s-line/index.js';
108
109
  export { default as ArrowsArrowRightUpLineReact } from './dap-ds-icon-arrow-right-up-line/index.js';
109
- export { default as ArrowsArrowUpLineReact } from './dap-ds-icon-arrow-up-line/index.js';
110
110
  export { default as ArrowsArrowUpSFillReact } from './dap-ds-icon-arrow-up-s-fill/index.js';
111
+ export { default as ArrowsArrowUpLineReact } from './dap-ds-icon-arrow-up-line/index.js';
111
112
  export { default as ArrowsArrowUpSLineReact } from './dap-ds-icon-arrow-up-s-line/index.js';
112
113
  export { default as ArrowsExpandUpDownFillReact } from './dap-ds-icon-expand-up-down-fill/index.js';
113
- export { default as BusinessCalendarLineReact } from './dap-ds-icon-calendar-line/index.js';
114
114
  export { default as BuildingsHome6LineReact } from './dap-ds-icon-home-6-line/index.js';
115
+ export { default as BusinessCalendarLineReact } from './dap-ds-icon-calendar-line/index.js';
115
116
  export { default as DesignEditLineReact } from './dap-ds-icon-edit-line/index.js';
116
117
  export { default as DesignToolsLineReact } from './dap-ds-icon-tools-line/index.js';
117
118
  export { default as DeviceComputerLineReact } from './dap-ds-icon-computer-line/index.js';
@@ -123,14 +124,10 @@ export { default as DocumentFileTextLineReact } from './dap-ds-icon-file-text-li
123
124
  export { default as DocumentFileVideoLineReact } from './dap-ds-icon-file-video-line/index.js';
124
125
  export { default as DocumentFolderLineReact } from './dap-ds-icon-folder-line/index.js';
125
126
  export { default as DocumentFolderOpenLineReact } from './dap-ds-icon-folder-open-line/index.js';
126
- export { default as HealthHeartFillReact } from './dap-ds-icon-heart-fill/index.js';
127
127
  export { default as EditorSeparatorReact } from './dap-ds-icon-separator/index.js';
128
+ export { default as HealthHeartFillReact } from './dap-ds-icon-heart-fill/index.js';
128
129
  export { default as HealthHeartLineReact } from './dap-ds-icon-heart-line/index.js';
129
130
  export { default as OthersCookieLineReact } from './dap-ds-icon-cookie-line/index.js';
130
- export { default as UserAccountCircleFillReact } from './dap-ds-icon-account-circle-fill/index.js';
131
- export { default as UserAccountCircleLineReact } from './dap-ds-icon-account-circle-line/index.js';
132
- export { default as UserUserFillReact } from './dap-ds-icon-user-fill/index.js';
133
- export { default as UserUserLineReact } from './dap-ds-icon-user-line/index.js';
134
131
  export { default as SystemAddLineReact } from './dap-ds-icon-add-line/index.js';
135
132
  export { default as SystemAlertFillReact } from './dap-ds-icon-alert-fill/index.js';
136
133
  export { default as SystemAlertLineReact } from './dap-ds-icon-alert-line/index.js';
@@ -142,8 +139,8 @@ export { default as SystemCheckboxBlankCircleLineReact } from './dap-ds-icon-che
142
139
  export { default as SystemCheckboxCircleFillReact } from './dap-ds-icon-checkbox-circle-fill/index.js';
143
140
  export { default as SystemCheckboxCircleLineReact } from './dap-ds-icon-checkbox-circle-line/index.js';
144
141
  export { default as SystemCloseCircleFillReact } from './dap-ds-icon-close-circle-fill/index.js';
145
- export { default as SystemCloseCircleLineReact } from './dap-ds-icon-close-circle-line/index.js';
146
142
  export { default as SystemCloseFillReact } from './dap-ds-icon-close-fill/index.js';
143
+ export { default as SystemCloseCircleLineReact } from './dap-ds-icon-close-circle-line/index.js';
147
144
  export { default as SystemCloseLineReact } from './dap-ds-icon-close-line/index.js';
148
145
  export { default as SystemDeleteBinFillReact } from './dap-ds-icon-delete-bin-fill/index.js';
149
146
  export { default as SystemDeleteBinLineReact } from './dap-ds-icon-delete-bin-line/index.js';
@@ -177,3 +174,9 @@ export { default as SystemTimeLineReact } from './dap-ds-icon-time-line/index.js
177
174
  export { default as SystemUpload2FillReact } from './dap-ds-icon-upload-2-fill/index.js';
178
175
  export { default as SystemUpload2LineReact } from './dap-ds-icon-upload-2-line/index.js';
179
176
  export { default as SystemUploadLineReact } from './dap-ds-icon-upload-line/index.js';
177
+ export { default as SystemZoomInLineReact } from './dap-ds-icon-zoom-in-line/index.js';
178
+ export { default as SystemZoomOutLineReact } from './dap-ds-icon-zoom-out-line/index.js';
179
+ export { default as UserAccountCircleFillReact } from './dap-ds-icon-account-circle-fill/index.js';
180
+ export { default as UserAccountCircleLineReact } from './dap-ds-icon-account-circle-line/index.js';
181
+ export { default as UserUserFillReact } from './dap-ds-icon-user-fill/index.js';
182
+ export { default as UserUserLineReact } from './dap-ds-icon-user-line/index.js';
@@ -1,20 +1,20 @@
1
1
  import * as DDS from "./dap-design-system.js"
2
- import type { DdsAllUploadsCompleteEvent, DdsAnchorChangeEvent, DdsBeforeCloseEvent, DdsBeforeOpenEvent, DdsBlurEvent, DdsCancelEvent, DdsChangeEvent, DdsClearEvent, DdsClickEvent, DdsCloseEvent, DdsClosedEvent, DdsCommandItemClickEvent, DdsCompleteEvent, DdsCopyEvent, DdsCountChangeEvent, DdsErrorEvent, DdsFileChangeEvent, DdsFileClickEvent, DdsFileDeleteErrorEvent, DdsFileRemoveEvent, DdsFileRemovedEvent, DdsFilesAcceptedEvent, DdsFocusEvent, DdsInputEvent, DdsInvalidDateEvent, DdsInvalidTimeEvent, DdsItemClickEvent, DdsKeydownEvent, DdsListChangedEvent, DdsLoadEvent, DdsLoadingTimeoutEvent, DdsNavigationDropdownOpenEvent, DdsNavigationItemClickEvent, DdsNotAllowedEvent, DdsOkEvent, DdsOpenedEvent, DdsOptionChangeEvent, DdsOverflowClickEvent, DdsPaginationChangeEvent, DdsRemoveEvent, DdsRowClickEvent, DdsSearchEvent, DdsSelectEvent, DdsSelectionChangeEvent, DdsSortingChangeEvent, DdsTabSelectEvent, DdsUploadCompleteEvent, DdsUploadErrorEvent, DdsUploadProgressEvent, DdsUploadStartEvent, DdsValidDateEvent, DdsValidTimeEvent } from "./dap-design-system.js"
2
+ import type { DdsAllUploadsCompleteEvent, DdsAnchorChangeEvent, DdsBeforeCloseEvent, DdsBeforeOpenEvent, DdsBlurEvent, DdsCancelEvent, DdsChangeEvent, DdsClearEvent, DdsClickEvent, DdsCloseEvent, DdsClosedEvent, DdsCommandItemClickEvent, DdsCompleteEvent, DdsCopyEvent, DdsCountChangeEvent, DdsErrorEvent, DdsFileChangeEvent, DdsFileClickEvent, DdsFileDeleteErrorEvent, DdsFileRemoveEvent, DdsFileRemovedEvent, DdsFilesAcceptedEvent, DdsFocusEvent, DdsInputEvent, DdsInvalidDateEvent, DdsInvalidTimeEvent, DdsItemClickEvent, DdsKeydownEvent, DdsListChangedEvent, DdsLoadEvent, DdsLoadingTimeoutEvent, DdsNavigationDropdownOpenEvent, DdsNavigationItemClickEvent, DdsNotAllowedEvent, DdsOkEvent, DdsOpenedEvent, DdsOptionChangeEvent, DdsOverflowClickEvent, DdsPaginationChangeEvent, DdsRemoveEvent, DdsRowClickEvent, DdsSearchEvent, DdsSelectEvent, DdsSelectionChangeEvent, DdsSortingChangeEvent, DdsTabSelectEvent, DdsUnzoomEvent, DdsUploadCompleteEvent, DdsUploadErrorEvent, DdsUploadProgressEvent, DdsUploadStartEvent, DdsValidDateEvent, DdsValidTimeEvent, DdsZoomEvent } from "./dap-design-system.js"
3
3
  type HtmlType = { children?: React.ReactNode | Element, class?: string, ref?: React.RefObject<any>, key?: React.Key | null | undefined,
4
4
  style?: Partial<CSSStyleDeclaration>, id?: string, onClick?: (e: React.MouseEvent) => void, onChange?: (e: React.ChangeEvent) => void}
5
5
 
6
+ export type DapDSAccordionType = HtmlType & Partial<Omit<DDS.DapDSAccordion, 'children' | 'style'>> & { "ondds-opened"?: (e: DdsOpenedEvent) => void, "ondds-closed"?: (e: DdsClosedEvent) => void }
6
7
  export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
7
- export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
8
8
  export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
9
+ export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
9
10
  export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, 'children' | 'style'>>
11
+ export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
10
12
  export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
11
13
  export type DapDSBreadcrumbType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumb, 'children' | 'style'>>
12
- export type DapDSAccordionType = HtmlType & Partial<Omit<DDS.DapDSAccordion, 'children' | 'style'>> & { "ondds-opened"?: (e: DdsOpenedEvent) => void, "ondds-closed"?: (e: DdsClosedEvent) => void }
13
- export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
14
14
  export type DapDSBreadcrumbItemType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumbItem, 'children' | 'style'>>
15
- export type DapDSButtonType = HtmlType & Partial<Omit<DDS.DapDSButton, 'children' | 'style'>> & { "ondds-loading-timeout"?: (e: DdsLoadingTimeoutEvent) => void }
16
15
  export type DapDSCalendarCellType = HtmlType & Partial<Omit<DDS.DapDSCalendarCell, 'children' | 'style'>>
17
16
  export type DapDSCalendarType = HtmlType & Partial<Omit<DDS.DapDSCalendar, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void }
17
+ export type DapDSButtonType = HtmlType & Partial<Omit<DDS.DapDSButton, 'children' | 'style'>> & { "ondds-loading-timeout"?: (e: DdsLoadingTimeoutEvent) => void }
18
18
  export type DapDSCalloutType = HtmlType & Partial<Omit<DDS.DapDSCallout, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
19
19
  export type DapDSCardActionsType = HtmlType & Partial<Omit<DDS.DapDSCardActions, 'children' | 'style'>>
20
20
  export type DapDSCardContentType = HtmlType & Partial<Omit<DDS.DapDSCardContent, 'children' | 'style'>>
@@ -22,8 +22,8 @@ export type DapDSCardImageType = HtmlType & Partial<Omit<DDS.DapDSCardImage, 'ch
22
22
  export type DapDSCardSubtitleType = HtmlType & Partial<Omit<DDS.DapDSCardSubtitle, 'children' | 'style'>>
23
23
  export type DapDSCardTitleType = HtmlType & Partial<Omit<DDS.DapDSCardTitle, 'children' | 'style'>>
24
24
  export type DapDSCardType = HtmlType & Partial<Omit<DDS.DapDSCard, 'children' | 'style'>>
25
- export type DapDSChipType = HtmlType & Partial<Omit<DDS.DapDSChip, 'children' | 'style'>> & { "ondds-remove"?: (e: DdsRemoveEvent) => void, "ondds-select"?: (e: DdsSelectEvent) => void }
26
25
  export type DapDSCheckboxType = HtmlType & Partial<Omit<DDS.DapDSCheckbox, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void }
26
+ export type DapDSChipType = HtmlType & Partial<Omit<DDS.DapDSChip, 'children' | 'style'>> & { "ondds-remove"?: (e: DdsRemoveEvent) => void, "ondds-select"?: (e: DdsSelectEvent) => void }
27
27
  export type DapDSCodePuncherSlotType = HtmlType & Partial<Omit<DDS.DapDSCodePuncherSlot, 'children' | 'style'>>
28
28
  export type DapDSCodePuncherType = HtmlType & Partial<Omit<DDS.DapDSCodePuncher, 'children' | 'style'>> & { "ondds-input"?: (e: DdsInputEvent) => void, "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-complete"?: (e: DdsCompleteEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void }
29
29
  export type DapDSComboboxType = HtmlType & Partial<Omit<DDS.DapDSCombobox, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-clear"?: (e: DdsClearEvent) => void, "ondds-search"?: (e: DdsSearchEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void }
@@ -43,6 +43,7 @@ export type DapDSFileInputListType = HtmlType & Partial<Omit<DDS.DapDSFileInputL
43
43
  export type DapDSFileInputType = HtmlType & Partial<Omit<DDS.DapDSFileInput, 'children' | 'style'>> & { "ondds-upload-start"?: (e: DdsUploadStartEvent) => void, "ondds-upload-progress"?: (e: DdsUploadProgressEvent) => void, "ondds-upload-complete"?: (e: DdsUploadCompleteEvent) => void, "ondds-upload-error"?: (e: DdsUploadErrorEvent) => void, "ondds-all-uploads-complete"?: (e: DdsAllUploadsCompleteEvent) => void, "ondds-file-removed"?: (e: DdsFileRemovedEvent) => void, "ondds-file-delete-error"?: (e: DdsFileDeleteErrorEvent) => void, "ondds-file-change"?: (e: DdsFileChangeEvent) => void, "ondds-files-accepted"?: (e: DdsFilesAcceptedEvent) => void }
44
44
  export type DapDSIconType = HtmlType & Partial<Omit<DDS.DapDSIcon, 'children' | 'style'>>
45
45
  export type DapDSIconButtonType = HtmlType & Partial<Omit<DDS.DapDSIconButton, 'children' | 'style'>>
46
+ export type DapDSImageZoomType = HtmlType & Partial<Omit<DDS.DapDSImageZoom, 'children' | 'style'>> & { "ondds-zoom"?: (e: DdsZoomEvent) => void, "ondds-unzoom"?: (e: DdsUnzoomEvent) => void }
46
47
  export type DapDSInputType = HtmlType & Partial<Omit<DDS.DapDSInput, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void, "ondds-keydown"?: (e: DdsKeydownEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void }
47
48
  export type DapDSLabelType = HtmlType & Partial<Omit<DDS.DapDSLabel, 'children' | 'style'>>
48
49
  export type DapDSLinkType = HtmlType & Partial<Omit<DDS.DapDSLink, 'children' | 'style'>> & { "ondds-click"?: (e: DdsClickEvent) => void }
@@ -66,28 +67,28 @@ export type DapDSRatingType = HtmlType & Partial<Omit<DDS.DapDSRating, 'children
66
67
  export type DapDSScrollAreaType = HtmlType & Partial<Omit<DDS.DapDSScrollArea, 'children' | 'style'>>
67
68
  export type DapDSScrollProgressType = HtmlType & Partial<Omit<DDS.DapDSScrollProgress, 'children' | 'style'>>
68
69
  export type DapDSSearchType = HtmlType & Partial<Omit<DDS.DapDSSearch, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-clear"?: (e: DdsClearEvent) => void, "ondds-search"?: (e: DdsSearchEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void }
70
+ export type DapDSSelectType = HtmlType & Partial<Omit<DDS.DapDSSelect, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-opened"?: (e: DdsOpenedEvent) => void, "ondds-closed"?: (e: DdsClosedEvent) => void }
69
71
  export type DapDSSideNavGroupType = HtmlType & Partial<Omit<DDS.DapDSSideNavGroup, 'children' | 'style'>>
70
72
  export type DapDSSideNavItemType = HtmlType & Partial<Omit<DDS.DapDSSideNavItem, 'children' | 'style'>>
71
73
  export type DapDSSideNavType = HtmlType & Partial<Omit<DDS.DapDSSideNav, 'children' | 'style'>> & { "ondds-item-click"?: (e: DdsItemClickEvent) => void }
72
- export type DapDSSelectType = HtmlType & Partial<Omit<DDS.DapDSSelect, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-opened"?: (e: DdsOpenedEvent) => void, "ondds-closed"?: (e: DdsClosedEvent) => void }
74
+ export type DapDSSkeletonType = HtmlType & Partial<Omit<DDS.DapDSSkeleton, 'children' | 'style'>>
73
75
  export type DapDSSkipLinkType = HtmlType & Partial<Omit<DDS.DapDSSkipLink, 'children' | 'style'>>
74
76
  export type DapDSSnackbarMessageType = HtmlType & Partial<Omit<DDS.DapDSSnackbarMessage, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
75
77
  export type DapDSSnackbarType = HtmlType & Partial<Omit<DDS.DapDSSnackbar, 'children' | 'style'>>
76
- export type DapDSSkeletonType = HtmlType & Partial<Omit<DDS.DapDSSkeleton, 'children' | 'style'>>
77
78
  export type DapDSSpinnerType = HtmlType & Partial<Omit<DDS.DapDSSpinner, 'children' | 'style'>>
78
79
  export type DapDSStackType = HtmlType & Partial<Omit<DDS.DapDSStack, 'children' | 'style'>>
79
80
  export type DapDSSwitchType = HtmlType & Partial<Omit<DDS.DapDSSwitch, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void }
81
+ export type DapDSTabGroupType = HtmlType & Partial<Omit<DDS.DapDSTabGroup, 'children' | 'style'>> & { "ondds-tab-select"?: (e: DdsTabSelectEvent) => void }
82
+ export type DapDSTabType = HtmlType & Partial<Omit<DDS.DapDSTab, 'children' | 'style'>>
80
83
  export type DapDSTableCellType = HtmlType & Partial<Omit<DDS.DapDSTableCell, 'children' | 'style'>>
81
84
  export type DapDSTableHeaderType = HtmlType & Partial<Omit<DDS.DapDSTableHeader, 'children' | 'style'>>
82
85
  export type DapDSTableRowType = HtmlType & Partial<Omit<DDS.DapDSTableRow, 'children' | 'style'>>
83
86
  export type DapDSTableType = HtmlType & Partial<Omit<DDS.DapDSTable, 'children' | 'style'>>
84
87
  export type DapDSTextareaType = HtmlType & Partial<Omit<DDS.DapDSTextarea, 'children' | 'style'>> & { "ondds-count-change"?: (e: DdsCountChangeEvent) => void, "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void, "ondds-keydown"?: (e: DdsKeydownEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-select"?: (e: DdsSelectEvent) => void }
85
- export type DapDSTimeGridType = HtmlType & Partial<Omit<DDS.DapDSTimeGrid, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-close"?: (e: DdsCloseEvent) => void }
86
- export type DapDSTimePickerType = HtmlType & Partial<Omit<DDS.DapDSTimePicker, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void, "ondds-valid-time"?: (e: DdsValidTimeEvent) => void, "ondds-invalid-time"?: (e: DdsInvalidTimeEvent) => void, "ondds-clear"?: (e: DdsClearEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void }
87
88
  export type DapDSTimelineItemType = HtmlType & Partial<Omit<DDS.DapDSTimelineItem, 'children' | 'style'>>
88
89
  export type DapDSTimelineType = HtmlType & Partial<Omit<DDS.DapDSTimeline, 'children' | 'style'>>
89
- export type DapDSTabGroupType = HtmlType & Partial<Omit<DDS.DapDSTabGroup, 'children' | 'style'>> & { "ondds-tab-select"?: (e: DdsTabSelectEvent) => void }
90
- export type DapDSTabType = HtmlType & Partial<Omit<DDS.DapDSTab, 'children' | 'style'>>
90
+ export type DapDSTimeGridType = HtmlType & Partial<Omit<DDS.DapDSTimeGrid, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-close"?: (e: DdsCloseEvent) => void }
91
+ export type DapDSTimePickerType = HtmlType & Partial<Omit<DDS.DapDSTimePicker, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void, "ondds-input"?: (e: DdsInputEvent) => void, "ondds-valid-time"?: (e: DdsValidTimeEvent) => void, "ondds-invalid-time"?: (e: DdsInvalidTimeEvent) => void, "ondds-clear"?: (e: DdsClearEvent) => void, "ondds-focus"?: (e: DdsFocusEvent) => void, "ondds-blur"?: (e: DdsBlurEvent) => void }
91
92
  export type DapDSTOCType = HtmlType & Partial<Omit<DDS.DapDSTOC, 'children' | 'style'>> & { "ondds-anchor-change"?: (e: DdsAnchorChangeEvent) => void }
92
93
  export type DapDSToggleButtonType = HtmlType & Partial<Omit<DDS.DapDSToggleButton, 'children' | 'style'>>
93
94
  export type DapDSTooltipType = HtmlType & Partial<Omit<DDS.DapDSTooltip, 'children' | 'style'>>
@@ -100,23 +101,23 @@ export type ArrowsArrowDownLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowDow
100
101
  export type ArrowsArrowDownSFillType = HtmlType & Partial<Omit<DDS.ArrowsArrowDownSFill, 'children' | 'style'>>
101
102
  export type ArrowsArrowDownSLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowDownSLine, 'children' | 'style'>>
102
103
  export type ArrowsArrowLeftDownLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowLeftDownLine, 'children' | 'style'>>
103
- export type ArrowsArrowLeftLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowLeftLine, 'children' | 'style'>>
104
104
  export type ArrowsArrowLeftLLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowLeftLLine, 'children' | 'style'>>
105
+ export type ArrowsArrowLeftLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowLeftLine, 'children' | 'style'>>
105
106
  export type ArrowsArrowLeftSFillType = HtmlType & Partial<Omit<DDS.ArrowsArrowLeftSFill, 'children' | 'style'>>
106
107
  export type ArrowsArrowLeftSLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowLeftSLine, 'children' | 'style'>>
107
108
  export type ArrowsArrowLeftUpLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowLeftUpLine, 'children' | 'style'>>
108
109
  export type ArrowsArrowRightDownLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowRightDownLine, 'children' | 'style'>>
109
110
  export type ArrowsArrowRightLLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowRightLLine, 'children' | 'style'>>
110
111
  export type ArrowsArrowRightLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowRightLine, 'children' | 'style'>>
111
- export type ArrowsArrowRightSLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowRightSLine, 'children' | 'style'>>
112
112
  export type ArrowsArrowRightSFillType = HtmlType & Partial<Omit<DDS.ArrowsArrowRightSFill, 'children' | 'style'>>
113
+ export type ArrowsArrowRightSLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowRightSLine, 'children' | 'style'>>
113
114
  export type ArrowsArrowRightUpLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowRightUpLine, 'children' | 'style'>>
114
- export type ArrowsArrowUpLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowUpLine, 'children' | 'style'>>
115
115
  export type ArrowsArrowUpSFillType = HtmlType & Partial<Omit<DDS.ArrowsArrowUpSFill, 'children' | 'style'>>
116
+ export type ArrowsArrowUpLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowUpLine, 'children' | 'style'>>
116
117
  export type ArrowsArrowUpSLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowUpSLine, 'children' | 'style'>>
117
118
  export type ArrowsExpandUpDownFillType = HtmlType & Partial<Omit<DDS.ArrowsExpandUpDownFill, 'children' | 'style'>>
118
- export type BusinessCalendarLineType = HtmlType & Partial<Omit<DDS.BusinessCalendarLine, 'children' | 'style'>>
119
119
  export type BuildingsHome6LineType = HtmlType & Partial<Omit<DDS.BuildingsHome6Line, 'children' | 'style'>>
120
+ export type BusinessCalendarLineType = HtmlType & Partial<Omit<DDS.BusinessCalendarLine, 'children' | 'style'>>
120
121
  export type DesignEditLineType = HtmlType & Partial<Omit<DDS.DesignEditLine, 'children' | 'style'>>
121
122
  export type DesignToolsLineType = HtmlType & Partial<Omit<DDS.DesignToolsLine, 'children' | 'style'>>
122
123
  export type DeviceComputerLineType = HtmlType & Partial<Omit<DDS.DeviceComputerLine, 'children' | 'style'>>
@@ -128,14 +129,10 @@ export type DocumentFileTextLineType = HtmlType & Partial<Omit<DDS.DocumentFileT
128
129
  export type DocumentFileVideoLineType = HtmlType & Partial<Omit<DDS.DocumentFileVideoLine, 'children' | 'style'>>
129
130
  export type DocumentFolderLineType = HtmlType & Partial<Omit<DDS.DocumentFolderLine, 'children' | 'style'>>
130
131
  export type DocumentFolderOpenLineType = HtmlType & Partial<Omit<DDS.DocumentFolderOpenLine, 'children' | 'style'>>
131
- export type HealthHeartFillType = HtmlType & Partial<Omit<DDS.HealthHeartFill, 'children' | 'style'>>
132
132
  export type EditorSeparatorType = HtmlType & Partial<Omit<DDS.EditorSeparator, 'children' | 'style'>>
133
+ export type HealthHeartFillType = HtmlType & Partial<Omit<DDS.HealthHeartFill, 'children' | 'style'>>
133
134
  export type HealthHeartLineType = HtmlType & Partial<Omit<DDS.HealthHeartLine, 'children' | 'style'>>
134
135
  export type OthersCookieLineType = HtmlType & Partial<Omit<DDS.OthersCookieLine, 'children' | 'style'>>
135
- export type UserAccountCircleFillType = HtmlType & Partial<Omit<DDS.UserAccountCircleFill, 'children' | 'style'>>
136
- export type UserAccountCircleLineType = HtmlType & Partial<Omit<DDS.UserAccountCircleLine, 'children' | 'style'>>
137
- export type UserUserFillType = HtmlType & Partial<Omit<DDS.UserUserFill, 'children' | 'style'>>
138
- export type UserUserLineType = HtmlType & Partial<Omit<DDS.UserUserLine, 'children' | 'style'>>
139
136
  export type SystemAddLineType = HtmlType & Partial<Omit<DDS.SystemAddLine, 'children' | 'style'>>
140
137
  export type SystemAlertFillType = HtmlType & Partial<Omit<DDS.SystemAlertFill, 'children' | 'style'>>
141
138
  export type SystemAlertLineType = HtmlType & Partial<Omit<DDS.SystemAlertLine, 'children' | 'style'>>
@@ -147,8 +144,8 @@ export type SystemCheckboxBlankCircleLineType = HtmlType & Partial<Omit<DDS.Syst
147
144
  export type SystemCheckboxCircleFillType = HtmlType & Partial<Omit<DDS.SystemCheckboxCircleFill, 'children' | 'style'>>
148
145
  export type SystemCheckboxCircleLineType = HtmlType & Partial<Omit<DDS.SystemCheckboxCircleLine, 'children' | 'style'>>
149
146
  export type SystemCloseCircleFillType = HtmlType & Partial<Omit<DDS.SystemCloseCircleFill, 'children' | 'style'>>
150
- export type SystemCloseCircleLineType = HtmlType & Partial<Omit<DDS.SystemCloseCircleLine, 'children' | 'style'>>
151
147
  export type SystemCloseFillType = HtmlType & Partial<Omit<DDS.SystemCloseFill, 'children' | 'style'>>
148
+ export type SystemCloseCircleLineType = HtmlType & Partial<Omit<DDS.SystemCloseCircleLine, 'children' | 'style'>>
152
149
  export type SystemCloseLineType = HtmlType & Partial<Omit<DDS.SystemCloseLine, 'children' | 'style'>>
153
150
  export type SystemDeleteBinFillType = HtmlType & Partial<Omit<DDS.SystemDeleteBinFill, 'children' | 'style'>>
154
151
  export type SystemDeleteBinLineType = HtmlType & Partial<Omit<DDS.SystemDeleteBinLine, 'children' | 'style'>>
@@ -181,4 +178,10 @@ export type SystemTimeFillType = HtmlType & Partial<Omit<DDS.SystemTimeFill, 'ch
181
178
  export type SystemTimeLineType = HtmlType & Partial<Omit<DDS.SystemTimeLine, 'children' | 'style'>>
182
179
  export type SystemUpload2FillType = HtmlType & Partial<Omit<DDS.SystemUpload2Fill, 'children' | 'style'>>
183
180
  export type SystemUpload2LineType = HtmlType & Partial<Omit<DDS.SystemUpload2Line, 'children' | 'style'>>
184
- export type SystemUploadLineType = HtmlType & Partial<Omit<DDS.SystemUploadLine, 'children' | 'style'>>
181
+ export type SystemUploadLineType = HtmlType & Partial<Omit<DDS.SystemUploadLine, 'children' | 'style'>>
182
+ export type SystemZoomInLineType = HtmlType & Partial<Omit<DDS.SystemZoomInLine, 'children' | 'style'>>
183
+ export type SystemZoomOutLineType = HtmlType & Partial<Omit<DDS.SystemZoomOutLine, 'children' | 'style'>>
184
+ export type UserAccountCircleFillType = HtmlType & Partial<Omit<DDS.UserAccountCircleFill, 'children' | 'style'>>
185
+ export type UserAccountCircleLineType = HtmlType & Partial<Omit<DDS.UserAccountCircleLine, 'children' | 'style'>>
186
+ export type UserUserFillType = HtmlType & Partial<Omit<DDS.UserUserFill, 'children' | 'style'>>
187
+ export type UserUserLineType = HtmlType & Partial<Omit<DDS.UserUserLine, 'children' | 'style'>>