@db-ux/wc-core-components 4.4.2 → 4.5.0
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 +20 -0
- package/dist/cjs/db-accordion-item.cjs.entry.js +11 -6
- package/dist/cjs/db-accordion.cjs.entry.js +12 -8
- package/dist/cjs/db-badge.cjs.entry.js +11 -7
- package/dist/cjs/db-brand.cjs.entry.js +11 -7
- package/dist/cjs/db-button.cjs.entry.js +11 -7
- package/dist/cjs/db-card.cjs.entry.js +11 -6
- package/dist/cjs/db-checkbox.cjs.entry.js +59 -36
- package/dist/cjs/db-custom-button.cjs.entry.js +57 -0
- package/dist/cjs/db-custom-select-dropdown_5.cjs.entry.js +89 -47
- package/dist/cjs/db-custom-select-form-field.cjs.entry.js +11 -6
- package/dist/cjs/db-custom-select.cjs.entry.js +133 -110
- package/dist/cjs/db-divider.cjs.entry.js +11 -6
- package/dist/cjs/db-drawer.cjs.entry.js +12 -8
- package/dist/cjs/db-header.cjs.entry.js +13 -9
- package/dist/cjs/db-icon.cjs.entry.js +11 -6
- package/dist/cjs/db-infotext.cjs.entry.js +11 -7
- package/dist/cjs/db-link.cjs.entry.js +11 -7
- package/dist/cjs/db-navigation-item.cjs.entry.js +13 -9
- package/dist/cjs/db-navigation.cjs.entry.js +11 -6
- package/dist/cjs/db-notification.cjs.entry.js +12 -8
- package/dist/cjs/db-page.cjs.entry.js +11 -6
- package/dist/cjs/db-popover.cjs.entry.js +14 -10
- package/dist/cjs/db-radio.cjs.entry.js +39 -16
- package/dist/cjs/db-section.cjs.entry.js +11 -6
- package/dist/cjs/db-select.cjs.entry.js +54 -31
- package/dist/cjs/db-stack.cjs.entry.js +11 -6
- package/dist/cjs/db-switch.cjs.entry.js +64 -24
- package/dist/cjs/db-tab-item_3.cjs.entry.js +29 -15
- package/dist/cjs/db-tabs.cjs.entry.js +12 -8
- package/dist/cjs/db-textarea.cjs.entry.js +52 -29
- package/dist/cjs/db-tooltip.cjs.entry.js +25 -12
- 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-ogUqz72V.js → floating-components-pYaTeNhp.js} +65 -15
- 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-CEqZnn9s.js → index-CSMPhlzz.js} +2 -2
- package/dist/cjs/index.cjs.js +5 -5
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/{navigation-DauGE-qj.js → navigation-BztJmEHf.js} +1 -1
- package/dist/collection/collection-manifest.json +2 -1
- package/dist/collection/components/accordion/accordion.js +34 -6
- package/dist/collection/components/accordion-item/accordion-item.js +33 -4
- package/dist/collection/components/badge/badge.js +60 -6
- package/dist/collection/components/brand/brand.js +33 -5
- package/dist/collection/components/button/button.js +59 -5
- package/dist/collection/components/card/card.js +33 -4
- package/dist/collection/components/checkbox/checkbox.js +87 -40
- 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 +157 -110
- package/dist/collection/components/custom-select-dropdown/custom-select-dropdown.js +33 -4
- package/dist/collection/components/custom-select-form-field/custom-select-form-field.js +33 -4
- package/dist/collection/components/custom-select-list/custom-select-list.js +33 -4
- package/dist/collection/components/custom-select-list-item/custom-select-list-item.js +33 -4
- package/dist/collection/components/divider/divider.js +33 -4
- package/dist/collection/components/drawer/drawer.js +34 -6
- package/dist/collection/components/header/header.js +33 -5
- package/dist/collection/components/icon/icon.js +33 -4
- package/dist/collection/components/infotext/infotext.js +59 -5
- package/dist/collection/components/input/input.js +80 -33
- package/dist/collection/components/link/link.js +33 -5
- package/dist/collection/components/navigation/navigation.js +33 -4
- package/dist/collection/components/navigation-item/navigation-item.js +33 -5
- package/dist/collection/components/notification/notification.js +34 -6
- package/dist/collection/components/page/page.js +33 -4
- package/dist/collection/components/popover/popover.js +34 -6
- package/dist/collection/components/radio/radio.js +60 -13
- package/dist/collection/components/section/section.js +33 -4
- package/dist/collection/components/select/select.js +81 -34
- package/dist/collection/components/stack/stack.js +33 -4
- package/dist/collection/components/switch/switch.js +118 -50
- package/dist/collection/components/tab-item/tab-item.js +33 -5
- package/dist/collection/components/tab-list/tab-list.js +33 -4
- package/dist/collection/components/tab-panel/tab-panel.js +33 -4
- package/dist/collection/components/tabs/tabs.js +34 -6
- package/dist/collection/components/tag/tag.js +33 -5
- package/dist/collection/components/textarea/textarea.js +79 -32
- package/dist/collection/components/tooltip/tooltip.js +71 -8
- package/dist/collection/index.js +2 -0
- package/dist/collection/utils/floating-components.js +65 -15
- package/dist/collection/utils/index.js +6 -7
- package/dist/custom-elements.json +19735 -1796
- package/dist/db-ux/db-ux.esm.js +1 -1
- package/dist/db-ux/index.esm.js +1 -1
- package/dist/db-ux/p-00df7d53.entry.js +1 -0
- package/dist/db-ux/p-064ddad6.entry.js +1 -0
- package/dist/db-ux/p-0ff173fb.entry.js +1 -0
- package/dist/db-ux/p-1519dbbb.entry.js +1 -0
- package/dist/db-ux/p-16281dcb.entry.js +1 -0
- package/dist/db-ux/p-27eb6e88.entry.js +1 -0
- package/dist/db-ux/p-2898ebe6.entry.js +1 -0
- package/dist/db-ux/p-2e940d2e.entry.js +1 -0
- package/dist/db-ux/p-309259be.entry.js +1 -0
- package/dist/db-ux/p-4183b8e1.entry.js +1 -0
- package/dist/db-ux/p-4284c37f.entry.js +1 -0
- package/dist/db-ux/p-432ceb90.entry.js +1 -0
- package/dist/db-ux/p-503d5103.entry.js +1 -0
- package/dist/db-ux/p-6794144b.entry.js +1 -0
- package/dist/db-ux/p-6cb4232d.entry.js +1 -0
- package/dist/db-ux/p-6da70f61.entry.js +1 -0
- package/dist/db-ux/p-766057ea.entry.js +1 -0
- package/dist/db-ux/p-7a146dee.entry.js +1 -0
- package/dist/db-ux/p-7e274359.entry.js +1 -0
- package/dist/db-ux/p-Bs7RfNRP.js +2 -0
- 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-D_roHmuC.js +1 -0
- package/dist/db-ux/p-DfYL98sI.js +1 -0
- package/dist/db-ux/p-aad9c604.entry.js +1 -0
- package/dist/db-ux/p-ad3d2cff.entry.js +1 -0
- package/dist/db-ux/p-b218b08b.entry.js +1 -0
- package/dist/db-ux/p-bfe27311.entry.js +1 -0
- package/dist/db-ux/p-c1cf7ea4.entry.js +1 -0
- package/dist/db-ux/{p-sP2NlPcu.js → p-cNk4ImpW.js} +1 -1
- package/dist/db-ux/p-cd8557dd.entry.js +1 -0
- package/dist/db-ux/p-d2674cff.entry.js +1 -0
- package/dist/db-ux/p-d4e79c33.entry.js +1 -0
- package/dist/db-ux/p-e19f2640.entry.js +1 -0
- package/dist/db-ux/p-e3def528.entry.js +1 -0
- package/dist/db-ux/p-e6b17374.entry.js +1 -0
- package/dist/db-ux/p-ea7219af.entry.js +1 -0
- package/dist/db-ux/p-xkoBSP8R.js +1 -0
- package/dist/esm/db-accordion-item.entry.js +11 -6
- package/dist/esm/db-accordion.entry.js +12 -8
- package/dist/esm/db-badge.entry.js +11 -7
- package/dist/esm/db-brand.entry.js +11 -7
- package/dist/esm/db-button.entry.js +11 -7
- package/dist/esm/db-card.entry.js +11 -6
- package/dist/esm/db-checkbox.entry.js +60 -37
- package/dist/esm/db-custom-button.entry.js +55 -0
- package/dist/esm/db-custom-select-dropdown_5.entry.js +90 -48
- package/dist/esm/db-custom-select-form-field.entry.js +11 -6
- package/dist/esm/db-custom-select.entry.js +134 -111
- package/dist/esm/db-divider.entry.js +11 -6
- package/dist/esm/db-drawer.entry.js +12 -8
- package/dist/esm/db-header.entry.js +13 -9
- package/dist/esm/db-icon.entry.js +11 -6
- package/dist/esm/db-infotext.entry.js +11 -7
- package/dist/esm/db-link.entry.js +11 -7
- package/dist/esm/db-navigation-item.entry.js +13 -9
- package/dist/esm/db-navigation.entry.js +11 -6
- package/dist/esm/db-notification.entry.js +12 -8
- package/dist/esm/db-page.entry.js +11 -6
- package/dist/esm/db-popover.entry.js +14 -10
- package/dist/esm/db-radio.entry.js +39 -16
- package/dist/esm/db-section.entry.js +11 -6
- package/dist/esm/db-select.entry.js +55 -32
- package/dist/esm/db-stack.entry.js +11 -6
- package/dist/esm/db-switch.entry.js +64 -24
- package/dist/esm/db-tab-item_3.entry.js +29 -15
- package/dist/esm/db-tabs.entry.js +12 -8
- package/dist/esm/db-textarea.entry.js +53 -30
- package/dist/esm/db-tooltip.entry.js +25 -12
- 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-G-TursYV.js → floating-components-DfYL98sI.js} +65 -15
- package/dist/esm/{form-components-BLsiOrPI.js → form-components-D6LQfJvq.js} +1 -1
- package/dist/esm/{index-BrThqi62.js → index-Bs7RfNRP.js} +2 -2
- 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--UdC9CzO.js → navigation-DgsMCdfn.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/model.d.ts +1 -1
- 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 +146 -6
- package/dist/types/index.d.ts +2 -0
- package/dist/types/shared/model.d.ts +17 -3
- package/dist/types/stencil-public-runtime.d.ts +3 -1
- package/dist/vscode.html-custom-data.json +1981 -245
- package/dist/web-types.json +3299 -648
- package/package.json +4 -4
- package/dist/db-ux/p-07bf3657.entry.js +0 -1
- package/dist/db-ux/p-0a89cbcd.entry.js +0 -1
- package/dist/db-ux/p-15539d9d.entry.js +0 -1
- package/dist/db-ux/p-41cb4673.entry.js +0 -1
- package/dist/db-ux/p-460073dd.entry.js +0 -1
- package/dist/db-ux/p-4a9b9909.entry.js +0 -1
- package/dist/db-ux/p-4ec09cf1.entry.js +0 -1
- package/dist/db-ux/p-57205dfd.entry.js +0 -1
- package/dist/db-ux/p-5775bf7a.entry.js +0 -1
- package/dist/db-ux/p-5bcde39a.entry.js +0 -1
- package/dist/db-ux/p-6341aaa9.entry.js +0 -1
- package/dist/db-ux/p-64573104.entry.js +0 -1
- package/dist/db-ux/p-6b63156d.entry.js +0 -1
- package/dist/db-ux/p-70822a27.entry.js +0 -1
- package/dist/db-ux/p-710a430d.entry.js +0 -1
- package/dist/db-ux/p-72d712b0.entry.js +0 -1
- package/dist/db-ux/p-7b7f4d03.entry.js +0 -1
- package/dist/db-ux/p-7bd4c573.entry.js +0 -1
- package/dist/db-ux/p-819cf20a.entry.js +0 -1
- package/dist/db-ux/p-87fdbcfb.entry.js +0 -1
- package/dist/db-ux/p-9051e26c.entry.js +0 -1
- package/dist/db-ux/p-934a708c.entry.js +0 -1
- package/dist/db-ux/p-9ffa5c48.entry.js +0 -1
- package/dist/db-ux/p-BhXdfCpU.js +0 -1
- package/dist/db-ux/p-BrThqi62.js +0 -2
- package/dist/db-ux/p-C4x0SOcx.js +0 -1
- package/dist/db-ux/p-G-TursYV.js +0 -1
- package/dist/db-ux/p-RHqkTr-_.js +0 -1
- package/dist/db-ux/p-a9af70eb.entry.js +0 -1
- package/dist/db-ux/p-aa8383a3.entry.js +0 -1
- package/dist/db-ux/p-ba1f69bd.entry.js +0 -1
- package/dist/db-ux/p-d273b998.entry.js +0 -1
- package/dist/db-ux/p-da4ee6ee.entry.js +0 -1
- package/dist/db-ux/p-e584e927.entry.js +0 -1
- package/dist/db-ux/p-fe185f98.entry.js +0 -1
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"tags": [
|
|
5
5
|
{
|
|
6
6
|
"name": "db-accordion-item",
|
|
7
|
-
"description": "\n---\n\n\n### **Events:**\n - **toggle**\n\n### **Slots:**\n - **children** - default slot\n- **headline** - Title of the accordion-item as slot",
|
|
7
|
+
"description": "\n---\n\n\n### **Events:**\n - **toggle**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **headline** - Title of the accordion-item as slot",
|
|
8
8
|
"attributes": [
|
|
9
9
|
{
|
|
10
10
|
"name": "default-open",
|
|
@@ -18,13 +18,15 @@
|
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
20
|
"name": "id",
|
|
21
|
-
"
|
|
22
|
-
|
|
21
|
+
"values": [{ "name": "DBAccordionItemProps[\"id\"]" }]
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "prop-overrides",
|
|
25
|
+
"values": [{ "name": "DBAccordionItemProps[\"propOverrides\"]" }]
|
|
23
26
|
},
|
|
24
27
|
{
|
|
25
28
|
"name": "classname",
|
|
26
|
-
"
|
|
27
|
-
"values": []
|
|
29
|
+
"values": [{ "name": "DBAccordionItemProps[\"className\"]" }]
|
|
28
30
|
},
|
|
29
31
|
{
|
|
30
32
|
"name": "disabled",
|
|
@@ -46,7 +48,7 @@
|
|
|
46
48
|
},
|
|
47
49
|
{
|
|
48
50
|
"name": "db-accordion",
|
|
49
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
51
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
50
52
|
"attributes": [
|
|
51
53
|
{
|
|
52
54
|
"name": "name",
|
|
@@ -68,15 +70,14 @@
|
|
|
68
70
|
"description": "Alternative to pass in a simple representation of accordion items",
|
|
69
71
|
"values": [{ "name": "DBAccordionItemDefaultProps[]" }]
|
|
70
72
|
},
|
|
73
|
+
{ "name": "id", "values": [{ "name": "DBAccordionProps[\"id\"]" }] },
|
|
71
74
|
{
|
|
72
|
-
"name": "
|
|
73
|
-
"
|
|
74
|
-
"values": []
|
|
75
|
+
"name": "prop-overrides",
|
|
76
|
+
"values": [{ "name": "DBAccordionProps[\"propOverrides\"]" }]
|
|
75
77
|
},
|
|
76
78
|
{
|
|
77
79
|
"name": "classname",
|
|
78
|
-
"
|
|
79
|
-
"values": []
|
|
80
|
+
"values": [{ "name": "DBAccordionProps[\"className\"]" }]
|
|
80
81
|
},
|
|
81
82
|
{
|
|
82
83
|
"name": "variant",
|
|
@@ -88,7 +89,7 @@
|
|
|
88
89
|
},
|
|
89
90
|
{
|
|
90
91
|
"name": "db-badge",
|
|
91
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
92
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
92
93
|
"attributes": [
|
|
93
94
|
{
|
|
94
95
|
"name": "placement",
|
|
@@ -103,15 +104,14 @@
|
|
|
103
104
|
{ "name": "corner-bottom-right" }
|
|
104
105
|
]
|
|
105
106
|
},
|
|
107
|
+
{ "name": "id", "values": [{ "name": "DBBadgeProps[\"id\"]" }] },
|
|
106
108
|
{
|
|
107
|
-
"name": "
|
|
108
|
-
"
|
|
109
|
-
"values": []
|
|
109
|
+
"name": "prop-overrides",
|
|
110
|
+
"values": [{ "name": "DBBadgeProps[\"propOverrides\"]" }]
|
|
110
111
|
},
|
|
111
112
|
{
|
|
112
113
|
"name": "classname",
|
|
113
|
-
"
|
|
114
|
-
"values": []
|
|
114
|
+
"values": [{ "name": "DBBadgeProps[\"className\"]" }]
|
|
115
115
|
},
|
|
116
116
|
{
|
|
117
117
|
"name": "semantic",
|
|
@@ -135,6 +135,11 @@
|
|
|
135
135
|
"description": "The emphasis attribute divides in between a weak or strong importance.",
|
|
136
136
|
"values": [{ "name": "weak" }, { "name": "strong" }]
|
|
137
137
|
},
|
|
138
|
+
{
|
|
139
|
+
"name": "wrap",
|
|
140
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
141
|
+
"values": []
|
|
142
|
+
},
|
|
138
143
|
{
|
|
139
144
|
"name": "label",
|
|
140
145
|
"description": "Describes the badge for a11y if you use placement attribute with `corner-*`",
|
|
@@ -150,7 +155,7 @@
|
|
|
150
155
|
},
|
|
151
156
|
{
|
|
152
157
|
"name": "db-brand",
|
|
153
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
158
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
154
159
|
"attributes": [
|
|
155
160
|
{ "name": "hide-logo", "description": "", "values": [] },
|
|
156
161
|
{
|
|
@@ -163,15 +168,14 @@
|
|
|
163
168
|
"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.",
|
|
164
169
|
"values": []
|
|
165
170
|
},
|
|
171
|
+
{ "name": "id", "values": [{ "name": "DBBrandProps[\"id\"]" }] },
|
|
166
172
|
{
|
|
167
|
-
"name": "
|
|
168
|
-
"
|
|
169
|
-
"values": []
|
|
173
|
+
"name": "prop-overrides",
|
|
174
|
+
"values": [{ "name": "DBBrandProps[\"propOverrides\"]" }]
|
|
170
175
|
},
|
|
171
176
|
{
|
|
172
177
|
"name": "classname",
|
|
173
|
-
"
|
|
174
|
-
"values": []
|
|
178
|
+
"values": [{ "name": "DBBrandProps[\"className\"]" }]
|
|
175
179
|
},
|
|
176
180
|
{
|
|
177
181
|
"name": "text",
|
|
@@ -183,7 +187,7 @@
|
|
|
183
187
|
},
|
|
184
188
|
{
|
|
185
189
|
"name": "db-button",
|
|
186
|
-
"description": "\n---\n\n\n### **Events:**\n - **click**\n\n### **Slots:**\n - **children** - default slot",
|
|
190
|
+
"description": "\n---\n\n\n### **Events:**\n - **click**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
187
191
|
"attributes": [
|
|
188
192
|
{
|
|
189
193
|
"name": "type",
|
|
@@ -194,15 +198,14 @@
|
|
|
194
198
|
{ "name": "submit" }
|
|
195
199
|
]
|
|
196
200
|
},
|
|
201
|
+
{ "name": "id", "values": [{ "name": "DBButtonProps[\"id\"]" }] },
|
|
197
202
|
{
|
|
198
|
-
"name": "
|
|
199
|
-
"
|
|
200
|
-
"values": []
|
|
203
|
+
"name": "prop-overrides",
|
|
204
|
+
"values": [{ "name": "DBButtonProps[\"propOverrides\"]" }]
|
|
201
205
|
},
|
|
202
206
|
{
|
|
203
207
|
"name": "classname",
|
|
204
|
-
"
|
|
205
|
-
"values": []
|
|
208
|
+
"values": [{ "name": "DBButtonProps[\"className\"]" }]
|
|
206
209
|
},
|
|
207
210
|
{
|
|
208
211
|
"name": "disabled",
|
|
@@ -251,7 +254,7 @@
|
|
|
251
254
|
},
|
|
252
255
|
{
|
|
253
256
|
"name": "variant",
|
|
254
|
-
"description": "Variant of the button.
|
|
257
|
+
"description": "Variant of the button. Only use one primary button as a CTA on a page; otherwise, use one of the adaptive buttons.",
|
|
255
258
|
"values": [
|
|
256
259
|
{ "name": "outlined" },
|
|
257
260
|
{ "name": "brand" },
|
|
@@ -259,6 +262,11 @@
|
|
|
259
262
|
{ "name": "ghost" }
|
|
260
263
|
]
|
|
261
264
|
},
|
|
265
|
+
{
|
|
266
|
+
"name": "wrap",
|
|
267
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
268
|
+
"values": []
|
|
269
|
+
},
|
|
262
270
|
{
|
|
263
271
|
"name": "no-text",
|
|
264
272
|
"description": "Define the text next to the icon specified via the icon Property to get hidden.",
|
|
@@ -289,17 +297,16 @@
|
|
|
289
297
|
},
|
|
290
298
|
{
|
|
291
299
|
"name": "db-card",
|
|
292
|
-
"description": "\n---\n\n\n### **Events:**\n - **click**\n\n### **Slots:**\n - **children** - default slot",
|
|
300
|
+
"description": "\n---\n\n\n### **Events:**\n - **click**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
293
301
|
"attributes": [
|
|
302
|
+
{ "name": "id", "values": [{ "name": "DBCardProps[\"id\"]" }] },
|
|
294
303
|
{
|
|
295
|
-
"name": "
|
|
296
|
-
"
|
|
297
|
-
"values": []
|
|
304
|
+
"name": "prop-overrides",
|
|
305
|
+
"values": [{ "name": "DBCardProps[\"propOverrides\"]" }]
|
|
298
306
|
},
|
|
299
307
|
{
|
|
300
308
|
"name": "classname",
|
|
301
|
-
"
|
|
302
|
-
"values": []
|
|
309
|
+
"values": [{ "name": "DBCardProps[\"className\"]" }]
|
|
303
310
|
},
|
|
304
311
|
{
|
|
305
312
|
"name": "behavior",
|
|
@@ -326,17 +333,16 @@
|
|
|
326
333
|
},
|
|
327
334
|
{
|
|
328
335
|
"name": "db-infotext",
|
|
329
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
336
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
330
337
|
"attributes": [
|
|
338
|
+
{ "name": "id", "values": [{ "name": "DBInfotextProps[\"id\"]" }] },
|
|
331
339
|
{
|
|
332
|
-
"name": "
|
|
333
|
-
"
|
|
334
|
-
"values": []
|
|
340
|
+
"name": "prop-overrides",
|
|
341
|
+
"values": [{ "name": "DBInfotextProps[\"propOverrides\"]" }]
|
|
335
342
|
},
|
|
336
343
|
{
|
|
337
344
|
"name": "classname",
|
|
338
|
-
"
|
|
339
|
-
"values": []
|
|
345
|
+
"values": [{ "name": "DBInfotextProps[\"className\"]" }]
|
|
340
346
|
},
|
|
341
347
|
{
|
|
342
348
|
"name": "icon",
|
|
@@ -360,6 +366,11 @@
|
|
|
360
366
|
"description": "The size attribute changes the font-size and other related sizes of the component.",
|
|
361
367
|
"values": [{ "name": "small" }, { "name": "medium" }]
|
|
362
368
|
},
|
|
369
|
+
{
|
|
370
|
+
"name": "wrap",
|
|
371
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
372
|
+
"values": []
|
|
373
|
+
},
|
|
363
374
|
{
|
|
364
375
|
"name": "show-icon",
|
|
365
376
|
"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.",
|
|
@@ -375,18 +386,18 @@
|
|
|
375
386
|
},
|
|
376
387
|
{
|
|
377
388
|
"name": "db-checkbox",
|
|
378
|
-
"description": "\n---\n\n\n### **Events:**\n - **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - default slot",
|
|
389
|
+
"description": "\n---\n\n\n### **Events:**\n - **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
379
390
|
"attributes": [
|
|
380
|
-
{
|
|
381
|
-
"name": "id",
|
|
382
|
-
"description": "[ID](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id) of the component, generated automatically for some components as a fallback if unset.",
|
|
383
|
-
"values": []
|
|
384
|
-
},
|
|
385
391
|
{
|
|
386
392
|
"name": "invalid-message",
|
|
387
393
|
"description": "Helper message for invalid form components",
|
|
388
394
|
"values": []
|
|
389
395
|
},
|
|
396
|
+
{ "name": "id", "values": [{ "name": "DBCheckboxProps[\"id\"]" }] },
|
|
397
|
+
{
|
|
398
|
+
"name": "prop-overrides",
|
|
399
|
+
"values": [{ "name": "DBCheckboxProps[\"propOverrides\"]" }]
|
|
400
|
+
},
|
|
390
401
|
{
|
|
391
402
|
"name": "message",
|
|
392
403
|
"description": "Optional helper message for form components",
|
|
@@ -428,8 +439,7 @@
|
|
|
428
439
|
},
|
|
429
440
|
{
|
|
430
441
|
"name": "classname",
|
|
431
|
-
"
|
|
432
|
-
"values": []
|
|
442
|
+
"values": [{ "name": "DBCheckboxProps[\"className\"]" }]
|
|
433
443
|
},
|
|
434
444
|
{
|
|
435
445
|
"name": "size",
|
|
@@ -479,19 +489,94 @@
|
|
|
479
489
|
],
|
|
480
490
|
"references": []
|
|
481
491
|
},
|
|
492
|
+
{
|
|
493
|
+
"name": "db-custom-button",
|
|
494
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
495
|
+
"attributes": [
|
|
496
|
+
{ "name": "id", "values": [{ "name": "DBCustomButtonProps[\"id\"]" }] },
|
|
497
|
+
{
|
|
498
|
+
"name": "prop-overrides",
|
|
499
|
+
"values": [{ "name": "DBCustomButtonProps[\"propOverrides\"]" }]
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
"name": "classname",
|
|
503
|
+
"values": [{ "name": "DBCustomButtonProps[\"className\"]" }]
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "icon-leading",
|
|
507
|
+
"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.",
|
|
508
|
+
"values": [{ "name": "IconTypes" }]
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
"name": "icon",
|
|
512
|
+
"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.",
|
|
513
|
+
"values": [{ "name": "IconTypes" }]
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "show-icon-leading",
|
|
517
|
+
"description": "Enables or disables the visibility of the leading icon.\nFor many components this property is optional to reflect Figma properties.",
|
|
518
|
+
"values": []
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"name": "show-icon",
|
|
522
|
+
"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.",
|
|
523
|
+
"values": []
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"name": "icon-trailing",
|
|
527
|
+
"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.",
|
|
528
|
+
"values": [{ "name": "IconTypes" }]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"name": "show-icon-trailing",
|
|
532
|
+
"description": "Enables or disables the visibility of the trailing icon.\nFor many components this property is optional to reflect Figma properties.",
|
|
533
|
+
"values": []
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"name": "size",
|
|
537
|
+
"description": "The size attribute changes the font-size and other related sizes of the component.",
|
|
538
|
+
"values": [{ "name": "small" }, { "name": "medium" }]
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"name": "width",
|
|
542
|
+
"description": "Width of the component. Auto width based on children size, full width based on parent elements width.",
|
|
543
|
+
"values": [{ "name": "full" }, { "name": "auto" }]
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"name": "variant",
|
|
547
|
+
"description": "Variant of the button. Only use one primary button as a CTA on a page; otherwise, use one of the adaptive buttons.",
|
|
548
|
+
"values": [
|
|
549
|
+
{ "name": "outlined" },
|
|
550
|
+
{ "name": "brand" },
|
|
551
|
+
{ "name": "filled" },
|
|
552
|
+
{ "name": "ghost" }
|
|
553
|
+
]
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"name": "no-text",
|
|
557
|
+
"description": "Define the text next to the icon specified via the icon Property to get hidden.",
|
|
558
|
+
"values": []
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"references": []
|
|
562
|
+
},
|
|
482
563
|
{
|
|
483
564
|
"name": "db-custom-select-dropdown",
|
|
484
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
565
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
485
566
|
"attributes": [
|
|
486
567
|
{
|
|
487
568
|
"name": "id",
|
|
488
|
-
"
|
|
489
|
-
|
|
569
|
+
"values": [{ "name": "DBCustomSelectDropdownProps[\"id\"]" }]
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "prop-overrides",
|
|
573
|
+
"values": [
|
|
574
|
+
{ "name": "DBCustomSelectDropdownProps[\"propOverrides\"]" }
|
|
575
|
+
]
|
|
490
576
|
},
|
|
491
577
|
{
|
|
492
578
|
"name": "classname",
|
|
493
|
-
"
|
|
494
|
-
"values": []
|
|
579
|
+
"values": [{ "name": "DBCustomSelectDropdownProps[\"className\"]" }]
|
|
495
580
|
},
|
|
496
581
|
{
|
|
497
582
|
"name": "width",
|
|
@@ -507,7 +592,7 @@
|
|
|
507
592
|
},
|
|
508
593
|
{
|
|
509
594
|
"name": "db-custom-select-list-item",
|
|
510
|
-
"description": "\n---\n\n\n### **Events:**\n - **change**\n\n### **Slots:**\n - **children** - default slot",
|
|
595
|
+
"description": "\n---\n\n\n### **Events:**\n - **change**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
511
596
|
"attributes": [
|
|
512
597
|
{
|
|
513
598
|
"name": "is-group-title",
|
|
@@ -531,13 +616,17 @@
|
|
|
531
616
|
},
|
|
532
617
|
{
|
|
533
618
|
"name": "id",
|
|
534
|
-
"
|
|
535
|
-
|
|
619
|
+
"values": [{ "name": "DBCustomSelectListItemProps[\"id\"]" }]
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
"name": "prop-overrides",
|
|
623
|
+
"values": [
|
|
624
|
+
{ "name": "DBCustomSelectListItemProps[\"propOverrides\"]" }
|
|
625
|
+
]
|
|
536
626
|
},
|
|
537
627
|
{
|
|
538
628
|
"name": "classname",
|
|
539
|
-
"
|
|
540
|
-
"values": []
|
|
629
|
+
"values": [{ "name": "DBCustomSelectListItemProps[\"className\"]" }]
|
|
541
630
|
},
|
|
542
631
|
{
|
|
543
632
|
"name": "group-title",
|
|
@@ -579,37 +668,39 @@
|
|
|
579
668
|
},
|
|
580
669
|
{
|
|
581
670
|
"name": "db-custom-select-list",
|
|
582
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
671
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
583
672
|
"attributes": [
|
|
584
673
|
{ "name": "multiple", "values": [] },
|
|
585
674
|
{ "name": "label", "values": [] },
|
|
586
675
|
{
|
|
587
676
|
"name": "id",
|
|
588
|
-
"
|
|
589
|
-
|
|
677
|
+
"values": [{ "name": "DBCustomSelectListProps[\"id\"]" }]
|
|
678
|
+
},
|
|
679
|
+
{
|
|
680
|
+
"name": "prop-overrides",
|
|
681
|
+
"values": [{ "name": "DBCustomSelectListProps[\"propOverrides\"]" }]
|
|
590
682
|
},
|
|
591
683
|
{
|
|
592
684
|
"name": "classname",
|
|
593
|
-
"
|
|
594
|
-
"values": []
|
|
685
|
+
"values": [{ "name": "DBCustomSelectListProps[\"className\"]" }]
|
|
595
686
|
}
|
|
596
687
|
],
|
|
597
688
|
"references": []
|
|
598
689
|
},
|
|
599
690
|
{
|
|
600
691
|
"name": "db-input",
|
|
601
|
-
"description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - default slot",
|
|
692
|
+
"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",
|
|
602
693
|
"attributes": [
|
|
603
|
-
{
|
|
604
|
-
"name": "id",
|
|
605
|
-
"description": "[ID](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id) of the component, generated automatically for some components as a fallback if unset.",
|
|
606
|
-
"values": []
|
|
607
|
-
},
|
|
608
694
|
{
|
|
609
695
|
"name": "invalid-message",
|
|
610
696
|
"description": "Helper message for invalid form components",
|
|
611
697
|
"values": []
|
|
612
698
|
},
|
|
699
|
+
{ "name": "id", "values": [{ "name": "DBInputProps[\"id\"]" }] },
|
|
700
|
+
{
|
|
701
|
+
"name": "prop-overrides",
|
|
702
|
+
"values": [{ "name": "DBInputProps[\"propOverrides\"]" }]
|
|
703
|
+
},
|
|
613
704
|
{
|
|
614
705
|
"name": "data-list-id",
|
|
615
706
|
"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.",
|
|
@@ -671,8 +762,7 @@
|
|
|
671
762
|
},
|
|
672
763
|
{
|
|
673
764
|
"name": "classname",
|
|
674
|
-
"
|
|
675
|
-
"values": []
|
|
765
|
+
"values": [{ "name": "DBInputProps[\"className\"]" }]
|
|
676
766
|
},
|
|
677
767
|
{
|
|
678
768
|
"name": "variant",
|
|
@@ -874,8 +964,7 @@
|
|
|
874
964
|
},
|
|
875
965
|
{
|
|
876
966
|
"name": "autofocus",
|
|
877
|
-
"
|
|
878
|
-
"values": []
|
|
967
|
+
"values": [{ "name": "DBInputProps[\"autofocus\"]" }]
|
|
879
968
|
},
|
|
880
969
|
{
|
|
881
970
|
"name": "enterkeyhint",
|
|
@@ -934,12 +1023,12 @@
|
|
|
934
1023
|
},
|
|
935
1024
|
{
|
|
936
1025
|
"name": "db-tooltip",
|
|
937
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
1026
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
938
1027
|
"attributes": [
|
|
1028
|
+
{ "name": "id", "values": [{ "name": "DBTooltipProps[\"id\"]" }] },
|
|
939
1029
|
{
|
|
940
|
-
"name": "
|
|
941
|
-
"
|
|
942
|
-
"values": []
|
|
1030
|
+
"name": "prop-overrides",
|
|
1031
|
+
"values": [{ "name": "DBTooltipProps[\"propOverrides\"]" }]
|
|
943
1032
|
},
|
|
944
1033
|
{
|
|
945
1034
|
"name": "variant",
|
|
@@ -953,14 +1042,18 @@
|
|
|
953
1042
|
},
|
|
954
1043
|
{
|
|
955
1044
|
"name": "classname",
|
|
956
|
-
"
|
|
957
|
-
"values": []
|
|
1045
|
+
"values": [{ "name": "DBTooltipProps[\"className\"]" }]
|
|
958
1046
|
},
|
|
959
1047
|
{
|
|
960
1048
|
"name": "emphasis",
|
|
961
1049
|
"description": "The emphasis attribute divides in between a weak or strong importance.",
|
|
962
1050
|
"values": [{ "name": "weak" }, { "name": "strong" }]
|
|
963
1051
|
},
|
|
1052
|
+
{
|
|
1053
|
+
"name": "wrap",
|
|
1054
|
+
"description": "Determines whether the text should wrap when its parent container is too small, preventing overflow.",
|
|
1055
|
+
"values": []
|
|
1056
|
+
},
|
|
964
1057
|
{
|
|
965
1058
|
"name": "animation",
|
|
966
1059
|
"description": "Disable animation",
|
|
@@ -986,22 +1079,21 @@
|
|
|
986
1079
|
},
|
|
987
1080
|
{
|
|
988
1081
|
"name": "db-tag",
|
|
989
|
-
"description": "\n---\n\n\n### **Events:**\n - **remove**\n\n### **Slots:**\n - **children** - default slot\n- **content** - Default slot which is used to pass in additional content.",
|
|
1082
|
+
"description": "\n---\n\n\n### **Events:**\n - **remove**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **content** - Default slot which is used to pass in additional content.",
|
|
990
1083
|
"attributes": [
|
|
991
1084
|
{
|
|
992
1085
|
"name": "remove-button",
|
|
993
1086
|
"description": "The removeButton attribute shows the cancel button.",
|
|
994
1087
|
"values": []
|
|
995
1088
|
},
|
|
1089
|
+
{ "name": "id", "values": [{ "name": "DBTagProps[\"id\"]" }] },
|
|
996
1090
|
{
|
|
997
|
-
"name": "
|
|
998
|
-
"
|
|
999
|
-
"values": []
|
|
1091
|
+
"name": "prop-overrides",
|
|
1092
|
+
"values": [{ "name": "DBTagProps[\"propOverrides\"]" }]
|
|
1000
1093
|
},
|
|
1001
1094
|
{
|
|
1002
1095
|
"name": "classname",
|
|
1003
|
-
"
|
|
1004
|
-
"values": []
|
|
1096
|
+
"values": [{ "name": "DBTagProps[\"className\"]" }]
|
|
1005
1097
|
},
|
|
1006
1098
|
{
|
|
1007
1099
|
"name": "semantic",
|
|
@@ -1060,18 +1152,18 @@
|
|
|
1060
1152
|
},
|
|
1061
1153
|
{
|
|
1062
1154
|
"name": "db-custom-select",
|
|
1063
|
-
"description": "\n---\n\n\n### **Events:**\n - **amountChange**\n- **dropdownToggle**\n- **optionSelected**\n- **search**\n\n### **Slots:**\n - **children** - default slot",
|
|
1155
|
+
"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",
|
|
1064
1156
|
"attributes": [
|
|
1065
|
-
{
|
|
1066
|
-
"name": "id",
|
|
1067
|
-
"description": "[ID](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id) of the component, generated automatically for some components as a fallback if unset.",
|
|
1068
|
-
"values": []
|
|
1069
|
-
},
|
|
1070
1157
|
{
|
|
1071
1158
|
"name": "invalid-message",
|
|
1072
1159
|
"description": "Helper message for invalid form components",
|
|
1073
1160
|
"values": []
|
|
1074
1161
|
},
|
|
1162
|
+
{ "name": "id", "values": [{ "name": "DBCustomSelectProps[\"id\"]" }] },
|
|
1163
|
+
{
|
|
1164
|
+
"name": "prop-overrides",
|
|
1165
|
+
"values": [{ "name": "DBCustomSelectProps[\"propOverrides\"]" }]
|
|
1166
|
+
},
|
|
1075
1167
|
{
|
|
1076
1168
|
"name": "message",
|
|
1077
1169
|
"description": "Optional helper message for form components",
|
|
@@ -1199,8 +1291,7 @@
|
|
|
1199
1291
|
},
|
|
1200
1292
|
{
|
|
1201
1293
|
"name": "classname",
|
|
1202
|
-
"
|
|
1203
|
-
"values": []
|
|
1294
|
+
"values": [{ "name": "DBCustomSelectProps[\"className\"]" }]
|
|
1204
1295
|
},
|
|
1205
1296
|
{
|
|
1206
1297
|
"name": "form-field-width",
|
|
@@ -1322,29 +1413,33 @@
|
|
|
1322
1413
|
},
|
|
1323
1414
|
{
|
|
1324
1415
|
"name": "db-custom-select-form-field",
|
|
1325
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
1416
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1326
1417
|
"attributes": [
|
|
1327
1418
|
{
|
|
1328
1419
|
"name": "id",
|
|
1329
|
-
"
|
|
1330
|
-
|
|
1420
|
+
"values": [{ "name": "DBCustomSelectFormFieldProps[\"id\"]" }]
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
"name": "prop-overrides",
|
|
1424
|
+
"values": [
|
|
1425
|
+
{ "name": "DBCustomSelectFormFieldProps[\"propOverrides\"]" }
|
|
1426
|
+
]
|
|
1331
1427
|
},
|
|
1332
1428
|
{
|
|
1333
1429
|
"name": "classname",
|
|
1334
|
-
"
|
|
1335
|
-
"values": []
|
|
1430
|
+
"values": [{ "name": "DBCustomSelectFormFieldProps[\"className\"]" }]
|
|
1336
1431
|
}
|
|
1337
1432
|
],
|
|
1338
1433
|
"references": []
|
|
1339
1434
|
},
|
|
1340
1435
|
{
|
|
1341
1436
|
"name": "db-divider",
|
|
1342
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
1437
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1343
1438
|
"attributes": [
|
|
1439
|
+
{ "name": "id", "values": [{ "name": "DBDividerProps[\"id\"]" }] },
|
|
1344
1440
|
{
|
|
1345
|
-
"name": "
|
|
1346
|
-
"
|
|
1347
|
-
"values": []
|
|
1441
|
+
"name": "prop-overrides",
|
|
1442
|
+
"values": [{ "name": "DBDividerProps[\"propOverrides\"]" }]
|
|
1348
1443
|
},
|
|
1349
1444
|
{
|
|
1350
1445
|
"name": "margin",
|
|
@@ -1368,15 +1463,14 @@
|
|
|
1368
1463
|
},
|
|
1369
1464
|
{
|
|
1370
1465
|
"name": "classname",
|
|
1371
|
-
"
|
|
1372
|
-
"values": []
|
|
1466
|
+
"values": [{ "name": "DBDividerProps[\"className\"]" }]
|
|
1373
1467
|
}
|
|
1374
1468
|
],
|
|
1375
1469
|
"references": []
|
|
1376
1470
|
},
|
|
1377
1471
|
{
|
|
1378
1472
|
"name": "db-drawer",
|
|
1379
|
-
"description": "\n---\n\n\n### **Events:**\n - **close**\n\n### **Slots:**\n - **children** - default slot\n- **drawerHeader** - Slot for changing the header of the drawer.",
|
|
1473
|
+
"description": "\n---\n\n\n### **Events:**\n - **close**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **drawerHeader** - Slot for changing the header of the drawer.",
|
|
1380
1474
|
"attributes": [
|
|
1381
1475
|
{
|
|
1382
1476
|
"name": "open",
|
|
@@ -1403,10 +1497,10 @@
|
|
|
1403
1497
|
"description": "Set the variant modal|inside. Defaults to modal.",
|
|
1404
1498
|
"values": [{ "name": "modal" }, { "name": "inside" }]
|
|
1405
1499
|
},
|
|
1500
|
+
{ "name": "id", "values": [{ "name": "DBDrawerProps[\"id\"]" }] },
|
|
1406
1501
|
{
|
|
1407
|
-
"name": "
|
|
1408
|
-
"
|
|
1409
|
-
"values": []
|
|
1502
|
+
"name": "prop-overrides",
|
|
1503
|
+
"values": [{ "name": "DBDrawerProps[\"propOverrides\"]" }]
|
|
1410
1504
|
},
|
|
1411
1505
|
{
|
|
1412
1506
|
"name": "direction",
|
|
@@ -1420,8 +1514,7 @@
|
|
|
1420
1514
|
},
|
|
1421
1515
|
{
|
|
1422
1516
|
"name": "classname",
|
|
1423
|
-
"
|
|
1424
|
-
"values": []
|
|
1517
|
+
"values": [{ "name": "DBDrawerProps[\"className\"]" }]
|
|
1425
1518
|
},
|
|
1426
1519
|
{
|
|
1427
1520
|
"name": "spacing",
|
|
@@ -1458,7 +1551,7 @@
|
|
|
1458
1551
|
},
|
|
1459
1552
|
{
|
|
1460
1553
|
"name": "db-header",
|
|
1461
|
-
"description": "\n---\n\n\n### **Events:**\n - **toggle**\n\n### **Slots:**\n - **children** - default slot\n- **metaNavigation** - Slot to pass in a meta navigation.\n- Desktop: Above the regular header\n- Mobile: Inside the drawer\n- **secondaryAction** - Slot to pass one or more elements like DBButton (e.g. profile, language, etc.) as secondary action.\n- Desktop: Shown separated by divider at the end of the header\n- Mobile: Shown inside the drawer at the bottom.\n- **brand** - Slot to pass in the DBBrand component\n- **primaryAction** - Slot to pass one or more elements like DBButton (e.g. search) as primary action.\n- Desktop: Shown next to the main-navigation\n- Mobile: Shown next to the brand",
|
|
1554
|
+
"description": "\n---\n\n\n### **Events:**\n - **toggle**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **metaNavigation** - Slot to pass in a meta navigation.\n- Desktop: Above the regular header\n- Mobile: Inside the drawer\n- **secondaryAction** - Slot to pass one or more elements like DBButton (e.g. profile, language, etc.) as secondary action.\n- Desktop: Shown separated by divider at the end of the header\n- Mobile: Shown inside the drawer at the bottom.\n- **brand** - Slot to pass in the DBBrand component\n- **primaryAction** - Slot to pass one or more elements like DBButton (e.g. search) as primary action.\n- Desktop: Shown next to the main-navigation\n- Mobile: Shown next to the brand",
|
|
1462
1555
|
"attributes": [
|
|
1463
1556
|
{
|
|
1464
1557
|
"name": "force-mobile",
|
|
@@ -1472,13 +1565,12 @@
|
|
|
1472
1565
|
},
|
|
1473
1566
|
{
|
|
1474
1567
|
"name": "classname",
|
|
1475
|
-
"
|
|
1476
|
-
"values": []
|
|
1568
|
+
"values": [{ "name": "DBHeaderProps[\"className\"]" }]
|
|
1477
1569
|
},
|
|
1570
|
+
{ "name": "id", "values": [{ "name": "DBHeaderProps[\"id\"]" }] },
|
|
1478
1571
|
{
|
|
1479
|
-
"name": "
|
|
1480
|
-
"
|
|
1481
|
-
"values": []
|
|
1572
|
+
"name": "prop-overrides",
|
|
1573
|
+
"values": [{ "name": "DBHeaderProps[\"propOverrides\"]" }]
|
|
1482
1574
|
},
|
|
1483
1575
|
{
|
|
1484
1576
|
"name": "width",
|
|
@@ -1510,17 +1602,16 @@
|
|
|
1510
1602
|
},
|
|
1511
1603
|
{
|
|
1512
1604
|
"name": "db-icon",
|
|
1513
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
1605
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1514
1606
|
"attributes": [
|
|
1607
|
+
{ "name": "id", "values": [{ "name": "DBIconProps[\"id\"]" }] },
|
|
1515
1608
|
{
|
|
1516
|
-
"name": "
|
|
1517
|
-
"
|
|
1518
|
-
"values": []
|
|
1609
|
+
"name": "prop-overrides",
|
|
1610
|
+
"values": [{ "name": "DBIconProps[\"propOverrides\"]" }]
|
|
1519
1611
|
},
|
|
1520
1612
|
{
|
|
1521
1613
|
"name": "classname",
|
|
1522
|
-
"
|
|
1523
|
-
"values": []
|
|
1614
|
+
"values": [{ "name": "DBIconProps[\"className\"]" }]
|
|
1524
1615
|
},
|
|
1525
1616
|
{
|
|
1526
1617
|
"name": "icon",
|
|
@@ -1549,17 +1640,16 @@
|
|
|
1549
1640
|
},
|
|
1550
1641
|
{
|
|
1551
1642
|
"name": "db-link",
|
|
1552
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
1643
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1553
1644
|
"attributes": [
|
|
1645
|
+
{ "name": "id", "values": [{ "name": "DBLinkProps[\"id\"]" }] },
|
|
1554
1646
|
{
|
|
1555
|
-
"name": "
|
|
1556
|
-
"
|
|
1557
|
-
"values": []
|
|
1647
|
+
"name": "prop-overrides",
|
|
1648
|
+
"values": [{ "name": "DBLinkProps[\"propOverrides\"]" }]
|
|
1558
1649
|
},
|
|
1559
1650
|
{
|
|
1560
1651
|
"name": "classname",
|
|
1561
|
-
"
|
|
1562
|
-
"values": []
|
|
1652
|
+
"values": [{ "name": "DBLinkProps[\"className\"]" }]
|
|
1563
1653
|
},
|
|
1564
1654
|
{
|
|
1565
1655
|
"name": "href",
|
|
@@ -1663,24 +1753,23 @@
|
|
|
1663
1753
|
},
|
|
1664
1754
|
{
|
|
1665
1755
|
"name": "db-navigation",
|
|
1666
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
1756
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
1667
1757
|
"attributes": [
|
|
1758
|
+
{ "name": "id", "values": [{ "name": "DBNavigationProps[\"id\"]" }] },
|
|
1668
1759
|
{
|
|
1669
|
-
"name": "
|
|
1670
|
-
"
|
|
1671
|
-
"values": []
|
|
1760
|
+
"name": "prop-overrides",
|
|
1761
|
+
"values": [{ "name": "DBNavigationProps[\"propOverrides\"]" }]
|
|
1672
1762
|
},
|
|
1673
1763
|
{
|
|
1674
1764
|
"name": "classname",
|
|
1675
|
-
"
|
|
1676
|
-
"values": []
|
|
1765
|
+
"values": [{ "name": "DBNavigationProps[\"className\"]" }]
|
|
1677
1766
|
}
|
|
1678
1767
|
],
|
|
1679
1768
|
"references": []
|
|
1680
1769
|
},
|
|
1681
1770
|
{
|
|
1682
1771
|
"name": "db-navigation-item",
|
|
1683
|
-
"description": "\n---\n\n\n### **Events:**\n - **click**\n\n### **Slots:**\n - **children** - default slot\n- **subNavigation** - React-specific property to pass in a slot for sub-navigation",
|
|
1772
|
+
"description": "\n---\n\n\n### **Events:**\n - **click**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **subNavigation** - React-specific property to pass in a slot for sub-navigation",
|
|
1684
1773
|
"attributes": [
|
|
1685
1774
|
{
|
|
1686
1775
|
"name": "sub-navigation-expanded",
|
|
@@ -1689,13 +1778,15 @@
|
|
|
1689
1778
|
},
|
|
1690
1779
|
{
|
|
1691
1780
|
"name": "id",
|
|
1692
|
-
"
|
|
1693
|
-
|
|
1781
|
+
"values": [{ "name": "DBNavigationItemProps[\"id\"]" }]
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"name": "prop-overrides",
|
|
1785
|
+
"values": [{ "name": "DBNavigationItemProps[\"propOverrides\"]" }]
|
|
1694
1786
|
},
|
|
1695
1787
|
{
|
|
1696
1788
|
"name": "classname",
|
|
1697
|
-
"
|
|
1698
|
-
"values": []
|
|
1789
|
+
"values": [{ "name": "DBNavigationItemProps[\"className\"]" }]
|
|
1699
1790
|
},
|
|
1700
1791
|
{
|
|
1701
1792
|
"name": "width",
|
|
@@ -1747,17 +1838,16 @@
|
|
|
1747
1838
|
},
|
|
1748
1839
|
{
|
|
1749
1840
|
"name": "db-notification",
|
|
1750
|
-
"description": "\n---\n\n\n### **Events:**\n - **close**\n\n### **Slots:**\n - **children** - default slot\n- **image** - The slotImage can be set instead of an icon.\n- **link** - The slotLink can be set for non overlay-notifications",
|
|
1841
|
+
"description": "\n---\n\n\n### **Events:**\n - **close**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **image** - The slotImage can be set instead of an icon.\n- **link** - The slotLink can be set for non overlay-notifications",
|
|
1751
1842
|
"attributes": [
|
|
1843
|
+
{ "name": "id", "values": [{ "name": "DBNotificationProps[\"id\"]" }] },
|
|
1752
1844
|
{
|
|
1753
|
-
"name": "
|
|
1754
|
-
"
|
|
1755
|
-
"values": []
|
|
1845
|
+
"name": "prop-overrides",
|
|
1846
|
+
"values": [{ "name": "DBNotificationProps[\"propOverrides\"]" }]
|
|
1756
1847
|
},
|
|
1757
1848
|
{
|
|
1758
1849
|
"name": "classname",
|
|
1759
|
-
"
|
|
1760
|
-
"values": []
|
|
1850
|
+
"values": [{ "name": "DBNotificationProps[\"className\"]" }]
|
|
1761
1851
|
},
|
|
1762
1852
|
{
|
|
1763
1853
|
"name": "semantic",
|
|
@@ -1854,7 +1944,7 @@
|
|
|
1854
1944
|
},
|
|
1855
1945
|
{
|
|
1856
1946
|
"name": "db-page",
|
|
1857
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot\n- **header** - The slot can be used for React to set a header.\n- **footer** - The slot can be used for React to set a footer.",
|
|
1947
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **header** - The slot can be used for React to set a header.\n- **footer** - The slot can be used for React to set a footer.",
|
|
1858
1948
|
"attributes": [
|
|
1859
1949
|
{
|
|
1860
1950
|
"name": "fade-in",
|
|
@@ -1871,15 +1961,14 @@
|
|
|
1871
1961
|
"description": "The variant=fixed uses flex-box to make header and footer static",
|
|
1872
1962
|
"values": [{ "name": "auto" }, { "name": "fixed" }]
|
|
1873
1963
|
},
|
|
1964
|
+
{ "name": "id", "values": [{ "name": "DBPageProps[\"id\"]" }] },
|
|
1874
1965
|
{
|
|
1875
|
-
"name": "
|
|
1876
|
-
"
|
|
1877
|
-
"values": []
|
|
1966
|
+
"name": "prop-overrides",
|
|
1967
|
+
"values": [{ "name": "DBPageProps[\"propOverrides\"]" }]
|
|
1878
1968
|
},
|
|
1879
1969
|
{
|
|
1880
1970
|
"name": "classname",
|
|
1881
|
-
"
|
|
1882
|
-
"values": []
|
|
1971
|
+
"values": [{ "name": "DBPageProps[\"className\"]" }]
|
|
1883
1972
|
},
|
|
1884
1973
|
{
|
|
1885
1974
|
"name": "main-class",
|
|
@@ -1891,22 +1980,21 @@
|
|
|
1891
1980
|
},
|
|
1892
1981
|
{
|
|
1893
1982
|
"name": "db-popover",
|
|
1894
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot\n- **trigger** - The trigger to open the popover e.g. a button",
|
|
1983
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot\n- **trigger** - The trigger to open the popover e.g. a button",
|
|
1895
1984
|
"attributes": [
|
|
1896
1985
|
{
|
|
1897
1986
|
"name": "placement",
|
|
1898
1987
|
"description": "The `placement` attributes values change the position to absolute and adds a transform based on the placement.",
|
|
1899
1988
|
"values": [{ "name": "undefined" }, { "name": "undefined" }]
|
|
1900
1989
|
},
|
|
1990
|
+
{ "name": "id", "values": [{ "name": "DBPopoverProps[\"id\"]" }] },
|
|
1901
1991
|
{
|
|
1902
|
-
"name": "
|
|
1903
|
-
"
|
|
1904
|
-
"values": []
|
|
1992
|
+
"name": "prop-overrides",
|
|
1993
|
+
"values": [{ "name": "DBPopoverProps[\"propOverrides\"]" }]
|
|
1905
1994
|
},
|
|
1906
1995
|
{
|
|
1907
1996
|
"name": "classname",
|
|
1908
|
-
"
|
|
1909
|
-
"values": []
|
|
1997
|
+
"values": [{ "name": "DBPopoverProps[\"className\"]" }]
|
|
1910
1998
|
},
|
|
1911
1999
|
{
|
|
1912
2000
|
"name": "spacing",
|
|
@@ -1948,12 +2036,12 @@
|
|
|
1948
2036
|
},
|
|
1949
2037
|
{
|
|
1950
2038
|
"name": "db-radio",
|
|
1951
|
-
"description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - default slot",
|
|
2039
|
+
"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",
|
|
1952
2040
|
"attributes": [
|
|
2041
|
+
{ "name": "id", "values": [{ "name": "DBRadioProps[\"id\"]" }] },
|
|
1953
2042
|
{
|
|
1954
|
-
"name": "
|
|
1955
|
-
"
|
|
1956
|
-
"values": []
|
|
2043
|
+
"name": "prop-overrides",
|
|
2044
|
+
"values": [{ "name": "DBRadioProps[\"propOverrides\"]" }]
|
|
1957
2045
|
},
|
|
1958
2046
|
{
|
|
1959
2047
|
"name": "checked",
|
|
@@ -1977,8 +2065,7 @@
|
|
|
1977
2065
|
},
|
|
1978
2066
|
{
|
|
1979
2067
|
"name": "classname",
|
|
1980
|
-
"
|
|
1981
|
-
"values": []
|
|
2068
|
+
"values": [{ "name": "DBRadioProps[\"className\"]" }]
|
|
1982
2069
|
},
|
|
1983
2070
|
{
|
|
1984
2071
|
"name": "validation",
|
|
@@ -2019,17 +2106,16 @@
|
|
|
2019
2106
|
},
|
|
2020
2107
|
{
|
|
2021
2108
|
"name": "db-section",
|
|
2022
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
2109
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
2023
2110
|
"attributes": [
|
|
2111
|
+
{ "name": "id", "values": [{ "name": "DBSectionProps[\"id\"]" }] },
|
|
2024
2112
|
{
|
|
2025
|
-
"name": "
|
|
2026
|
-
"
|
|
2027
|
-
"values": []
|
|
2113
|
+
"name": "prop-overrides",
|
|
2114
|
+
"values": [{ "name": "DBSectionProps[\"propOverrides\"]" }]
|
|
2028
2115
|
},
|
|
2029
2116
|
{
|
|
2030
2117
|
"name": "classname",
|
|
2031
|
-
"
|
|
2032
|
-
"values": []
|
|
2118
|
+
"values": [{ "name": "DBSectionProps[\"className\"]" }]
|
|
2033
2119
|
},
|
|
2034
2120
|
{
|
|
2035
2121
|
"name": "spacing",
|
|
@@ -2056,18 +2142,18 @@
|
|
|
2056
2142
|
},
|
|
2057
2143
|
{
|
|
2058
2144
|
"name": "db-select",
|
|
2059
|
-
"description": "\n---\n\n\n### **Events:**\n - **click**\n- **input**\n- **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - default slot",
|
|
2145
|
+
"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",
|
|
2060
2146
|
"attributes": [
|
|
2061
|
-
{
|
|
2062
|
-
"name": "id",
|
|
2063
|
-
"description": "[ID](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id) of the component, generated automatically for some components as a fallback if unset.",
|
|
2064
|
-
"values": []
|
|
2065
|
-
},
|
|
2066
2147
|
{
|
|
2067
2148
|
"name": "invalid-message",
|
|
2068
2149
|
"description": "Helper message for invalid form components",
|
|
2069
2150
|
"values": []
|
|
2070
2151
|
},
|
|
2152
|
+
{ "name": "id", "values": [{ "name": "DBSelectProps[\"id\"]" }] },
|
|
2153
|
+
{
|
|
2154
|
+
"name": "prop-overrides",
|
|
2155
|
+
"values": [{ "name": "DBSelectProps[\"propOverrides\"]" }]
|
|
2156
|
+
},
|
|
2071
2157
|
{
|
|
2072
2158
|
"name": "message",
|
|
2073
2159
|
"description": "Optional helper message for form components",
|
|
@@ -2119,8 +2205,7 @@
|
|
|
2119
2205
|
},
|
|
2120
2206
|
{
|
|
2121
2207
|
"name": "classname",
|
|
2122
|
-
"
|
|
2123
|
-
"values": []
|
|
2208
|
+
"values": [{ "name": "DBSelectProps[\"className\"]" }]
|
|
2124
2209
|
},
|
|
2125
2210
|
{
|
|
2126
2211
|
"name": "show-label",
|
|
@@ -2242,17 +2327,16 @@
|
|
|
2242
2327
|
},
|
|
2243
2328
|
{
|
|
2244
2329
|
"name": "db-stack",
|
|
2245
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
2330
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
2246
2331
|
"attributes": [
|
|
2332
|
+
{ "name": "id", "values": [{ "name": "DBStackProps[\"id\"]" }] },
|
|
2247
2333
|
{
|
|
2248
|
-
"name": "
|
|
2249
|
-
"
|
|
2250
|
-
"values": []
|
|
2334
|
+
"name": "prop-overrides",
|
|
2335
|
+
"values": [{ "name": "DBStackProps[\"propOverrides\"]" }]
|
|
2251
2336
|
},
|
|
2252
2337
|
{
|
|
2253
2338
|
"name": "classname",
|
|
2254
|
-
"
|
|
2255
|
-
"values": []
|
|
2339
|
+
"values": [{ "name": "DBStackProps[\"className\"]" }]
|
|
2256
2340
|
},
|
|
2257
2341
|
{
|
|
2258
2342
|
"name": "gap",
|
|
@@ -2310,12 +2394,16 @@
|
|
|
2310
2394
|
},
|
|
2311
2395
|
{
|
|
2312
2396
|
"name": "db-switch",
|
|
2313
|
-
"description": "\n---\n\n\n### **Events:**\n - **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - default slot",
|
|
2397
|
+
"description": "\n---\n\n\n### **Events:**\n - **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
2314
2398
|
"attributes": [
|
|
2315
2399
|
{
|
|
2316
|
-
"name": "
|
|
2317
|
-
"
|
|
2318
|
-
|
|
2400
|
+
"name": "invalid-message",
|
|
2401
|
+
"values": [{ "name": "DBSwitchProps[\"invalidMessage\"]" }]
|
|
2402
|
+
},
|
|
2403
|
+
{ "name": "id", "values": [{ "name": "DBSwitchProps[\"id\"]" }] },
|
|
2404
|
+
{
|
|
2405
|
+
"name": "prop-overrides",
|
|
2406
|
+
"values": [{ "name": "DBSwitchProps[\"propOverrides\"]" }]
|
|
2319
2407
|
},
|
|
2320
2408
|
{
|
|
2321
2409
|
"name": "validation",
|
|
@@ -2333,23 +2421,15 @@
|
|
|
2333
2421
|
},
|
|
2334
2422
|
{
|
|
2335
2423
|
"name": "message",
|
|
2336
|
-
"
|
|
2337
|
-
"values": []
|
|
2424
|
+
"values": [{ "name": "DBSwitchProps[\"message\"]" }]
|
|
2338
2425
|
},
|
|
2339
2426
|
{
|
|
2340
2427
|
"name": "show-message",
|
|
2341
|
-
"
|
|
2342
|
-
"values": []
|
|
2428
|
+
"values": [{ "name": "DBSwitchProps[\"showMessage\"]" }]
|
|
2343
2429
|
},
|
|
2344
2430
|
{
|
|
2345
2431
|
"name": "valid-message",
|
|
2346
|
-
"
|
|
2347
|
-
"values": []
|
|
2348
|
-
},
|
|
2349
|
-
{
|
|
2350
|
-
"name": "invalid-message",
|
|
2351
|
-
"description": "Helper message for invalid form components",
|
|
2352
|
-
"values": []
|
|
2432
|
+
"values": [{ "name": "DBSwitchProps[\"validMessage\"]" }]
|
|
2353
2433
|
},
|
|
2354
2434
|
{
|
|
2355
2435
|
"name": "checked",
|
|
@@ -2378,8 +2458,8 @@
|
|
|
2378
2458
|
},
|
|
2379
2459
|
{
|
|
2380
2460
|
"name": "variant",
|
|
2381
|
-
"description": "Change the variant of the label to
|
|
2382
|
-
"values": [{ "name": "
|
|
2461
|
+
"description": "Change the variant of the label to `trailing` or `leading`. Defaults to `trailing`",
|
|
2462
|
+
"values": [{ "name": "leading" }, { "name": "trailing" }]
|
|
2383
2463
|
},
|
|
2384
2464
|
{
|
|
2385
2465
|
"name": "show-required-asterisk",
|
|
@@ -2388,8 +2468,7 @@
|
|
|
2388
2468
|
},
|
|
2389
2469
|
{
|
|
2390
2470
|
"name": "classname",
|
|
2391
|
-
"
|
|
2392
|
-
"values": []
|
|
2471
|
+
"values": [{ "name": "DBSwitchProps[\"className\"]" }]
|
|
2393
2472
|
},
|
|
2394
2473
|
{
|
|
2395
2474
|
"name": "value",
|
|
@@ -2423,15 +2502,14 @@
|
|
|
2423
2502
|
},
|
|
2424
2503
|
{
|
|
2425
2504
|
"name": "message-icon",
|
|
2426
|
-
"
|
|
2427
|
-
"values": [{ "name": "IconTypes" }]
|
|
2505
|
+
"values": [{ "name": "DBSwitchProps[\"messageIcon\"]" }]
|
|
2428
2506
|
}
|
|
2429
2507
|
],
|
|
2430
2508
|
"references": []
|
|
2431
2509
|
},
|
|
2432
2510
|
{
|
|
2433
2511
|
"name": "db-tab-item",
|
|
2434
|
-
"description": "\n---\n\n\n### **Events:**\n - **change**\n\n### **Slots:**\n - **children** - default slot",
|
|
2512
|
+
"description": "\n---\n\n\n### **Events:**\n - **change**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
2435
2513
|
"attributes": [
|
|
2436
2514
|
{
|
|
2437
2515
|
"name": "active",
|
|
@@ -2445,13 +2523,12 @@
|
|
|
2445
2523
|
},
|
|
2446
2524
|
{
|
|
2447
2525
|
"name": "classname",
|
|
2448
|
-
"
|
|
2449
|
-
"values": []
|
|
2526
|
+
"values": [{ "name": "DBTabItemProps[\"className\"]" }]
|
|
2450
2527
|
},
|
|
2528
|
+
{ "name": "id", "values": [{ "name": "DBTabItemProps[\"id\"]" }] },
|
|
2451
2529
|
{
|
|
2452
|
-
"name": "
|
|
2453
|
-
"
|
|
2454
|
-
"values": []
|
|
2530
|
+
"name": "prop-overrides",
|
|
2531
|
+
"values": [{ "name": "DBTabItemProps[\"propOverrides\"]" }]
|
|
2455
2532
|
},
|
|
2456
2533
|
{
|
|
2457
2534
|
"name": "icon-leading",
|
|
@@ -2508,34 +2585,32 @@
|
|
|
2508
2585
|
},
|
|
2509
2586
|
{
|
|
2510
2587
|
"name": "db-tab-list",
|
|
2511
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
2588
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
2512
2589
|
"attributes": [
|
|
2590
|
+
{ "name": "id", "values": [{ "name": "DBTabListProps[\"id\"]" }] },
|
|
2513
2591
|
{
|
|
2514
|
-
"name": "
|
|
2515
|
-
"
|
|
2516
|
-
"values": []
|
|
2592
|
+
"name": "prop-overrides",
|
|
2593
|
+
"values": [{ "name": "DBTabListProps[\"propOverrides\"]" }]
|
|
2517
2594
|
},
|
|
2518
2595
|
{
|
|
2519
2596
|
"name": "classname",
|
|
2520
|
-
"
|
|
2521
|
-
"values": []
|
|
2597
|
+
"values": [{ "name": "DBTabListProps[\"className\"]" }]
|
|
2522
2598
|
}
|
|
2523
2599
|
],
|
|
2524
2600
|
"references": []
|
|
2525
2601
|
},
|
|
2526
2602
|
{
|
|
2527
2603
|
"name": "db-tab-panel",
|
|
2528
|
-
"description": "\n---\n\n\n### **Slots:**\n - **children** - default slot",
|
|
2604
|
+
"description": "\n---\n\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
2529
2605
|
"attributes": [
|
|
2530
2606
|
{
|
|
2531
2607
|
"name": "classname",
|
|
2532
|
-
"
|
|
2533
|
-
"values": []
|
|
2608
|
+
"values": [{ "name": "DBTabPanelProps[\"className\"]" }]
|
|
2534
2609
|
},
|
|
2610
|
+
{ "name": "id", "values": [{ "name": "DBTabPanelProps[\"id\"]" }] },
|
|
2535
2611
|
{
|
|
2536
|
-
"name": "
|
|
2537
|
-
"
|
|
2538
|
-
"values": []
|
|
2612
|
+
"name": "prop-overrides",
|
|
2613
|
+
"values": [{ "name": "DBTabPanelProps[\"propOverrides\"]" }]
|
|
2539
2614
|
},
|
|
2540
2615
|
{
|
|
2541
2616
|
"name": "content",
|
|
@@ -2547,7 +2622,7 @@
|
|
|
2547
2622
|
},
|
|
2548
2623
|
{
|
|
2549
2624
|
"name": "db-tabs",
|
|
2550
|
-
"description": "\n---\n\n\n### **Events:**\n - **indexChange**\n- **tabSelect**\n\n### **Slots:**\n - **children** - default slot",
|
|
2625
|
+
"description": "\n---\n\n\n### **Events:**\n - **indexChange**\n- **tabSelect**\n\n### **Slots:**\n - **children** - This is a default/unnamed slot",
|
|
2551
2626
|
"attributes": [
|
|
2552
2627
|
{
|
|
2553
2628
|
"name": "name",
|
|
@@ -2584,15 +2659,14 @@
|
|
|
2584
2659
|
"description": "Default behavior is auto selecting the first tab, change selected tab by index",
|
|
2585
2660
|
"values": []
|
|
2586
2661
|
},
|
|
2662
|
+
{ "name": "id", "values": [{ "name": "DBTabsProps[\"id\"]" }] },
|
|
2587
2663
|
{
|
|
2588
|
-
"name": "
|
|
2589
|
-
"
|
|
2590
|
-
"values": []
|
|
2664
|
+
"name": "prop-overrides",
|
|
2665
|
+
"values": [{ "name": "DBTabsProps[\"propOverrides\"]" }]
|
|
2591
2666
|
},
|
|
2592
2667
|
{
|
|
2593
2668
|
"name": "classname",
|
|
2594
|
-
"
|
|
2595
|
-
"values": []
|
|
2669
|
+
"values": [{ "name": "DBTabsProps[\"className\"]" }]
|
|
2596
2670
|
},
|
|
2597
2671
|
{
|
|
2598
2672
|
"name": "alignment",
|
|
@@ -2609,18 +2683,18 @@
|
|
|
2609
2683
|
},
|
|
2610
2684
|
{
|
|
2611
2685
|
"name": "db-textarea",
|
|
2612
|
-
"description": "\n---\n\n\n### **Events:**\n - **input**\n- **change**\n- **blur**\n- **focus**\n\n### **Slots:**\n - **children** - default slot",
|
|
2686
|
+
"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",
|
|
2613
2687
|
"attributes": [
|
|
2614
|
-
{
|
|
2615
|
-
"name": "id",
|
|
2616
|
-
"description": "[ID](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id) of the component, generated automatically for some components as a fallback if unset.",
|
|
2617
|
-
"values": []
|
|
2618
|
-
},
|
|
2619
2688
|
{
|
|
2620
2689
|
"name": "invalid-message",
|
|
2621
2690
|
"description": "Helper message for invalid form components",
|
|
2622
2691
|
"values": []
|
|
2623
2692
|
},
|
|
2693
|
+
{ "name": "id", "values": [{ "name": "DBTextareaProps[\"id\"]" }] },
|
|
2694
|
+
{
|
|
2695
|
+
"name": "prop-overrides",
|
|
2696
|
+
"values": [{ "name": "DBTextareaProps[\"propOverrides\"]" }]
|
|
2697
|
+
},
|
|
2624
2698
|
{
|
|
2625
2699
|
"name": "message",
|
|
2626
2700
|
"description": "Optional helper message for form components",
|
|
@@ -2667,8 +2741,7 @@
|
|
|
2667
2741
|
},
|
|
2668
2742
|
{
|
|
2669
2743
|
"name": "classname",
|
|
2670
|
-
"
|
|
2671
|
-
"values": []
|
|
2744
|
+
"values": [{ "name": "DBTextareaProps[\"className\"]" }]
|
|
2672
2745
|
},
|
|
2673
2746
|
{
|
|
2674
2747
|
"name": "variant",
|
|
@@ -2872,37 +2945,171 @@
|
|
|
2872
2945
|
"references": []
|
|
2873
2946
|
},
|
|
2874
2947
|
{
|
|
2875
|
-
"name": "
|
|
2948
|
+
"name": "accordion-behavior",
|
|
2876
2949
|
"description": "\n---\n",
|
|
2877
2950
|
"attributes": [],
|
|
2878
2951
|
"references": []
|
|
2879
2952
|
},
|
|
2880
2953
|
{
|
|
2881
|
-
"name": "
|
|
2954
|
+
"name": "accordion-density",
|
|
2882
2955
|
"description": "\n---\n",
|
|
2883
2956
|
"attributes": [],
|
|
2884
2957
|
"references": []
|
|
2885
2958
|
},
|
|
2886
2959
|
{
|
|
2887
|
-
"name": "
|
|
2960
|
+
"name": "accordion-variant",
|
|
2888
2961
|
"description": "\n---\n",
|
|
2889
2962
|
"attributes": [],
|
|
2890
2963
|
"references": []
|
|
2891
2964
|
},
|
|
2892
2965
|
{
|
|
2893
|
-
"name": "
|
|
2966
|
+
"name": "accordion-showcase",
|
|
2894
2967
|
"description": "\n---\n",
|
|
2895
|
-
"attributes": [
|
|
2968
|
+
"attributes": [
|
|
2969
|
+
{
|
|
2970
|
+
"name": "is-patternhub",
|
|
2971
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
2972
|
+
}
|
|
2973
|
+
],
|
|
2896
2974
|
"references": []
|
|
2897
2975
|
},
|
|
2898
2976
|
{
|
|
2899
|
-
"name": "
|
|
2977
|
+
"name": "accordion-item-density",
|
|
2900
2978
|
"description": "\n---\n",
|
|
2901
2979
|
"attributes": [],
|
|
2902
2980
|
"references": []
|
|
2903
2981
|
},
|
|
2904
2982
|
{
|
|
2905
|
-
"name": "
|
|
2983
|
+
"name": "accordion-item-disabled",
|
|
2984
|
+
"description": "\n---\n",
|
|
2985
|
+
"attributes": [],
|
|
2986
|
+
"references": []
|
|
2987
|
+
},
|
|
2988
|
+
{
|
|
2989
|
+
"name": "accordion-item-open",
|
|
2990
|
+
"description": "\n---\n",
|
|
2991
|
+
"attributes": [],
|
|
2992
|
+
"references": []
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
"name": "accordion-item-showcase",
|
|
2996
|
+
"description": "\n---\n",
|
|
2997
|
+
"attributes": [
|
|
2998
|
+
{
|
|
2999
|
+
"name": "is-patternhub",
|
|
3000
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3001
|
+
}
|
|
3002
|
+
],
|
|
3003
|
+
"references": []
|
|
3004
|
+
},
|
|
3005
|
+
{
|
|
3006
|
+
"name": "badge-content",
|
|
3007
|
+
"description": "\n---\n",
|
|
3008
|
+
"attributes": [],
|
|
3009
|
+
"references": []
|
|
3010
|
+
},
|
|
3011
|
+
{
|
|
3012
|
+
"name": "badge-density",
|
|
3013
|
+
"description": "\n---\n",
|
|
3014
|
+
"attributes": [],
|
|
3015
|
+
"references": []
|
|
3016
|
+
},
|
|
3017
|
+
{
|
|
3018
|
+
"name": "badge-emphasis",
|
|
3019
|
+
"description": "\n---\n",
|
|
3020
|
+
"attributes": [],
|
|
3021
|
+
"references": []
|
|
3022
|
+
},
|
|
3023
|
+
{
|
|
3024
|
+
"name": "badge-examples",
|
|
3025
|
+
"description": "\n---\n",
|
|
3026
|
+
"attributes": [],
|
|
3027
|
+
"references": []
|
|
3028
|
+
},
|
|
3029
|
+
{
|
|
3030
|
+
"name": "badge-placement",
|
|
3031
|
+
"description": "\n---\n",
|
|
3032
|
+
"attributes": [],
|
|
3033
|
+
"references": []
|
|
3034
|
+
},
|
|
3035
|
+
{
|
|
3036
|
+
"name": "badge-semantic",
|
|
3037
|
+
"description": "\n---\n",
|
|
3038
|
+
"attributes": [],
|
|
3039
|
+
"references": []
|
|
3040
|
+
},
|
|
3041
|
+
{
|
|
3042
|
+
"name": "badge-size",
|
|
3043
|
+
"description": "\n---\n",
|
|
3044
|
+
"attributes": [],
|
|
3045
|
+
"references": []
|
|
3046
|
+
},
|
|
3047
|
+
{
|
|
3048
|
+
"name": "badge-showcase",
|
|
3049
|
+
"description": "\n---\n",
|
|
3050
|
+
"attributes": [
|
|
3051
|
+
{
|
|
3052
|
+
"name": "is-patternhub",
|
|
3053
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3054
|
+
}
|
|
3055
|
+
],
|
|
3056
|
+
"references": []
|
|
3057
|
+
},
|
|
3058
|
+
{
|
|
3059
|
+
"name": "brand-density",
|
|
3060
|
+
"description": "\n---\n",
|
|
3061
|
+
"attributes": [],
|
|
3062
|
+
"references": []
|
|
3063
|
+
},
|
|
3064
|
+
{
|
|
3065
|
+
"name": "brand-variants",
|
|
3066
|
+
"description": "\n---\n",
|
|
3067
|
+
"attributes": [],
|
|
3068
|
+
"references": []
|
|
3069
|
+
},
|
|
3070
|
+
{
|
|
3071
|
+
"name": "brand-showcase",
|
|
3072
|
+
"description": "\n---\n",
|
|
3073
|
+
"attributes": [
|
|
3074
|
+
{
|
|
3075
|
+
"name": "is-patternhub",
|
|
3076
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3077
|
+
}
|
|
3078
|
+
],
|
|
3079
|
+
"references": []
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"name": "button-density",
|
|
3083
|
+
"description": "\n---\n",
|
|
3084
|
+
"attributes": [],
|
|
3085
|
+
"references": []
|
|
3086
|
+
},
|
|
3087
|
+
{
|
|
3088
|
+
"name": "button-disabled",
|
|
3089
|
+
"description": "\n---\n",
|
|
3090
|
+
"attributes": [],
|
|
3091
|
+
"references": []
|
|
3092
|
+
},
|
|
3093
|
+
{
|
|
3094
|
+
"name": "button-multi-line-text",
|
|
3095
|
+
"description": "\n---\n",
|
|
3096
|
+
"attributes": [],
|
|
3097
|
+
"references": []
|
|
3098
|
+
},
|
|
3099
|
+
{
|
|
3100
|
+
"name": "button-no-text",
|
|
3101
|
+
"description": "\n---\n",
|
|
3102
|
+
"attributes": [],
|
|
3103
|
+
"references": []
|
|
3104
|
+
},
|
|
3105
|
+
{
|
|
3106
|
+
"name": "button-show-icon-leading",
|
|
3107
|
+
"description": "\n---\n",
|
|
3108
|
+
"attributes": [],
|
|
3109
|
+
"references": []
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"name": "button-show-icon-trailing",
|
|
2906
3113
|
"description": "\n---\n",
|
|
2907
3114
|
"attributes": [],
|
|
2908
3115
|
"references": []
|
|
@@ -2935,6 +3142,1535 @@
|
|
|
2935
3142
|
}
|
|
2936
3143
|
],
|
|
2937
3144
|
"references": []
|
|
3145
|
+
},
|
|
3146
|
+
{
|
|
3147
|
+
"name": "card-behavior",
|
|
3148
|
+
"description": "\n---\n",
|
|
3149
|
+
"attributes": [],
|
|
3150
|
+
"references": []
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"name": "card-density",
|
|
3154
|
+
"description": "\n---\n",
|
|
3155
|
+
"attributes": [],
|
|
3156
|
+
"references": []
|
|
3157
|
+
},
|
|
3158
|
+
{
|
|
3159
|
+
"name": "card-elevation-level",
|
|
3160
|
+
"description": "\n---\n",
|
|
3161
|
+
"attributes": [],
|
|
3162
|
+
"references": []
|
|
3163
|
+
},
|
|
3164
|
+
{
|
|
3165
|
+
"name": "card-example",
|
|
3166
|
+
"description": "\n---\n",
|
|
3167
|
+
"attributes": [],
|
|
3168
|
+
"references": []
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"name": "card-spacing",
|
|
3172
|
+
"description": "\n---\n",
|
|
3173
|
+
"attributes": [],
|
|
3174
|
+
"references": []
|
|
3175
|
+
},
|
|
3176
|
+
{
|
|
3177
|
+
"name": "card-showcase",
|
|
3178
|
+
"description": "\n---\n",
|
|
3179
|
+
"attributes": [
|
|
3180
|
+
{
|
|
3181
|
+
"name": "is-patternhub",
|
|
3182
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3183
|
+
}
|
|
3184
|
+
],
|
|
3185
|
+
"references": []
|
|
3186
|
+
},
|
|
3187
|
+
{
|
|
3188
|
+
"name": "checkbox-checked",
|
|
3189
|
+
"description": "\n---\n",
|
|
3190
|
+
"attributes": [],
|
|
3191
|
+
"references": []
|
|
3192
|
+
},
|
|
3193
|
+
{
|
|
3194
|
+
"name": "checkbox-density",
|
|
3195
|
+
"description": "\n---\n",
|
|
3196
|
+
"attributes": [],
|
|
3197
|
+
"references": []
|
|
3198
|
+
},
|
|
3199
|
+
{
|
|
3200
|
+
"name": "checkbox-disabled",
|
|
3201
|
+
"description": "\n---\n",
|
|
3202
|
+
"attributes": [],
|
|
3203
|
+
"references": []
|
|
3204
|
+
},
|
|
3205
|
+
{
|
|
3206
|
+
"name": "checkbox-example",
|
|
3207
|
+
"description": "\n---\n",
|
|
3208
|
+
"attributes": [],
|
|
3209
|
+
"references": []
|
|
3210
|
+
},
|
|
3211
|
+
{
|
|
3212
|
+
"name": "checkbox-indeterminate",
|
|
3213
|
+
"description": "\n---\n",
|
|
3214
|
+
"attributes": [],
|
|
3215
|
+
"references": []
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
"name": "checkbox-required",
|
|
3219
|
+
"description": "\n---\n",
|
|
3220
|
+
"attributes": [],
|
|
3221
|
+
"references": []
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
"name": "checkbox-show-label",
|
|
3225
|
+
"description": "\n---\n",
|
|
3226
|
+
"attributes": [],
|
|
3227
|
+
"references": []
|
|
3228
|
+
},
|
|
3229
|
+
{
|
|
3230
|
+
"name": "checkbox-show-required-asterisk",
|
|
3231
|
+
"description": "\n---\n",
|
|
3232
|
+
"attributes": [],
|
|
3233
|
+
"references": []
|
|
3234
|
+
},
|
|
3235
|
+
{
|
|
3236
|
+
"name": "checkbox-size",
|
|
3237
|
+
"description": "\n---\n",
|
|
3238
|
+
"attributes": [],
|
|
3239
|
+
"references": []
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
"name": "checkbox-validation",
|
|
3243
|
+
"description": "\n---\n",
|
|
3244
|
+
"attributes": [],
|
|
3245
|
+
"references": []
|
|
3246
|
+
},
|
|
3247
|
+
{
|
|
3248
|
+
"name": "checkbox-showcase",
|
|
3249
|
+
"description": "\n---\n",
|
|
3250
|
+
"attributes": [
|
|
3251
|
+
{
|
|
3252
|
+
"name": "is-patternhub",
|
|
3253
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3254
|
+
}
|
|
3255
|
+
],
|
|
3256
|
+
"references": []
|
|
3257
|
+
},
|
|
3258
|
+
{
|
|
3259
|
+
"name": "custom-button-checkbox",
|
|
3260
|
+
"description": "\n---\n",
|
|
3261
|
+
"attributes": [],
|
|
3262
|
+
"references": []
|
|
3263
|
+
},
|
|
3264
|
+
{
|
|
3265
|
+
"name": "custom-button-density",
|
|
3266
|
+
"description": "\n---\n",
|
|
3267
|
+
"attributes": [],
|
|
3268
|
+
"references": []
|
|
3269
|
+
},
|
|
3270
|
+
{
|
|
3271
|
+
"name": "custom-button-disabled",
|
|
3272
|
+
"description": "\n---\n",
|
|
3273
|
+
"attributes": [],
|
|
3274
|
+
"references": []
|
|
3275
|
+
},
|
|
3276
|
+
{
|
|
3277
|
+
"name": "custom-button-multi-line-text",
|
|
3278
|
+
"description": "\n---\n",
|
|
3279
|
+
"attributes": [],
|
|
3280
|
+
"references": []
|
|
3281
|
+
},
|
|
3282
|
+
{
|
|
3283
|
+
"name": "custom-button-no-text",
|
|
3284
|
+
"description": "\n---\n",
|
|
3285
|
+
"attributes": [],
|
|
3286
|
+
"references": []
|
|
3287
|
+
},
|
|
3288
|
+
{
|
|
3289
|
+
"name": "custom-button-show-icon-leading",
|
|
3290
|
+
"description": "\n---\n",
|
|
3291
|
+
"attributes": [],
|
|
3292
|
+
"references": []
|
|
3293
|
+
},
|
|
3294
|
+
{
|
|
3295
|
+
"name": "custom-button-show-icon-trailing",
|
|
3296
|
+
"description": "\n---\n",
|
|
3297
|
+
"attributes": [],
|
|
3298
|
+
"references": []
|
|
3299
|
+
},
|
|
3300
|
+
{
|
|
3301
|
+
"name": "custom-button-size",
|
|
3302
|
+
"description": "\n---\n",
|
|
3303
|
+
"attributes": [],
|
|
3304
|
+
"references": []
|
|
3305
|
+
},
|
|
3306
|
+
{
|
|
3307
|
+
"name": "custom-button-variant",
|
|
3308
|
+
"description": "\n---\n",
|
|
3309
|
+
"attributes": [],
|
|
3310
|
+
"references": []
|
|
3311
|
+
},
|
|
3312
|
+
{
|
|
3313
|
+
"name": "custom-button-width",
|
|
3314
|
+
"description": "\n---\n",
|
|
3315
|
+
"attributes": [],
|
|
3316
|
+
"references": []
|
|
3317
|
+
},
|
|
3318
|
+
{
|
|
3319
|
+
"name": "custom-button-showcase",
|
|
3320
|
+
"description": "\n---\n",
|
|
3321
|
+
"attributes": [
|
|
3322
|
+
{
|
|
3323
|
+
"name": "is-patternhub",
|
|
3324
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3325
|
+
}
|
|
3326
|
+
],
|
|
3327
|
+
"references": []
|
|
3328
|
+
},
|
|
3329
|
+
{
|
|
3330
|
+
"name": "custom-select-density",
|
|
3331
|
+
"description": "\n---\n",
|
|
3332
|
+
"attributes": [],
|
|
3333
|
+
"references": []
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
"name": "custom-select-disabled",
|
|
3337
|
+
"description": "\n---\n",
|
|
3338
|
+
"attributes": [],
|
|
3339
|
+
"references": []
|
|
3340
|
+
},
|
|
3341
|
+
{
|
|
3342
|
+
"name": "custom-select-dropdown-width",
|
|
3343
|
+
"description": "\n---\n",
|
|
3344
|
+
"attributes": [],
|
|
3345
|
+
"references": []
|
|
3346
|
+
},
|
|
3347
|
+
{
|
|
3348
|
+
"name": "custom-select-example-other-configuration",
|
|
3349
|
+
"description": "\n---\n",
|
|
3350
|
+
"attributes": [],
|
|
3351
|
+
"references": []
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"name": "custom-select-exampletags",
|
|
3355
|
+
"description": "\n---\n",
|
|
3356
|
+
"attributes": [],
|
|
3357
|
+
"references": []
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
"name": "custom-select-examples-floatinglabel",
|
|
3361
|
+
"description": "\n---\n",
|
|
3362
|
+
"attributes": [],
|
|
3363
|
+
"references": []
|
|
3364
|
+
},
|
|
3365
|
+
{
|
|
3366
|
+
"name": "custom-select-examples-multiple",
|
|
3367
|
+
"description": "\n---\n",
|
|
3368
|
+
"attributes": [],
|
|
3369
|
+
"references": []
|
|
3370
|
+
},
|
|
3371
|
+
{
|
|
3372
|
+
"name": "custom-select-examples-single",
|
|
3373
|
+
"description": "\n---\n",
|
|
3374
|
+
"attributes": [],
|
|
3375
|
+
"references": []
|
|
3376
|
+
},
|
|
3377
|
+
{
|
|
3378
|
+
"name": "custom-select-form-field-width",
|
|
3379
|
+
"description": "\n---\n",
|
|
3380
|
+
"attributes": [],
|
|
3381
|
+
"references": []
|
|
3382
|
+
},
|
|
3383
|
+
{
|
|
3384
|
+
"name": "custom-select-multiple",
|
|
3385
|
+
"description": "\n---\n",
|
|
3386
|
+
"attributes": [],
|
|
3387
|
+
"references": []
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
"name": "custom-select-placement",
|
|
3391
|
+
"description": "\n---\n",
|
|
3392
|
+
"attributes": [],
|
|
3393
|
+
"references": []
|
|
3394
|
+
},
|
|
3395
|
+
{
|
|
3396
|
+
"name": "custom-select-required",
|
|
3397
|
+
"description": "\n---\n",
|
|
3398
|
+
"attributes": [],
|
|
3399
|
+
"references": []
|
|
3400
|
+
},
|
|
3401
|
+
{
|
|
3402
|
+
"name": "custom-select-selectedtype",
|
|
3403
|
+
"description": "\n---\n",
|
|
3404
|
+
"attributes": [],
|
|
3405
|
+
"references": []
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
"name": "custom-select-show-clear-selection",
|
|
3409
|
+
"description": "\n---\n",
|
|
3410
|
+
"attributes": [],
|
|
3411
|
+
"references": []
|
|
3412
|
+
},
|
|
3413
|
+
{
|
|
3414
|
+
"name": "custom-select-show-icon",
|
|
3415
|
+
"description": "\n---\n",
|
|
3416
|
+
"attributes": [],
|
|
3417
|
+
"references": []
|
|
3418
|
+
},
|
|
3419
|
+
{
|
|
3420
|
+
"name": "custom-select-show-label",
|
|
3421
|
+
"description": "\n---\n",
|
|
3422
|
+
"attributes": [],
|
|
3423
|
+
"references": []
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"name": "custom-select-show-loading",
|
|
3427
|
+
"description": "\n---\n",
|
|
3428
|
+
"attributes": [],
|
|
3429
|
+
"references": []
|
|
3430
|
+
},
|
|
3431
|
+
{
|
|
3432
|
+
"name": "custom-select-show-message",
|
|
3433
|
+
"description": "\n---\n",
|
|
3434
|
+
"attributes": [],
|
|
3435
|
+
"references": []
|
|
3436
|
+
},
|
|
3437
|
+
{
|
|
3438
|
+
"name": "custom-select-show-no-result",
|
|
3439
|
+
"description": "\n---\n",
|
|
3440
|
+
"attributes": [],
|
|
3441
|
+
"references": []
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
"name": "custom-select-show-required-asterisk",
|
|
3445
|
+
"description": "\n---\n",
|
|
3446
|
+
"attributes": [],
|
|
3447
|
+
"references": []
|
|
3448
|
+
},
|
|
3449
|
+
{
|
|
3450
|
+
"name": "custom-select-show-search",
|
|
3451
|
+
"description": "\n---\n",
|
|
3452
|
+
"attributes": [],
|
|
3453
|
+
"references": []
|
|
3454
|
+
},
|
|
3455
|
+
{
|
|
3456
|
+
"name": "custom-select-show-select-all",
|
|
3457
|
+
"description": "\n---\n",
|
|
3458
|
+
"attributes": [],
|
|
3459
|
+
"references": []
|
|
3460
|
+
},
|
|
3461
|
+
{
|
|
3462
|
+
"name": "custom-select-validation",
|
|
3463
|
+
"description": "\n---\n",
|
|
3464
|
+
"attributes": [],
|
|
3465
|
+
"references": []
|
|
3466
|
+
},
|
|
3467
|
+
{
|
|
3468
|
+
"name": "custom-select-variant",
|
|
3469
|
+
"description": "\n---\n",
|
|
3470
|
+
"attributes": [],
|
|
3471
|
+
"references": []
|
|
3472
|
+
},
|
|
3473
|
+
{
|
|
3474
|
+
"name": "custom-select-showcase",
|
|
3475
|
+
"description": "\n---\n",
|
|
3476
|
+
"attributes": [
|
|
3477
|
+
{
|
|
3478
|
+
"name": "is-patternhub",
|
|
3479
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3480
|
+
}
|
|
3481
|
+
],
|
|
3482
|
+
"references": []
|
|
3483
|
+
},
|
|
3484
|
+
{
|
|
3485
|
+
"name": "divider-density",
|
|
3486
|
+
"description": "\n---\n",
|
|
3487
|
+
"attributes": [],
|
|
3488
|
+
"references": []
|
|
3489
|
+
},
|
|
3490
|
+
{
|
|
3491
|
+
"name": "divider-emphasis",
|
|
3492
|
+
"description": "\n---\n",
|
|
3493
|
+
"attributes": [],
|
|
3494
|
+
"references": []
|
|
3495
|
+
},
|
|
3496
|
+
{
|
|
3497
|
+
"name": "divider-variant",
|
|
3498
|
+
"description": "\n---\n",
|
|
3499
|
+
"attributes": [],
|
|
3500
|
+
"references": []
|
|
3501
|
+
},
|
|
3502
|
+
{
|
|
3503
|
+
"name": "divider-showcase",
|
|
3504
|
+
"description": "\n---\n",
|
|
3505
|
+
"attributes": [
|
|
3506
|
+
{
|
|
3507
|
+
"name": "is-patternhub",
|
|
3508
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3509
|
+
}
|
|
3510
|
+
],
|
|
3511
|
+
"references": []
|
|
3512
|
+
},
|
|
3513
|
+
{
|
|
3514
|
+
"name": "drawer-backdrop",
|
|
3515
|
+
"description": "\n---\n",
|
|
3516
|
+
"attributes": [],
|
|
3517
|
+
"references": []
|
|
3518
|
+
},
|
|
3519
|
+
{
|
|
3520
|
+
"name": "drawer-density",
|
|
3521
|
+
"description": "\n---\n",
|
|
3522
|
+
"attributes": [],
|
|
3523
|
+
"references": []
|
|
3524
|
+
},
|
|
3525
|
+
{
|
|
3526
|
+
"name": "drawer-direction",
|
|
3527
|
+
"description": "\n---\n",
|
|
3528
|
+
"attributes": [],
|
|
3529
|
+
"references": []
|
|
3530
|
+
},
|
|
3531
|
+
{
|
|
3532
|
+
"name": "drawer-example",
|
|
3533
|
+
"description": "\n---\n",
|
|
3534
|
+
"attributes": [],
|
|
3535
|
+
"references": []
|
|
3536
|
+
},
|
|
3537
|
+
{
|
|
3538
|
+
"name": "drawer-rounded",
|
|
3539
|
+
"description": "\n---\n",
|
|
3540
|
+
"attributes": [],
|
|
3541
|
+
"references": []
|
|
3542
|
+
},
|
|
3543
|
+
{
|
|
3544
|
+
"name": "drawer-size",
|
|
3545
|
+
"description": "\n---\n",
|
|
3546
|
+
"attributes": [],
|
|
3547
|
+
"references": []
|
|
3548
|
+
},
|
|
3549
|
+
{
|
|
3550
|
+
"name": "drawer-spacing",
|
|
3551
|
+
"description": "\n---\n",
|
|
3552
|
+
"attributes": [],
|
|
3553
|
+
"references": []
|
|
3554
|
+
},
|
|
3555
|
+
{
|
|
3556
|
+
"name": "drawer-showcase",
|
|
3557
|
+
"description": "\n---\n",
|
|
3558
|
+
"attributes": [
|
|
3559
|
+
{
|
|
3560
|
+
"name": "is-patternhub",
|
|
3561
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3562
|
+
}
|
|
3563
|
+
],
|
|
3564
|
+
"references": []
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"name": "header-behavior",
|
|
3568
|
+
"description": "\n---\n",
|
|
3569
|
+
"attributes": [],
|
|
3570
|
+
"references": []
|
|
3571
|
+
},
|
|
3572
|
+
{
|
|
3573
|
+
"name": "header-density",
|
|
3574
|
+
"description": "\n---\n",
|
|
3575
|
+
"attributes": [],
|
|
3576
|
+
"references": []
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"name": "header-examples",
|
|
3580
|
+
"description": "\n---\n",
|
|
3581
|
+
"attributes": [],
|
|
3582
|
+
"references": []
|
|
3583
|
+
},
|
|
3584
|
+
{
|
|
3585
|
+
"name": "header-width",
|
|
3586
|
+
"description": "\n---\n",
|
|
3587
|
+
"attributes": [],
|
|
3588
|
+
"references": []
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"name": "header-showcase",
|
|
3592
|
+
"description": "\n---\n",
|
|
3593
|
+
"attributes": [
|
|
3594
|
+
{
|
|
3595
|
+
"name": "is-patternhub",
|
|
3596
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3597
|
+
}
|
|
3598
|
+
],
|
|
3599
|
+
"references": []
|
|
3600
|
+
},
|
|
3601
|
+
{
|
|
3602
|
+
"name": "icon-density",
|
|
3603
|
+
"description": "\n---\n",
|
|
3604
|
+
"attributes": [],
|
|
3605
|
+
"references": []
|
|
3606
|
+
},
|
|
3607
|
+
{
|
|
3608
|
+
"name": "icon-showcase",
|
|
3609
|
+
"description": "\n---\n",
|
|
3610
|
+
"attributes": [
|
|
3611
|
+
{
|
|
3612
|
+
"name": "is-patternhub",
|
|
3613
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3614
|
+
}
|
|
3615
|
+
],
|
|
3616
|
+
"references": []
|
|
3617
|
+
},
|
|
3618
|
+
{
|
|
3619
|
+
"name": "infotext-density",
|
|
3620
|
+
"description": "\n---\n",
|
|
3621
|
+
"attributes": [],
|
|
3622
|
+
"references": []
|
|
3623
|
+
},
|
|
3624
|
+
{
|
|
3625
|
+
"name": "infotext-semantic",
|
|
3626
|
+
"description": "\n---\n",
|
|
3627
|
+
"attributes": [],
|
|
3628
|
+
"references": []
|
|
3629
|
+
},
|
|
3630
|
+
{
|
|
3631
|
+
"name": "infotext-show-icon",
|
|
3632
|
+
"description": "\n---\n",
|
|
3633
|
+
"attributes": [],
|
|
3634
|
+
"references": []
|
|
3635
|
+
},
|
|
3636
|
+
{
|
|
3637
|
+
"name": "infotext-size",
|
|
3638
|
+
"description": "\n---\n",
|
|
3639
|
+
"attributes": [],
|
|
3640
|
+
"references": []
|
|
3641
|
+
},
|
|
3642
|
+
{
|
|
3643
|
+
"name": "infotext-showcase",
|
|
3644
|
+
"description": "\n---\n",
|
|
3645
|
+
"attributes": [
|
|
3646
|
+
{
|
|
3647
|
+
"name": "is-patternhub",
|
|
3648
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3649
|
+
}
|
|
3650
|
+
],
|
|
3651
|
+
"references": []
|
|
3652
|
+
},
|
|
3653
|
+
{
|
|
3654
|
+
"name": "input-datalist-typeahead-examples",
|
|
3655
|
+
"description": "\n---\n",
|
|
3656
|
+
"attributes": [],
|
|
3657
|
+
"references": []
|
|
3658
|
+
},
|
|
3659
|
+
{
|
|
3660
|
+
"name": "input-density",
|
|
3661
|
+
"description": "\n---\n",
|
|
3662
|
+
"attributes": [],
|
|
3663
|
+
"references": []
|
|
3664
|
+
},
|
|
3665
|
+
{
|
|
3666
|
+
"name": "input-disabled",
|
|
3667
|
+
"description": "\n---\n",
|
|
3668
|
+
"attributes": [],
|
|
3669
|
+
"references": []
|
|
3670
|
+
},
|
|
3671
|
+
{
|
|
3672
|
+
"name": "input-example-floating-label",
|
|
3673
|
+
"description": "\n---\n",
|
|
3674
|
+
"attributes": [],
|
|
3675
|
+
"references": []
|
|
3676
|
+
},
|
|
3677
|
+
{
|
|
3678
|
+
"name": "input-example-length",
|
|
3679
|
+
"description": "\n---\n",
|
|
3680
|
+
"attributes": [],
|
|
3681
|
+
"references": []
|
|
3682
|
+
},
|
|
3683
|
+
{
|
|
3684
|
+
"name": "input-example-types-floating-label",
|
|
3685
|
+
"description": "\n---\n",
|
|
3686
|
+
"attributes": [],
|
|
3687
|
+
"references": []
|
|
3688
|
+
},
|
|
3689
|
+
{
|
|
3690
|
+
"name": "input-example-typeswithminandmax",
|
|
3691
|
+
"description": "\n---\n",
|
|
3692
|
+
"attributes": [],
|
|
3693
|
+
"references": []
|
|
3694
|
+
},
|
|
3695
|
+
{
|
|
3696
|
+
"name": "input-readonly",
|
|
3697
|
+
"description": "\n---\n",
|
|
3698
|
+
"attributes": [],
|
|
3699
|
+
"references": []
|
|
3700
|
+
},
|
|
3701
|
+
{
|
|
3702
|
+
"name": "input-required",
|
|
3703
|
+
"description": "\n---\n",
|
|
3704
|
+
"attributes": [],
|
|
3705
|
+
"references": []
|
|
3706
|
+
},
|
|
3707
|
+
{
|
|
3708
|
+
"name": "input-show-icon-leading-trailing",
|
|
3709
|
+
"description": "\n---\n",
|
|
3710
|
+
"attributes": [],
|
|
3711
|
+
"references": []
|
|
3712
|
+
},
|
|
3713
|
+
{
|
|
3714
|
+
"name": "input-show-icon-leading",
|
|
3715
|
+
"description": "\n---\n",
|
|
3716
|
+
"attributes": [],
|
|
3717
|
+
"references": []
|
|
3718
|
+
},
|
|
3719
|
+
{
|
|
3720
|
+
"name": "input-show-icon-trailing",
|
|
3721
|
+
"description": "\n---\n",
|
|
3722
|
+
"attributes": [],
|
|
3723
|
+
"references": []
|
|
3724
|
+
},
|
|
3725
|
+
{
|
|
3726
|
+
"name": "input-show-label",
|
|
3727
|
+
"description": "\n---\n",
|
|
3728
|
+
"attributes": [],
|
|
3729
|
+
"references": []
|
|
3730
|
+
},
|
|
3731
|
+
{
|
|
3732
|
+
"name": "input-show-message",
|
|
3733
|
+
"description": "\n---\n",
|
|
3734
|
+
"attributes": [],
|
|
3735
|
+
"references": []
|
|
3736
|
+
},
|
|
3737
|
+
{
|
|
3738
|
+
"name": "input-show-required-asterisk",
|
|
3739
|
+
"description": "\n---\n",
|
|
3740
|
+
"attributes": [],
|
|
3741
|
+
"references": []
|
|
3742
|
+
},
|
|
3743
|
+
{
|
|
3744
|
+
"name": "input-state",
|
|
3745
|
+
"description": "\n---\n",
|
|
3746
|
+
"attributes": [],
|
|
3747
|
+
"references": []
|
|
3748
|
+
},
|
|
3749
|
+
{
|
|
3750
|
+
"name": "input-validation",
|
|
3751
|
+
"description": "\n---\n",
|
|
3752
|
+
"attributes": [],
|
|
3753
|
+
"references": []
|
|
3754
|
+
},
|
|
3755
|
+
{
|
|
3756
|
+
"name": "input-variant",
|
|
3757
|
+
"description": "\n---\n",
|
|
3758
|
+
"attributes": [],
|
|
3759
|
+
"references": []
|
|
3760
|
+
},
|
|
3761
|
+
{
|
|
3762
|
+
"name": "input-showcase",
|
|
3763
|
+
"description": "\n---\n",
|
|
3764
|
+
"attributes": [
|
|
3765
|
+
{
|
|
3766
|
+
"name": "is-patternhub",
|
|
3767
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3768
|
+
}
|
|
3769
|
+
],
|
|
3770
|
+
"references": []
|
|
3771
|
+
},
|
|
3772
|
+
{
|
|
3773
|
+
"name": "link-content",
|
|
3774
|
+
"description": "\n---\n",
|
|
3775
|
+
"attributes": [],
|
|
3776
|
+
"references": []
|
|
3777
|
+
},
|
|
3778
|
+
{
|
|
3779
|
+
"name": "link-density",
|
|
3780
|
+
"description": "\n---\n",
|
|
3781
|
+
"attributes": [],
|
|
3782
|
+
"references": []
|
|
3783
|
+
},
|
|
3784
|
+
{
|
|
3785
|
+
"name": "link-disabled",
|
|
3786
|
+
"description": "\n---\n",
|
|
3787
|
+
"attributes": [],
|
|
3788
|
+
"references": []
|
|
3789
|
+
},
|
|
3790
|
+
{
|
|
3791
|
+
"name": "link-examples",
|
|
3792
|
+
"description": "\n---\n",
|
|
3793
|
+
"attributes": [],
|
|
3794
|
+
"references": []
|
|
3795
|
+
},
|
|
3796
|
+
{
|
|
3797
|
+
"name": "link-show-icon",
|
|
3798
|
+
"description": "\n---\n",
|
|
3799
|
+
"attributes": [],
|
|
3800
|
+
"references": []
|
|
3801
|
+
},
|
|
3802
|
+
{
|
|
3803
|
+
"name": "link-size",
|
|
3804
|
+
"description": "\n---\n",
|
|
3805
|
+
"attributes": [],
|
|
3806
|
+
"references": []
|
|
3807
|
+
},
|
|
3808
|
+
{
|
|
3809
|
+
"name": "link-variant",
|
|
3810
|
+
"description": "\n---\n",
|
|
3811
|
+
"attributes": [],
|
|
3812
|
+
"references": []
|
|
3813
|
+
},
|
|
3814
|
+
{
|
|
3815
|
+
"name": "link-wrap",
|
|
3816
|
+
"description": "\n---\n",
|
|
3817
|
+
"attributes": [],
|
|
3818
|
+
"references": []
|
|
3819
|
+
},
|
|
3820
|
+
{
|
|
3821
|
+
"name": "link-showcase",
|
|
3822
|
+
"description": "\n---\n",
|
|
3823
|
+
"attributes": [
|
|
3824
|
+
{
|
|
3825
|
+
"name": "is-patternhub",
|
|
3826
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3827
|
+
}
|
|
3828
|
+
],
|
|
3829
|
+
"references": []
|
|
3830
|
+
},
|
|
3831
|
+
{
|
|
3832
|
+
"name": "navigation-density",
|
|
3833
|
+
"description": "\n---\n",
|
|
3834
|
+
"attributes": [],
|
|
3835
|
+
"references": []
|
|
3836
|
+
},
|
|
3837
|
+
{
|
|
3838
|
+
"name": "navigation-showcase",
|
|
3839
|
+
"description": "\n---\n",
|
|
3840
|
+
"attributes": [
|
|
3841
|
+
{
|
|
3842
|
+
"name": "is-patternhub",
|
|
3843
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3844
|
+
}
|
|
3845
|
+
],
|
|
3846
|
+
"references": []
|
|
3847
|
+
},
|
|
3848
|
+
{
|
|
3849
|
+
"name": "navigation-item-active",
|
|
3850
|
+
"description": "\n---\n",
|
|
3851
|
+
"attributes": [],
|
|
3852
|
+
"references": []
|
|
3853
|
+
},
|
|
3854
|
+
{
|
|
3855
|
+
"name": "navigation-item-density",
|
|
3856
|
+
"description": "\n---\n",
|
|
3857
|
+
"attributes": [],
|
|
3858
|
+
"references": []
|
|
3859
|
+
},
|
|
3860
|
+
{
|
|
3861
|
+
"name": "navigation-item-disabled",
|
|
3862
|
+
"description": "\n---\n",
|
|
3863
|
+
"attributes": [],
|
|
3864
|
+
"references": []
|
|
3865
|
+
},
|
|
3866
|
+
{
|
|
3867
|
+
"name": "navigation-item-expanded",
|
|
3868
|
+
"description": "\n---\n",
|
|
3869
|
+
"attributes": [],
|
|
3870
|
+
"references": []
|
|
3871
|
+
},
|
|
3872
|
+
{
|
|
3873
|
+
"name": "navigation-item-show-icon",
|
|
3874
|
+
"description": "\n---\n",
|
|
3875
|
+
"attributes": [],
|
|
3876
|
+
"references": []
|
|
3877
|
+
},
|
|
3878
|
+
{
|
|
3879
|
+
"name": "navigation-item-width",
|
|
3880
|
+
"description": "\n---\n",
|
|
3881
|
+
"attributes": [],
|
|
3882
|
+
"references": []
|
|
3883
|
+
},
|
|
3884
|
+
{
|
|
3885
|
+
"name": "navigation-item-wrap",
|
|
3886
|
+
"description": "\n---\n",
|
|
3887
|
+
"attributes": [],
|
|
3888
|
+
"references": []
|
|
3889
|
+
},
|
|
3890
|
+
{
|
|
3891
|
+
"name": "navigation-item-showcase",
|
|
3892
|
+
"description": "\n---\n",
|
|
3893
|
+
"attributes": [
|
|
3894
|
+
{
|
|
3895
|
+
"name": "is-patternhub",
|
|
3896
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3897
|
+
}
|
|
3898
|
+
],
|
|
3899
|
+
"references": []
|
|
3900
|
+
},
|
|
3901
|
+
{
|
|
3902
|
+
"name": "notification-closeable",
|
|
3903
|
+
"description": "\n---\n",
|
|
3904
|
+
"attributes": [],
|
|
3905
|
+
"references": []
|
|
3906
|
+
},
|
|
3907
|
+
{
|
|
3908
|
+
"name": "notification-density",
|
|
3909
|
+
"description": "\n---\n",
|
|
3910
|
+
"attributes": [],
|
|
3911
|
+
"references": []
|
|
3912
|
+
},
|
|
3913
|
+
{
|
|
3914
|
+
"name": "notification-examples-variant-docked",
|
|
3915
|
+
"description": "\n---\n",
|
|
3916
|
+
"attributes": [],
|
|
3917
|
+
"references": []
|
|
3918
|
+
},
|
|
3919
|
+
{
|
|
3920
|
+
"name": "notification-examples-variant-overlay",
|
|
3921
|
+
"description": "\n---\n",
|
|
3922
|
+
"attributes": [],
|
|
3923
|
+
"references": []
|
|
3924
|
+
},
|
|
3925
|
+
{
|
|
3926
|
+
"name": "notification-examples-variant-standalone",
|
|
3927
|
+
"description": "\n---\n",
|
|
3928
|
+
"attributes": [],
|
|
3929
|
+
"references": []
|
|
3930
|
+
},
|
|
3931
|
+
{
|
|
3932
|
+
"name": "notification-link-variant",
|
|
3933
|
+
"description": "\n---\n",
|
|
3934
|
+
"attributes": [],
|
|
3935
|
+
"references": []
|
|
3936
|
+
},
|
|
3937
|
+
{
|
|
3938
|
+
"name": "notification-semantic",
|
|
3939
|
+
"description": "\n---\n",
|
|
3940
|
+
"attributes": [],
|
|
3941
|
+
"references": []
|
|
3942
|
+
},
|
|
3943
|
+
{
|
|
3944
|
+
"name": "notification-show-headline",
|
|
3945
|
+
"description": "\n---\n",
|
|
3946
|
+
"attributes": [],
|
|
3947
|
+
"references": []
|
|
3948
|
+
},
|
|
3949
|
+
{
|
|
3950
|
+
"name": "notification-show-icon",
|
|
3951
|
+
"description": "\n---\n",
|
|
3952
|
+
"attributes": [],
|
|
3953
|
+
"references": []
|
|
3954
|
+
},
|
|
3955
|
+
{
|
|
3956
|
+
"name": "notification-show-timestamp",
|
|
3957
|
+
"description": "\n---\n",
|
|
3958
|
+
"attributes": [],
|
|
3959
|
+
"references": []
|
|
3960
|
+
},
|
|
3961
|
+
{
|
|
3962
|
+
"name": "notification-variant",
|
|
3963
|
+
"description": "\n---\n",
|
|
3964
|
+
"attributes": [],
|
|
3965
|
+
"references": []
|
|
3966
|
+
},
|
|
3967
|
+
{
|
|
3968
|
+
"name": "notification-visual",
|
|
3969
|
+
"description": "\n---\n",
|
|
3970
|
+
"attributes": [],
|
|
3971
|
+
"references": []
|
|
3972
|
+
},
|
|
3973
|
+
{
|
|
3974
|
+
"name": "notification-showcase",
|
|
3975
|
+
"description": "\n---\n",
|
|
3976
|
+
"attributes": [
|
|
3977
|
+
{
|
|
3978
|
+
"name": "is-patternhub",
|
|
3979
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
3980
|
+
}
|
|
3981
|
+
],
|
|
3982
|
+
"references": []
|
|
3983
|
+
},
|
|
3984
|
+
{
|
|
3985
|
+
"name": "popover-animation",
|
|
3986
|
+
"description": "\n---\n",
|
|
3987
|
+
"attributes": [],
|
|
3988
|
+
"references": []
|
|
3989
|
+
},
|
|
3990
|
+
{
|
|
3991
|
+
"name": "popover-delay",
|
|
3992
|
+
"description": "\n---\n",
|
|
3993
|
+
"attributes": [],
|
|
3994
|
+
"references": []
|
|
3995
|
+
},
|
|
3996
|
+
{
|
|
3997
|
+
"name": "popover-density",
|
|
3998
|
+
"description": "\n---\n",
|
|
3999
|
+
"attributes": [],
|
|
4000
|
+
"references": []
|
|
4001
|
+
},
|
|
4002
|
+
{
|
|
4003
|
+
"name": "popover-gap",
|
|
4004
|
+
"description": "\n---\n",
|
|
4005
|
+
"attributes": [],
|
|
4006
|
+
"references": []
|
|
4007
|
+
},
|
|
4008
|
+
{
|
|
4009
|
+
"name": "popover-placement",
|
|
4010
|
+
"description": "\n---\n",
|
|
4011
|
+
"attributes": [],
|
|
4012
|
+
"references": []
|
|
4013
|
+
},
|
|
4014
|
+
{
|
|
4015
|
+
"name": "popover-spacing",
|
|
4016
|
+
"description": "\n---\n",
|
|
4017
|
+
"attributes": [],
|
|
4018
|
+
"references": []
|
|
4019
|
+
},
|
|
4020
|
+
{
|
|
4021
|
+
"name": "popover-width",
|
|
4022
|
+
"description": "\n---\n",
|
|
4023
|
+
"attributes": [],
|
|
4024
|
+
"references": []
|
|
4025
|
+
},
|
|
4026
|
+
{
|
|
4027
|
+
"name": "popover-showcase",
|
|
4028
|
+
"description": "\n---\n",
|
|
4029
|
+
"attributes": [
|
|
4030
|
+
{
|
|
4031
|
+
"name": "is-patternhub",
|
|
4032
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4033
|
+
}
|
|
4034
|
+
],
|
|
4035
|
+
"references": []
|
|
4036
|
+
},
|
|
4037
|
+
{
|
|
4038
|
+
"name": "radio-checked",
|
|
4039
|
+
"description": "\n---\n",
|
|
4040
|
+
"attributes": [],
|
|
4041
|
+
"references": []
|
|
4042
|
+
},
|
|
4043
|
+
{
|
|
4044
|
+
"name": "radio-density",
|
|
4045
|
+
"description": "\n---\n",
|
|
4046
|
+
"attributes": [],
|
|
4047
|
+
"references": []
|
|
4048
|
+
},
|
|
4049
|
+
{
|
|
4050
|
+
"name": "radio-disabled",
|
|
4051
|
+
"description": "\n---\n",
|
|
4052
|
+
"attributes": [],
|
|
4053
|
+
"references": []
|
|
4054
|
+
},
|
|
4055
|
+
{
|
|
4056
|
+
"name": "radio-required",
|
|
4057
|
+
"description": "\n---\n",
|
|
4058
|
+
"attributes": [],
|
|
4059
|
+
"references": []
|
|
4060
|
+
},
|
|
4061
|
+
{
|
|
4062
|
+
"name": "radio-show-label",
|
|
4063
|
+
"description": "\n---\n",
|
|
4064
|
+
"attributes": [],
|
|
4065
|
+
"references": []
|
|
4066
|
+
},
|
|
4067
|
+
{
|
|
4068
|
+
"name": "radio-show-required-asterisk",
|
|
4069
|
+
"description": "\n---\n",
|
|
4070
|
+
"attributes": [],
|
|
4071
|
+
"references": []
|
|
4072
|
+
},
|
|
4073
|
+
{
|
|
4074
|
+
"name": "radio-size",
|
|
4075
|
+
"description": "\n---\n",
|
|
4076
|
+
"attributes": [],
|
|
4077
|
+
"references": []
|
|
4078
|
+
},
|
|
4079
|
+
{
|
|
4080
|
+
"name": "radio-validation",
|
|
4081
|
+
"description": "\n---\n",
|
|
4082
|
+
"attributes": [],
|
|
4083
|
+
"references": []
|
|
4084
|
+
},
|
|
4085
|
+
{
|
|
4086
|
+
"name": "radio-showcase",
|
|
4087
|
+
"description": "\n---\n",
|
|
4088
|
+
"attributes": [
|
|
4089
|
+
{
|
|
4090
|
+
"name": "is-patternhub",
|
|
4091
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4092
|
+
}
|
|
4093
|
+
],
|
|
4094
|
+
"references": []
|
|
4095
|
+
},
|
|
4096
|
+
{
|
|
4097
|
+
"name": "section-density",
|
|
4098
|
+
"description": "\n---\n",
|
|
4099
|
+
"attributes": [],
|
|
4100
|
+
"references": []
|
|
4101
|
+
},
|
|
4102
|
+
{
|
|
4103
|
+
"name": "section-spacing",
|
|
4104
|
+
"description": "\n---\n",
|
|
4105
|
+
"attributes": [],
|
|
4106
|
+
"references": []
|
|
4107
|
+
},
|
|
4108
|
+
{
|
|
4109
|
+
"name": "section-width",
|
|
4110
|
+
"description": "\n---\n",
|
|
4111
|
+
"attributes": [],
|
|
4112
|
+
"references": []
|
|
4113
|
+
},
|
|
4114
|
+
{
|
|
4115
|
+
"name": "section-showcase",
|
|
4116
|
+
"description": "\n---\n",
|
|
4117
|
+
"attributes": [
|
|
4118
|
+
{
|
|
4119
|
+
"name": "is-patternhub",
|
|
4120
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4121
|
+
}
|
|
4122
|
+
],
|
|
4123
|
+
"references": []
|
|
4124
|
+
},
|
|
4125
|
+
{
|
|
4126
|
+
"name": "select-content",
|
|
4127
|
+
"description": "\n---\n",
|
|
4128
|
+
"attributes": [],
|
|
4129
|
+
"references": []
|
|
4130
|
+
},
|
|
4131
|
+
{
|
|
4132
|
+
"name": "select-density",
|
|
4133
|
+
"description": "\n---\n",
|
|
4134
|
+
"attributes": [],
|
|
4135
|
+
"references": []
|
|
4136
|
+
},
|
|
4137
|
+
{
|
|
4138
|
+
"name": "select-disabled",
|
|
4139
|
+
"description": "\n---\n",
|
|
4140
|
+
"attributes": [],
|
|
4141
|
+
"references": []
|
|
4142
|
+
},
|
|
4143
|
+
{
|
|
4144
|
+
"name": "select-examples-floating-label",
|
|
4145
|
+
"description": "\n---\n",
|
|
4146
|
+
"attributes": [],
|
|
4147
|
+
"references": []
|
|
4148
|
+
},
|
|
4149
|
+
{
|
|
4150
|
+
"name": "select-option-groups",
|
|
4151
|
+
"description": "\n---\n",
|
|
4152
|
+
"attributes": [],
|
|
4153
|
+
"references": []
|
|
4154
|
+
},
|
|
4155
|
+
{
|
|
4156
|
+
"name": "select-required",
|
|
4157
|
+
"description": "\n---\n",
|
|
4158
|
+
"attributes": [],
|
|
4159
|
+
"references": []
|
|
4160
|
+
},
|
|
4161
|
+
{
|
|
4162
|
+
"name": "select-show-label",
|
|
4163
|
+
"description": "\n---\n",
|
|
4164
|
+
"attributes": [],
|
|
4165
|
+
"references": []
|
|
4166
|
+
},
|
|
4167
|
+
{
|
|
4168
|
+
"name": "select-show-message",
|
|
4169
|
+
"description": "\n---\n",
|
|
4170
|
+
"attributes": [],
|
|
4171
|
+
"references": []
|
|
4172
|
+
},
|
|
4173
|
+
{
|
|
4174
|
+
"name": "select-show-required-asterisk",
|
|
4175
|
+
"description": "\n---\n",
|
|
4176
|
+
"attributes": [],
|
|
4177
|
+
"references": []
|
|
4178
|
+
},
|
|
4179
|
+
{
|
|
4180
|
+
"name": "select-state",
|
|
4181
|
+
"description": "\n---\n",
|
|
4182
|
+
"attributes": [],
|
|
4183
|
+
"references": []
|
|
4184
|
+
},
|
|
4185
|
+
{
|
|
4186
|
+
"name": "select-validation",
|
|
4187
|
+
"description": "\n---\n",
|
|
4188
|
+
"attributes": [],
|
|
4189
|
+
"references": []
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
"name": "select-variant",
|
|
4193
|
+
"description": "\n---\n",
|
|
4194
|
+
"attributes": [],
|
|
4195
|
+
"references": []
|
|
4196
|
+
},
|
|
4197
|
+
{
|
|
4198
|
+
"name": "select-showcase",
|
|
4199
|
+
"description": "\n---\n",
|
|
4200
|
+
"attributes": [
|
|
4201
|
+
{
|
|
4202
|
+
"name": "is-patternhub",
|
|
4203
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4204
|
+
}
|
|
4205
|
+
],
|
|
4206
|
+
"references": []
|
|
4207
|
+
},
|
|
4208
|
+
{
|
|
4209
|
+
"name": "stack-alignment-column",
|
|
4210
|
+
"description": "\n---\n",
|
|
4211
|
+
"attributes": [],
|
|
4212
|
+
"references": []
|
|
4213
|
+
},
|
|
4214
|
+
{
|
|
4215
|
+
"name": "stack-alignment-row",
|
|
4216
|
+
"description": "\n---\n",
|
|
4217
|
+
"attributes": [],
|
|
4218
|
+
"references": []
|
|
4219
|
+
},
|
|
4220
|
+
{
|
|
4221
|
+
"name": "stack-density",
|
|
4222
|
+
"description": "\n---\n",
|
|
4223
|
+
"attributes": [],
|
|
4224
|
+
"references": []
|
|
4225
|
+
},
|
|
4226
|
+
{
|
|
4227
|
+
"name": "stack-direction",
|
|
4228
|
+
"description": "\n---\n",
|
|
4229
|
+
"attributes": [],
|
|
4230
|
+
"references": []
|
|
4231
|
+
},
|
|
4232
|
+
{
|
|
4233
|
+
"name": "stack-gap",
|
|
4234
|
+
"description": "\n---\n",
|
|
4235
|
+
"attributes": [],
|
|
4236
|
+
"references": []
|
|
4237
|
+
},
|
|
4238
|
+
{
|
|
4239
|
+
"name": "stack-justify-content-column",
|
|
4240
|
+
"description": "\n---\n",
|
|
4241
|
+
"attributes": [],
|
|
4242
|
+
"references": []
|
|
4243
|
+
},
|
|
4244
|
+
{
|
|
4245
|
+
"name": "stack-justify-content-row",
|
|
4246
|
+
"description": "\n---\n",
|
|
4247
|
+
"attributes": [],
|
|
4248
|
+
"references": []
|
|
4249
|
+
},
|
|
4250
|
+
{
|
|
4251
|
+
"name": "stack-variant",
|
|
4252
|
+
"description": "\n---\n",
|
|
4253
|
+
"attributes": [],
|
|
4254
|
+
"references": []
|
|
4255
|
+
},
|
|
4256
|
+
{
|
|
4257
|
+
"name": "stack-wrap",
|
|
4258
|
+
"description": "\n---\n",
|
|
4259
|
+
"attributes": [],
|
|
4260
|
+
"references": []
|
|
4261
|
+
},
|
|
4262
|
+
{
|
|
4263
|
+
"name": "stack-showcase",
|
|
4264
|
+
"description": "\n---\n",
|
|
4265
|
+
"attributes": [
|
|
4266
|
+
{
|
|
4267
|
+
"name": "is-patternhub",
|
|
4268
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4269
|
+
}
|
|
4270
|
+
],
|
|
4271
|
+
"references": []
|
|
4272
|
+
},
|
|
4273
|
+
{
|
|
4274
|
+
"name": "switch-checked",
|
|
4275
|
+
"description": "\n---\n",
|
|
4276
|
+
"attributes": [],
|
|
4277
|
+
"references": []
|
|
4278
|
+
},
|
|
4279
|
+
{
|
|
4280
|
+
"name": "switch-density",
|
|
4281
|
+
"description": "\n---\n",
|
|
4282
|
+
"attributes": [],
|
|
4283
|
+
"references": []
|
|
4284
|
+
},
|
|
4285
|
+
{
|
|
4286
|
+
"name": "switch-disabled",
|
|
4287
|
+
"description": "\n---\n",
|
|
4288
|
+
"attributes": [],
|
|
4289
|
+
"references": []
|
|
4290
|
+
},
|
|
4291
|
+
{
|
|
4292
|
+
"name": "switch-examples",
|
|
4293
|
+
"description": "\n---\n",
|
|
4294
|
+
"attributes": [],
|
|
4295
|
+
"references": []
|
|
4296
|
+
},
|
|
4297
|
+
{
|
|
4298
|
+
"name": "switch-required",
|
|
4299
|
+
"description": "\n---\n",
|
|
4300
|
+
"attributes": [],
|
|
4301
|
+
"references": []
|
|
4302
|
+
},
|
|
4303
|
+
{
|
|
4304
|
+
"name": "switch-show-label",
|
|
4305
|
+
"description": "\n---\n",
|
|
4306
|
+
"attributes": [],
|
|
4307
|
+
"references": []
|
|
4308
|
+
},
|
|
4309
|
+
{
|
|
4310
|
+
"name": "switch-show-message",
|
|
4311
|
+
"description": "\n---\n",
|
|
4312
|
+
"attributes": [],
|
|
4313
|
+
"references": []
|
|
4314
|
+
},
|
|
4315
|
+
{
|
|
4316
|
+
"name": "switch-show-required-asterisk",
|
|
4317
|
+
"description": "\n---\n",
|
|
4318
|
+
"attributes": [],
|
|
4319
|
+
"references": []
|
|
4320
|
+
},
|
|
4321
|
+
{
|
|
4322
|
+
"name": "switch-size",
|
|
4323
|
+
"description": "\n---\n",
|
|
4324
|
+
"attributes": [],
|
|
4325
|
+
"references": []
|
|
4326
|
+
},
|
|
4327
|
+
{
|
|
4328
|
+
"name": "switch-validation",
|
|
4329
|
+
"description": "\n---\n",
|
|
4330
|
+
"attributes": [],
|
|
4331
|
+
"references": []
|
|
4332
|
+
},
|
|
4333
|
+
{
|
|
4334
|
+
"name": "switch-variant",
|
|
4335
|
+
"description": "\n---\n",
|
|
4336
|
+
"attributes": [],
|
|
4337
|
+
"references": []
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
"name": "switch-visual-aid",
|
|
4341
|
+
"description": "\n---\n",
|
|
4342
|
+
"attributes": [],
|
|
4343
|
+
"references": []
|
|
4344
|
+
},
|
|
4345
|
+
{
|
|
4346
|
+
"name": "switch-showcase",
|
|
4347
|
+
"description": "\n---\n",
|
|
4348
|
+
"attributes": [
|
|
4349
|
+
{
|
|
4350
|
+
"name": "is-patternhub",
|
|
4351
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4352
|
+
}
|
|
4353
|
+
],
|
|
4354
|
+
"references": []
|
|
4355
|
+
},
|
|
4356
|
+
{
|
|
4357
|
+
"name": "tab-item-behavior",
|
|
4358
|
+
"description": "\n---\n",
|
|
4359
|
+
"attributes": [],
|
|
4360
|
+
"references": []
|
|
4361
|
+
},
|
|
4362
|
+
{
|
|
4363
|
+
"name": "tab-item-content-alignment-full-width",
|
|
4364
|
+
"description": "\n---\n",
|
|
4365
|
+
"attributes": [],
|
|
4366
|
+
"references": []
|
|
4367
|
+
},
|
|
4368
|
+
{
|
|
4369
|
+
"name": "tab-item-density",
|
|
4370
|
+
"description": "\n---\n",
|
|
4371
|
+
"attributes": [],
|
|
4372
|
+
"references": []
|
|
4373
|
+
},
|
|
4374
|
+
{
|
|
4375
|
+
"name": "tab-item-show-icon-leading",
|
|
4376
|
+
"description": "\n---\n",
|
|
4377
|
+
"attributes": [],
|
|
4378
|
+
"references": []
|
|
4379
|
+
},
|
|
4380
|
+
{
|
|
4381
|
+
"name": "tab-item-show-icon-trailing",
|
|
4382
|
+
"description": "\n---\n",
|
|
4383
|
+
"attributes": [],
|
|
4384
|
+
"references": []
|
|
4385
|
+
},
|
|
4386
|
+
{
|
|
4387
|
+
"name": "tab-item-states",
|
|
4388
|
+
"description": "\n---\n",
|
|
4389
|
+
"attributes": [],
|
|
4390
|
+
"references": []
|
|
4391
|
+
},
|
|
4392
|
+
{
|
|
4393
|
+
"name": "tab-item-showcase",
|
|
4394
|
+
"description": "\n---\n",
|
|
4395
|
+
"attributes": [
|
|
4396
|
+
{
|
|
4397
|
+
"name": "is-patternhub",
|
|
4398
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4399
|
+
}
|
|
4400
|
+
],
|
|
4401
|
+
"references": []
|
|
4402
|
+
},
|
|
4403
|
+
{
|
|
4404
|
+
"name": "tabs-density",
|
|
4405
|
+
"description": "\n---\n",
|
|
4406
|
+
"attributes": [],
|
|
4407
|
+
"references": []
|
|
4408
|
+
},
|
|
4409
|
+
{
|
|
4410
|
+
"name": "tabs-examples",
|
|
4411
|
+
"description": "\n---\n",
|
|
4412
|
+
"attributes": [],
|
|
4413
|
+
"references": []
|
|
4414
|
+
},
|
|
4415
|
+
{
|
|
4416
|
+
"name": "tabs-orientation",
|
|
4417
|
+
"description": "\n---\n",
|
|
4418
|
+
"attributes": [],
|
|
4419
|
+
"references": []
|
|
4420
|
+
},
|
|
4421
|
+
{
|
|
4422
|
+
"name": "tabs-overflow",
|
|
4423
|
+
"description": "\n---\n",
|
|
4424
|
+
"attributes": [],
|
|
4425
|
+
"references": []
|
|
4426
|
+
},
|
|
4427
|
+
{
|
|
4428
|
+
"name": "tabs-width",
|
|
4429
|
+
"description": "\n---\n",
|
|
4430
|
+
"attributes": [],
|
|
4431
|
+
"references": []
|
|
4432
|
+
},
|
|
4433
|
+
{
|
|
4434
|
+
"name": "tabs-showcase",
|
|
4435
|
+
"description": "\n---\n",
|
|
4436
|
+
"attributes": [
|
|
4437
|
+
{
|
|
4438
|
+
"name": "is-patternhub",
|
|
4439
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4440
|
+
}
|
|
4441
|
+
],
|
|
4442
|
+
"references": []
|
|
4443
|
+
},
|
|
4444
|
+
{
|
|
4445
|
+
"name": "tag-behavior",
|
|
4446
|
+
"description": "\n---\n",
|
|
4447
|
+
"attributes": [],
|
|
4448
|
+
"references": []
|
|
4449
|
+
},
|
|
4450
|
+
{
|
|
4451
|
+
"name": "tag-checked",
|
|
4452
|
+
"description": "\n---\n",
|
|
4453
|
+
"attributes": [],
|
|
4454
|
+
"references": []
|
|
4455
|
+
},
|
|
4456
|
+
{
|
|
4457
|
+
"name": "tag-density",
|
|
4458
|
+
"description": "\n---\n",
|
|
4459
|
+
"attributes": [],
|
|
4460
|
+
"references": []
|
|
4461
|
+
},
|
|
4462
|
+
{
|
|
4463
|
+
"name": "tag-disabled",
|
|
4464
|
+
"description": "\n---\n",
|
|
4465
|
+
"attributes": [],
|
|
4466
|
+
"references": []
|
|
4467
|
+
},
|
|
4468
|
+
{
|
|
4469
|
+
"name": "tag-emphasis",
|
|
4470
|
+
"description": "\n---\n",
|
|
4471
|
+
"attributes": [],
|
|
4472
|
+
"references": []
|
|
4473
|
+
},
|
|
4474
|
+
{
|
|
4475
|
+
"name": "tag-example-strong",
|
|
4476
|
+
"description": "\n---\n",
|
|
4477
|
+
"attributes": [],
|
|
4478
|
+
"references": []
|
|
4479
|
+
},
|
|
4480
|
+
{
|
|
4481
|
+
"name": "tag-no-text",
|
|
4482
|
+
"description": "\n---\n",
|
|
4483
|
+
"attributes": [],
|
|
4484
|
+
"references": []
|
|
4485
|
+
},
|
|
4486
|
+
{
|
|
4487
|
+
"name": "tag-overflow",
|
|
4488
|
+
"description": "\n---\n",
|
|
4489
|
+
"attributes": [],
|
|
4490
|
+
"references": []
|
|
4491
|
+
},
|
|
4492
|
+
{
|
|
4493
|
+
"name": "tag-semantic",
|
|
4494
|
+
"description": "\n---\n",
|
|
4495
|
+
"attributes": [],
|
|
4496
|
+
"references": []
|
|
4497
|
+
},
|
|
4498
|
+
{
|
|
4499
|
+
"name": "tag-show-check-state",
|
|
4500
|
+
"description": "\n---\n",
|
|
4501
|
+
"attributes": [],
|
|
4502
|
+
"references": []
|
|
4503
|
+
},
|
|
4504
|
+
{
|
|
4505
|
+
"name": "tag-show-icon",
|
|
4506
|
+
"description": "\n---\n",
|
|
4507
|
+
"attributes": [],
|
|
4508
|
+
"references": []
|
|
4509
|
+
},
|
|
4510
|
+
{
|
|
4511
|
+
"name": "tag-show-slot",
|
|
4512
|
+
"description": "\n---\n",
|
|
4513
|
+
"attributes": [],
|
|
4514
|
+
"references": []
|
|
4515
|
+
},
|
|
4516
|
+
{
|
|
4517
|
+
"name": "tag-showcase",
|
|
4518
|
+
"description": "\n---\n",
|
|
4519
|
+
"attributes": [
|
|
4520
|
+
{
|
|
4521
|
+
"name": "is-patternhub",
|
|
4522
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4523
|
+
}
|
|
4524
|
+
],
|
|
4525
|
+
"references": []
|
|
4526
|
+
},
|
|
4527
|
+
{
|
|
4528
|
+
"name": "textarea-density",
|
|
4529
|
+
"description": "\n---\n",
|
|
4530
|
+
"attributes": [],
|
|
4531
|
+
"references": []
|
|
4532
|
+
},
|
|
4533
|
+
{
|
|
4534
|
+
"name": "textarea-disabled",
|
|
4535
|
+
"description": "\n---\n",
|
|
4536
|
+
"attributes": [],
|
|
4537
|
+
"references": []
|
|
4538
|
+
},
|
|
4539
|
+
{
|
|
4540
|
+
"name": "textarea-examples-floating-label",
|
|
4541
|
+
"description": "\n---\n",
|
|
4542
|
+
"attributes": [],
|
|
4543
|
+
"references": []
|
|
4544
|
+
},
|
|
4545
|
+
{
|
|
4546
|
+
"name": "textarea-field-sizing",
|
|
4547
|
+
"description": "\n---\n",
|
|
4548
|
+
"attributes": [],
|
|
4549
|
+
"references": []
|
|
4550
|
+
},
|
|
4551
|
+
{
|
|
4552
|
+
"name": "textarea-readonly",
|
|
4553
|
+
"description": "\n---\n",
|
|
4554
|
+
"attributes": [],
|
|
4555
|
+
"references": []
|
|
4556
|
+
},
|
|
4557
|
+
{
|
|
4558
|
+
"name": "textarea-required",
|
|
4559
|
+
"description": "\n---\n",
|
|
4560
|
+
"attributes": [],
|
|
4561
|
+
"references": []
|
|
4562
|
+
},
|
|
4563
|
+
{
|
|
4564
|
+
"name": "textarea-rows",
|
|
4565
|
+
"description": "\n---\n",
|
|
4566
|
+
"attributes": [],
|
|
4567
|
+
"references": []
|
|
4568
|
+
},
|
|
4569
|
+
{
|
|
4570
|
+
"name": "textarea-show-label",
|
|
4571
|
+
"description": "\n---\n",
|
|
4572
|
+
"attributes": [],
|
|
4573
|
+
"references": []
|
|
4574
|
+
},
|
|
4575
|
+
{
|
|
4576
|
+
"name": "textarea-show-message",
|
|
4577
|
+
"description": "\n---\n",
|
|
4578
|
+
"attributes": [],
|
|
4579
|
+
"references": []
|
|
4580
|
+
},
|
|
4581
|
+
{
|
|
4582
|
+
"name": "textarea-show-required-asterisk",
|
|
4583
|
+
"description": "\n---\n",
|
|
4584
|
+
"attributes": [],
|
|
4585
|
+
"references": []
|
|
4586
|
+
},
|
|
4587
|
+
{
|
|
4588
|
+
"name": "textarea-show-resizer",
|
|
4589
|
+
"description": "\n---\n",
|
|
4590
|
+
"attributes": [],
|
|
4591
|
+
"references": []
|
|
4592
|
+
},
|
|
4593
|
+
{
|
|
4594
|
+
"name": "textarea-state",
|
|
4595
|
+
"description": "\n---\n",
|
|
4596
|
+
"attributes": [],
|
|
4597
|
+
"references": []
|
|
4598
|
+
},
|
|
4599
|
+
{
|
|
4600
|
+
"name": "textarea-validation",
|
|
4601
|
+
"description": "\n---\n",
|
|
4602
|
+
"attributes": [],
|
|
4603
|
+
"references": []
|
|
4604
|
+
},
|
|
4605
|
+
{
|
|
4606
|
+
"name": "textarea-variant",
|
|
4607
|
+
"description": "\n---\n",
|
|
4608
|
+
"attributes": [],
|
|
4609
|
+
"references": []
|
|
4610
|
+
},
|
|
4611
|
+
{
|
|
4612
|
+
"name": "textarea-showcase",
|
|
4613
|
+
"description": "\n---\n",
|
|
4614
|
+
"attributes": [
|
|
4615
|
+
{
|
|
4616
|
+
"name": "is-patternhub",
|
|
4617
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4618
|
+
}
|
|
4619
|
+
],
|
|
4620
|
+
"references": []
|
|
4621
|
+
},
|
|
4622
|
+
{
|
|
4623
|
+
"name": "tooltip-animation",
|
|
4624
|
+
"description": "\n---\n",
|
|
4625
|
+
"attributes": [],
|
|
4626
|
+
"references": []
|
|
4627
|
+
},
|
|
4628
|
+
{
|
|
4629
|
+
"name": "tooltip-delay",
|
|
4630
|
+
"description": "\n---\n",
|
|
4631
|
+
"attributes": [],
|
|
4632
|
+
"references": []
|
|
4633
|
+
},
|
|
4634
|
+
{
|
|
4635
|
+
"name": "tooltip-density",
|
|
4636
|
+
"description": "\n---\n",
|
|
4637
|
+
"attributes": [],
|
|
4638
|
+
"references": []
|
|
4639
|
+
},
|
|
4640
|
+
{
|
|
4641
|
+
"name": "tooltip-emphasis",
|
|
4642
|
+
"description": "\n---\n",
|
|
4643
|
+
"attributes": [],
|
|
4644
|
+
"references": []
|
|
4645
|
+
},
|
|
4646
|
+
{
|
|
4647
|
+
"name": "tooltip-placement",
|
|
4648
|
+
"description": "\n---\n",
|
|
4649
|
+
"attributes": [],
|
|
4650
|
+
"references": []
|
|
4651
|
+
},
|
|
4652
|
+
{
|
|
4653
|
+
"name": "tooltip-show-arrow",
|
|
4654
|
+
"description": "\n---\n",
|
|
4655
|
+
"attributes": [],
|
|
4656
|
+
"references": []
|
|
4657
|
+
},
|
|
4658
|
+
{
|
|
4659
|
+
"name": "tooltip-width",
|
|
4660
|
+
"description": "\n---\n",
|
|
4661
|
+
"attributes": [],
|
|
4662
|
+
"references": []
|
|
4663
|
+
},
|
|
4664
|
+
{
|
|
4665
|
+
"name": "tooltip-showcase",
|
|
4666
|
+
"description": "\n---\n",
|
|
4667
|
+
"attributes": [
|
|
4668
|
+
{
|
|
4669
|
+
"name": "is-patternhub",
|
|
4670
|
+
"values": [{ "name": "PatternhubProps[\"isPatternhub\"]" }]
|
|
4671
|
+
}
|
|
4672
|
+
],
|
|
4673
|
+
"references": []
|
|
2938
4674
|
}
|
|
2939
4675
|
]
|
|
2940
4676
|
}
|