dap-design-system 0.53.0 → 0.53.2

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.
@@ -22,7 +22,7 @@ import { default as Component } from '../../components/spinner/spinner.component
22
22
  * @cssprop --dds-spinner-text-spacing - Spacing between spinner and text (default: var(--dds-spacing-400))
23
23
  * @cssprop --dds-spinner-animation-duration - Duration of the spinner animation (default: 1s)
24
24
  *
25
- * @property { 'xxs' | 'xs' | 'sm' | 'md' | 'lg' } size - The size of the spinner. Default is `lg`. See SizedMixin.
25
+ * @property { 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' } size - The size of the spinner. Default is `lg`. See SizedMixin.
26
26
  * @property {string} sizeMap - Responsive size map (e.g. "md:lg"); see SizedMixin.
27
27
  */
28
28
  declare const reactWrapper: import('@lit/react').ReactWebComponent<Component, {}>;
@@ -1,10 +1,10 @@
1
1
  export { default as DapDSAccordionReact } from './dap-ds-accordion/index.js';
2
+ export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
3
+ export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
2
4
  export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/index.js';
3
5
  export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
4
- export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
5
- export { default as DapDSBannerReact } from './dap-ds-banner/index.js';
6
6
  export { default as DapDSBadgeReact } from './dap-ds-badge/index.js';
7
- export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
7
+ export { default as DapDSBannerReact } from './dap-ds-banner/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';
@@ -127,10 +127,6 @@ export { default as EditorSeparatorReact } from './dap-ds-icon-separator/index.j
127
127
  export { default as HealthHeartFillReact } from './dap-ds-icon-heart-fill/index.js';
128
128
  export { default as HealthHeartLineReact } from './dap-ds-icon-heart-line/index.js';
129
129
  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 UserUserLineReact } from './dap-ds-icon-user-line/index.js';
133
- export { default as UserUserFillReact } from './dap-ds-icon-user-fill/index.js';
134
130
  export { default as SystemAddLineReact } from './dap-ds-icon-add-line/index.js';
135
131
  export { default as SystemAlertFillReact } from './dap-ds-icon-alert-fill/index.js';
136
132
  export { default as SystemAlertLineReact } from './dap-ds-icon-alert-line/index.js';
@@ -170,10 +166,14 @@ export { default as SystemShareLineReact } from './dap-ds-icon-share-line/index.
170
166
  export { default as SystemShieldCheckFillReact } from './dap-ds-icon-shield-check-fill/index.js';
171
167
  export { default as SystemShieldCheckLineReact } from './dap-ds-icon-shield-check-line/index.js';
172
168
  export { default as SystemStarFillReact } from './dap-ds-icon-star-fill/index.js';
173
- export { default as SystemSubtractLine2React } from './dap-ds-icon-subtract-line2/index.js';
174
169
  export { default as SystemSubtractLineReact } from './dap-ds-icon-subtract-line/index.js';
170
+ export { default as SystemSubtractLine2React } from './dap-ds-icon-subtract-line2/index.js';
175
171
  export { default as SystemTimeFillReact } from './dap-ds-icon-time-fill/index.js';
176
172
  export { default as SystemTimeLineReact } from './dap-ds-icon-time-line/index.js';
177
173
  export { default as SystemUpload2FillReact } from './dap-ds-icon-upload-2-fill/index.js';
178
174
  export { default as SystemUpload2LineReact } from './dap-ds-icon-upload-2-line/index.js';
179
175
  export { default as SystemUploadLineReact } from './dap-ds-icon-upload-line/index.js';
176
+ export { default as UserAccountCircleFillReact } from './dap-ds-icon-account-circle-fill/index.js';
177
+ export { default as UserAccountCircleLineReact } from './dap-ds-icon-account-circle-line/index.js';
178
+ export { default as UserUserFillReact } from './dap-ds-icon-user-fill/index.js';
179
+ 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 DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
8
+ export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
7
9
  export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
8
10
  export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
9
- export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
10
- export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
11
11
  export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, 'children' | 'style'>>
12
- export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
12
+ export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => 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 }
@@ -132,10 +132,6 @@ export type EditorSeparatorType = HtmlType & Partial<Omit<DDS.EditorSeparator, '
132
132
  export type HealthHeartFillType = HtmlType & Partial<Omit<DDS.HealthHeartFill, 'children' | 'style'>>
133
133
  export type HealthHeartLineType = HtmlType & Partial<Omit<DDS.HealthHeartLine, 'children' | 'style'>>
134
134
  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 UserUserLineType = HtmlType & Partial<Omit<DDS.UserUserLine, 'children' | 'style'>>
138
- export type UserUserFillType = HtmlType & Partial<Omit<DDS.UserUserFill, 'children' | 'style'>>
139
135
  export type SystemAddLineType = HtmlType & Partial<Omit<DDS.SystemAddLine, 'children' | 'style'>>
140
136
  export type SystemAlertFillType = HtmlType & Partial<Omit<DDS.SystemAlertFill, 'children' | 'style'>>
141
137
  export type SystemAlertLineType = HtmlType & Partial<Omit<DDS.SystemAlertLine, 'children' | 'style'>>
@@ -175,10 +171,14 @@ export type SystemShareLineType = HtmlType & Partial<Omit<DDS.SystemShareLine, '
175
171
  export type SystemShieldCheckFillType = HtmlType & Partial<Omit<DDS.SystemShieldCheckFill, 'children' | 'style'>>
176
172
  export type SystemShieldCheckLineType = HtmlType & Partial<Omit<DDS.SystemShieldCheckLine, 'children' | 'style'>>
177
173
  export type SystemStarFillType = HtmlType & Partial<Omit<DDS.SystemStarFill, 'children' | 'style'>>
178
- export type SystemSubtractLine2Type = HtmlType & Partial<Omit<DDS.SystemSubtractLine2, 'children' | 'style'>>
179
174
  export type SystemSubtractLineType = HtmlType & Partial<Omit<DDS.SystemSubtractLine, 'children' | 'style'>>
175
+ export type SystemSubtractLine2Type = HtmlType & Partial<Omit<DDS.SystemSubtractLine2, 'children' | 'style'>>
180
176
  export type SystemTimeFillType = HtmlType & Partial<Omit<DDS.SystemTimeFill, 'children' | 'style'>>
181
177
  export type SystemTimeLineType = HtmlType & Partial<Omit<DDS.SystemTimeLine, 'children' | 'style'>>
182
178
  export type SystemUpload2FillType = HtmlType & Partial<Omit<DDS.SystemUpload2Fill, 'children' | 'style'>>
183
179
  export type SystemUpload2LineType = HtmlType & Partial<Omit<DDS.SystemUpload2Line, 'children' | 'style'>>
184
- export type SystemUploadLineType = HtmlType & Partial<Omit<DDS.SystemUploadLine, 'children' | 'style'>>
180
+ export type SystemUploadLineType = HtmlType & Partial<Omit<DDS.SystemUploadLine, 'children' | 'style'>>
181
+ export type UserAccountCircleFillType = HtmlType & Partial<Omit<DDS.UserAccountCircleFill, 'children' | 'style'>>
182
+ export type UserAccountCircleLineType = HtmlType & Partial<Omit<DDS.UserAccountCircleLine, 'children' | 'style'>>
183
+ export type UserUserFillType = HtmlType & Partial<Omit<DDS.UserUserFill, 'children' | 'style'>>
184
+ export type UserUserLineType = HtmlType & Partial<Omit<DDS.UserUserLine, 'children' | 'style'>>