@db-ux/wc-core-components 4.4.3 → 4.5.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.
- package/CHANGELOG.md +24 -0
- package/agent/.gitkeep +0 -0
- package/dist/cjs/db-accordion-item.cjs.entry.js +5 -4
- package/dist/cjs/db-accordion.cjs.entry.js +6 -6
- package/dist/cjs/db-badge.cjs.entry.js +5 -5
- package/dist/cjs/db-brand.cjs.entry.js +5 -5
- package/dist/cjs/db-button.cjs.entry.js +5 -5
- package/dist/cjs/db-card.cjs.entry.js +5 -4
- package/dist/cjs/db-checkbox.cjs.entry.js +53 -34
- package/dist/cjs/db-custom-button.cjs.entry.js +57 -0
- package/dist/cjs/db-custom-select-dropdown_5.cjs.entry.js +59 -37
- package/dist/cjs/db-custom-select-form-field.cjs.entry.js +5 -4
- package/dist/cjs/db-custom-select.cjs.entry.js +132 -109
- package/dist/cjs/db-divider.cjs.entry.js +5 -4
- package/dist/cjs/db-drawer.cjs.entry.js +6 -6
- package/dist/cjs/db-header.cjs.entry.js +7 -7
- package/dist/cjs/db-icon.cjs.entry.js +5 -4
- package/dist/cjs/db-infotext.cjs.entry.js +5 -5
- package/dist/cjs/db-link.cjs.entry.js +5 -5
- package/dist/cjs/db-navigation-item.cjs.entry.js +7 -7
- package/dist/cjs/db-navigation.cjs.entry.js +5 -4
- package/dist/cjs/db-notification.cjs.entry.js +6 -6
- package/dist/cjs/db-page.cjs.entry.js +5 -4
- package/dist/cjs/db-popover.cjs.entry.js +7 -7
- package/dist/cjs/db-radio.cjs.entry.js +33 -14
- package/dist/cjs/db-section.cjs.entry.js +5 -4
- package/dist/cjs/db-select.cjs.entry.js +48 -29
- package/dist/cjs/db-stack.cjs.entry.js +5 -4
- package/dist/cjs/db-switch.cjs.entry.js +58 -22
- package/dist/cjs/db-tab-item_3.cjs.entry.js +11 -9
- package/dist/cjs/db-tabs.cjs.entry.js +6 -6
- package/dist/cjs/db-textarea.cjs.entry.js +46 -27
- package/dist/cjs/db-tooltip.cjs.entry.js +17 -9
- package/dist/cjs/db-ux.cjs.js +3 -3
- package/dist/cjs/{document-click-listener-Bb3Tinb8.js → document-click-listener-B2-xKJv3.js} +1 -1
- package/dist/cjs/{document-scroll-listener-unypEU42.js → document-scroll-listener-ChQ7XZRk.js} +1 -1
- package/dist/cjs/{floating-components-pYaTeNhp.js → floating-components-DlstoCKH.js} +4 -0
- package/dist/cjs/{form-components-LsqVohyb.js → form-components-_ncB_U2D.js} +1 -1
- package/dist/cjs/{index-CsHqnQII.js → index-2_9ESkQu.js} +6 -7
- package/dist/cjs/{index-Bh5ovRL2.js → index-D_vrmAD6.js} +23 -14
- package/dist/cjs/index.cjs.js +5 -5
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/{navigation-BztJmEHf.js → navigation-Bah882nU.js} +1 -1
- package/dist/collection/collection-manifest.json +3 -1
- package/dist/collection/components/accordion/accordion.js +28 -4
- package/dist/collection/components/accordion-item/accordion-item.js +27 -2
- package/dist/collection/components/badge/badge.js +54 -4
- package/dist/collection/components/brand/brand.js +27 -3
- package/dist/collection/components/button/button.js +53 -3
- package/dist/collection/components/card/card.js +27 -2
- package/dist/collection/components/checkbox/checkbox.js +81 -38
- package/dist/collection/components/custom-button/custom-button.js +394 -0
- package/dist/collection/components/custom-button/index.js +2 -0
- package/dist/collection/components/custom-button/model.js +1 -0
- package/dist/collection/components/custom-select/custom-select.js +156 -109
- package/dist/collection/components/custom-select-dropdown/custom-select-dropdown.js +27 -2
- package/dist/collection/components/custom-select-form-field/custom-select-form-field.js +27 -2
- package/dist/collection/components/custom-select-list/custom-select-list.js +27 -2
- package/dist/collection/components/custom-select-list-item/custom-select-list-item.js +27 -2
- package/dist/collection/components/divider/divider.js +27 -2
- package/dist/collection/components/drawer/drawer.js +28 -4
- package/dist/collection/components/header/header.js +27 -3
- package/dist/collection/components/icon/icon.js +27 -2
- package/dist/collection/components/infotext/infotext.js +53 -3
- package/dist/collection/components/input/input.js +74 -31
- package/dist/collection/components/link/link.js +27 -3
- package/dist/collection/components/navigation/navigation.js +27 -2
- package/dist/collection/components/navigation-item/navigation-item.js +27 -3
- package/dist/collection/components/notification/notification.js +28 -4
- package/dist/collection/components/page/page.js +27 -2
- package/dist/collection/components/popover/popover.js +27 -3
- package/dist/collection/components/radio/radio.js +54 -11
- package/dist/collection/components/section/section.js +27 -2
- package/dist/collection/components/select/select.js +75 -32
- package/dist/collection/components/stack/stack.js +27 -2
- package/dist/collection/components/switch/switch.js +107 -45
- package/dist/collection/components/tab-item/tab-item.js +27 -3
- package/dist/collection/components/tab-list/tab-list.js +27 -2
- package/dist/collection/components/tab-panel/tab-panel.js +27 -2
- package/dist/collection/components/tabs/tabs.js +28 -4
- package/dist/collection/components/tag/tag.js +27 -3
- package/dist/collection/components/textarea/textarea.js +73 -30
- package/dist/collection/components/tooltip/tooltip.js +63 -5
- package/dist/collection/index.js +2 -0
- package/dist/collection/utils/floating-components.js +4 -0
- package/dist/collection/utils/index.js +6 -7
- package/dist/custom-elements.json +3692 -1698
- package/dist/db-ux/db-ux.esm.js +1 -1
- package/dist/db-ux/index.esm.js +1 -1
- package/dist/db-ux/p-043c407c.entry.js +1 -0
- package/dist/db-ux/p-0541c3c2.entry.js +1 -0
- package/dist/db-ux/p-074e4a43.entry.js +1 -0
- package/dist/db-ux/p-11251b99.entry.js +1 -0
- package/dist/db-ux/p-1c89f0fc.entry.js +1 -0
- package/dist/db-ux/p-213bfff6.entry.js +1 -0
- package/dist/db-ux/p-29442fd9.entry.js +1 -0
- package/dist/db-ux/p-2bce91e1.entry.js +1 -0
- package/dist/db-ux/p-32c4a1b5.entry.js +1 -0
- package/dist/db-ux/p-3e5be44c.entry.js +1 -0
- package/dist/db-ux/p-4cda36f1.entry.js +1 -0
- package/dist/db-ux/p-4cf64cbb.entry.js +1 -0
- package/dist/db-ux/p-5028b12e.entry.js +1 -0
- package/dist/db-ux/{p-b07122c4.entry.js → p-56af9177.entry.js} +1 -1
- package/dist/db-ux/{p-64264628.entry.js → p-587263ad.entry.js} +1 -1
- package/dist/db-ux/p-58f21c03.entry.js +1 -0
- package/dist/db-ux/{p-77150a25.entry.js → p-6b073570.entry.js} +1 -1
- package/dist/db-ux/p-745ccfb8.entry.js +1 -0
- package/dist/db-ux/p-836f0fef.entry.js +1 -0
- package/dist/db-ux/p-9a19e197.entry.js +1 -0
- package/dist/db-ux/p-9fb146d1.entry.js +1 -0
- package/dist/db-ux/p-BjIPMjCM.js +2 -0
- package/dist/db-ux/{p-cNk4ImpW.js → p-BuBrj57D.js} +1 -1
- package/dist/db-ux/p-CHLgQ9vn.js +1 -0
- package/dist/db-ux/{p-CAEpg8tJ.js → p-D5mInaY7.js} +1 -1
- package/dist/db-ux/p-DOPXnIzL.js +1 -0
- package/dist/db-ux/p-D_roHmuC.js +1 -0
- package/dist/db-ux/p-a34d2691.entry.js +1 -0
- package/dist/db-ux/p-c6f43506.entry.js +1 -0
- package/dist/db-ux/p-cdfaf027.entry.js +1 -0
- package/dist/db-ux/p-d186aef4.entry.js +1 -0
- package/dist/db-ux/p-dceb35a8.entry.js +1 -0
- package/dist/db-ux/p-e199b6f9.entry.js +1 -0
- package/dist/db-ux/p-e3664354.entry.js +1 -0
- package/dist/db-ux/p-ef034bba.entry.js +1 -0
- package/dist/db-ux/p-f0bc176a.entry.js +1 -0
- package/dist/db-ux/p-ff3866f3.entry.js +1 -0
- package/dist/db-ux/p-xkoBSP8R.js +1 -0
- package/dist/esm/db-accordion-item.entry.js +5 -4
- package/dist/esm/db-accordion.entry.js +6 -6
- package/dist/esm/db-badge.entry.js +5 -5
- package/dist/esm/db-brand.entry.js +5 -5
- package/dist/esm/db-button.entry.js +5 -5
- package/dist/esm/db-card.entry.js +5 -4
- package/dist/esm/db-checkbox.entry.js +54 -35
- package/dist/esm/db-custom-button.entry.js +55 -0
- package/dist/esm/db-custom-select-dropdown_5.entry.js +60 -38
- package/dist/esm/db-custom-select-form-field.entry.js +5 -4
- package/dist/esm/db-custom-select.entry.js +133 -110
- package/dist/esm/db-divider.entry.js +5 -4
- package/dist/esm/db-drawer.entry.js +6 -6
- package/dist/esm/db-header.entry.js +7 -7
- package/dist/esm/db-icon.entry.js +5 -4
- package/dist/esm/db-infotext.entry.js +5 -5
- package/dist/esm/db-link.entry.js +5 -5
- package/dist/esm/db-navigation-item.entry.js +7 -7
- package/dist/esm/db-navigation.entry.js +5 -4
- package/dist/esm/db-notification.entry.js +6 -6
- package/dist/esm/db-page.entry.js +5 -4
- package/dist/esm/db-popover.entry.js +7 -7
- package/dist/esm/db-radio.entry.js +33 -14
- package/dist/esm/db-section.entry.js +5 -4
- package/dist/esm/db-select.entry.js +49 -30
- package/dist/esm/db-stack.entry.js +5 -4
- package/dist/esm/db-switch.entry.js +58 -22
- package/dist/esm/db-tab-item_3.entry.js +11 -9
- package/dist/esm/db-tabs.entry.js +6 -6
- package/dist/esm/db-textarea.entry.js +47 -28
- package/dist/esm/db-tooltip.entry.js +17 -9
- package/dist/esm/db-ux.js +4 -4
- package/dist/esm/{document-click-listener-CmYoXpGE.js → document-click-listener-D7W_VE5O.js} +1 -1
- package/dist/esm/{document-scroll-listener-65bHuFAN.js → document-scroll-listener-DOBe3Oa9.js} +1 -1
- package/dist/esm/{floating-components-DfYL98sI.js → floating-components-DOPXnIzL.js} +4 -0
- package/dist/esm/{form-components-BLsiOrPI.js → form-components-D6LQfJvq.js} +1 -1
- package/dist/esm/{index-Crtu1dn6.js → index-BjIPMjCM.js} +23 -14
- package/dist/esm/{index-C4x0SOcx.js → index-xkoBSP8R.js} +6 -7
- package/dist/esm/index.js +5 -5
- package/dist/esm/loader.js +3 -3
- package/dist/esm/{navigation-DgsMCdfn.js → navigation-Jh6m0eMk.js} +1 -1
- package/dist/types/components/accordion/accordion.d.ts +1 -0
- package/dist/types/components/accordion-item/accordion-item.d.ts +1 -0
- package/dist/types/components/badge/badge.d.ts +2 -0
- package/dist/types/components/badge/model.d.ts +2 -2
- package/dist/types/components/brand/brand.d.ts +1 -0
- package/dist/types/components/button/button.d.ts +2 -0
- package/dist/types/components/button/model.d.ts +8 -10
- package/dist/types/components/card/card.d.ts +1 -0
- package/dist/types/components/checkbox/checkbox.d.ts +5 -1
- package/dist/types/components/custom-button/custom-button.d.ts +29 -0
- package/dist/types/components/custom-button/index.d.ts +2 -0
- package/dist/types/components/custom-button/model.d.ts +6 -0
- package/dist/types/components/custom-select/custom-select.d.ts +5 -1
- package/dist/types/components/custom-select-dropdown/custom-select-dropdown.d.ts +1 -0
- package/dist/types/components/custom-select-form-field/custom-select-form-field.d.ts +1 -0
- package/dist/types/components/custom-select-list/custom-select-list.d.ts +1 -0
- package/dist/types/components/custom-select-list-item/custom-select-list-item.d.ts +1 -0
- package/dist/types/components/divider/divider.d.ts +1 -0
- package/dist/types/components/drawer/drawer.d.ts +1 -0
- package/dist/types/components/header/header.d.ts +1 -0
- package/dist/types/components/icon/icon.d.ts +1 -0
- package/dist/types/components/infotext/infotext.d.ts +2 -0
- package/dist/types/components/infotext/model.d.ts +2 -2
- package/dist/types/components/input/input.d.ts +5 -1
- package/dist/types/components/link/link.d.ts +1 -0
- package/dist/types/components/navigation/navigation.d.ts +1 -0
- package/dist/types/components/navigation-item/navigation-item.d.ts +1 -0
- package/dist/types/components/notification/model.d.ts +2 -2
- package/dist/types/components/notification/notification.d.ts +1 -0
- package/dist/types/components/page/page.d.ts +1 -0
- package/dist/types/components/popover/popover.d.ts +1 -0
- package/dist/types/components/radio/radio.d.ts +4 -0
- package/dist/types/components/section/section.d.ts +1 -0
- package/dist/types/components/select/select.d.ts +5 -1
- package/dist/types/components/stack/stack.d.ts +1 -0
- package/dist/types/components/switch/switch.d.ts +7 -1
- package/dist/types/components/tab-item/tab-item.d.ts +1 -0
- package/dist/types/components/tab-list/tab-list.d.ts +1 -0
- package/dist/types/components/tab-panel/tab-panel.d.ts +1 -0
- package/dist/types/components/tabs/tabs.d.ts +1 -0
- package/dist/types/components/tag/model.d.ts +2 -6
- package/dist/types/components/tag/tag.d.ts +1 -0
- package/dist/types/components/textarea/textarea.d.ts +5 -1
- package/dist/types/components/tooltip/model.d.ts +3 -3
- package/dist/types/components/tooltip/tooltip.d.ts +3 -0
- package/dist/types/components.d.ts +145 -6
- package/dist/types/index.d.ts +2 -0
- package/dist/types/shared/model.d.ts +15 -1
- package/dist/types/stencil-public-runtime.d.ts +3 -1
- package/dist/vscode.html-custom-data.json +397 -85
- package/dist/web-types.json +730 -153
- package/package.json +4 -4
- package/agent/Accordion.md +0 -23
- package/agent/AccordionItem.md +0 -29
- package/agent/Badge.md +0 -32
- package/agent/Brand.md +0 -13
- package/agent/Button.md +0 -47
- package/agent/Card.md +0 -23
- package/agent/Checkbox.md +0 -41
- package/agent/CustomSelect.md +0 -54
- package/agent/Divider.md +0 -21
- package/agent/Drawer.md +0 -71
- package/agent/Header.md +0 -29
- package/agent/Icon.md +0 -20
- package/agent/Infotext.md +0 -25
- package/agent/Input.md +0 -48
- package/agent/Link.md +0 -52
- package/agent/Navigation.md +0 -19
- package/agent/NavigationItem.md +0 -29
- package/agent/Notification.md +0 -38
- package/agent/Page.md +0 -27
- package/agent/Popover.md +0 -52
- package/agent/Radio.md +0 -28
- package/agent/Section.md +0 -21
- package/agent/Select.md +0 -62
- package/agent/Stack.md +0 -35
- package/agent/Switch.md +0 -44
- package/agent/TabItem.md +0 -25
- package/agent/Tabs.md +0 -61
- package/agent/Tag.md +0 -41
- package/agent/Textarea.md +0 -44
- package/agent/Tooltip.md +0 -37
- package/agent/_instructions.md +0 -31
- package/dist/db-ux/p-1a72176e.entry.js +0 -1
- package/dist/db-ux/p-1b7f6a0b.entry.js +0 -1
- package/dist/db-ux/p-1da21066.entry.js +0 -1
- package/dist/db-ux/p-2d15e200.entry.js +0 -1
- package/dist/db-ux/p-312d52da.entry.js +0 -1
- package/dist/db-ux/p-3e6b86d6.entry.js +0 -1
- package/dist/db-ux/p-4aa16916.entry.js +0 -1
- package/dist/db-ux/p-4b69acea.entry.js +0 -1
- package/dist/db-ux/p-4cfff250.entry.js +0 -1
- package/dist/db-ux/p-5237e5d5.entry.js +0 -1
- package/dist/db-ux/p-5b1a0f0f.entry.js +0 -1
- package/dist/db-ux/p-5fa85b19.entry.js +0 -1
- package/dist/db-ux/p-7351b5ab.entry.js +0 -1
- package/dist/db-ux/p-7c6b7578.entry.js +0 -1
- package/dist/db-ux/p-828a77d8.entry.js +0 -1
- package/dist/db-ux/p-9b47dc80.entry.js +0 -1
- package/dist/db-ux/p-BhXdfCpU.js +0 -1
- package/dist/db-ux/p-C4x0SOcx.js +0 -1
- package/dist/db-ux/p-Crtu1dn6.js +0 -2
- package/dist/db-ux/p-DfYL98sI.js +0 -1
- package/dist/db-ux/p-RHqkTr-_.js +0 -1
- package/dist/db-ux/p-a3a8ce36.entry.js +0 -1
- package/dist/db-ux/p-aa0f7280.entry.js +0 -1
- package/dist/db-ux/p-b1fc0f4c.entry.js +0 -1
- package/dist/db-ux/p-c2624e1b.entry.js +0 -1
- package/dist/db-ux/p-c29d8e32.entry.js +0 -1
- package/dist/db-ux/p-cf50169a.entry.js +0 -1
- package/dist/db-ux/p-d4f3cfa2.entry.js +0 -1
- package/dist/db-ux/p-e05fee5a.entry.js +0 -1
- package/dist/db-ux/p-f40d2d61.entry.js +0 -1
- package/dist/db-ux/p-fcf8e274.entry.js +0 -1
- package/dist/db-ux/p-fe06f815.entry.js +0 -1
package/dist/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
|
|
3
3
|
"name": "@db-ux/wc-core-components",
|
|
4
|
-
"version": "4.
|
|
4
|
+
"version": "4.5.1",
|
|
5
5
|
"description-markup": "markdown",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
"name": "id",
|
|
26
26
|
"value": { "type": "DBAccordionItemProps[\"id\"]" }
|
|
27
27
|
},
|
|
28
|
+
{
|
|
29
|
+
"name": "prop-overrides",
|
|
30
|
+
"value": { "type": "DBAccordionItemProps[\"propOverrides\"]" }
|
|
31
|
+
},
|
|
28
32
|
{
|
|
29
33
|
"name": "classname",
|
|
30
34
|
"value": { "type": "DBAccordionItemProps[\"className\"]" }
|
|
@@ -73,6 +77,10 @@
|
|
|
73
77
|
"type": "string"
|
|
74
78
|
},
|
|
75
79
|
{ "name": "id", "type": "DBAccordionItemProps[\"id\"]" },
|
|
80
|
+
{
|
|
81
|
+
"name": "propOverrides",
|
|
82
|
+
"type": "DBAccordionItemProps[\"propOverrides\"]"
|
|
83
|
+
},
|
|
76
84
|
{
|
|
77
85
|
"name": "className",
|
|
78
86
|
"type": "DBAccordionItemProps[\"className\"]"
|
|
@@ -128,6 +136,10 @@
|
|
|
128
136
|
"value": { "type": "DBAccordionItemDefaultProps[] | string" }
|
|
129
137
|
},
|
|
130
138
|
{ "name": "id", "value": { "type": "DBAccordionProps[\"id\"]" } },
|
|
139
|
+
{
|
|
140
|
+
"name": "prop-overrides",
|
|
141
|
+
"value": { "type": "DBAccordionProps[\"propOverrides\"]" }
|
|
142
|
+
},
|
|
131
143
|
{
|
|
132
144
|
"name": "classname",
|
|
133
145
|
"value": { "type": "DBAccordionProps[\"className\"]" }
|
|
@@ -168,6 +180,10 @@
|
|
|
168
180
|
"type": "DBAccordionItemDefaultProps[] | string"
|
|
169
181
|
},
|
|
170
182
|
{ "name": "id", "type": "DBAccordionProps[\"id\"]" },
|
|
183
|
+
{
|
|
184
|
+
"name": "propOverrides",
|
|
185
|
+
"type": "DBAccordionProps[\"propOverrides\"]"
|
|
186
|
+
},
|
|
171
187
|
{
|
|
172
188
|
"name": "className",
|
|
173
189
|
"type": "DBAccordionProps[\"className\"]"
|
|
@@ -197,6 +213,10 @@
|
|
|
197
213
|
}
|
|
198
214
|
},
|
|
199
215
|
{ "name": "id", "value": { "type": "DBBadgeProps[\"id\"]" } },
|
|
216
|
+
{
|
|
217
|
+
"name": "prop-overrides",
|
|
218
|
+
"value": { "type": "DBBadgeProps[\"propOverrides\"]" }
|
|
219
|
+
},
|
|
200
220
|
{
|
|
201
221
|
"name": "classname",
|
|
202
222
|
"value": { "type": "DBBadgeProps[\"className\"]" }
|
|
@@ -218,6 +238,11 @@
|
|
|
218
238
|
"description": "The emphasis attribute divides in between a weak or strong importance.",
|
|
219
239
|
"value": { "type": "\"weak\" | \"strong\"" }
|
|
220
240
|
},
|
|
241
|
+
{
|
|
242
|
+
"name": "wrap",
|
|
243
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
244
|
+
"value": { "type": "boolean | string" }
|
|
245
|
+
},
|
|
221
246
|
{
|
|
222
247
|
"name": "label",
|
|
223
248
|
"description": "Describes the badge for a11y if you use placement attribute with `corner-*`",
|
|
@@ -244,6 +269,10 @@
|
|
|
244
269
|
"type": "\"inline\" | \"corner-top-left\" | \"corner-top-right\" | \"corner-center-left\" | \"corner-center-right\" | \"corner-bottom-left\" | \"corner-bottom-right\""
|
|
245
270
|
},
|
|
246
271
|
{ "name": "id", "type": "DBBadgeProps[\"id\"]" },
|
|
272
|
+
{
|
|
273
|
+
"name": "propOverrides",
|
|
274
|
+
"type": "DBBadgeProps[\"propOverrides\"]"
|
|
275
|
+
},
|
|
247
276
|
{ "name": "className", "type": "DBBadgeProps[\"className\"]" },
|
|
248
277
|
{
|
|
249
278
|
"name": "semantic",
|
|
@@ -260,6 +289,11 @@
|
|
|
260
289
|
"description": "The emphasis attribute divides in between a weak or strong importance.",
|
|
261
290
|
"type": "\"weak\" | \"strong\""
|
|
262
291
|
},
|
|
292
|
+
{
|
|
293
|
+
"name": "wrap",
|
|
294
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
295
|
+
"type": "boolean | string"
|
|
296
|
+
},
|
|
263
297
|
{
|
|
264
298
|
"name": "label",
|
|
265
299
|
"description": "Describes the badge for a11y if you use placement attribute with `corner-*`",
|
|
@@ -296,6 +330,10 @@
|
|
|
296
330
|
"value": { "type": "boolean | string" }
|
|
297
331
|
},
|
|
298
332
|
{ "name": "id", "value": { "type": "DBBrandProps[\"id\"]" } },
|
|
333
|
+
{
|
|
334
|
+
"name": "prop-overrides",
|
|
335
|
+
"value": { "type": "DBBrandProps[\"propOverrides\"]" }
|
|
336
|
+
},
|
|
299
337
|
{
|
|
300
338
|
"name": "classname",
|
|
301
339
|
"value": { "type": "DBBrandProps[\"className\"]" }
|
|
@@ -327,6 +365,10 @@
|
|
|
327
365
|
"type": "boolean | string"
|
|
328
366
|
},
|
|
329
367
|
{ "name": "id", "type": "DBBrandProps[\"id\"]" },
|
|
368
|
+
{
|
|
369
|
+
"name": "propOverrides",
|
|
370
|
+
"type": "DBBrandProps[\"propOverrides\"]"
|
|
371
|
+
},
|
|
330
372
|
{ "name": "className", "type": "DBBrandProps[\"className\"]" },
|
|
331
373
|
{
|
|
332
374
|
"name": "text",
|
|
@@ -348,6 +390,10 @@
|
|
|
348
390
|
"value": { "type": "\"button\" | \"reset\" | \"submit\"" }
|
|
349
391
|
},
|
|
350
392
|
{ "name": "id", "value": { "type": "DBButtonProps[\"id\"]" } },
|
|
393
|
+
{
|
|
394
|
+
"name": "prop-overrides",
|
|
395
|
+
"value": { "type": "DBButtonProps[\"propOverrides\"]" }
|
|
396
|
+
},
|
|
351
397
|
{
|
|
352
398
|
"name": "classname",
|
|
353
399
|
"value": { "type": "DBButtonProps[\"className\"]" }
|
|
@@ -399,11 +445,16 @@
|
|
|
399
445
|
},
|
|
400
446
|
{
|
|
401
447
|
"name": "variant",
|
|
402
|
-
"description": "Variant of the button.
|
|
448
|
+
"description": "Variant of the button. Only use one primary button as a CTA on a page; otherwise, use one of the adaptive buttons.",
|
|
403
449
|
"value": {
|
|
404
450
|
"type": "\"outlined\" | \"brand\" | \"filled\" | \"ghost\" | string"
|
|
405
451
|
}
|
|
406
452
|
},
|
|
453
|
+
{
|
|
454
|
+
"name": "wrap",
|
|
455
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
456
|
+
"value": { "type": "boolean | string" }
|
|
457
|
+
},
|
|
407
458
|
{
|
|
408
459
|
"name": "no-text",
|
|
409
460
|
"description": "Define the text next to the icon specified via the icon Property to get hidden.",
|
|
@@ -450,6 +501,10 @@
|
|
|
450
501
|
"type": "\"button\" | \"reset\" | \"submit\""
|
|
451
502
|
},
|
|
452
503
|
{ "name": "id", "type": "DBButtonProps[\"id\"]" },
|
|
504
|
+
{
|
|
505
|
+
"name": "propOverrides",
|
|
506
|
+
"type": "DBButtonProps[\"propOverrides\"]"
|
|
507
|
+
},
|
|
453
508
|
{ "name": "className", "type": "DBButtonProps[\"className\"]" },
|
|
454
509
|
{
|
|
455
510
|
"name": "disabled",
|
|
@@ -498,9 +553,14 @@
|
|
|
498
553
|
},
|
|
499
554
|
{
|
|
500
555
|
"name": "variant",
|
|
501
|
-
"description": "Variant of the button.
|
|
556
|
+
"description": "Variant of the button. Only use one primary button as a CTA on a page; otherwise, use one of the adaptive buttons.",
|
|
502
557
|
"type": "\"outlined\" | \"brand\" | \"filled\" | \"ghost\" | string"
|
|
503
558
|
},
|
|
559
|
+
{
|
|
560
|
+
"name": "wrap",
|
|
561
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
562
|
+
"type": "boolean | string"
|
|
563
|
+
},
|
|
504
564
|
{
|
|
505
565
|
"name": "noText",
|
|
506
566
|
"description": "Define the text next to the icon specified via the icon Property to get hidden.",
|
|
@@ -541,6 +601,10 @@
|
|
|
541
601
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/card/properties",
|
|
542
602
|
"attributes": [
|
|
543
603
|
{ "name": "id", "value": { "type": "DBCardProps[\"id\"]" } },
|
|
604
|
+
{
|
|
605
|
+
"name": "prop-overrides",
|
|
606
|
+
"value": { "type": "DBCardProps[\"propOverrides\"]" }
|
|
607
|
+
},
|
|
544
608
|
{
|
|
545
609
|
"name": "classname",
|
|
546
610
|
"value": { "type": "DBCardProps[\"className\"]" }
|
|
@@ -578,6 +642,10 @@
|
|
|
578
642
|
"js": {
|
|
579
643
|
"properties": [
|
|
580
644
|
{ "name": "id", "type": "DBCardProps[\"id\"]" },
|
|
645
|
+
{
|
|
646
|
+
"name": "propOverrides",
|
|
647
|
+
"type": "DBCardProps[\"propOverrides\"]"
|
|
648
|
+
},
|
|
581
649
|
{ "name": "className", "type": "DBCardProps[\"className\"]" },
|
|
582
650
|
{
|
|
583
651
|
"name": "behavior",
|
|
@@ -609,6 +677,10 @@
|
|
|
609
677
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/infotext/properties",
|
|
610
678
|
"attributes": [
|
|
611
679
|
{ "name": "id", "value": { "type": "DBInfotextProps[\"id\"]" } },
|
|
680
|
+
{
|
|
681
|
+
"name": "prop-overrides",
|
|
682
|
+
"value": { "type": "DBInfotextProps[\"propOverrides\"]" }
|
|
683
|
+
},
|
|
612
684
|
{
|
|
613
685
|
"name": "classname",
|
|
614
686
|
"value": { "type": "DBInfotextProps[\"className\"]" }
|
|
@@ -630,6 +702,11 @@
|
|
|
630
702
|
"description": "The size attribute changes the font-size and other related sizes of the component.",
|
|
631
703
|
"value": { "type": "\"small\" | \"medium\"" }
|
|
632
704
|
},
|
|
705
|
+
{
|
|
706
|
+
"name": "wrap",
|
|
707
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
708
|
+
"value": { "type": "boolean | string" }
|
|
709
|
+
},
|
|
633
710
|
{
|
|
634
711
|
"name": "show-icon",
|
|
635
712
|
"description": "Enables or disables the visibility of the icon. The default value depends on the component.\nFor many components this property is optional to reflect Figma properties.",
|
|
@@ -651,6 +728,10 @@
|
|
|
651
728
|
"js": {
|
|
652
729
|
"properties": [
|
|
653
730
|
{ "name": "id", "type": "DBInfotextProps[\"id\"]" },
|
|
731
|
+
{
|
|
732
|
+
"name": "propOverrides",
|
|
733
|
+
"type": "DBInfotextProps[\"propOverrides\"]"
|
|
734
|
+
},
|
|
654
735
|
{ "name": "className", "type": "DBInfotextProps[\"className\"]" },
|
|
655
736
|
{
|
|
656
737
|
"name": "icon",
|
|
@@ -667,6 +748,11 @@
|
|
|
667
748
|
"description": "The size attribute changes the font-size and other related sizes of the component.",
|
|
668
749
|
"type": "\"small\" | \"medium\""
|
|
669
750
|
},
|
|
751
|
+
{
|
|
752
|
+
"name": "wrap",
|
|
753
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
754
|
+
"type": "boolean | string"
|
|
755
|
+
},
|
|
670
756
|
{
|
|
671
757
|
"name": "showIcon",
|
|
672
758
|
"description": "Enables or disables the visibility of the icon. The default value depends on the component.\nFor many components this property is optional to reflect Figma properties.",
|
|
@@ -686,12 +772,16 @@
|
|
|
686
772
|
"description": "\n---\n\n\n### **Events:**\n - **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
687
773
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/checkbox/properties",
|
|
688
774
|
"attributes": [
|
|
689
|
-
{ "name": "id", "value": { "type": "DBCheckboxProps[\"id\"]" } },
|
|
690
775
|
{
|
|
691
776
|
"name": "invalid-message",
|
|
692
777
|
"description": "Helper message for invalid form components",
|
|
693
778
|
"value": { "type": "string" }
|
|
694
779
|
},
|
|
780
|
+
{ "name": "id", "value": { "type": "DBCheckboxProps[\"id\"]" } },
|
|
781
|
+
{
|
|
782
|
+
"name": "prop-overrides",
|
|
783
|
+
"value": { "type": "DBCheckboxProps[\"propOverrides\"]" }
|
|
784
|
+
},
|
|
695
785
|
{
|
|
696
786
|
"name": "message",
|
|
697
787
|
"description": "Optional helper message for form components",
|
|
@@ -799,12 +889,16 @@
|
|
|
799
889
|
],
|
|
800
890
|
"js": {
|
|
801
891
|
"properties": [
|
|
802
|
-
{ "name": "id", "type": "DBCheckboxProps[\"id\"]" },
|
|
803
892
|
{
|
|
804
893
|
"name": "invalidMessage",
|
|
805
894
|
"description": "Helper message for invalid form components",
|
|
806
895
|
"type": "string"
|
|
807
896
|
},
|
|
897
|
+
{ "name": "id", "type": "DBCheckboxProps[\"id\"]" },
|
|
898
|
+
{
|
|
899
|
+
"name": "propOverrides",
|
|
900
|
+
"type": "DBCheckboxProps[\"propOverrides\"]"
|
|
901
|
+
},
|
|
808
902
|
{
|
|
809
903
|
"name": "message",
|
|
810
904
|
"description": "Optional helper message for form components",
|
|
@@ -912,6 +1006,148 @@
|
|
|
912
1006
|
]
|
|
913
1007
|
}
|
|
914
1008
|
},
|
|
1009
|
+
{
|
|
1010
|
+
"name": "db-custom-button",
|
|
1011
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1012
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button/properties",
|
|
1013
|
+
"attributes": [
|
|
1014
|
+
{
|
|
1015
|
+
"name": "id",
|
|
1016
|
+
"value": { "type": "DBCustomButtonProps[\"id\"]" }
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"name": "prop-overrides",
|
|
1020
|
+
"value": { "type": "DBCustomButtonProps[\"propOverrides\"]" }
|
|
1021
|
+
},
|
|
1022
|
+
{
|
|
1023
|
+
"name": "classname",
|
|
1024
|
+
"value": { "type": "DBCustomButtonProps[\"className\"]" }
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
"name": "icon-leading",
|
|
1028
|
+
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
1029
|
+
"value": { "type": "IconTypes" }
|
|
1030
|
+
},
|
|
1031
|
+
{
|
|
1032
|
+
"name": "icon",
|
|
1033
|
+
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
1034
|
+
"value": { "type": "IconTypes" }
|
|
1035
|
+
},
|
|
1036
|
+
{
|
|
1037
|
+
"name": "show-icon-leading",
|
|
1038
|
+
"description": "Enables or disables the visibility of the leading icon.\nFor many components this property is optional to reflect Figma properties.",
|
|
1039
|
+
"value": { "type": "boolean | string" }
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"name": "show-icon",
|
|
1043
|
+
"description": "Enables or disables the visibility of the icon. The default value depends on the component.\nFor many components this property is optional to reflect Figma properties.",
|
|
1044
|
+
"value": { "type": "boolean | string" }
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"name": "icon-trailing",
|
|
1048
|
+
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
1049
|
+
"value": { "type": "IconTypes" }
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"name": "show-icon-trailing",
|
|
1053
|
+
"description": "Enables or disables the visibility of the trailing icon.\nFor many components this property is optional to reflect Figma properties.",
|
|
1054
|
+
"value": { "type": "boolean | string" }
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "size",
|
|
1058
|
+
"description": "The size attribute changes the font-size and other related sizes of the component.",
|
|
1059
|
+
"value": { "type": "\"small\" | \"medium\"" }
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"name": "width",
|
|
1063
|
+
"description": "Width of the component. Auto width based on children size, full width based on parent elements width.",
|
|
1064
|
+
"value": { "type": "\"full\" | \"auto\" | string" }
|
|
1065
|
+
},
|
|
1066
|
+
{
|
|
1067
|
+
"name": "variant",
|
|
1068
|
+
"description": "Variant of the button. Only use one primary button as a CTA on a page; otherwise, use one of the adaptive buttons.",
|
|
1069
|
+
"value": {
|
|
1070
|
+
"type": "\"outlined\" | \"brand\" | \"filled\" | \"ghost\" | string"
|
|
1071
|
+
}
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"name": "no-text",
|
|
1075
|
+
"description": "Define the text next to the icon specified via the icon Property to get hidden.",
|
|
1076
|
+
"value": { "type": "boolean | string" }
|
|
1077
|
+
}
|
|
1078
|
+
],
|
|
1079
|
+
"slots": [
|
|
1080
|
+
{
|
|
1081
|
+
"name": "children",
|
|
1082
|
+
"description": "This is a default/unnamed slot"
|
|
1083
|
+
}
|
|
1084
|
+
],
|
|
1085
|
+
"events": [],
|
|
1086
|
+
"js": {
|
|
1087
|
+
"properties": [
|
|
1088
|
+
{ "name": "id", "type": "DBCustomButtonProps[\"id\"]" },
|
|
1089
|
+
{
|
|
1090
|
+
"name": "propOverrides",
|
|
1091
|
+
"type": "DBCustomButtonProps[\"propOverrides\"]"
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"name": "className",
|
|
1095
|
+
"type": "DBCustomButtonProps[\"className\"]"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"name": "iconLeading",
|
|
1099
|
+
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
1100
|
+
"type": "IconTypes"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"name": "icon",
|
|
1104
|
+
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
1105
|
+
"type": "IconTypes"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"name": "showIconLeading",
|
|
1109
|
+
"description": "Enables or disables the visibility of the leading icon.\nFor many components this property is optional to reflect Figma properties.",
|
|
1110
|
+
"type": "boolean | string"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"name": "showIcon",
|
|
1114
|
+
"description": "Enables or disables the visibility of the icon. The default value depends on the component.\nFor many components this property is optional to reflect Figma properties.",
|
|
1115
|
+
"type": "boolean | string"
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"name": "iconTrailing",
|
|
1119
|
+
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
1120
|
+
"type": "IconTypes"
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
"name": "showIconTrailing",
|
|
1124
|
+
"description": "Enables or disables the visibility of the trailing icon.\nFor many components this property is optional to reflect Figma properties.",
|
|
1125
|
+
"type": "boolean | string"
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"name": "size",
|
|
1129
|
+
"description": "The size attribute changes the font-size and other related sizes of the component.",
|
|
1130
|
+
"type": "\"small\" | \"medium\""
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"name": "width",
|
|
1134
|
+
"description": "Width of the component. Auto width based on children size, full width based on parent elements width.",
|
|
1135
|
+
"type": "\"full\" | \"auto\" | string"
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"name": "variant",
|
|
1139
|
+
"description": "Variant of the button. Only use one primary button as a CTA on a page; otherwise, use one of the adaptive buttons.",
|
|
1140
|
+
"type": "\"outlined\" | \"brand\" | \"filled\" | \"ghost\" | string"
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
"name": "noText",
|
|
1144
|
+
"description": "Define the text next to the icon specified via the icon Property to get hidden.",
|
|
1145
|
+
"type": "boolean | string"
|
|
1146
|
+
}
|
|
1147
|
+
],
|
|
1148
|
+
"events": []
|
|
1149
|
+
}
|
|
1150
|
+
},
|
|
915
1151
|
{
|
|
916
1152
|
"name": "db-custom-select-dropdown",
|
|
917
1153
|
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
@@ -921,6 +1157,12 @@
|
|
|
921
1157
|
"name": "id",
|
|
922
1158
|
"value": { "type": "DBCustomSelectDropdownProps[\"id\"]" }
|
|
923
1159
|
},
|
|
1160
|
+
{
|
|
1161
|
+
"name": "prop-overrides",
|
|
1162
|
+
"value": {
|
|
1163
|
+
"type": "DBCustomSelectDropdownProps[\"propOverrides\"]"
|
|
1164
|
+
}
|
|
1165
|
+
},
|
|
924
1166
|
{
|
|
925
1167
|
"name": "classname",
|
|
926
1168
|
"value": { "type": "DBCustomSelectDropdownProps[\"className\"]" }
|
|
@@ -944,6 +1186,10 @@
|
|
|
944
1186
|
"js": {
|
|
945
1187
|
"properties": [
|
|
946
1188
|
{ "name": "id", "type": "DBCustomSelectDropdownProps[\"id\"]" },
|
|
1189
|
+
{
|
|
1190
|
+
"name": "propOverrides",
|
|
1191
|
+
"type": "DBCustomSelectDropdownProps[\"propOverrides\"]"
|
|
1192
|
+
},
|
|
947
1193
|
{
|
|
948
1194
|
"name": "className",
|
|
949
1195
|
"type": "DBCustomSelectDropdownProps[\"className\"]"
|
|
@@ -986,6 +1232,12 @@
|
|
|
986
1232
|
"name": "id",
|
|
987
1233
|
"value": { "type": "DBCustomSelectListItemProps[\"id\"]" }
|
|
988
1234
|
},
|
|
1235
|
+
{
|
|
1236
|
+
"name": "prop-overrides",
|
|
1237
|
+
"value": {
|
|
1238
|
+
"type": "DBCustomSelectListItemProps[\"propOverrides\"]"
|
|
1239
|
+
}
|
|
1240
|
+
},
|
|
989
1241
|
{
|
|
990
1242
|
"name": "classname",
|
|
991
1243
|
"value": { "type": "DBCustomSelectListItemProps[\"className\"]" }
|
|
@@ -1059,6 +1311,10 @@
|
|
|
1059
1311
|
"type": "boolean | string"
|
|
1060
1312
|
},
|
|
1061
1313
|
{ "name": "id", "type": "DBCustomSelectListItemProps[\"id\"]" },
|
|
1314
|
+
{
|
|
1315
|
+
"name": "propOverrides",
|
|
1316
|
+
"type": "DBCustomSelectListItemProps[\"propOverrides\"]"
|
|
1317
|
+
},
|
|
1062
1318
|
{
|
|
1063
1319
|
"name": "className",
|
|
1064
1320
|
"type": "DBCustomSelectListItemProps[\"className\"]"
|
|
@@ -1119,6 +1375,10 @@
|
|
|
1119
1375
|
"name": "id",
|
|
1120
1376
|
"value": { "type": "DBCustomSelectListProps[\"id\"]" }
|
|
1121
1377
|
},
|
|
1378
|
+
{
|
|
1379
|
+
"name": "prop-overrides",
|
|
1380
|
+
"value": { "type": "DBCustomSelectListProps[\"propOverrides\"]" }
|
|
1381
|
+
},
|
|
1122
1382
|
{
|
|
1123
1383
|
"name": "classname",
|
|
1124
1384
|
"value": { "type": "DBCustomSelectListProps[\"className\"]" }
|
|
@@ -1136,6 +1396,10 @@
|
|
|
1136
1396
|
{ "name": "multiple", "type": "boolean" },
|
|
1137
1397
|
{ "name": "label", "type": "string" },
|
|
1138
1398
|
{ "name": "id", "type": "DBCustomSelectListProps[\"id\"]" },
|
|
1399
|
+
{
|
|
1400
|
+
"name": "propOverrides",
|
|
1401
|
+
"type": "DBCustomSelectListProps[\"propOverrides\"]"
|
|
1402
|
+
},
|
|
1139
1403
|
{
|
|
1140
1404
|
"name": "className",
|
|
1141
1405
|
"type": "DBCustomSelectListProps[\"className\"]"
|
|
@@ -1149,12 +1413,16 @@
|
|
|
1149
1413
|
"description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1150
1414
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/input/properties",
|
|
1151
1415
|
"attributes": [
|
|
1152
|
-
{ "name": "id", "value": { "type": "DBInputProps[\"id\"]" } },
|
|
1153
1416
|
{
|
|
1154
1417
|
"name": "invalid-message",
|
|
1155
1418
|
"description": "Helper message for invalid form components",
|
|
1156
1419
|
"value": { "type": "string" }
|
|
1157
1420
|
},
|
|
1421
|
+
{ "name": "id", "value": { "type": "DBInputProps[\"id\"]" } },
|
|
1422
|
+
{
|
|
1423
|
+
"name": "prop-overrides",
|
|
1424
|
+
"value": { "type": "DBInputProps[\"propOverrides\"]" }
|
|
1425
|
+
},
|
|
1158
1426
|
{
|
|
1159
1427
|
"name": "data-list-id",
|
|
1160
1428
|
"description": "Add a custom id to [data list](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist) if you're using `dataList` attribute.",
|
|
@@ -1423,12 +1691,16 @@
|
|
|
1423
1691
|
],
|
|
1424
1692
|
"js": {
|
|
1425
1693
|
"properties": [
|
|
1426
|
-
{ "name": "id", "type": "DBInputProps[\"id\"]" },
|
|
1427
1694
|
{
|
|
1428
1695
|
"name": "invalidMessage",
|
|
1429
1696
|
"description": "Helper message for invalid form components",
|
|
1430
1697
|
"type": "string"
|
|
1431
1698
|
},
|
|
1699
|
+
{ "name": "id", "type": "DBInputProps[\"id\"]" },
|
|
1700
|
+
{
|
|
1701
|
+
"name": "propOverrides",
|
|
1702
|
+
"type": "DBInputProps[\"propOverrides\"]"
|
|
1703
|
+
},
|
|
1432
1704
|
{
|
|
1433
1705
|
"name": "dataListId",
|
|
1434
1706
|
"description": "Add a custom id to [data list](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist) if you're using `dataList` attribute.",
|
|
@@ -1693,6 +1965,10 @@
|
|
|
1693
1965
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip/properties",
|
|
1694
1966
|
"attributes": [
|
|
1695
1967
|
{ "name": "id", "value": { "type": "DBTooltipProps[\"id\"]" } },
|
|
1968
|
+
{
|
|
1969
|
+
"name": "prop-overrides",
|
|
1970
|
+
"value": { "type": "DBTooltipProps[\"propOverrides\"]" }
|
|
1971
|
+
},
|
|
1696
1972
|
{
|
|
1697
1973
|
"name": "variant",
|
|
1698
1974
|
"description": "Change the behavior of the tooltip:\n- description: Adds `aria-describedby` to parent\n- label: Adds `aria-labelledby` to parent",
|
|
@@ -1712,6 +1988,11 @@
|
|
|
1712
1988
|
"description": "The emphasis attribute divides in between a weak or strong importance.",
|
|
1713
1989
|
"value": { "type": "\"weak\" | \"strong\"" }
|
|
1714
1990
|
},
|
|
1991
|
+
{
|
|
1992
|
+
"name": "wrap",
|
|
1993
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
1994
|
+
"value": { "type": "boolean | string" }
|
|
1995
|
+
},
|
|
1715
1996
|
{
|
|
1716
1997
|
"name": "animation",
|
|
1717
1998
|
"description": "Disable animation",
|
|
@@ -1743,6 +2024,10 @@
|
|
|
1743
2024
|
"js": {
|
|
1744
2025
|
"properties": [
|
|
1745
2026
|
{ "name": "id", "type": "DBTooltipProps[\"id\"]" },
|
|
2027
|
+
{
|
|
2028
|
+
"name": "propOverrides",
|
|
2029
|
+
"type": "DBTooltipProps[\"propOverrides\"]"
|
|
2030
|
+
},
|
|
1746
2031
|
{
|
|
1747
2032
|
"name": "variant",
|
|
1748
2033
|
"description": "Change the behavior of the tooltip:\n- description: Adds `aria-describedby` to parent\n- label: Adds `aria-labelledby` to parent",
|
|
@@ -1759,6 +2044,11 @@
|
|
|
1759
2044
|
"description": "The emphasis attribute divides in between a weak or strong importance.",
|
|
1760
2045
|
"type": "\"weak\" | \"strong\""
|
|
1761
2046
|
},
|
|
2047
|
+
{
|
|
2048
|
+
"name": "wrap",
|
|
2049
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
2050
|
+
"type": "boolean | string"
|
|
2051
|
+
},
|
|
1762
2052
|
{
|
|
1763
2053
|
"name": "animation",
|
|
1764
2054
|
"description": "Disable animation",
|
|
@@ -1798,6 +2088,10 @@
|
|
|
1798
2088
|
"value": { "type": "string" }
|
|
1799
2089
|
},
|
|
1800
2090
|
{ "name": "id", "value": { "type": "DBTagProps[\"id\"]" } },
|
|
2091
|
+
{
|
|
2092
|
+
"name": "prop-overrides",
|
|
2093
|
+
"value": { "type": "DBTagProps[\"propOverrides\"]" }
|
|
2094
|
+
},
|
|
1801
2095
|
{
|
|
1802
2096
|
"name": "classname",
|
|
1803
2097
|
"value": { "type": "DBTagProps[\"className\"]" }
|
|
@@ -1874,6 +2168,10 @@
|
|
|
1874
2168
|
"type": "string"
|
|
1875
2169
|
},
|
|
1876
2170
|
{ "name": "id", "type": "DBTagProps[\"id\"]" },
|
|
2171
|
+
{
|
|
2172
|
+
"name": "propOverrides",
|
|
2173
|
+
"type": "DBTagProps[\"propOverrides\"]"
|
|
2174
|
+
},
|
|
1877
2175
|
{ "name": "className", "type": "DBTagProps[\"className\"]" },
|
|
1878
2176
|
{
|
|
1879
2177
|
"name": "semantic",
|
|
@@ -1934,14 +2232,18 @@
|
|
|
1934
2232
|
"description": "\n---\n\n\n### **Events:**\n - **amountChange**\n- **dropdownToggle**\n- **optionSelected**\n- **search**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1935
2233
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-select/properties",
|
|
1936
2234
|
"attributes": [
|
|
2235
|
+
{
|
|
2236
|
+
"name": "invalid-message",
|
|
2237
|
+
"description": "Helper message for invalid form components",
|
|
2238
|
+
"value": { "type": "string" }
|
|
2239
|
+
},
|
|
1937
2240
|
{
|
|
1938
2241
|
"name": "id",
|
|
1939
2242
|
"value": { "type": "DBCustomSelectProps[\"id\"]" }
|
|
1940
2243
|
},
|
|
1941
2244
|
{
|
|
1942
|
-
"name": "
|
|
1943
|
-
"
|
|
1944
|
-
"value": { "type": "string" }
|
|
2245
|
+
"name": "prop-overrides",
|
|
2246
|
+
"value": { "type": "DBCustomSelectProps[\"propOverrides\"]" }
|
|
1945
2247
|
},
|
|
1946
2248
|
{
|
|
1947
2249
|
"name": "message",
|
|
@@ -2201,12 +2503,16 @@
|
|
|
2201
2503
|
],
|
|
2202
2504
|
"js": {
|
|
2203
2505
|
"properties": [
|
|
2204
|
-
{ "name": "id", "type": "DBCustomSelectProps[\"id\"]" },
|
|
2205
2506
|
{
|
|
2206
2507
|
"name": "invalidMessage",
|
|
2207
2508
|
"description": "Helper message for invalid form components",
|
|
2208
2509
|
"type": "string"
|
|
2209
2510
|
},
|
|
2511
|
+
{ "name": "id", "type": "DBCustomSelectProps[\"id\"]" },
|
|
2512
|
+
{
|
|
2513
|
+
"name": "propOverrides",
|
|
2514
|
+
"type": "DBCustomSelectProps[\"propOverrides\"]"
|
|
2515
|
+
},
|
|
2210
2516
|
{
|
|
2211
2517
|
"name": "message",
|
|
2212
2518
|
"description": "Optional helper message for form components",
|
|
@@ -2498,6 +2804,12 @@
|
|
|
2498
2804
|
"name": "id",
|
|
2499
2805
|
"value": { "type": "DBCustomSelectFormFieldProps[\"id\"]" }
|
|
2500
2806
|
},
|
|
2807
|
+
{
|
|
2808
|
+
"name": "prop-overrides",
|
|
2809
|
+
"value": {
|
|
2810
|
+
"type": "DBCustomSelectFormFieldProps[\"propOverrides\"]"
|
|
2811
|
+
}
|
|
2812
|
+
},
|
|
2501
2813
|
{
|
|
2502
2814
|
"name": "classname",
|
|
2503
2815
|
"value": { "type": "DBCustomSelectFormFieldProps[\"className\"]" }
|
|
@@ -2513,6 +2825,10 @@
|
|
|
2513
2825
|
"js": {
|
|
2514
2826
|
"properties": [
|
|
2515
2827
|
{ "name": "id", "type": "DBCustomSelectFormFieldProps[\"id\"]" },
|
|
2828
|
+
{
|
|
2829
|
+
"name": "propOverrides",
|
|
2830
|
+
"type": "DBCustomSelectFormFieldProps[\"propOverrides\"]"
|
|
2831
|
+
},
|
|
2516
2832
|
{
|
|
2517
2833
|
"name": "className",
|
|
2518
2834
|
"type": "DBCustomSelectFormFieldProps[\"className\"]"
|
|
@@ -2527,6 +2843,10 @@
|
|
|
2527
2843
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/divider/properties",
|
|
2528
2844
|
"attributes": [
|
|
2529
2845
|
{ "name": "id", "value": { "type": "DBDividerProps[\"id\"]" } },
|
|
2846
|
+
{
|
|
2847
|
+
"name": "prop-overrides",
|
|
2848
|
+
"value": { "type": "DBDividerProps[\"propOverrides\"]" }
|
|
2849
|
+
},
|
|
2530
2850
|
{
|
|
2531
2851
|
"name": "margin",
|
|
2532
2852
|
"description": "Removes the margin of the divider.",
|
|
@@ -2562,6 +2882,10 @@
|
|
|
2562
2882
|
"js": {
|
|
2563
2883
|
"properties": [
|
|
2564
2884
|
{ "name": "id", "type": "DBDividerProps[\"id\"]" },
|
|
2885
|
+
{
|
|
2886
|
+
"name": "propOverrides",
|
|
2887
|
+
"type": "DBDividerProps[\"propOverrides\"]"
|
|
2888
|
+
},
|
|
2565
2889
|
{
|
|
2566
2890
|
"name": "margin",
|
|
2567
2891
|
"description": "Removes the margin of the divider.",
|
|
@@ -2615,6 +2939,10 @@
|
|
|
2615
2939
|
"value": { "type": "\"modal\" | \"inside\"" }
|
|
2616
2940
|
},
|
|
2617
2941
|
{ "name": "id", "value": { "type": "DBDrawerProps[\"id\"]" } },
|
|
2942
|
+
{
|
|
2943
|
+
"name": "prop-overrides",
|
|
2944
|
+
"value": { "type": "DBDrawerProps[\"propOverrides\"]" }
|
|
2945
|
+
},
|
|
2618
2946
|
{
|
|
2619
2947
|
"name": "direction",
|
|
2620
2948
|
"description": "The direction attribute changes the position & animation of the drawer.\nE.g. \"left\" slides from left screen border to the right.",
|
|
@@ -2691,6 +3019,10 @@
|
|
|
2691
3019
|
"type": "\"modal\" | \"inside\""
|
|
2692
3020
|
},
|
|
2693
3021
|
{ "name": "id", "type": "DBDrawerProps[\"id\"]" },
|
|
3022
|
+
{
|
|
3023
|
+
"name": "propOverrides",
|
|
3024
|
+
"type": "DBDrawerProps[\"propOverrides\"]"
|
|
3025
|
+
},
|
|
2694
3026
|
{
|
|
2695
3027
|
"name": "direction",
|
|
2696
3028
|
"description": "The direction attribute changes the position & animation of the drawer.\nE.g. \"left\" slides from left screen border to the right.",
|
|
@@ -2752,6 +3084,10 @@
|
|
|
2752
3084
|
"value": { "type": "DBHeaderProps[\"className\"]" }
|
|
2753
3085
|
},
|
|
2754
3086
|
{ "name": "id", "value": { "type": "DBHeaderProps[\"id\"]" } },
|
|
3087
|
+
{
|
|
3088
|
+
"name": "prop-overrides",
|
|
3089
|
+
"value": { "type": "DBHeaderProps[\"propOverrides\"]" }
|
|
3090
|
+
},
|
|
2755
3091
|
{
|
|
2756
3092
|
"name": "width",
|
|
2757
3093
|
"description": "Set max width for the component",
|
|
@@ -2817,6 +3153,10 @@
|
|
|
2817
3153
|
},
|
|
2818
3154
|
{ "name": "className", "type": "DBHeaderProps[\"className\"]" },
|
|
2819
3155
|
{ "name": "id", "type": "DBHeaderProps[\"id\"]" },
|
|
3156
|
+
{
|
|
3157
|
+
"name": "propOverrides",
|
|
3158
|
+
"type": "DBHeaderProps[\"propOverrides\"]"
|
|
3159
|
+
},
|
|
2820
3160
|
{
|
|
2821
3161
|
"name": "width",
|
|
2822
3162
|
"description": "Set max width for the component",
|
|
@@ -2854,6 +3194,10 @@
|
|
|
2854
3194
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/icon/properties",
|
|
2855
3195
|
"attributes": [
|
|
2856
3196
|
{ "name": "id", "value": { "type": "DBIconProps[\"id\"]" } },
|
|
3197
|
+
{
|
|
3198
|
+
"name": "prop-overrides",
|
|
3199
|
+
"value": { "type": "DBIconProps[\"propOverrides\"]" }
|
|
3200
|
+
},
|
|
2857
3201
|
{
|
|
2858
3202
|
"name": "classname",
|
|
2859
3203
|
"value": { "type": "DBIconProps[\"className\"]" }
|
|
@@ -2886,6 +3230,10 @@
|
|
|
2886
3230
|
"js": {
|
|
2887
3231
|
"properties": [
|
|
2888
3232
|
{ "name": "id", "type": "DBIconProps[\"id\"]" },
|
|
3233
|
+
{
|
|
3234
|
+
"name": "propOverrides",
|
|
3235
|
+
"type": "DBIconProps[\"propOverrides\"]"
|
|
3236
|
+
},
|
|
2889
3237
|
{ "name": "className", "type": "DBIconProps[\"className\"]" },
|
|
2890
3238
|
{
|
|
2891
3239
|
"name": "icon",
|
|
@@ -2912,6 +3260,10 @@
|
|
|
2912
3260
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/link/properties",
|
|
2913
3261
|
"attributes": [
|
|
2914
3262
|
{ "name": "id", "value": { "type": "DBLinkProps[\"id\"]" } },
|
|
3263
|
+
{
|
|
3264
|
+
"name": "prop-overrides",
|
|
3265
|
+
"value": { "type": "DBLinkProps[\"propOverrides\"]" }
|
|
3266
|
+
},
|
|
2915
3267
|
{
|
|
2916
3268
|
"name": "classname",
|
|
2917
3269
|
"value": { "type": "DBLinkProps[\"className\"]" }
|
|
@@ -3003,6 +3355,10 @@
|
|
|
3003
3355
|
"js": {
|
|
3004
3356
|
"properties": [
|
|
3005
3357
|
{ "name": "id", "type": "DBLinkProps[\"id\"]" },
|
|
3358
|
+
{
|
|
3359
|
+
"name": "propOverrides",
|
|
3360
|
+
"type": "DBLinkProps[\"propOverrides\"]"
|
|
3361
|
+
},
|
|
3006
3362
|
{ "name": "className", "type": "DBLinkProps[\"className\"]" },
|
|
3007
3363
|
{
|
|
3008
3364
|
"name": "href",
|
|
@@ -3084,6 +3440,10 @@
|
|
|
3084
3440
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/navigation/properties",
|
|
3085
3441
|
"attributes": [
|
|
3086
3442
|
{ "name": "id", "value": { "type": "DBNavigationProps[\"id\"]" } },
|
|
3443
|
+
{
|
|
3444
|
+
"name": "prop-overrides",
|
|
3445
|
+
"value": { "type": "DBNavigationProps[\"propOverrides\"]" }
|
|
3446
|
+
},
|
|
3087
3447
|
{
|
|
3088
3448
|
"name": "classname",
|
|
3089
3449
|
"value": { "type": "DBNavigationProps[\"className\"]" }
|
|
@@ -3099,6 +3459,10 @@
|
|
|
3099
3459
|
"js": {
|
|
3100
3460
|
"properties": [
|
|
3101
3461
|
{ "name": "id", "type": "DBNavigationProps[\"id\"]" },
|
|
3462
|
+
{
|
|
3463
|
+
"name": "propOverrides",
|
|
3464
|
+
"type": "DBNavigationProps[\"propOverrides\"]"
|
|
3465
|
+
},
|
|
3102
3466
|
{
|
|
3103
3467
|
"name": "className",
|
|
3104
3468
|
"type": "DBNavigationProps[\"className\"]"
|
|
@@ -3121,6 +3485,10 @@
|
|
|
3121
3485
|
"name": "id",
|
|
3122
3486
|
"value": { "type": "DBNavigationItemProps[\"id\"]" }
|
|
3123
3487
|
},
|
|
3488
|
+
{
|
|
3489
|
+
"name": "prop-overrides",
|
|
3490
|
+
"value": { "type": "DBNavigationItemProps[\"propOverrides\"]" }
|
|
3491
|
+
},
|
|
3124
3492
|
{
|
|
3125
3493
|
"name": "classname",
|
|
3126
3494
|
"value": { "type": "DBNavigationItemProps[\"className\"]" }
|
|
@@ -3195,6 +3563,10 @@
|
|
|
3195
3563
|
"type": "boolean | string"
|
|
3196
3564
|
},
|
|
3197
3565
|
{ "name": "id", "type": "DBNavigationItemProps[\"id\"]" },
|
|
3566
|
+
{
|
|
3567
|
+
"name": "propOverrides",
|
|
3568
|
+
"type": "DBNavigationItemProps[\"propOverrides\"]"
|
|
3569
|
+
},
|
|
3198
3570
|
{
|
|
3199
3571
|
"name": "className",
|
|
3200
3572
|
"type": "DBNavigationItemProps[\"className\"]"
|
|
@@ -3268,6 +3640,10 @@
|
|
|
3268
3640
|
"name": "id",
|
|
3269
3641
|
"value": { "type": "DBNotificationProps[\"id\"]" }
|
|
3270
3642
|
},
|
|
3643
|
+
{
|
|
3644
|
+
"name": "prop-overrides",
|
|
3645
|
+
"value": { "type": "DBNotificationProps[\"propOverrides\"]" }
|
|
3646
|
+
},
|
|
3271
3647
|
{
|
|
3272
3648
|
"name": "classname",
|
|
3273
3649
|
"value": { "type": "DBNotificationProps[\"className\"]" }
|
|
@@ -3373,6 +3749,10 @@
|
|
|
3373
3749
|
"js": {
|
|
3374
3750
|
"properties": [
|
|
3375
3751
|
{ "name": "id", "type": "DBNotificationProps[\"id\"]" },
|
|
3752
|
+
{
|
|
3753
|
+
"name": "propOverrides",
|
|
3754
|
+
"type": "DBNotificationProps[\"propOverrides\"]"
|
|
3755
|
+
},
|
|
3376
3756
|
{
|
|
3377
3757
|
"name": "className",
|
|
3378
3758
|
"type": "DBNotificationProps[\"className\"]"
|
|
@@ -3482,6 +3862,10 @@
|
|
|
3482
3862
|
"value": { "type": "\"auto\" | \"fixed\"" }
|
|
3483
3863
|
},
|
|
3484
3864
|
{ "name": "id", "value": { "type": "DBPageProps[\"id\"]" } },
|
|
3865
|
+
{
|
|
3866
|
+
"name": "prop-overrides",
|
|
3867
|
+
"value": { "type": "DBPageProps[\"propOverrides\"]" }
|
|
3868
|
+
},
|
|
3485
3869
|
{
|
|
3486
3870
|
"name": "classname",
|
|
3487
3871
|
"value": { "type": "DBPageProps[\"className\"]" }
|
|
@@ -3525,6 +3909,10 @@
|
|
|
3525
3909
|
"type": "\"auto\" | \"fixed\""
|
|
3526
3910
|
},
|
|
3527
3911
|
{ "name": "id", "type": "DBPageProps[\"id\"]" },
|
|
3912
|
+
{
|
|
3913
|
+
"name": "propOverrides",
|
|
3914
|
+
"type": "DBPageProps[\"propOverrides\"]"
|
|
3915
|
+
},
|
|
3528
3916
|
{ "name": "className", "type": "DBPageProps[\"className\"]" },
|
|
3529
3917
|
{
|
|
3530
3918
|
"name": "mainClass",
|
|
@@ -3547,6 +3935,10 @@
|
|
|
3547
3935
|
"value": { "type": "\"undefined\" | \"undefined\"" }
|
|
3548
3936
|
},
|
|
3549
3937
|
{ "name": "id", "value": { "type": "DBPopoverProps[\"id\"]" } },
|
|
3938
|
+
{
|
|
3939
|
+
"name": "prop-overrides",
|
|
3940
|
+
"value": { "type": "DBPopoverProps[\"propOverrides\"]" }
|
|
3941
|
+
},
|
|
3550
3942
|
{
|
|
3551
3943
|
"name": "classname",
|
|
3552
3944
|
"value": { "type": "DBPopoverProps[\"className\"]" }
|
|
@@ -3603,6 +3995,10 @@
|
|
|
3603
3995
|
"type": "\"undefined\" | \"undefined\""
|
|
3604
3996
|
},
|
|
3605
3997
|
{ "name": "id", "type": "DBPopoverProps[\"id\"]" },
|
|
3998
|
+
{
|
|
3999
|
+
"name": "propOverrides",
|
|
4000
|
+
"type": "DBPopoverProps[\"propOverrides\"]"
|
|
4001
|
+
},
|
|
3606
4002
|
{ "name": "className", "type": "DBPopoverProps[\"className\"]" },
|
|
3607
4003
|
{
|
|
3608
4004
|
"name": "spacing",
|
|
@@ -3648,6 +4044,10 @@
|
|
|
3648
4044
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/radio/properties",
|
|
3649
4045
|
"attributes": [
|
|
3650
4046
|
{ "name": "id", "value": { "type": "DBRadioProps[\"id\"]" } },
|
|
4047
|
+
{
|
|
4048
|
+
"name": "prop-overrides",
|
|
4049
|
+
"value": { "type": "DBRadioProps[\"propOverrides\"]" }
|
|
4050
|
+
},
|
|
3651
4051
|
{
|
|
3652
4052
|
"name": "checked",
|
|
3653
4053
|
"description": "Define the radio or checkbox elements checked state",
|
|
@@ -3730,6 +4130,10 @@
|
|
|
3730
4130
|
"js": {
|
|
3731
4131
|
"properties": [
|
|
3732
4132
|
{ "name": "id", "type": "DBRadioProps[\"id\"]" },
|
|
4133
|
+
{
|
|
4134
|
+
"name": "propOverrides",
|
|
4135
|
+
"type": "DBRadioProps[\"propOverrides\"]"
|
|
4136
|
+
},
|
|
3733
4137
|
{
|
|
3734
4138
|
"name": "checked",
|
|
3735
4139
|
"description": "Define the radio or checkbox elements checked state",
|
|
@@ -3811,6 +4215,10 @@
|
|
|
3811
4215
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/section/properties",
|
|
3812
4216
|
"attributes": [
|
|
3813
4217
|
{ "name": "id", "value": { "type": "DBSectionProps[\"id\"]" } },
|
|
4218
|
+
{
|
|
4219
|
+
"name": "prop-overrides",
|
|
4220
|
+
"value": { "type": "DBSectionProps[\"propOverrides\"]" }
|
|
4221
|
+
},
|
|
3814
4222
|
{
|
|
3815
4223
|
"name": "classname",
|
|
3816
4224
|
"value": { "type": "DBSectionProps[\"className\"]" }
|
|
@@ -3840,6 +4248,10 @@
|
|
|
3840
4248
|
"js": {
|
|
3841
4249
|
"properties": [
|
|
3842
4250
|
{ "name": "id", "type": "DBSectionProps[\"id\"]" },
|
|
4251
|
+
{
|
|
4252
|
+
"name": "propOverrides",
|
|
4253
|
+
"type": "DBSectionProps[\"propOverrides\"]"
|
|
4254
|
+
},
|
|
3843
4255
|
{ "name": "className", "type": "DBSectionProps[\"className\"]" },
|
|
3844
4256
|
{
|
|
3845
4257
|
"name": "spacing",
|
|
@@ -3860,12 +4272,16 @@
|
|
|
3860
4272
|
"description": "\n---\n\n\n### **Events:**\n - **click**\n- **input**\n- **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
3861
4273
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/select/properties",
|
|
3862
4274
|
"attributes": [
|
|
3863
|
-
{ "name": "id", "value": { "type": "DBSelectProps[\"id\"]" } },
|
|
3864
4275
|
{
|
|
3865
4276
|
"name": "invalid-message",
|
|
3866
4277
|
"description": "Helper message for invalid form components",
|
|
3867
4278
|
"value": { "type": "string" }
|
|
3868
4279
|
},
|
|
4280
|
+
{ "name": "id", "value": { "type": "DBSelectProps[\"id\"]" } },
|
|
4281
|
+
{
|
|
4282
|
+
"name": "prop-overrides",
|
|
4283
|
+
"value": { "type": "DBSelectProps[\"propOverrides\"]" }
|
|
4284
|
+
},
|
|
3869
4285
|
{
|
|
3870
4286
|
"name": "message",
|
|
3871
4287
|
"description": "Optional helper message for form components",
|
|
@@ -4013,12 +4429,16 @@
|
|
|
4013
4429
|
],
|
|
4014
4430
|
"js": {
|
|
4015
4431
|
"properties": [
|
|
4016
|
-
{ "name": "id", "type": "DBSelectProps[\"id\"]" },
|
|
4017
4432
|
{
|
|
4018
4433
|
"name": "invalidMessage",
|
|
4019
4434
|
"description": "Helper message for invalid form components",
|
|
4020
4435
|
"type": "string"
|
|
4021
4436
|
},
|
|
4437
|
+
{ "name": "id", "type": "DBSelectProps[\"id\"]" },
|
|
4438
|
+
{
|
|
4439
|
+
"name": "propOverrides",
|
|
4440
|
+
"type": "DBSelectProps[\"propOverrides\"]"
|
|
4441
|
+
},
|
|
4022
4442
|
{
|
|
4023
4443
|
"name": "message",
|
|
4024
4444
|
"description": "Optional helper message for form components",
|
|
@@ -4168,6 +4588,10 @@
|
|
|
4168
4588
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/stack/properties",
|
|
4169
4589
|
"attributes": [
|
|
4170
4590
|
{ "name": "id", "value": { "type": "DBStackProps[\"id\"]" } },
|
|
4591
|
+
{
|
|
4592
|
+
"name": "prop-overrides",
|
|
4593
|
+
"value": { "type": "DBStackProps[\"propOverrides\"]" }
|
|
4594
|
+
},
|
|
4171
4595
|
{
|
|
4172
4596
|
"name": "classname",
|
|
4173
4597
|
"value": { "type": "DBStackProps[\"className\"]" }
|
|
@@ -4219,6 +4643,10 @@
|
|
|
4219
4643
|
"js": {
|
|
4220
4644
|
"properties": [
|
|
4221
4645
|
{ "name": "id", "type": "DBStackProps[\"id\"]" },
|
|
4646
|
+
{
|
|
4647
|
+
"name": "propOverrides",
|
|
4648
|
+
"type": "DBStackProps[\"propOverrides\"]"
|
|
4649
|
+
},
|
|
4222
4650
|
{ "name": "className", "type": "DBStackProps[\"className\"]" },
|
|
4223
4651
|
{
|
|
4224
4652
|
"name": "gap",
|
|
@@ -4259,7 +4687,15 @@
|
|
|
4259
4687
|
"description": "\n---\n\n\n### **Events:**\n - **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
4260
4688
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/switch/properties",
|
|
4261
4689
|
"attributes": [
|
|
4690
|
+
{
|
|
4691
|
+
"name": "invalid-message",
|
|
4692
|
+
"value": { "type": "DBSwitchProps[\"invalidMessage\"]" }
|
|
4693
|
+
},
|
|
4262
4694
|
{ "name": "id", "value": { "type": "DBSwitchProps[\"id\"]" } },
|
|
4695
|
+
{
|
|
4696
|
+
"name": "prop-overrides",
|
|
4697
|
+
"value": { "type": "DBSwitchProps[\"propOverrides\"]" }
|
|
4698
|
+
},
|
|
4263
4699
|
{
|
|
4264
4700
|
"name": "validation",
|
|
4265
4701
|
"description": "Marks an input element as invalid (red) / valid (green) / no-validation (grey). Overwrites the :user-valid selector.",
|
|
@@ -4282,10 +4718,6 @@
|
|
|
4282
4718
|
"name": "valid-message",
|
|
4283
4719
|
"value": { "type": "DBSwitchProps[\"validMessage\"]" }
|
|
4284
4720
|
},
|
|
4285
|
-
{
|
|
4286
|
-
"name": "invalid-message",
|
|
4287
|
-
"value": { "type": "DBSwitchProps[\"invalidMessage\"]" }
|
|
4288
|
-
},
|
|
4289
4721
|
{
|
|
4290
4722
|
"name": "checked",
|
|
4291
4723
|
"description": "Define the radio or checkbox elements checked state",
|
|
@@ -4382,7 +4814,15 @@
|
|
|
4382
4814
|
],
|
|
4383
4815
|
"js": {
|
|
4384
4816
|
"properties": [
|
|
4817
|
+
{
|
|
4818
|
+
"name": "invalidMessage",
|
|
4819
|
+
"type": "DBSwitchProps[\"invalidMessage\"]"
|
|
4820
|
+
},
|
|
4385
4821
|
{ "name": "id", "type": "DBSwitchProps[\"id\"]" },
|
|
4822
|
+
{
|
|
4823
|
+
"name": "propOverrides",
|
|
4824
|
+
"type": "DBSwitchProps[\"propOverrides\"]"
|
|
4825
|
+
},
|
|
4386
4826
|
{
|
|
4387
4827
|
"name": "validation",
|
|
4388
4828
|
"description": "Marks an input element as invalid (red) / valid (green) / no-validation (grey). Overwrites the :user-valid selector.",
|
|
@@ -4402,10 +4842,6 @@
|
|
|
4402
4842
|
"name": "validMessage",
|
|
4403
4843
|
"type": "DBSwitchProps[\"validMessage\"]"
|
|
4404
4844
|
},
|
|
4405
|
-
{
|
|
4406
|
-
"name": "invalidMessage",
|
|
4407
|
-
"type": "DBSwitchProps[\"invalidMessage\"]"
|
|
4408
|
-
},
|
|
4409
4845
|
{
|
|
4410
4846
|
"name": "checked",
|
|
4411
4847
|
"description": "Define the radio or checkbox elements checked state",
|
|
@@ -4521,6 +4957,10 @@
|
|
|
4521
4957
|
"value": { "type": "DBTabItemProps[\"className\"]" }
|
|
4522
4958
|
},
|
|
4523
4959
|
{ "name": "id", "value": { "type": "DBTabItemProps[\"id\"]" } },
|
|
4960
|
+
{
|
|
4961
|
+
"name": "prop-overrides",
|
|
4962
|
+
"value": { "type": "DBTabItemProps[\"propOverrides\"]" }
|
|
4963
|
+
},
|
|
4524
4964
|
{
|
|
4525
4965
|
"name": "icon-leading",
|
|
4526
4966
|
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
@@ -4598,6 +5038,10 @@
|
|
|
4598
5038
|
},
|
|
4599
5039
|
{ "name": "className", "type": "DBTabItemProps[\"className\"]" },
|
|
4600
5040
|
{ "name": "id", "type": "DBTabItemProps[\"id\"]" },
|
|
5041
|
+
{
|
|
5042
|
+
"name": "propOverrides",
|
|
5043
|
+
"type": "DBTabItemProps[\"propOverrides\"]"
|
|
5044
|
+
},
|
|
4601
5045
|
{
|
|
4602
5046
|
"name": "iconLeading",
|
|
4603
5047
|
"description": "Define an icon by its identifier (like e.g. _user_, compare to [Icons](https://design-system.deutschebahn.com/core-web/review/main/foundations/icons/overview)) to get displayed in front of the elements content.",
|
|
@@ -4668,6 +5112,10 @@
|
|
|
4668
5112
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tab-list/properties",
|
|
4669
5113
|
"attributes": [
|
|
4670
5114
|
{ "name": "id", "value": { "type": "DBTabListProps[\"id\"]" } },
|
|
5115
|
+
{
|
|
5116
|
+
"name": "prop-overrides",
|
|
5117
|
+
"value": { "type": "DBTabListProps[\"propOverrides\"]" }
|
|
5118
|
+
},
|
|
4671
5119
|
{
|
|
4672
5120
|
"name": "classname",
|
|
4673
5121
|
"value": { "type": "DBTabListProps[\"className\"]" }
|
|
@@ -4683,6 +5131,10 @@
|
|
|
4683
5131
|
"js": {
|
|
4684
5132
|
"properties": [
|
|
4685
5133
|
{ "name": "id", "type": "DBTabListProps[\"id\"]" },
|
|
5134
|
+
{
|
|
5135
|
+
"name": "propOverrides",
|
|
5136
|
+
"type": "DBTabListProps[\"propOverrides\"]"
|
|
5137
|
+
},
|
|
4686
5138
|
{ "name": "className", "type": "DBTabListProps[\"className\"]" }
|
|
4687
5139
|
],
|
|
4688
5140
|
"events": []
|
|
@@ -4698,6 +5150,10 @@
|
|
|
4698
5150
|
"value": { "type": "DBTabPanelProps[\"className\"]" }
|
|
4699
5151
|
},
|
|
4700
5152
|
{ "name": "id", "value": { "type": "DBTabPanelProps[\"id\"]" } },
|
|
5153
|
+
{
|
|
5154
|
+
"name": "prop-overrides",
|
|
5155
|
+
"value": { "type": "DBTabPanelProps[\"propOverrides\"]" }
|
|
5156
|
+
},
|
|
4701
5157
|
{
|
|
4702
5158
|
"name": "content",
|
|
4703
5159
|
"description": "The content if you don't want to use children.",
|
|
@@ -4715,6 +5171,10 @@
|
|
|
4715
5171
|
"properties": [
|
|
4716
5172
|
{ "name": "className", "type": "DBTabPanelProps[\"className\"]" },
|
|
4717
5173
|
{ "name": "id", "type": "DBTabPanelProps[\"id\"]" },
|
|
5174
|
+
{
|
|
5175
|
+
"name": "propOverrides",
|
|
5176
|
+
"type": "DBTabPanelProps[\"propOverrides\"]"
|
|
5177
|
+
},
|
|
4718
5178
|
{
|
|
4719
5179
|
"name": "content",
|
|
4720
5180
|
"description": "The content if you don't want to use children.",
|
|
@@ -4765,6 +5225,10 @@
|
|
|
4765
5225
|
"value": { "type": "number | string" }
|
|
4766
5226
|
},
|
|
4767
5227
|
{ "name": "id", "value": { "type": "DBTabsProps[\"id\"]" } },
|
|
5228
|
+
{
|
|
5229
|
+
"name": "prop-overrides",
|
|
5230
|
+
"value": { "type": "DBTabsProps[\"propOverrides\"]" }
|
|
5231
|
+
},
|
|
4768
5232
|
{
|
|
4769
5233
|
"name": "classname",
|
|
4770
5234
|
"value": { "type": "DBTabsProps[\"className\"]" }
|
|
@@ -4834,6 +5298,10 @@
|
|
|
4834
5298
|
"type": "number | string"
|
|
4835
5299
|
},
|
|
4836
5300
|
{ "name": "id", "type": "DBTabsProps[\"id\"]" },
|
|
5301
|
+
{
|
|
5302
|
+
"name": "propOverrides",
|
|
5303
|
+
"type": "DBTabsProps[\"propOverrides\"]"
|
|
5304
|
+
},
|
|
4837
5305
|
{ "name": "className", "type": "DBTabsProps[\"className\"]" },
|
|
4838
5306
|
{
|
|
4839
5307
|
"name": "alignment",
|
|
@@ -4869,12 +5337,16 @@
|
|
|
4869
5337
|
"description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
4870
5338
|
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/textarea/properties",
|
|
4871
5339
|
"attributes": [
|
|
4872
|
-
{ "name": "id", "value": { "type": "DBTextareaProps[\"id\"]" } },
|
|
4873
5340
|
{
|
|
4874
5341
|
"name": "invalid-message",
|
|
4875
5342
|
"description": "Helper message for invalid form components",
|
|
4876
5343
|
"value": { "type": "string" }
|
|
4877
5344
|
},
|
|
5345
|
+
{ "name": "id", "value": { "type": "DBTextareaProps[\"id\"]" } },
|
|
5346
|
+
{
|
|
5347
|
+
"name": "prop-overrides",
|
|
5348
|
+
"value": { "type": "DBTextareaProps[\"propOverrides\"]" }
|
|
5349
|
+
},
|
|
4878
5350
|
{
|
|
4879
5351
|
"name": "message",
|
|
4880
5352
|
"description": "Optional helper message for form components",
|
|
@@ -5060,12 +5532,16 @@
|
|
|
5060
5532
|
],
|
|
5061
5533
|
"js": {
|
|
5062
5534
|
"properties": [
|
|
5063
|
-
{ "name": "id", "type": "DBTextareaProps[\"id\"]" },
|
|
5064
5535
|
{
|
|
5065
5536
|
"name": "invalidMessage",
|
|
5066
5537
|
"description": "Helper message for invalid form components",
|
|
5067
5538
|
"type": "string"
|
|
5068
5539
|
},
|
|
5540
|
+
{ "name": "id", "type": "DBTextareaProps[\"id\"]" },
|
|
5541
|
+
{
|
|
5542
|
+
"name": "propOverrides",
|
|
5543
|
+
"type": "DBTextareaProps[\"propOverrides\"]"
|
|
5544
|
+
},
|
|
5069
5545
|
{
|
|
5070
5546
|
"name": "message",
|
|
5071
5547
|
"description": "Optional helper message for form components",
|
|
@@ -5247,6 +5723,30 @@
|
|
|
5247
5723
|
]
|
|
5248
5724
|
}
|
|
5249
5725
|
},
|
|
5726
|
+
{
|
|
5727
|
+
"name": "accordion-behavior",
|
|
5728
|
+
"description": "\n---\n",
|
|
5729
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/accordion-behavior/properties",
|
|
5730
|
+
"attributes": [],
|
|
5731
|
+
"events": [],
|
|
5732
|
+
"js": { "properties": [], "events": [] }
|
|
5733
|
+
},
|
|
5734
|
+
{
|
|
5735
|
+
"name": "accordion-density",
|
|
5736
|
+
"description": "\n---\n",
|
|
5737
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/accordion-density/properties",
|
|
5738
|
+
"attributes": [],
|
|
5739
|
+
"events": [],
|
|
5740
|
+
"js": { "properties": [], "events": [] }
|
|
5741
|
+
},
|
|
5742
|
+
{
|
|
5743
|
+
"name": "accordion-variant",
|
|
5744
|
+
"description": "\n---\n",
|
|
5745
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/accordion-variant/properties",
|
|
5746
|
+
"attributes": [],
|
|
5747
|
+
"events": [],
|
|
5748
|
+
"js": { "properties": [], "events": [] }
|
|
5749
|
+
},
|
|
5250
5750
|
{
|
|
5251
5751
|
"name": "card-wrapper-showcase",
|
|
5252
5752
|
"description": "\n---\n",
|
|
@@ -5306,30 +5806,6 @@
|
|
|
5306
5806
|
"events": []
|
|
5307
5807
|
}
|
|
5308
5808
|
},
|
|
5309
|
-
{
|
|
5310
|
-
"name": "accordion-behavior",
|
|
5311
|
-
"description": "\n---\n",
|
|
5312
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/accordion-behavior/properties",
|
|
5313
|
-
"attributes": [],
|
|
5314
|
-
"events": [],
|
|
5315
|
-
"js": { "properties": [], "events": [] }
|
|
5316
|
-
},
|
|
5317
|
-
{
|
|
5318
|
-
"name": "accordion-density",
|
|
5319
|
-
"description": "\n---\n",
|
|
5320
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/accordion-density/properties",
|
|
5321
|
-
"attributes": [],
|
|
5322
|
-
"events": [],
|
|
5323
|
-
"js": { "properties": [], "events": [] }
|
|
5324
|
-
},
|
|
5325
|
-
{
|
|
5326
|
-
"name": "accordion-variant",
|
|
5327
|
-
"description": "\n---\n",
|
|
5328
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/accordion-variant/properties",
|
|
5329
|
-
"attributes": [],
|
|
5330
|
-
"events": [],
|
|
5331
|
-
"js": { "properties": [], "events": [] }
|
|
5332
|
-
},
|
|
5333
5809
|
{
|
|
5334
5810
|
"name": "accordion-showcase",
|
|
5335
5811
|
"description": "\n---\n",
|
|
@@ -5768,6 +6244,107 @@
|
|
|
5768
6244
|
"events": []
|
|
5769
6245
|
}
|
|
5770
6246
|
},
|
|
6247
|
+
{
|
|
6248
|
+
"name": "custom-button-checkbox",
|
|
6249
|
+
"description": "\n---\n",
|
|
6250
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-checkbox/properties",
|
|
6251
|
+
"attributes": [],
|
|
6252
|
+
"events": [],
|
|
6253
|
+
"js": { "properties": [], "events": [] }
|
|
6254
|
+
},
|
|
6255
|
+
{
|
|
6256
|
+
"name": "custom-button-density",
|
|
6257
|
+
"description": "\n---\n",
|
|
6258
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-density/properties",
|
|
6259
|
+
"attributes": [],
|
|
6260
|
+
"events": [],
|
|
6261
|
+
"js": { "properties": [], "events": [] }
|
|
6262
|
+
},
|
|
6263
|
+
{
|
|
6264
|
+
"name": "custom-button-disabled",
|
|
6265
|
+
"description": "\n---\n",
|
|
6266
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-disabled/properties",
|
|
6267
|
+
"attributes": [],
|
|
6268
|
+
"events": [],
|
|
6269
|
+
"js": { "properties": [], "events": [] }
|
|
6270
|
+
},
|
|
6271
|
+
{
|
|
6272
|
+
"name": "custom-button-multi-line-text",
|
|
6273
|
+
"description": "\n---\n",
|
|
6274
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-multi-line-text/properties",
|
|
6275
|
+
"attributes": [],
|
|
6276
|
+
"events": [],
|
|
6277
|
+
"js": { "properties": [], "events": [] }
|
|
6278
|
+
},
|
|
6279
|
+
{
|
|
6280
|
+
"name": "custom-button-no-text",
|
|
6281
|
+
"description": "\n---\n",
|
|
6282
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-no-text/properties",
|
|
6283
|
+
"attributes": [],
|
|
6284
|
+
"events": [],
|
|
6285
|
+
"js": { "properties": [], "events": [] }
|
|
6286
|
+
},
|
|
6287
|
+
{
|
|
6288
|
+
"name": "custom-button-show-icon-leading",
|
|
6289
|
+
"description": "\n---\n",
|
|
6290
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-show-icon-leading/properties",
|
|
6291
|
+
"attributes": [],
|
|
6292
|
+
"events": [],
|
|
6293
|
+
"js": { "properties": [], "events": [] }
|
|
6294
|
+
},
|
|
6295
|
+
{
|
|
6296
|
+
"name": "custom-button-show-icon-trailing",
|
|
6297
|
+
"description": "\n---\n",
|
|
6298
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-show-icon-trailing/properties",
|
|
6299
|
+
"attributes": [],
|
|
6300
|
+
"events": [],
|
|
6301
|
+
"js": { "properties": [], "events": [] }
|
|
6302
|
+
},
|
|
6303
|
+
{
|
|
6304
|
+
"name": "custom-button-size",
|
|
6305
|
+
"description": "\n---\n",
|
|
6306
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-size/properties",
|
|
6307
|
+
"attributes": [],
|
|
6308
|
+
"events": [],
|
|
6309
|
+
"js": { "properties": [], "events": [] }
|
|
6310
|
+
},
|
|
6311
|
+
{
|
|
6312
|
+
"name": "custom-button-variant",
|
|
6313
|
+
"description": "\n---\n",
|
|
6314
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-variant/properties",
|
|
6315
|
+
"attributes": [],
|
|
6316
|
+
"events": [],
|
|
6317
|
+
"js": { "properties": [], "events": [] }
|
|
6318
|
+
},
|
|
6319
|
+
{
|
|
6320
|
+
"name": "custom-button-width",
|
|
6321
|
+
"description": "\n---\n",
|
|
6322
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-width/properties",
|
|
6323
|
+
"attributes": [],
|
|
6324
|
+
"events": [],
|
|
6325
|
+
"js": { "properties": [], "events": [] }
|
|
6326
|
+
},
|
|
6327
|
+
{
|
|
6328
|
+
"name": "custom-button-showcase",
|
|
6329
|
+
"description": "\n---\n",
|
|
6330
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/custom-button-showcase/properties",
|
|
6331
|
+
"attributes": [
|
|
6332
|
+
{
|
|
6333
|
+
"name": "is-patternhub",
|
|
6334
|
+
"value": { "type": "PatternhubProps[\"isPatternhub\"]" }
|
|
6335
|
+
}
|
|
6336
|
+
],
|
|
6337
|
+
"events": [],
|
|
6338
|
+
"js": {
|
|
6339
|
+
"properties": [
|
|
6340
|
+
{
|
|
6341
|
+
"name": "isPatternhub",
|
|
6342
|
+
"type": "PatternhubProps[\"isPatternhub\"]"
|
|
6343
|
+
}
|
|
6344
|
+
],
|
|
6345
|
+
"events": []
|
|
6346
|
+
}
|
|
6347
|
+
},
|
|
5771
6348
|
{
|
|
5772
6349
|
"name": "custom-select-density",
|
|
5773
6350
|
"description": "\n---\n",
|
|
@@ -6518,35 +7095,6 @@
|
|
|
6518
7095
|
"events": []
|
|
6519
7096
|
}
|
|
6520
7097
|
},
|
|
6521
|
-
{
|
|
6522
|
-
"name": "navigation-density",
|
|
6523
|
-
"description": "\n---\n",
|
|
6524
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/navigation-density/properties",
|
|
6525
|
-
"attributes": [],
|
|
6526
|
-
"events": [],
|
|
6527
|
-
"js": { "properties": [], "events": [] }
|
|
6528
|
-
},
|
|
6529
|
-
{
|
|
6530
|
-
"name": "navigation-showcase",
|
|
6531
|
-
"description": "\n---\n",
|
|
6532
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/navigation-showcase/properties",
|
|
6533
|
-
"attributes": [
|
|
6534
|
-
{
|
|
6535
|
-
"name": "is-patternhub",
|
|
6536
|
-
"value": { "type": "PatternhubProps[\"isPatternhub\"]" }
|
|
6537
|
-
}
|
|
6538
|
-
],
|
|
6539
|
-
"events": [],
|
|
6540
|
-
"js": {
|
|
6541
|
-
"properties": [
|
|
6542
|
-
{
|
|
6543
|
-
"name": "isPatternhub",
|
|
6544
|
-
"type": "PatternhubProps[\"isPatternhub\"]"
|
|
6545
|
-
}
|
|
6546
|
-
],
|
|
6547
|
-
"events": []
|
|
6548
|
-
}
|
|
6549
|
-
},
|
|
6550
7098
|
{
|
|
6551
7099
|
"name": "navigation-item-active",
|
|
6552
7100
|
"description": "\n---\n",
|
|
@@ -6624,6 +7172,35 @@
|
|
|
6624
7172
|
"events": []
|
|
6625
7173
|
}
|
|
6626
7174
|
},
|
|
7175
|
+
{
|
|
7176
|
+
"name": "navigation-density",
|
|
7177
|
+
"description": "\n---\n",
|
|
7178
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/navigation-density/properties",
|
|
7179
|
+
"attributes": [],
|
|
7180
|
+
"events": [],
|
|
7181
|
+
"js": { "properties": [], "events": [] }
|
|
7182
|
+
},
|
|
7183
|
+
{
|
|
7184
|
+
"name": "navigation-showcase",
|
|
7185
|
+
"description": "\n---\n",
|
|
7186
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/navigation-showcase/properties",
|
|
7187
|
+
"attributes": [
|
|
7188
|
+
{
|
|
7189
|
+
"name": "is-patternhub",
|
|
7190
|
+
"value": { "type": "PatternhubProps[\"isPatternhub\"]" }
|
|
7191
|
+
}
|
|
7192
|
+
],
|
|
7193
|
+
"events": [],
|
|
7194
|
+
"js": {
|
|
7195
|
+
"properties": [
|
|
7196
|
+
{
|
|
7197
|
+
"name": "isPatternhub",
|
|
7198
|
+
"type": "PatternhubProps[\"isPatternhub\"]"
|
|
7199
|
+
}
|
|
7200
|
+
],
|
|
7201
|
+
"events": []
|
|
7202
|
+
}
|
|
7203
|
+
},
|
|
6627
7204
|
{
|
|
6628
7205
|
"name": "notification-closeable",
|
|
6629
7206
|
"description": "\n---\n",
|
|
@@ -7263,27 +7840,6 @@
|
|
|
7263
7840
|
"events": []
|
|
7264
7841
|
}
|
|
7265
7842
|
},
|
|
7266
|
-
{
|
|
7267
|
-
"name": "switch-showcase",
|
|
7268
|
-
"description": "\n---\n",
|
|
7269
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/switch-showcase/properties",
|
|
7270
|
-
"attributes": [
|
|
7271
|
-
{
|
|
7272
|
-
"name": "is-patternhub",
|
|
7273
|
-
"value": { "type": "PatternhubProps[\"isPatternhub\"]" }
|
|
7274
|
-
}
|
|
7275
|
-
],
|
|
7276
|
-
"events": [],
|
|
7277
|
-
"js": {
|
|
7278
|
-
"properties": [
|
|
7279
|
-
{
|
|
7280
|
-
"name": "isPatternhub",
|
|
7281
|
-
"type": "PatternhubProps[\"isPatternhub\"]"
|
|
7282
|
-
}
|
|
7283
|
-
],
|
|
7284
|
-
"events": []
|
|
7285
|
-
}
|
|
7286
|
-
},
|
|
7287
7843
|
{
|
|
7288
7844
|
"name": "tab-item-behavior",
|
|
7289
7845
|
"description": "\n---\n",
|
|
@@ -7332,6 +7888,27 @@
|
|
|
7332
7888
|
"events": [],
|
|
7333
7889
|
"js": { "properties": [], "events": [] }
|
|
7334
7890
|
},
|
|
7891
|
+
{
|
|
7892
|
+
"name": "switch-showcase",
|
|
7893
|
+
"description": "\n---\n",
|
|
7894
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/switch-showcase/properties",
|
|
7895
|
+
"attributes": [
|
|
7896
|
+
{
|
|
7897
|
+
"name": "is-patternhub",
|
|
7898
|
+
"value": { "type": "PatternhubProps[\"isPatternhub\"]" }
|
|
7899
|
+
}
|
|
7900
|
+
],
|
|
7901
|
+
"events": [],
|
|
7902
|
+
"js": {
|
|
7903
|
+
"properties": [
|
|
7904
|
+
{
|
|
7905
|
+
"name": "isPatternhub",
|
|
7906
|
+
"type": "PatternhubProps[\"isPatternhub\"]"
|
|
7907
|
+
}
|
|
7908
|
+
],
|
|
7909
|
+
"events": []
|
|
7910
|
+
}
|
|
7911
|
+
},
|
|
7335
7912
|
{
|
|
7336
7913
|
"name": "tab-item-showcase",
|
|
7337
7914
|
"description": "\n---\n",
|
|
@@ -7531,6 +8108,62 @@
|
|
|
7531
8108
|
"events": []
|
|
7532
8109
|
}
|
|
7533
8110
|
},
|
|
8111
|
+
{
|
|
8112
|
+
"name": "tooltip-animation",
|
|
8113
|
+
"description": "\n---\n",
|
|
8114
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-animation/properties",
|
|
8115
|
+
"attributes": [],
|
|
8116
|
+
"events": [],
|
|
8117
|
+
"js": { "properties": [], "events": [] }
|
|
8118
|
+
},
|
|
8119
|
+
{
|
|
8120
|
+
"name": "tooltip-delay",
|
|
8121
|
+
"description": "\n---\n",
|
|
8122
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-delay/properties",
|
|
8123
|
+
"attributes": [],
|
|
8124
|
+
"events": [],
|
|
8125
|
+
"js": { "properties": [], "events": [] }
|
|
8126
|
+
},
|
|
8127
|
+
{
|
|
8128
|
+
"name": "tooltip-density",
|
|
8129
|
+
"description": "\n---\n",
|
|
8130
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-density/properties",
|
|
8131
|
+
"attributes": [],
|
|
8132
|
+
"events": [],
|
|
8133
|
+
"js": { "properties": [], "events": [] }
|
|
8134
|
+
},
|
|
8135
|
+
{
|
|
8136
|
+
"name": "tooltip-emphasis",
|
|
8137
|
+
"description": "\n---\n",
|
|
8138
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-emphasis/properties",
|
|
8139
|
+
"attributes": [],
|
|
8140
|
+
"events": [],
|
|
8141
|
+
"js": { "properties": [], "events": [] }
|
|
8142
|
+
},
|
|
8143
|
+
{
|
|
8144
|
+
"name": "tooltip-placement",
|
|
8145
|
+
"description": "\n---\n",
|
|
8146
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-placement/properties",
|
|
8147
|
+
"attributes": [],
|
|
8148
|
+
"events": [],
|
|
8149
|
+
"js": { "properties": [], "events": [] }
|
|
8150
|
+
},
|
|
8151
|
+
{
|
|
8152
|
+
"name": "tooltip-show-arrow",
|
|
8153
|
+
"description": "\n---\n",
|
|
8154
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-show-arrow/properties",
|
|
8155
|
+
"attributes": [],
|
|
8156
|
+
"events": [],
|
|
8157
|
+
"js": { "properties": [], "events": [] }
|
|
8158
|
+
},
|
|
8159
|
+
{
|
|
8160
|
+
"name": "tooltip-width",
|
|
8161
|
+
"description": "\n---\n",
|
|
8162
|
+
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-width/properties",
|
|
8163
|
+
"attributes": [],
|
|
8164
|
+
"events": [],
|
|
8165
|
+
"js": { "properties": [], "events": [] }
|
|
8166
|
+
},
|
|
7534
8167
|
{
|
|
7535
8168
|
"name": "textarea-density",
|
|
7536
8169
|
"description": "\n---\n",
|
|
@@ -7664,62 +8297,6 @@
|
|
|
7664
8297
|
"events": []
|
|
7665
8298
|
}
|
|
7666
8299
|
},
|
|
7667
|
-
{
|
|
7668
|
-
"name": "tooltip-animation",
|
|
7669
|
-
"description": "\n---\n",
|
|
7670
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-animation/properties",
|
|
7671
|
-
"attributes": [],
|
|
7672
|
-
"events": [],
|
|
7673
|
-
"js": { "properties": [], "events": [] }
|
|
7674
|
-
},
|
|
7675
|
-
{
|
|
7676
|
-
"name": "tooltip-delay",
|
|
7677
|
-
"description": "\n---\n",
|
|
7678
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-delay/properties",
|
|
7679
|
-
"attributes": [],
|
|
7680
|
-
"events": [],
|
|
7681
|
-
"js": { "properties": [], "events": [] }
|
|
7682
|
-
},
|
|
7683
|
-
{
|
|
7684
|
-
"name": "tooltip-density",
|
|
7685
|
-
"description": "\n---\n",
|
|
7686
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-density/properties",
|
|
7687
|
-
"attributes": [],
|
|
7688
|
-
"events": [],
|
|
7689
|
-
"js": { "properties": [], "events": [] }
|
|
7690
|
-
},
|
|
7691
|
-
{
|
|
7692
|
-
"name": "tooltip-emphasis",
|
|
7693
|
-
"description": "\n---\n",
|
|
7694
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-emphasis/properties",
|
|
7695
|
-
"attributes": [],
|
|
7696
|
-
"events": [],
|
|
7697
|
-
"js": { "properties": [], "events": [] }
|
|
7698
|
-
},
|
|
7699
|
-
{
|
|
7700
|
-
"name": "tooltip-placement",
|
|
7701
|
-
"description": "\n---\n",
|
|
7702
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-placement/properties",
|
|
7703
|
-
"attributes": [],
|
|
7704
|
-
"events": [],
|
|
7705
|
-
"js": { "properties": [], "events": [] }
|
|
7706
|
-
},
|
|
7707
|
-
{
|
|
7708
|
-
"name": "tooltip-show-arrow",
|
|
7709
|
-
"description": "\n---\n",
|
|
7710
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-show-arrow/properties",
|
|
7711
|
-
"attributes": [],
|
|
7712
|
-
"events": [],
|
|
7713
|
-
"js": { "properties": [], "events": [] }
|
|
7714
|
-
},
|
|
7715
|
-
{
|
|
7716
|
-
"name": "tooltip-width",
|
|
7717
|
-
"description": "\n---\n",
|
|
7718
|
-
"doc-url": "https://design-system.deutschebahn.com/core-web/review/main/components/tooltip-width/properties",
|
|
7719
|
-
"attributes": [],
|
|
7720
|
-
"events": [],
|
|
7721
|
-
"js": { "properties": [], "events": [] }
|
|
7722
|
-
},
|
|
7723
8300
|
{
|
|
7724
8301
|
"name": "tooltip-showcase",
|
|
7725
8302
|
"description": "\n---\n",
|