@everchron/ec-shards 0.7.65 → 0.7.68
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 +361 -687
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +361 -687
- 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/rating-favorability/rating-favorability.vue +2 -2
- package/src/components/tiptap/tiptap.vue +1 -1
- package/src/components/tree-list-item/tree-list-item.vue +4 -9
- 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/stories/.DS_Store +0 -0
package/package.json
CHANGED
|
@@ -76,13 +76,13 @@
|
|
|
76
76
|
switch (this.rating){
|
|
77
77
|
case 'good':
|
|
78
78
|
case 'Good':
|
|
79
|
-
return '
|
|
79
|
+
return 'Good'
|
|
80
80
|
case 'mixed':
|
|
81
81
|
case 'Mixed':
|
|
82
82
|
return 'Mixed'
|
|
83
83
|
case 'bad':
|
|
84
84
|
case 'Bad':
|
|
85
|
-
return '
|
|
85
|
+
return 'Bad'
|
|
86
86
|
case 'unrated':
|
|
87
87
|
case 'Unrated':
|
|
88
88
|
return 'Unrated'
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<slot></slot>
|
|
26
26
|
</span>
|
|
27
27
|
|
|
28
|
-
<span v-if="afterLabel" class="after
|
|
28
|
+
<span v-if="afterLabel" class="after-label">{{afterLabel}}</span>
|
|
29
29
|
|
|
30
30
|
<div v-if="$slots.actions" class="ecs-tree-view-entry-actions">
|
|
31
31
|
<slot name="actions"></slot>
|
|
@@ -227,6 +227,7 @@
|
|
|
227
227
|
overflow: hidden;
|
|
228
228
|
white-space: nowrap;
|
|
229
229
|
margin-left: 6px;
|
|
230
|
+
margin-right: 8px;
|
|
230
231
|
flex: 1;
|
|
231
232
|
}
|
|
232
233
|
|
|
@@ -239,15 +240,9 @@
|
|
|
239
240
|
margin-left: auto;
|
|
240
241
|
}
|
|
241
242
|
|
|
242
|
-
.after{
|
|
243
|
+
.after-label{
|
|
243
244
|
margin-left: auto;
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
.small{
|
|
247
|
-
font-size: 11px;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
.subtle{
|
|
245
|
+
font-size: 12px;
|
|
251
246
|
color: $gray-8;
|
|
252
247
|
}
|
|
253
248
|
}
|
package/src/.DS_Store
DELETED
|
Binary file
|
package/src/assets/.DS_Store
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/components/.DS_Store
DELETED
|
Binary file
|
package/src/stories/.DS_Store
DELETED
|
Binary file
|