dap-design-system 0.57.3 → 0.57.4

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,11 +1,11 @@
1
1
  export { default as DapDSAccordionReact } from './dap-ds-accordion/index.js';
2
+ export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/index.js';
2
3
  export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
3
- export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
4
4
  export { default as DapDSBadgeReact } from './dap-ds-badge/index.js';
5
- export { default as DapDSBannerReact } from './dap-ds-banner/index.js';
6
5
  export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
6
+ export { default as DapDSBannerReact } from './dap-ds-banner/index.js';
7
+ export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
7
8
  export { default as DapDSBreadcrumbReact } from './dap-ds-breadcrumb/index.js';
8
- export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/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';
11
11
  export { default as DapDSCalendarCellReact } from './dap-ds-calendar-cell/index.js';
@@ -128,10 +128,6 @@ 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';
135
131
  export { default as SystemAddLineReact } from './dap-ds-icon-add-line/index.js';
136
132
  export { default as SystemAlertFillReact } from './dap-ds-icon-alert-fill/index.js';
137
133
  export { default as SystemAlertLineReact } from './dap-ds-icon-alert-line/index.js';
@@ -180,3 +176,7 @@ export { default as SystemUpload2LineReact } from './dap-ds-icon-upload-2-line/i
180
176
  export { default as SystemUploadLineReact } from './dap-ds-icon-upload-line/index.js';
181
177
  export { default as SystemZoomInLineReact } from './dap-ds-icon-zoom-in-line/index.js';
182
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';
@@ -4,13 +4,13 @@ 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 DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
7
8
  export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
8
- export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
9
9
  export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, 'children' | 'style'>>
10
- export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
11
10
  export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
11
+ 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 }
12
13
  export type DapDSBreadcrumbType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumb, 'children' | 'style'>>
13
- export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, '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 }
16
16
  export type DapDSCalendarCellType = HtmlType & Partial<Omit<DDS.DapDSCalendarCell, 'children' | 'style'>>
@@ -133,10 +133,6 @@ 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'>>
140
136
  export type SystemAddLineType = HtmlType & Partial<Omit<DDS.SystemAddLine, 'children' | 'style'>>
141
137
  export type SystemAlertFillType = HtmlType & Partial<Omit<DDS.SystemAlertFill, 'children' | 'style'>>
142
138
  export type SystemAlertLineType = HtmlType & Partial<Omit<DDS.SystemAlertLine, 'children' | 'style'>>
@@ -184,4 +180,8 @@ export type SystemUpload2FillType = HtmlType & Partial<Omit<DDS.SystemUpload2Fil
184
180
  export type SystemUpload2LineType = HtmlType & Partial<Omit<DDS.SystemUpload2Line, 'children' | 'style'>>
185
181
  export type SystemUploadLineType = HtmlType & Partial<Omit<DDS.SystemUploadLine, 'children' | 'style'>>
186
182
  export type SystemZoomInLineType = HtmlType & Partial<Omit<DDS.SystemZoomInLine, 'children' | 'style'>>
187
- export type SystemZoomOutLineType = HtmlType & Partial<Omit<DDS.SystemZoomOutLine, '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'>>