@everchron/ec-shards 7.2.2 → 7.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ec-shards.common.js +67 -71
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +67 -71
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +2 -2
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/dropzone/dropzone.vue +4 -0
- package/src/components/sticker/sticker.vue +1 -1
- package/src/components/tab-button/tab-button.vue +0 -1
- package/src/stories/Changelog.stories.mdx +1 -1
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
/** Sets the sticker icon. */
|
|
21
21
|
type: {
|
|
22
22
|
type: String,
|
|
23
|
-
validator: v => ['current', 'error', 'loading', 'warning', 'success', 'info', 'shared', 'null', null, undefined].includes(v)
|
|
23
|
+
validator: v => ['current', 'error', 'loading', 'warning', 'success', 'info', 'shared', '', 'null', null, undefined].includes(v)
|
|
24
24
|
},
|
|
25
25
|
/** Allows to customize the primary color of the sticker icon. */
|
|
26
26
|
color: {
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
/** Adds an ecs-sticker to this tab button, check the Sticker component for available types. */
|
|
56
56
|
sticker: {
|
|
57
57
|
type: String,
|
|
58
|
-
validator: v => ['current', 'error', 'loading', 'warning', 'success', 'info', 'shared', 'null', null, undefined].includes(v)
|
|
59
58
|
},
|
|
60
59
|
/** Disables the tab button. */
|
|
61
60
|
disabled: {
|