@everchron/ec-shards 0.6.20 → 0.6.21
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 +652 -330
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +652 -330
- 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/.DS_Store +0 -0
- package/src/assets/.DS_Store +0 -0
- package/src/assets/icons/.DS_Store +0 -0
- package/src/assets/images/.DS_Store +0 -0
- package/src/assets/images/spinner/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/data-card/data-card.vue +14 -0
- package/src/stories/.DS_Store +0 -0
- package/src/stories/data-card/data-card.stories.js +1 -1
package/package.json
CHANGED
package/src/.DS_Store
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -225,6 +225,20 @@
|
|
|
225
225
|
white-space: pre-wrap;
|
|
226
226
|
color: $gray-10;
|
|
227
227
|
}
|
|
228
|
+
|
|
229
|
+
.chained{
|
|
230
|
+
> span{
|
|
231
|
+
&:after{
|
|
232
|
+
content: "•";
|
|
233
|
+
margin: 0 5px;
|
|
234
|
+
opacity: .7;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
&:last-child:after{
|
|
238
|
+
content: "";
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
228
242
|
}
|
|
229
243
|
|
|
230
244
|
.ecs-data-card-actions{
|
|
Binary file
|
|
@@ -77,7 +77,7 @@ export const doubleIcon = () => ({
|
|
|
77
77
|
<span>Added last 2 months</span>
|
|
78
78
|
<span class="subtle">4h ago</span>
|
|
79
79
|
<template slot="meta">
|
|
80
|
-
<span class="subtle"><span class="color-venta-1">
|
|
80
|
+
<span class="subtle chained"><span class="color-venta-1">CE999</span><span class="color-venta-1">EC00000</span></span>
|
|
81
81
|
</template>
|
|
82
82
|
</ecs-data-card>`
|
|
83
83
|
});
|