@everchron/ec-shards 7.2.2 → 7.2.4
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 +75 -79
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +75 -79
- 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 +5 -1
- 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
|
@@ -279,6 +279,10 @@
|
|
|
279
279
|
a{
|
|
280
280
|
color: $color-blue-10;
|
|
281
281
|
}
|
|
282
|
+
|
|
283
|
+
.ecs-empty-state-message{
|
|
284
|
+
max-width: 440px;
|
|
285
|
+
}
|
|
282
286
|
}
|
|
283
287
|
</style>
|
|
284
288
|
|
|
@@ -367,7 +371,7 @@
|
|
|
367
371
|
}
|
|
368
372
|
|
|
369
373
|
&-disabled{
|
|
370
|
-
background: $color-
|
|
374
|
+
background: $color-white;
|
|
371
375
|
|
|
372
376
|
.ecs-empty-state-message i{
|
|
373
377
|
pointer-events: none;
|
|
@@ -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: {
|