@db-ux/wc-core-components 3.1.16 → 3.1.18
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/README.md +10 -0
- package/agent/Accordion.md +23 -0
- package/agent/AccordionItem.md +29 -0
- package/agent/Badge.md +32 -0
- package/agent/Brand.md +13 -0
- package/agent/Button.md +47 -0
- package/agent/Card.md +23 -0
- package/agent/Checkbox.md +41 -0
- package/agent/CustomSelect.md +54 -0
- package/agent/Divider.md +21 -0
- package/agent/Drawer.md +71 -0
- package/agent/Header.md +29 -0
- package/agent/Icon.md +20 -0
- package/agent/Infotext.md +25 -0
- package/agent/Input.md +48 -0
- package/agent/Link.md +52 -0
- package/agent/Navigation.md +19 -0
- package/agent/NavigationItem.md +29 -0
- package/agent/Notification.md +38 -0
- package/agent/Page.md +27 -0
- package/agent/Popover.md +52 -0
- package/agent/Radio.md +28 -0
- package/agent/Section.md +21 -0
- package/agent/Select.md +62 -0
- package/agent/Stack.md +35 -0
- package/agent/Switch.md +44 -0
- package/agent/TabItem.md +25 -0
- package/agent/Tabs.md +61 -0
- package/agent/Tag.md +41 -0
- package/agent/Textarea.md +44 -0
- package/agent/Tooltip.md +37 -0
- package/agent/_instructions.md +31 -0
- package/dist/cjs/db-accordion-item.cjs.entry.js +1 -1
- package/dist/cjs/db-accordion.cjs.entry.js +1 -1
- package/dist/cjs/db-badge.cjs.entry.js +1 -1
- package/dist/cjs/db-brand.cjs.entry.js +1 -1
- package/dist/cjs/db-button.cjs.entry.js +1 -1
- package/dist/cjs/db-card.cjs.entry.js +1 -1
- package/dist/cjs/db-checkbox.cjs.entry.js +1 -1
- package/dist/cjs/db-custom-select-dropdown_5.cjs.entry.js +1 -1
- package/dist/cjs/db-custom-select-form-field.cjs.entry.js +1 -1
- package/dist/cjs/db-custom-select.cjs.entry.js +1 -1
- package/dist/cjs/db-divider.cjs.entry.js +1 -1
- package/dist/cjs/db-drawer.cjs.entry.js +1 -1
- package/dist/cjs/db-header.cjs.entry.js +1 -1
- package/dist/cjs/db-icon.cjs.entry.js +1 -1
- package/dist/cjs/db-infotext.cjs.entry.js +1 -1
- package/dist/cjs/db-link.cjs.entry.js +1 -1
- package/dist/cjs/db-navigation-item.cjs.entry.js +1 -1
- package/dist/cjs/db-navigation.cjs.entry.js +1 -1
- package/dist/cjs/db-notification.cjs.entry.js +1 -1
- package/dist/cjs/db-page.cjs.entry.js +1 -1
- package/dist/cjs/db-popover.cjs.entry.js +1 -1
- package/dist/cjs/db-radio.cjs.entry.js +1 -1
- package/dist/cjs/db-section.cjs.entry.js +1 -1
- package/dist/cjs/db-select.cjs.entry.js +1 -1
- package/dist/cjs/db-stack.cjs.entry.js +1 -1
- package/dist/cjs/db-switch.cjs.entry.js +1 -1
- package/dist/cjs/db-tab-item_3.cjs.entry.js +1 -1
- package/dist/cjs/db-tabs.cjs.entry.js +17 -3
- package/dist/cjs/db-tabs.entry.cjs.js.map +1 -1
- package/dist/cjs/db-textarea.cjs.entry.js +1 -1
- package/dist/cjs/db-tooltip.cjs.entry.js +1 -1
- package/dist/cjs/db-ux.cjs.js +3 -3
- package/dist/cjs/db-ux.cjs.js.map +1 -1
- package/dist/cjs/{index-C9Rhca83.js → index-BKsFzv8w.js} +39 -17
- package/dist/cjs/index-BKsFzv8w.js.map +1 -0
- package/dist/cjs/index.cjs.js +1 -1
- package/dist/cjs/index.cjs.js.map +1 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/collection/components/accordion/accordion.js +12 -13
- package/dist/collection/components/accordion/accordion.js.map +1 -1
- package/dist/collection/components/accordion-item/accordion-item.js +14 -14
- package/dist/collection/components/badge/badge.js +16 -16
- package/dist/collection/components/brand/brand.js +12 -12
- package/dist/collection/components/button/button.js +36 -36
- package/dist/collection/components/card/card.js +10 -10
- package/dist/collection/components/checkbox/checkbox.js +38 -38
- package/dist/collection/components/custom-select/custom-select.js +82 -87
- package/dist/collection/components/custom-select/custom-select.js.map +1 -1
- package/dist/collection/components/custom-select-dropdown/custom-select-dropdown.js +5 -5
- package/dist/collection/components/custom-select-form-field/custom-select-form-field.js +4 -4
- package/dist/collection/components/custom-select-list/custom-select-list.js +8 -8
- package/dist/collection/components/custom-select-list-item/custom-select-list-item.js +26 -26
- package/dist/collection/components/divider/divider.js +12 -12
- package/dist/collection/components/drawer/drawer.js +24 -24
- package/dist/collection/components/header/header.js +12 -12
- package/dist/collection/components/icon/icon.js +12 -12
- package/dist/collection/components/infotext/infotext.js +14 -14
- package/dist/collection/components/input/input.js +94 -95
- package/dist/collection/components/input/input.js.map +1 -1
- package/dist/collection/components/link/link.js +28 -28
- package/dist/collection/components/navigation/navigation.js +4 -4
- package/dist/collection/components/navigation-item/navigation-item.js +24 -24
- package/dist/collection/components/notification/notification.js +32 -32
- package/dist/collection/components/page/page.js +12 -12
- package/dist/collection/components/popover/popover.js +18 -18
- package/dist/collection/components/radio/radio.js +24 -24
- package/dist/collection/components/section/section.js +8 -8
- package/dist/collection/components/select/select.js +46 -47
- package/dist/collection/components/select/select.js.map +1 -1
- package/dist/collection/components/stack/stack.js +16 -16
- package/dist/collection/components/switch/switch.js +34 -34
- package/dist/collection/components/tab-item/tab-item.js +28 -28
- package/dist/collection/components/tab-list/tab-list.js +4 -4
- package/dist/collection/components/tab-panel/tab-panel.js +6 -6
- package/dist/collection/components/tabs/model.js.map +1 -1
- package/dist/collection/components/tabs/tabs.js +40 -25
- package/dist/collection/components/tabs/tabs.js.map +1 -1
- package/dist/collection/components/tag/tag.js +24 -24
- package/dist/collection/components/textarea/textarea.js +66 -66
- package/dist/collection/components/tooltip/tooltip.js +18 -18
- package/dist/custom-elements.json +5 -0
- package/dist/db-ux/db-tabs.entry.esm.js.map +1 -1
- package/dist/db-ux/db-ux.esm.js +1 -1
- package/dist/db-ux/db-ux.esm.js.map +1 -1
- package/dist/db-ux/index.esm.js +1 -1
- package/dist/db-ux/index.esm.js.map +1 -1
- package/dist/db-ux/p-07a7eb33.entry.js +2 -0
- package/dist/db-ux/{p-8aee262b.entry.js → p-109fc276.entry.js} +2 -2
- package/dist/db-ux/{p-0f032718.entry.js → p-132ee89d.entry.js} +2 -2
- package/dist/db-ux/{p-8d5578c8.entry.js → p-1a7001bb.entry.js} +2 -2
- package/dist/db-ux/{p-9d814d7a.entry.js → p-1c50fd87.entry.js} +2 -2
- package/dist/db-ux/{p-f2455023.entry.js → p-1f490d67.entry.js} +2 -2
- package/dist/db-ux/{p-9b3c4d53.entry.js → p-26e115a8.entry.js} +2 -2
- package/dist/db-ux/p-2bc4be80.entry.js +2 -0
- package/dist/db-ux/p-2bc4be80.entry.js.map +1 -0
- package/dist/db-ux/{p-7781b021.entry.js → p-2c457e48.entry.js} +2 -2
- package/dist/db-ux/{p-dab91ef7.entry.js → p-31b7ea66.entry.js} +2 -2
- package/dist/db-ux/{p-ba53d150.entry.js → p-3390e528.entry.js} +2 -2
- package/dist/db-ux/{p-15203628.entry.js → p-364cc533.entry.js} +2 -2
- package/dist/db-ux/{p-5a727411.entry.js → p-43be6218.entry.js} +2 -2
- package/dist/db-ux/{p-5138e073.entry.js → p-53c419b0.entry.js} +2 -2
- package/dist/db-ux/{p-6839aee1.entry.js → p-56488bc3.entry.js} +2 -2
- package/dist/db-ux/p-69a7e5f9.entry.js +2 -0
- package/dist/db-ux/{p-daf5421b.entry.js → p-72bd1665.entry.js} +2 -2
- package/dist/db-ux/{p-97d43713.entry.js → p-75d3a947.entry.js} +2 -2
- package/dist/db-ux/{p-9d416e4d.entry.js → p-82083293.entry.js} +2 -2
- package/dist/db-ux/{p-d93d61bf.entry.js → p-90f21d44.entry.js} +2 -2
- package/dist/db-ux/{p-97249510.entry.js → p-950bf6ab.entry.js} +2 -2
- package/dist/db-ux/{p-af4b9154.entry.js → p-963fde68.entry.js} +2 -2
- package/dist/db-ux/p-Bxi-mtJ7.js +3 -0
- package/dist/db-ux/p-Bxi-mtJ7.js.map +1 -0
- package/dist/db-ux/p-a7a0c5a3.entry.js +2 -0
- package/dist/db-ux/{p-dc14db0e.entry.js.map → p-a7a0c5a3.entry.js.map} +1 -1
- package/dist/db-ux/{p-0cea77e9.entry.js → p-ad8ff0ae.entry.js} +2 -2
- package/dist/db-ux/{p-c3673bb2.entry.js → p-b3ccfc6a.entry.js} +2 -2
- package/dist/db-ux/{p-31d8532f.entry.js → p-c9b2b24e.entry.js} +2 -2
- package/dist/db-ux/{p-e80a85c6.entry.js → p-cd51d733.entry.js} +2 -2
- package/dist/db-ux/{p-97114cd9.entry.js → p-d0a2e1d4.entry.js} +2 -2
- package/dist/db-ux/{p-cad3a6ca.entry.js → p-da7e3ac7.entry.js} +2 -2
- package/dist/db-ux/{p-ec96cc5c.entry.js → p-fbf46ee6.entry.js} +2 -2
- package/dist/esm/db-accordion-item.entry.js +1 -1
- package/dist/esm/db-accordion.entry.js +1 -1
- package/dist/esm/db-badge.entry.js +1 -1
- package/dist/esm/db-brand.entry.js +1 -1
- package/dist/esm/db-button.entry.js +1 -1
- package/dist/esm/db-card.entry.js +1 -1
- package/dist/esm/db-checkbox.entry.js +1 -1
- package/dist/esm/db-custom-select-dropdown_5.entry.js +1 -1
- package/dist/esm/db-custom-select-form-field.entry.js +1 -1
- package/dist/esm/db-custom-select.entry.js +1 -1
- package/dist/esm/db-divider.entry.js +1 -1
- package/dist/esm/db-drawer.entry.js +1 -1
- package/dist/esm/db-header.entry.js +1 -1
- package/dist/esm/db-icon.entry.js +1 -1
- package/dist/esm/db-infotext.entry.js +1 -1
- package/dist/esm/db-link.entry.js +1 -1
- package/dist/esm/db-navigation-item.entry.js +1 -1
- package/dist/esm/db-navigation.entry.js +1 -1
- package/dist/esm/db-notification.entry.js +1 -1
- package/dist/esm/db-page.entry.js +1 -1
- package/dist/esm/db-popover.entry.js +1 -1
- package/dist/esm/db-radio.entry.js +1 -1
- package/dist/esm/db-section.entry.js +1 -1
- package/dist/esm/db-select.entry.js +1 -1
- package/dist/esm/db-stack.entry.js +1 -1
- package/dist/esm/db-switch.entry.js +1 -1
- package/dist/esm/db-tab-item_3.entry.js +1 -1
- package/dist/esm/db-tabs.entry.js +17 -3
- package/dist/esm/db-tabs.entry.js.map +1 -1
- package/dist/esm/db-textarea.entry.js +1 -1
- package/dist/esm/db-tooltip.entry.js +1 -1
- package/dist/esm/db-ux.js +4 -4
- package/dist/esm/db-ux.js.map +1 -1
- package/dist/esm/{index-DOqgruSb.js → index-Bxi-mtJ7.js} +39 -17
- package/dist/esm/index-Bxi-mtJ7.js.map +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/loader.js +3 -3
- package/dist/types/components/tabs/model.d.ts +1 -0
- package/dist/types/components/tabs/tabs.d.ts +2 -0
- package/dist/types/stencil-public-runtime.d.ts +16 -2
- package/dist/web-types.json +3 -2
- package/package.json +7 -5
- package/dist/cjs/index-C9Rhca83.js.map +0 -1
- package/dist/db-ux/p-7a6af508.entry.js +0 -2
- package/dist/db-ux/p-7a6af508.entry.js.map +0 -1
- package/dist/db-ux/p-DOqgruSb.js +0 -3
- package/dist/db-ux/p-DOqgruSb.js.map +0 -1
- package/dist/db-ux/p-cfd1fc80.entry.js +0 -2
- package/dist/db-ux/p-dc14db0e.entry.js +0 -2
- package/dist/db-ux/p-f1d86976.entry.js +0 -2
- package/dist/esm/index-DOqgruSb.js.map +0 -1
- /package/dist/db-ux/{p-cfd1fc80.entry.js.map → p-07a7eb33.entry.js.map} +0 -0
- /package/dist/db-ux/{p-8aee262b.entry.js.map → p-109fc276.entry.js.map} +0 -0
- /package/dist/db-ux/{p-0f032718.entry.js.map → p-132ee89d.entry.js.map} +0 -0
- /package/dist/db-ux/{p-8d5578c8.entry.js.map → p-1a7001bb.entry.js.map} +0 -0
- /package/dist/db-ux/{p-9d814d7a.entry.js.map → p-1c50fd87.entry.js.map} +0 -0
- /package/dist/db-ux/{p-f2455023.entry.js.map → p-1f490d67.entry.js.map} +0 -0
- /package/dist/db-ux/{p-9b3c4d53.entry.js.map → p-26e115a8.entry.js.map} +0 -0
- /package/dist/db-ux/{p-7781b021.entry.js.map → p-2c457e48.entry.js.map} +0 -0
- /package/dist/db-ux/{p-dab91ef7.entry.js.map → p-31b7ea66.entry.js.map} +0 -0
- /package/dist/db-ux/{p-ba53d150.entry.js.map → p-3390e528.entry.js.map} +0 -0
- /package/dist/db-ux/{p-15203628.entry.js.map → p-364cc533.entry.js.map} +0 -0
- /package/dist/db-ux/{p-5a727411.entry.js.map → p-43be6218.entry.js.map} +0 -0
- /package/dist/db-ux/{p-5138e073.entry.js.map → p-53c419b0.entry.js.map} +0 -0
- /package/dist/db-ux/{p-6839aee1.entry.js.map → p-56488bc3.entry.js.map} +0 -0
- /package/dist/db-ux/{p-f1d86976.entry.js.map → p-69a7e5f9.entry.js.map} +0 -0
- /package/dist/db-ux/{p-daf5421b.entry.js.map → p-72bd1665.entry.js.map} +0 -0
- /package/dist/db-ux/{p-97d43713.entry.js.map → p-75d3a947.entry.js.map} +0 -0
- /package/dist/db-ux/{p-9d416e4d.entry.js.map → p-82083293.entry.js.map} +0 -0
- /package/dist/db-ux/{p-d93d61bf.entry.js.map → p-90f21d44.entry.js.map} +0 -0
- /package/dist/db-ux/{p-97249510.entry.js.map → p-950bf6ab.entry.js.map} +0 -0
- /package/dist/db-ux/{p-af4b9154.entry.js.map → p-963fde68.entry.js.map} +0 -0
- /package/dist/db-ux/{p-0cea77e9.entry.js.map → p-ad8ff0ae.entry.js.map} +0 -0
- /package/dist/db-ux/{p-c3673bb2.entry.js.map → p-b3ccfc6a.entry.js.map} +0 -0
- /package/dist/db-ux/{p-31d8532f.entry.js.map → p-c9b2b24e.entry.js.map} +0 -0
- /package/dist/db-ux/{p-e80a85c6.entry.js.map → p-cd51d733.entry.js.map} +0 -0
- /package/dist/db-ux/{p-97114cd9.entry.js.map → p-d0a2e1d4.entry.js.map} +0 -0
- /package/dist/db-ux/{p-cad3a6ca.entry.js.map → p-da7e3ac7.entry.js.map} +0 -0
- /package/dist/db-ux/{p-ec96cc5c.entry.js.map → p-fbf46ee6.entry.js.map} +0 -0
|
@@ -51,7 +51,6 @@ export class DBInfotext {
|
|
|
51
51
|
return {
|
|
52
52
|
"id": {
|
|
53
53
|
"type": "string",
|
|
54
|
-
"attribute": "id",
|
|
55
54
|
"mutable": false,
|
|
56
55
|
"complexType": {
|
|
57
56
|
"original": "DBInfotextProps[\"id\"]",
|
|
@@ -72,11 +71,11 @@ export class DBInfotext {
|
|
|
72
71
|
},
|
|
73
72
|
"getter": false,
|
|
74
73
|
"setter": false,
|
|
75
|
-
"reflect": false
|
|
74
|
+
"reflect": false,
|
|
75
|
+
"attribute": "id"
|
|
76
76
|
},
|
|
77
77
|
"className": {
|
|
78
78
|
"type": "string",
|
|
79
|
-
"attribute": "classname",
|
|
80
79
|
"mutable": false,
|
|
81
80
|
"complexType": {
|
|
82
81
|
"original": "DBInfotextProps[\"className\"]",
|
|
@@ -97,11 +96,11 @@ export class DBInfotext {
|
|
|
97
96
|
},
|
|
98
97
|
"getter": false,
|
|
99
98
|
"setter": false,
|
|
100
|
-
"reflect": false
|
|
99
|
+
"reflect": false,
|
|
100
|
+
"attribute": "classname"
|
|
101
101
|
},
|
|
102
102
|
"icon": {
|
|
103
103
|
"type": "string",
|
|
104
|
-
"attribute": "icon",
|
|
105
104
|
"mutable": false,
|
|
106
105
|
"complexType": {
|
|
107
106
|
"original": "DBInfotextProps[\"icon\"]",
|
|
@@ -122,11 +121,11 @@ export class DBInfotext {
|
|
|
122
121
|
},
|
|
123
122
|
"getter": false,
|
|
124
123
|
"setter": false,
|
|
125
|
-
"reflect": false
|
|
124
|
+
"reflect": false,
|
|
125
|
+
"attribute": "icon"
|
|
126
126
|
},
|
|
127
127
|
"semantic": {
|
|
128
128
|
"type": "string",
|
|
129
|
-
"attribute": "semantic",
|
|
130
129
|
"mutable": false,
|
|
131
130
|
"complexType": {
|
|
132
131
|
"original": "DBInfotextProps[\"semantic\"]",
|
|
@@ -147,11 +146,11 @@ export class DBInfotext {
|
|
|
147
146
|
},
|
|
148
147
|
"getter": false,
|
|
149
148
|
"setter": false,
|
|
150
|
-
"reflect": false
|
|
149
|
+
"reflect": false,
|
|
150
|
+
"attribute": "semantic"
|
|
151
151
|
},
|
|
152
152
|
"size": {
|
|
153
153
|
"type": "string",
|
|
154
|
-
"attribute": "size",
|
|
155
154
|
"mutable": false,
|
|
156
155
|
"complexType": {
|
|
157
156
|
"original": "DBInfotextProps[\"size\"]",
|
|
@@ -172,11 +171,11 @@ export class DBInfotext {
|
|
|
172
171
|
},
|
|
173
172
|
"getter": false,
|
|
174
173
|
"setter": false,
|
|
175
|
-
"reflect": false
|
|
174
|
+
"reflect": false,
|
|
175
|
+
"attribute": "size"
|
|
176
176
|
},
|
|
177
177
|
"showIcon": {
|
|
178
178
|
"type": "any",
|
|
179
|
-
"attribute": "show-icon",
|
|
180
179
|
"mutable": false,
|
|
181
180
|
"complexType": {
|
|
182
181
|
"original": "DBInfotextProps[\"showIcon\"]",
|
|
@@ -197,11 +196,11 @@ export class DBInfotext {
|
|
|
197
196
|
},
|
|
198
197
|
"getter": false,
|
|
199
198
|
"setter": false,
|
|
200
|
-
"reflect": false
|
|
199
|
+
"reflect": false,
|
|
200
|
+
"attribute": "show-icon"
|
|
201
201
|
},
|
|
202
202
|
"text": {
|
|
203
203
|
"type": "string",
|
|
204
|
-
"attribute": "text",
|
|
205
204
|
"mutable": false,
|
|
206
205
|
"complexType": {
|
|
207
206
|
"original": "DBInfotextProps[\"text\"]",
|
|
@@ -222,7 +221,8 @@ export class DBInfotext {
|
|
|
222
221
|
},
|
|
223
222
|
"getter": false,
|
|
224
223
|
"setter": false,
|
|
225
|
-
"reflect": false
|
|
224
|
+
"reflect": false,
|
|
225
|
+
"attribute": "text"
|
|
226
226
|
}
|
|
227
227
|
};
|
|
228
228
|
}
|