@everchron/ec-shards 0.6.25 → 0.6.29
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 +102 -56
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +102 -56
- package/dist/ec-shards.umd.js.map +1 -1
- package/dist/ec-shards.umd.min.js +1 -1
- package/dist/ec-shards.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/assets/icons/pause.svg +1 -0
- package/src/assets/icons/stop.svg +1 -0
- package/src/components/alert/alert.vue +1 -0
- package/src/components/data-list-item/data-list-item.vue +2 -0
- package/src/components/dialog/dialog.vue +5 -1
- package/src/stories/alert/alert.stories.mdx +3 -1
package/package.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><g fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round" vector-effect="non-scaling-stroke"><line vector-effect="non-scaling-stroke" x1="20" x2="20" y1="23.5" y2="6.5" stroke="currentColor"/><line vector-effect="non-scaling-stroke" x1="10" x2="10" y1="23.5" y2="6.5" stroke="currentColor"/></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><rect vector-effect="non-scaling-stroke" width="17" height="17" x="6.5" y="6.5" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" rx="2"/></svg>
|
|
@@ -205,6 +205,7 @@
|
|
|
205
205
|
width: calc(100% - 145px);
|
|
206
206
|
padding: 8px 0;
|
|
207
207
|
position: relative;
|
|
208
|
+
z-index: 0;
|
|
208
209
|
|
|
209
210
|
a:not(.ecs-button){
|
|
210
211
|
color: $blue-8;
|
|
@@ -273,6 +274,7 @@
|
|
|
273
274
|
bottom: 0;
|
|
274
275
|
z-index: -1;
|
|
275
276
|
transition: .3s;
|
|
277
|
+
max-width: 100%;
|
|
276
278
|
}
|
|
277
279
|
|
|
278
280
|
&-error{
|
|
@@ -53,7 +53,9 @@ Alerts can have a headline along with a supportive icon.
|
|
|
53
53
|
</Canvas>
|
|
54
54
|
|
|
55
55
|
```js
|
|
56
|
-
<ecs-alert type="
|
|
56
|
+
<ecs-alert type="warning" headline="Alert Headline" icon="versions">
|
|
57
|
+
This is an alert that comes with a separate headline and supportive icon.
|
|
58
|
+
</ecs-alert>
|
|
57
59
|
```
|
|
58
60
|
|
|
59
61
|
## Action
|