dap-design-system 0.58.1 → 0.58.3

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,23 +1,23 @@
1
+ export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
1
2
  export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
2
- export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
3
3
  export { default as DapDSAccordionReact } from './dap-ds-accordion/index.js';
4
- export { default as DapDSBadgeReact } from './dap-ds-badge/index.js';
4
+ export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
5
5
  export { default as DapDSBreadcrumbReact } from './dap-ds-breadcrumb/index.js';
6
6
  export { default as DapDSBannerReact } from './dap-ds-banner/index.js';
7
- export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
8
7
  export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/index.js';
8
+ export { default as DapDSBadgeReact } from './dap-ds-badge/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';
12
12
  export { default as DapDSCalendarReact } from './dap-ds-calendar/index.js';
13
13
  export { default as DapDSCalloutReact } from './dap-ds-callout/index.js';
14
+ export { default as DapDSCheckboxReact } from './dap-ds-checkbox/index.js';
14
15
  export { default as DapDSCardActionsReact } from './dap-ds-card-actions/index.js';
15
16
  export { default as DapDSCardContentReact } from './dap-ds-card-content/index.js';
16
17
  export { default as DapDSCardImageReact } from './dap-ds-card-image/index.js';
17
18
  export { default as DapDSCardSubtitleReact } from './dap-ds-card-subtitle/index.js';
18
19
  export { default as DapDSCardTitleReact } from './dap-ds-card-title/index.js';
19
20
  export { default as DapDSCardReact } from './dap-ds-card/index.js';
20
- export { default as DapDSCheckboxReact } from './dap-ds-checkbox/index.js';
21
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';
@@ -111,8 +111,8 @@ export { default as ArrowsArrowUpLineReact } from './dap-ds-icon-arrow-up-line/i
111
111
  export { default as ArrowsArrowUpSFillReact } from './dap-ds-icon-arrow-up-s-fill/index.js';
112
112
  export { default as ArrowsArrowUpSLineReact } from './dap-ds-icon-arrow-up-s-line/index.js';
113
113
  export { default as ArrowsExpandUpDownFillReact } from './dap-ds-icon-expand-up-down-fill/index.js';
114
- export { default as BusinessCalendarLineReact } from './dap-ds-icon-calendar-line/index.js';
115
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';
116
116
  export { default as DesignEditLineReact } from './dap-ds-icon-edit-line/index.js';
117
117
  export { default as DesignToolsLineReact } from './dap-ds-icon-tools-line/index.js';
118
118
  export { default as DeviceComputerLineReact } from './dap-ds-icon-computer-line/index.js';
@@ -3,26 +3,26 @@ import type { DdsAllUploadsCompleteEvent, DdsAnchorChangeEvent, DdsBeforeCloseEv
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 DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
6
7
  export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
7
- export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
8
8
  export type DapDSAccordionType = HtmlType & Partial<Omit<DDS.DapDSAccordion, 'children' | 'style'>> & { "ondds-opened"?: (e: DdsOpenedEvent) => void, "ondds-closed"?: (e: DdsClosedEvent) => void }
9
- export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, 'children' | 'style'>>
9
+ export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
10
10
  export type DapDSBreadcrumbType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumb, 'children' | 'style'>>
11
11
  export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
12
- export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, 'children' | 'style'>>
13
12
  export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
13
+ export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, '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'>>
17
17
  export type DapDSCalendarType = HtmlType & Partial<Omit<DDS.DapDSCalendar, 'children' | 'style'>> & { "ondds-change"?: (e: DdsChangeEvent) => void }
18
18
  export type DapDSCalloutType = HtmlType & Partial<Omit<DDS.DapDSCallout, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
19
+ 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 }
19
20
  export type DapDSCardActionsType = HtmlType & Partial<Omit<DDS.DapDSCardActions, 'children' | 'style'>>
20
21
  export type DapDSCardContentType = HtmlType & Partial<Omit<DDS.DapDSCardContent, 'children' | 'style'>>
21
22
  export type DapDSCardImageType = HtmlType & Partial<Omit<DDS.DapDSCardImage, 'children' | 'style'>>
22
23
  export type DapDSCardSubtitleType = HtmlType & Partial<Omit<DDS.DapDSCardSubtitle, 'children' | 'style'>>
23
24
  export type DapDSCardTitleType = HtmlType & Partial<Omit<DDS.DapDSCardTitle, 'children' | 'style'>>
24
25
  export type DapDSCardType = HtmlType & Partial<Omit<DDS.DapDSCard, 'children' | 'style'>>
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
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 }
@@ -116,8 +116,8 @@ export type ArrowsArrowUpLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowUpLin
116
116
  export type ArrowsArrowUpSFillType = HtmlType & Partial<Omit<DDS.ArrowsArrowUpSFill, 'children' | 'style'>>
117
117
  export type ArrowsArrowUpSLineType = HtmlType & Partial<Omit<DDS.ArrowsArrowUpSLine, 'children' | 'style'>>
118
118
  export type ArrowsExpandUpDownFillType = HtmlType & Partial<Omit<DDS.ArrowsExpandUpDownFill, 'children' | 'style'>>
119
- export type BusinessCalendarLineType = HtmlType & Partial<Omit<DDS.BusinessCalendarLine, 'children' | 'style'>>
120
119
  export type BuildingsHome6LineType = HtmlType & Partial<Omit<DDS.BuildingsHome6Line, 'children' | 'style'>>
120
+ export type BusinessCalendarLineType = HtmlType & Partial<Omit<DDS.BusinessCalendarLine, 'children' | 'style'>>
121
121
  export type DesignEditLineType = HtmlType & Partial<Omit<DDS.DesignEditLine, 'children' | 'style'>>
122
122
  export type DesignToolsLineType = HtmlType & Partial<Omit<DDS.DesignToolsLine, 'children' | 'style'>>
123
123
  export type DeviceComputerLineType = HtmlType & Partial<Omit<DDS.DeviceComputerLine, 'children' | 'style'>>
package/dist/react.js CHANGED
@@ -1,25 +1,23 @@
1
1
  import { createComponent as e } from "@lit/react";
2
2
  import * as a from "react";
3
- import { D as t, a as s, b as n, c as r, d as c, e as o, f as d, g as l, h as p, i, j as m, k as D, l as N, m as g, n as S, o as C, p as y, q as $, r as u, s as L, t as v, u as R, v as h, w, x as W, y as b, z as A, A as k, B as f, C as F, E as I, F as B, G as T, H as x, I as U, J as O, K as P, L as E, M as G, N as M, O as H, P as Z, Q as z, R as K, S as V, T as j, U as q, V as J, W as Q, X, Y, Z as _, _ as ee, $ as ae, a0 as te, a1 as se, a2 as ne, a3 as re, a4 as ce, a5 as oe, a6 as de, a7 as le, a8 as pe, a9 as ie, aa as me, ab as De, ac as Ne, ad as ge, ae as Se, af as Ce, ag as ye, ah as $e, ai as ue, aj as Le, ak as ve, al as Re, am as he, an as we, ao as We, ap as be, aq as Ae, ar as ke, as as fe, at as Fe, au as Ie, av as Be, aw as Te, ax as xe, ay as Ue, az as Oe, aA as Pe, aB as Ee, aC as Ge, aD as Me } from "./components-DIc6GiB8.js";
4
- import { ArrowsArrowDownLine as He, ArrowsArrowDownSFill as Ze, ArrowsArrowDownSLine as ze, ArrowsArrowLeftDownLine as Ke, ArrowsArrowLeftLLine as Ve, ArrowsArrowLeftLine as je, ArrowsArrowLeftSFill as qe, ArrowsArrowLeftSLine as Je, ArrowsArrowLeftUpLine as Qe, ArrowsArrowRightDownLine as Xe, ArrowsArrowRightLLine as Ye, ArrowsArrowRightLine as _e, ArrowsArrowRightSFill as ea, ArrowsArrowRightSLine as aa, ArrowsArrowRightUpLine as ta, ArrowsArrowUpLine as sa, ArrowsArrowUpSFill as na, ArrowsArrowUpSLine as ra, ArrowsExpandUpDownFill as ca, BusinessCalendarLine as oa, BuildingsHome6Line as da, DesignEditLine as la, DesignToolsLine as pa, DeviceComputerLine as ia, DocumentClipboardLine as ma, DocumentFileCopyLine as Da, DocumentFileImageLine as Na, DocumentFileMusicLine as ga, DocumentFileTextLine as Sa, DocumentFileVideoLine as Ca, DocumentFolderLine as ya, DocumentFolderOpenLine as $a, HealthHeartFill as ua, HealthHeartLine as La, OthersCookieLine as va, UserAccountCircleFill as Ra, UserAccountCircleLine as ha, UserUserFill as wa, UserUserLine as Wa, SystemAddLine as ba, SystemAlertFill as Aa, SystemAlertLine as ka, SystemCheckLine as fa, SystemCheckLine2 as Fa, SystemCheckboxBlankCircleFill as Ia, SystemCheckboxBlankCircleFillCheck as Ba, SystemCheckboxBlankCircleLine as Ta, SystemCheckboxCircleFill as xa, SystemCheckboxCircleLine as Ua, SystemCloseCircleFill as Oa, SystemCloseCircleLine as Pa, SystemCloseFill as Ea, SystemCloseLine as Ga, SystemDeleteBinFill as Ma, SystemDeleteBinLine as Ha, SystemDownloadLine as Za, SystemErrorWarningFill as za, SystemErrorWarningLine as Ka, SystemExternalLinkLine as Va, SystemEyeLine as ja, SystemEyeOffLine as qa, SystemForbidFill as Ja, SystemInformation2Fill as Qa, SystemInformationFill as Xa, SystemInformationLine as Ya, SystemLightbulbFill as _a, SystemLoadingSpinner as et, SystemLockFill as at, SystemLockLine as tt, SystemMenuLine as st, SystemMenuLineS as nt, SystemMore2Line as rt, SystemMoreLine as ct, SystemSearchLine as ot, SystemShareLine as dt, SystemShieldCheckFill as lt, SystemShieldCheckLine as pt, SystemStarFill as it, SystemSubtractLine as mt, SystemSubtractLine2 as Dt, SystemTimeFill as Nt, SystemTimeLine as gt, SystemUpload2Fill as St, SystemUpload2Line as Ct, SystemUploadLine as yt } from "./icons.js";
3
+ import { D as t, a as s, b as n, c as r, d as c, e as o, f as d, g as l, h as p, i, j as m, k as D, l as N, m as g, n as S, o as C, p as y, q as $, r as u, s as L, t as v, u as R, v as h, w, x as W, y as b, z as A, A as k, B as f, C as F, E as I, F as B, G as T, H as x, I as U, J as O, K as P, L as E, M as G, N as M, O as H, P as Z, Q as z, R as K, S as V, T as j, U as q, V as J, W as Q, X, Y, Z as _, _ as ee, $ as ae, a0 as te, a1 as se, a2 as ne, a3 as re, a4 as ce, a5 as oe, a6 as de, a7 as le, a8 as pe, a9 as ie, aa as me, ab as De, ac as Ne, ad as ge, ae as Se, af as Ce, ag as ye, ah as $e, ai as ue, aj as Le, ak as ve, al as Re, am as he, an as we, ao as We, ap as be, aq as Ae, ar as ke, as as fe, at as Fe, au as Ie, av as Be, aw as Te, ax as xe, ay as Ue, az as Oe, aA as Pe, aB as Ee, aC as Ge, aD as Me } from "./components-C1PeiTAk.js";
4
+ import { ArrowsArrowDownLine as He, ArrowsArrowDownSFill as Ze, ArrowsArrowDownSLine as ze, ArrowsArrowLeftDownLine as Ke, ArrowsArrowLeftLLine as Ve, ArrowsArrowLeftLine as je, ArrowsArrowLeftSFill as qe, ArrowsArrowLeftSLine as Je, ArrowsArrowLeftUpLine as Qe, ArrowsArrowRightDownLine as Xe, ArrowsArrowRightLLine as Ye, ArrowsArrowRightLine as _e, ArrowsArrowRightSFill as ea, ArrowsArrowRightSLine as aa, ArrowsArrowRightUpLine as ta, ArrowsArrowUpLine as sa, ArrowsArrowUpSFill as na, ArrowsArrowUpSLine as ra, ArrowsExpandUpDownFill as ca, BuildingsHome6Line as oa, BusinessCalendarLine as da, DesignEditLine as la, DesignToolsLine as pa, DeviceComputerLine as ia, DocumentClipboardLine as ma, DocumentFileCopyLine as Da, DocumentFileImageLine as Na, DocumentFileMusicLine as ga, DocumentFileTextLine as Sa, DocumentFileVideoLine as Ca, DocumentFolderLine as ya, DocumentFolderOpenLine as $a, HealthHeartFill as ua, HealthHeartLine as La, OthersCookieLine as va, UserAccountCircleFill as Ra, UserAccountCircleLine as ha, UserUserFill as wa, UserUserLine as Wa, SystemAddLine as ba, SystemAlertFill as Aa, SystemAlertLine as ka, SystemCheckLine as fa, SystemCheckLine2 as Fa, SystemCheckboxBlankCircleFill as Ia, SystemCheckboxBlankCircleFillCheck as Ba, SystemCheckboxBlankCircleLine as Ta, SystemCheckboxCircleFill as xa, SystemCheckboxCircleLine as Ua, SystemCloseCircleFill as Oa, SystemCloseCircleLine as Pa, SystemCloseFill as Ea, SystemCloseLine as Ga, SystemDeleteBinFill as Ma, SystemDeleteBinLine as Ha, SystemDownloadLine as Za, SystemErrorWarningFill as za, SystemErrorWarningLine as Ka, SystemExternalLinkLine as Va, SystemEyeLine as ja, SystemEyeOffLine as qa, SystemForbidFill as Ja, SystemInformation2Fill as Qa, SystemInformationFill as Xa, SystemInformationLine as Ya, SystemLightbulbFill as _a, SystemLoadingSpinner as et, SystemLockFill as at, SystemLockLine as tt, SystemMenuLine as st, SystemMenuLineS as nt, SystemMore2Line as rt, SystemMoreLine as ct, SystemSearchLine as ot, SystemShareLine as dt, SystemShieldCheckFill as lt, SystemShieldCheckLine as pt, SystemStarFill as it, SystemSubtractLine as mt, SystemSubtractLine2 as Dt, SystemTimeFill as Nt, SystemTimeLine as gt, SystemUpload2Fill as St, SystemUpload2Line as Ct, SystemUploadLine as yt } from "./icons.js";
5
5
  import { EditorSeparator as $t, SystemZoomInLine as ut, SystemZoomOutLine as Lt } from "./dds.js";
6
- const vt = "dap-ds-avatar", jr = e({
6
+ const vt = "dap-ds-accordion-group", jr = e({
7
7
  tagName: vt,
8
8
  elementClass: t,
9
9
  react: a,
10
- events: {
11
- onDdsLoad: "dds-load",
12
- onDdsError: "dds-error"
13
- },
14
- displayName: "DapDSAvatar"
15
- }), Rt = "dap-ds-avatar-group", qr = e({
10
+ events: {},
11
+ displayName: "DapDSAccordionGroup"
12
+ }), Rt = "dap-ds-avatar", qr = e({
16
13
  tagName: Rt,
17
14
  elementClass: s,
18
15
  react: a,
19
16
  events: {
20
- onDdsOverflowClick: "dds-overflow-click"
17
+ onDdsLoad: "dds-load",
18
+ onDdsError: "dds-error"
21
19
  },
22
- displayName: "DapDSAvatarGroup"
20
+ displayName: "DapDSAvatar"
23
21
  }), ht = "dap-ds-accordion", Jr = e({
24
22
  tagName: ht,
25
23
  elementClass: n,
@@ -29,12 +27,14 @@ const vt = "dap-ds-avatar", jr = e({
29
27
  onDdsClosed: "dds-closed"
30
28
  },
31
29
  displayName: "DapDSAccordion"
32
- }), wt = "dap-ds-badge", Qr = e({
30
+ }), wt = "dap-ds-avatar-group", Qr = e({
33
31
  tagName: wt,
34
32
  elementClass: r,
35
33
  react: a,
36
- events: {},
37
- displayName: "DapDSBadge"
34
+ events: {
35
+ onDdsOverflowClick: "dds-overflow-click"
36
+ },
37
+ displayName: "DapDSAvatarGroup"
38
38
  }), Wt = "dap-ds-breadcrumb", Xr = e({
39
39
  tagName: Wt,
40
40
  elementClass: c,
@@ -49,18 +49,18 @@ const vt = "dap-ds-avatar", jr = e({
49
49
  onDdsClose: "dds-close"
50
50
  },
51
51
  displayName: "DapDSBanner"
52
- }), At = "dap-ds-accordion-group", _r = e({
52
+ }), At = "dap-ds-anchor-heading", _r = e({
53
53
  tagName: At,
54
54
  elementClass: d,
55
55
  react: a,
56
56
  events: {},
57
- displayName: "DapDSAccordionGroup"
58
- }), kt = "dap-ds-anchor-heading", ec = e({
57
+ displayName: "DapDSAnchorHeading"
58
+ }), kt = "dap-ds-badge", ec = e({
59
59
  tagName: kt,
60
60
  elementClass: l,
61
61
  react: a,
62
62
  events: {},
63
- displayName: "DapDSAnchorHeading"
63
+ displayName: "DapDSBadge"
64
64
  }), ft = "dap-ds-breadcrumb-item", ac = e({
65
65
  tagName: ft,
66
66
  elementClass: p,
@@ -97,53 +97,53 @@ const vt = "dap-ds-avatar", jr = e({
97
97
  onDdsClose: "dds-close"
98
98
  },
99
99
  displayName: "DapDSCallout"
100
- }), xt = "dap-ds-card-actions", cc = e({
100
+ }), xt = "dap-ds-checkbox", cc = e({
101
101
  tagName: xt,
102
102
  elementClass: g,
103
103
  react: a,
104
- events: {},
105
- displayName: "DapDSCardActions"
106
- }), Ut = "dap-ds-card-content", oc = e({
104
+ events: {
105
+ onDdsChange: "dds-change",
106
+ onDdsBlur: "dds-blur",
107
+ onDdsFocus: "dds-focus",
108
+ onDdsInput: "dds-input"
109
+ },
110
+ displayName: "DapDSCheckbox"
111
+ }), Ut = "dap-ds-card-actions", oc = e({
107
112
  tagName: Ut,
108
113
  elementClass: S,
109
114
  react: a,
110
115
  events: {},
111
- displayName: "DapDSCardContent"
112
- }), Ot = "dap-ds-card-image", dc = e({
116
+ displayName: "DapDSCardActions"
117
+ }), Ot = "dap-ds-card-content", dc = e({
113
118
  tagName: Ot,
114
119
  elementClass: C,
115
120
  react: a,
116
121
  events: {},
117
- displayName: "DapDSCardImage"
118
- }), Pt = "dap-ds-card-subtitle", lc = e({
122
+ displayName: "DapDSCardContent"
123
+ }), Pt = "dap-ds-card-image", lc = e({
119
124
  tagName: Pt,
120
125
  elementClass: y,
121
126
  react: a,
122
127
  events: {},
123
- displayName: "DapDSCardSubtitle"
124
- }), Et = "dap-ds-card-title", pc = e({
128
+ displayName: "DapDSCardImage"
129
+ }), Et = "dap-ds-card-subtitle", pc = e({
125
130
  tagName: Et,
126
131
  elementClass: $,
127
132
  react: a,
128
133
  events: {},
129
- displayName: "DapDSCardTitle"
130
- }), Gt = "dap-ds-card", ic = e({
134
+ displayName: "DapDSCardSubtitle"
135
+ }), Gt = "dap-ds-card-title", ic = e({
131
136
  tagName: Gt,
132
137
  elementClass: u,
133
138
  react: a,
134
139
  events: {},
135
- displayName: "DapDSCard"
136
- }), Mt = "dap-ds-checkbox", mc = e({
140
+ displayName: "DapDSCardTitle"
141
+ }), Mt = "dap-ds-card", mc = e({
137
142
  tagName: Mt,
138
143
  elementClass: L,
139
144
  react: a,
140
- events: {
141
- onDdsChange: "dds-change",
142
- onDdsBlur: "dds-blur",
143
- onDdsFocus: "dds-focus",
144
- onDdsInput: "dds-input"
145
- },
146
- displayName: "DapDSCheckbox"
145
+ events: {},
146
+ displayName: "DapDSCard"
147
147
  }), Ht = "dap-ds-chip", Dc = e({
148
148
  tagName: Ht,
149
149
  elementClass: v,
@@ -880,18 +880,18 @@ const vt = "dap-ds-avatar", jr = e({
880
880
  react: a,
881
881
  events: {},
882
882
  displayName: "ArrowsExpandUpDownFill"
883
- }), An = "dap-ds-icon-calendar-line", _o = e({
883
+ }), An = "dap-ds-icon-home-6-line", _o = e({
884
884
  tagName: An,
885
885
  elementClass: oa,
886
886
  react: a,
887
887
  events: {},
888
- displayName: "BusinessCalendarLine"
889
- }), kn = "dap-ds-icon-home-6-line", ed = e({
888
+ displayName: "BuildingsHome6Line"
889
+ }), kn = "dap-ds-icon-calendar-line", ed = e({
890
890
  tagName: kn,
891
891
  elementClass: da,
892
892
  react: a,
893
893
  events: {},
894
- displayName: "BuildingsHome6Line"
894
+ displayName: "BusinessCalendarLine"
895
895
  }), fn = "dap-ds-icon-edit-line", ad = e({
896
896
  tagName: fn,
897
897
  elementClass: la,
@@ -1315,14 +1315,14 @@ export {
1315
1315
  Qo as ArrowsArrowUpSFillReact,
1316
1316
  Xo as ArrowsArrowUpSLineReact,
1317
1317
  Yo as ArrowsExpandUpDownFillReact,
1318
- ed as BuildingsHome6LineReact,
1319
- _o as BusinessCalendarLineReact,
1320
- _r as DapDSAccordionGroupReact,
1318
+ _o as BuildingsHome6LineReact,
1319
+ ed as BusinessCalendarLineReact,
1320
+ jr as DapDSAccordionGroupReact,
1321
1321
  Jr as DapDSAccordionReact,
1322
- ec as DapDSAnchorHeadingReact,
1323
- qr as DapDSAvatarGroupReact,
1324
- jr as DapDSAvatarReact,
1325
- Qr as DapDSBadgeReact,
1322
+ _r as DapDSAnchorHeadingReact,
1323
+ Qr as DapDSAvatarGroupReact,
1324
+ qr as DapDSAvatarReact,
1325
+ ec as DapDSBadgeReact,
1326
1326
  Yr as DapDSBannerReact,
1327
1327
  ac as DapDSBreadcrumbItemReact,
1328
1328
  Xr as DapDSBreadcrumbReact,
@@ -1330,13 +1330,13 @@ export {
1330
1330
  sc as DapDSCalendarCellReact,
1331
1331
  nc as DapDSCalendarReact,
1332
1332
  rc as DapDSCalloutReact,
1333
- cc as DapDSCardActionsReact,
1334
- oc as DapDSCardContentReact,
1335
- dc as DapDSCardImageReact,
1336
- ic as DapDSCardReact,
1337
- lc as DapDSCardSubtitleReact,
1338
- pc as DapDSCardTitleReact,
1339
- mc as DapDSCheckboxReact,
1333
+ oc as DapDSCardActionsReact,
1334
+ dc as DapDSCardContentReact,
1335
+ lc as DapDSCardImageReact,
1336
+ mc as DapDSCardReact,
1337
+ pc as DapDSCardSubtitleReact,
1338
+ ic as DapDSCardTitleReact,
1339
+ cc as DapDSCheckboxReact,
1340
1340
  Dc as DapDSChipReact,
1341
1341
  gc as DapDSCodePuncherReact,
1342
1342
  Nc as DapDSCodePuncherSlotReact,