dap-design-system 0.57.4 → 0.57.6

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.
@@ -1,10 +1,10 @@
1
1
  export { default as DapDSAccordionReact } from './dap-ds-accordion/index.js';
2
+ export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
2
3
  export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/index.js';
4
+ export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
3
5
  export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
4
6
  export { default as DapDSBadgeReact } from './dap-ds-badge/index.js';
5
- export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
6
7
  export { default as DapDSBannerReact } from './dap-ds-banner/index.js';
7
- export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
8
8
  export { default as DapDSBreadcrumbReact } from './dap-ds-breadcrumb/index.js';
9
9
  export { default as DapDSBreadcrumbItemReact } from './dap-ds-breadcrumb-item/index.js';
10
10
  export { default as DapDSButtonReact } from './dap-ds-button/index.js';
@@ -128,6 +128,10 @@ export { default as EditorSeparatorReact } from './dap-ds-icon-separator/index.j
128
128
  export { default as HealthHeartFillReact } from './dap-ds-icon-heart-fill/index.js';
129
129
  export { default as HealthHeartLineReact } from './dap-ds-icon-heart-line/index.js';
130
130
  export { default as OthersCookieLineReact } from './dap-ds-icon-cookie-line/index.js';
131
+ export { default as UserAccountCircleFillReact } from './dap-ds-icon-account-circle-fill/index.js';
132
+ export { default as UserAccountCircleLineReact } from './dap-ds-icon-account-circle-line/index.js';
133
+ export { default as UserUserFillReact } from './dap-ds-icon-user-fill/index.js';
134
+ export { default as UserUserLineReact } from './dap-ds-icon-user-line/index.js';
131
135
  export { default as SystemAddLineReact } from './dap-ds-icon-add-line/index.js';
132
136
  export { default as SystemAlertFillReact } from './dap-ds-icon-alert-fill/index.js';
133
137
  export { default as SystemAlertLineReact } from './dap-ds-icon-alert-line/index.js';
@@ -146,9 +150,9 @@ export { default as SystemDeleteBinFillReact } from './dap-ds-icon-delete-bin-fi
146
150
  export { default as SystemDeleteBinLineReact } from './dap-ds-icon-delete-bin-line/index.js';
147
151
  export { default as SystemDownloadLineReact } from './dap-ds-icon-download-line/index.js';
148
152
  export { default as SystemErrorWarningFillReact } from './dap-ds-icon-error-warning-fill/index.js';
149
- export { default as SystemErrorWarningLineReact } from './dap-ds-icon-error-warning-line/index.js';
150
153
  export { default as SystemExternalLinkLineReact } from './dap-ds-icon-external-link-line/index.js';
151
154
  export { default as SystemEyeLineReact } from './dap-ds-icon-eye-line/index.js';
155
+ export { default as SystemErrorWarningLineReact } from './dap-ds-icon-error-warning-line/index.js';
152
156
  export { default as SystemEyeOffLineReact } from './dap-ds-icon-eye-off-line/index.js';
153
157
  export { default as SystemForbidFillReact } from './dap-ds-icon-forbid-fill/index.js';
154
158
  export { default as SystemInformation2FillReact } from './dap-ds-icon-information-2-fill/index.js';
@@ -176,7 +180,3 @@ export { default as SystemUpload2LineReact } from './dap-ds-icon-upload-2-line/i
176
180
  export { default as SystemUploadLineReact } from './dap-ds-icon-upload-line/index.js';
177
181
  export { default as SystemZoomInLineReact } from './dap-ds-icon-zoom-in-line/index.js';
178
182
  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';
@@ -4,12 +4,12 @@ type HtmlType = { children?: React.ReactNode | Element, class?: string, ref?: Re
4
4
  style?: Partial<CSSStyleDeclaration>, id?: string, onClick?: (e: React.MouseEvent) => void, onChange?: (e: React.ChangeEvent) => void}
5
5
 
6
6
  export type DapDSAccordionType = HtmlType & Partial<Omit<DDS.DapDSAccordion, 'children' | 'style'>> & { "ondds-opened"?: (e: DdsOpenedEvent) => void, "ondds-closed"?: (e: DdsClosedEvent) => void }
7
+ export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
7
8
  export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
9
+ export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
8
10
  export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
9
11
  export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, 'children' | 'style'>>
10
- export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
11
12
  export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
12
- export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
13
13
  export type DapDSBreadcrumbType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumb, 'children' | 'style'>>
14
14
  export type DapDSBreadcrumbItemType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumbItem, 'children' | 'style'>>
15
15
  export type DapDSButtonType = HtmlType & Partial<Omit<DDS.DapDSButton, 'children' | 'style'>> & { "ondds-loading-timeout"?: (e: DdsLoadingTimeoutEvent) => void }
@@ -133,6 +133,10 @@ export type EditorSeparatorType = HtmlType & Partial<Omit<DDS.EditorSeparator, '
133
133
  export type HealthHeartFillType = HtmlType & Partial<Omit<DDS.HealthHeartFill, 'children' | 'style'>>
134
134
  export type HealthHeartLineType = HtmlType & Partial<Omit<DDS.HealthHeartLine, 'children' | 'style'>>
135
135
  export type OthersCookieLineType = HtmlType & Partial<Omit<DDS.OthersCookieLine, 'children' | 'style'>>
136
+ export type UserAccountCircleFillType = HtmlType & Partial<Omit<DDS.UserAccountCircleFill, 'children' | 'style'>>
137
+ export type UserAccountCircleLineType = HtmlType & Partial<Omit<DDS.UserAccountCircleLine, 'children' | 'style'>>
138
+ export type UserUserFillType = HtmlType & Partial<Omit<DDS.UserUserFill, 'children' | 'style'>>
139
+ export type UserUserLineType = HtmlType & Partial<Omit<DDS.UserUserLine, 'children' | 'style'>>
136
140
  export type SystemAddLineType = HtmlType & Partial<Omit<DDS.SystemAddLine, 'children' | 'style'>>
137
141
  export type SystemAlertFillType = HtmlType & Partial<Omit<DDS.SystemAlertFill, 'children' | 'style'>>
138
142
  export type SystemAlertLineType = HtmlType & Partial<Omit<DDS.SystemAlertLine, 'children' | 'style'>>
@@ -151,9 +155,9 @@ export type SystemDeleteBinFillType = HtmlType & Partial<Omit<DDS.SystemDeleteBi
151
155
  export type SystemDeleteBinLineType = HtmlType & Partial<Omit<DDS.SystemDeleteBinLine, 'children' | 'style'>>
152
156
  export type SystemDownloadLineType = HtmlType & Partial<Omit<DDS.SystemDownloadLine, 'children' | 'style'>>
153
157
  export type SystemErrorWarningFillType = HtmlType & Partial<Omit<DDS.SystemErrorWarningFill, 'children' | 'style'>>
154
- export type SystemErrorWarningLineType = HtmlType & Partial<Omit<DDS.SystemErrorWarningLine, 'children' | 'style'>>
155
158
  export type SystemExternalLinkLineType = HtmlType & Partial<Omit<DDS.SystemExternalLinkLine, 'children' | 'style'>>
156
159
  export type SystemEyeLineType = HtmlType & Partial<Omit<DDS.SystemEyeLine, 'children' | 'style'>>
160
+ export type SystemErrorWarningLineType = HtmlType & Partial<Omit<DDS.SystemErrorWarningLine, 'children' | 'style'>>
157
161
  export type SystemEyeOffLineType = HtmlType & Partial<Omit<DDS.SystemEyeOffLine, 'children' | 'style'>>
158
162
  export type SystemForbidFillType = HtmlType & Partial<Omit<DDS.SystemForbidFill, 'children' | 'style'>>
159
163
  export type SystemInformation2FillType = HtmlType & Partial<Omit<DDS.SystemInformation2Fill, 'children' | 'style'>>
@@ -180,8 +184,4 @@ export type SystemUpload2FillType = HtmlType & Partial<Omit<DDS.SystemUpload2Fil
180
184
  export type SystemUpload2LineType = HtmlType & Partial<Omit<DDS.SystemUpload2Line, 'children' | 'style'>>
181
185
  export type SystemUploadLineType = HtmlType & Partial<Omit<DDS.SystemUploadLine, 'children' | 'style'>>
182
186
  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'>>
187
+ export type SystemZoomOutLineType = HtmlType & Partial<Omit<DDS.SystemZoomOutLine, 'children' | 'style'>>