dap-design-system 0.58.3 → 0.59.1

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.
@@ -48,6 +48,9 @@ export type { DdsRowClickEvent } from '../../events/events';
48
48
  * @cssproperty --dds-datatable-last-column-padding - Padding of the last column. (default: var(--dds-spacing-500))
49
49
  * @cssproperty --dds-datatable-first-column-padding - Padding of the first column. (default: var(--dds-spacing-500))
50
50
  * @cssproperty --dds-datatable-border-width - Width of table borders. (default: var(--dds-border-width-base))
51
+ * @cssproperty --dds-datatable-outer-border-width - Width of the outer container border only. (default: var(--dds-datatable-border-width))
52
+ * @cssproperty --dds-datatable-header-border-width - Width of the header row bottom border only. (default: var(--dds-datatable-border-width))
53
+ * @cssproperty --dds-datatable-row-border-width - Width of the row (body cell) bottom borders only. (default: var(--dds-datatable-border-width))
51
54
  * @cssproperty --dds-datatable-stripe-color - Background color for striped rows. (default: var(--dds-background-neutral-base))
52
55
  * @cssproperty --dds-datatable-border-radius - Border radius of the table. (default: var(--dds-radius-base))
53
56
  * @cssproperty --dds-datatable-shadow - Box shadow of the table. (default: none)
@@ -26,6 +26,12 @@ export type { DdsPaginationChangeEvent } from '../../events/events';
26
26
  * @csspart pager-button-last-content - The content of the last page button.
27
27
  * @csspart page-size-select-base - The base of the page size select.
28
28
  * @csspart page-size-select-trigger - The trigger of the page size select.
29
+ * @csspart page-numbers - The container of the numbered page buttons (shown when showPageNumbers is 'true').
30
+ * @csspart page-number - Each numbered page button.
31
+ * @csspart page-number-active - The active (current) numbered page button.
32
+ * @csspart page-number-base - The base of each numbered page button.
33
+ * @csspart page-number-content - The content of each numbered page button.
34
+ * @csspart page-info - The page info / total count text.
29
35
  *
30
36
  * @cssproperty --dds-pager-spacing-vertical - The vertical spacing of the pager (default: var(--dds-spacing-400))
31
37
  * @cssproperty --dds-pager-spacing-horizontal - The horizontal spacing of the pager (default: var(--dds-spacing-200))
@@ -1,23 +1,23 @@
1
- export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/index.js';
2
1
  export { default as DapDSAvatarReact } from './dap-ds-avatar/index.js';
3
2
  export { default as DapDSAccordionReact } from './dap-ds-accordion/index.js';
4
3
  export { default as DapDSAvatarGroupReact } from './dap-ds-avatar-group/index.js';
5
- export { default as DapDSBreadcrumbReact } from './dap-ds-breadcrumb/index.js';
6
4
  export { default as DapDSBannerReact } from './dap-ds-banner/index.js';
7
- export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/index.js';
8
5
  export { default as DapDSBadgeReact } from './dap-ds-badge/index.js';
6
+ export { default as DapDSBreadcrumbReact } from './dap-ds-breadcrumb/index.js';
7
+ export { default as DapDSAnchorHeadingReact } from './dap-ds-anchor-heading/index.js';
8
+ export { default as DapDSAccordionGroupReact } from './dap-ds-accordion-group/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';
15
14
  export { default as DapDSCardActionsReact } from './dap-ds-card-actions/index.js';
16
15
  export { default as DapDSCardContentReact } from './dap-ds-card-content/index.js';
17
16
  export { default as DapDSCardImageReact } from './dap-ds-card-image/index.js';
18
17
  export { default as DapDSCardSubtitleReact } from './dap-ds-card-subtitle/index.js';
19
18
  export { default as DapDSCardTitleReact } from './dap-ds-card-title/index.js';
20
19
  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';
@@ -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'>>
7
6
  export type DapDSAvatarType = HtmlType & Partial<Omit<DDS.DapDSAvatar, 'children' | 'style'>> & { "ondds-load"?: (e: DdsLoadEvent) => void, "ondds-error"?: (e: DdsErrorEvent) => void }
8
7
  export type DapDSAccordionType = HtmlType & Partial<Omit<DDS.DapDSAccordion, 'children' | 'style'>> & { "ondds-opened"?: (e: DdsOpenedEvent) => void, "ondds-closed"?: (e: DdsClosedEvent) => void }
9
8
  export type DapDSAvatarGroupType = HtmlType & Partial<Omit<DDS.DapDSAvatarGroup, 'children' | 'style'>> & { "ondds-overflow-click"?: (e: DdsOverflowClickEvent) => void }
10
- export type DapDSBreadcrumbType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumb, 'children' | 'style'>>
11
9
  export type DapDSBannerType = HtmlType & Partial<Omit<DDS.DapDSBanner, 'children' | 'style'>> & { "ondds-close"?: (e: DdsCloseEvent) => void }
12
- export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
13
10
  export type DapDSBadgeType = HtmlType & Partial<Omit<DDS.DapDSBadge, 'children' | 'style'>>
11
+ export type DapDSBreadcrumbType = HtmlType & Partial<Omit<DDS.DapDSBreadcrumb, 'children' | 'style'>>
12
+ export type DapDSAnchorHeadingType = HtmlType & Partial<Omit<DDS.DapDSAnchorHeading, 'children' | 'style'>>
13
+ export type DapDSAccordionGroupType = HtmlType & Partial<Omit<DDS.DapDSAccordionGroup, '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 }
20
19
  export type DapDSCardActionsType = HtmlType & Partial<Omit<DDS.DapDSCardActions, 'children' | 'style'>>
21
20
  export type DapDSCardContentType = HtmlType & Partial<Omit<DDS.DapDSCardContent, 'children' | 'style'>>
22
21
  export type DapDSCardImageType = HtmlType & Partial<Omit<DDS.DapDSCardImage, 'children' | 'style'>>
23
22
  export type DapDSCardSubtitleType = HtmlType & Partial<Omit<DDS.DapDSCardSubtitle, 'children' | 'style'>>
24
23
  export type DapDSCardTitleType = HtmlType & Partial<Omit<DDS.DapDSCardTitle, 'children' | 'style'>>
25
24
  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 }
package/dist/react.js CHANGED
@@ -1,66 +1,66 @@
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-C1PeiTAk.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-t--58ON2.js";
4
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-accordion-group", jr = e({
6
+ const vt = "dap-ds-avatar", jr = e({
7
7
  tagName: vt,
8
8
  elementClass: t,
9
9
  react: a,
10
- events: {},
11
- displayName: "DapDSAccordionGroup"
12
- }), Rt = "dap-ds-avatar", qr = e({
13
- tagName: Rt,
14
- elementClass: s,
15
- react: a,
16
10
  events: {
17
11
  onDdsLoad: "dds-load",
18
12
  onDdsError: "dds-error"
19
13
  },
20
14
  displayName: "DapDSAvatar"
21
- }), ht = "dap-ds-accordion", Jr = e({
22
- tagName: ht,
23
- elementClass: n,
15
+ }), Rt = "dap-ds-accordion", qr = e({
16
+ tagName: Rt,
17
+ elementClass: s,
24
18
  react: a,
25
19
  events: {
26
20
  onDdsOpened: "dds-opened",
27
21
  onDdsClosed: "dds-closed"
28
22
  },
29
23
  displayName: "DapDSAccordion"
30
- }), wt = "dap-ds-avatar-group", Qr = e({
31
- tagName: wt,
32
- elementClass: r,
24
+ }), ht = "dap-ds-avatar-group", Jr = e({
25
+ tagName: ht,
26
+ elementClass: n,
33
27
  react: a,
34
28
  events: {
35
29
  onDdsOverflowClick: "dds-overflow-click"
36
30
  },
37
31
  displayName: "DapDSAvatarGroup"
38
- }), Wt = "dap-ds-breadcrumb", Xr = e({
32
+ }), wt = "dap-ds-banner", Qr = e({
33
+ tagName: wt,
34
+ elementClass: r,
35
+ react: a,
36
+ events: {
37
+ onDdsClose: "dds-close"
38
+ },
39
+ displayName: "DapDSBanner"
40
+ }), Wt = "dap-ds-badge", Xr = e({
39
41
  tagName: Wt,
40
42
  elementClass: c,
41
43
  react: a,
42
44
  events: {},
43
- displayName: "DapDSBreadcrumb"
44
- }), bt = "dap-ds-banner", Yr = e({
45
+ displayName: "DapDSBadge"
46
+ }), bt = "dap-ds-breadcrumb", Yr = e({
45
47
  tagName: bt,
46
48
  elementClass: o,
47
49
  react: a,
48
- events: {
49
- onDdsClose: "dds-close"
50
- },
51
- displayName: "DapDSBanner"
50
+ events: {},
51
+ displayName: "DapDSBreadcrumb"
52
52
  }), At = "dap-ds-anchor-heading", _r = e({
53
53
  tagName: At,
54
54
  elementClass: d,
55
55
  react: a,
56
56
  events: {},
57
57
  displayName: "DapDSAnchorHeading"
58
- }), kt = "dap-ds-badge", ec = e({
58
+ }), kt = "dap-ds-accordion-group", ec = e({
59
59
  tagName: kt,
60
60
  elementClass: l,
61
61
  react: a,
62
62
  events: {},
63
- displayName: "DapDSBadge"
63
+ displayName: "DapDSAccordionGroup"
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-accordion-group", jr = e({
97
97
  onDdsClose: "dds-close"
98
98
  },
99
99
  displayName: "DapDSCallout"
100
- }), xt = "dap-ds-checkbox", cc = e({
100
+ }), xt = "dap-ds-card-actions", cc = e({
101
101
  tagName: xt,
102
102
  elementClass: g,
103
103
  react: a,
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({
104
+ events: {},
105
+ displayName: "DapDSCardActions"
106
+ }), Ut = "dap-ds-card-content", oc = e({
112
107
  tagName: Ut,
113
108
  elementClass: S,
114
109
  react: a,
115
110
  events: {},
116
- displayName: "DapDSCardActions"
117
- }), Ot = "dap-ds-card-content", dc = e({
111
+ displayName: "DapDSCardContent"
112
+ }), Ot = "dap-ds-card-image", dc = e({
118
113
  tagName: Ot,
119
114
  elementClass: C,
120
115
  react: a,
121
116
  events: {},
122
- displayName: "DapDSCardContent"
123
- }), Pt = "dap-ds-card-image", lc = e({
117
+ displayName: "DapDSCardImage"
118
+ }), Pt = "dap-ds-card-subtitle", lc = e({
124
119
  tagName: Pt,
125
120
  elementClass: y,
126
121
  react: a,
127
122
  events: {},
128
- displayName: "DapDSCardImage"
129
- }), Et = "dap-ds-card-subtitle", pc = e({
123
+ displayName: "DapDSCardSubtitle"
124
+ }), Et = "dap-ds-card-title", pc = e({
130
125
  tagName: Et,
131
126
  elementClass: $,
132
127
  react: a,
133
128
  events: {},
134
- displayName: "DapDSCardSubtitle"
135
- }), Gt = "dap-ds-card-title", ic = e({
129
+ displayName: "DapDSCardTitle"
130
+ }), Gt = "dap-ds-card", ic = e({
136
131
  tagName: Gt,
137
132
  elementClass: u,
138
133
  react: a,
139
134
  events: {},
140
- displayName: "DapDSCardTitle"
141
- }), Mt = "dap-ds-card", mc = e({
135
+ displayName: "DapDSCard"
136
+ }), Mt = "dap-ds-checkbox", mc = e({
142
137
  tagName: Mt,
143
138
  elementClass: L,
144
139
  react: a,
145
- events: {},
146
- displayName: "DapDSCard"
140
+ events: {
141
+ onDdsChange: "dds-change",
142
+ onDdsBlur: "dds-blur",
143
+ onDdsFocus: "dds-focus",
144
+ onDdsInput: "dds-input"
145
+ },
146
+ displayName: "DapDSCheckbox"
147
147
  }), Ht = "dap-ds-chip", Dc = e({
148
148
  tagName: Ht,
149
149
  elementClass: v,
@@ -1317,26 +1317,26 @@ export {
1317
1317
  Yo as ArrowsExpandUpDownFillReact,
1318
1318
  _o as BuildingsHome6LineReact,
1319
1319
  ed as BusinessCalendarLineReact,
1320
- jr as DapDSAccordionGroupReact,
1321
- Jr as DapDSAccordionReact,
1320
+ ec as DapDSAccordionGroupReact,
1321
+ qr as DapDSAccordionReact,
1322
1322
  _r as DapDSAnchorHeadingReact,
1323
- Qr as DapDSAvatarGroupReact,
1324
- qr as DapDSAvatarReact,
1325
- ec as DapDSBadgeReact,
1326
- Yr as DapDSBannerReact,
1323
+ Jr as DapDSAvatarGroupReact,
1324
+ jr as DapDSAvatarReact,
1325
+ Xr as DapDSBadgeReact,
1326
+ Qr as DapDSBannerReact,
1327
1327
  ac as DapDSBreadcrumbItemReact,
1328
- Xr as DapDSBreadcrumbReact,
1328
+ Yr as DapDSBreadcrumbReact,
1329
1329
  tc as DapDSButtonReact,
1330
1330
  sc as DapDSCalendarCellReact,
1331
1331
  nc as DapDSCalendarReact,
1332
1332
  rc as DapDSCalloutReact,
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,
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,
1340
1340
  Dc as DapDSChipReact,
1341
1341
  gc as DapDSCodePuncherReact,
1342
1342
  Nc as DapDSCodePuncherSlotReact,