@everchron/ec-shards 0.8.3 → 0.8.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 +140 -133
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +140 -133
- 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 +5 -5
- package/src/components/tree-list-item/tree-list-item.vue +11 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everchron/ec-shards",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Everchron Shards UI Library",
|
|
6
6
|
"repository": "https://github.com/everchron/ec-shards.git",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@babel/core": "^7.13.15",
|
|
32
|
-
"@storybook/addon-actions": "^6.
|
|
33
|
-
"@storybook/addon-essentials": "^6.
|
|
34
|
-
"@storybook/addon-links": "^6.
|
|
35
|
-
"@storybook/vue": "^6.
|
|
32
|
+
"@storybook/addon-actions": "^6.5.9",
|
|
33
|
+
"@storybook/addon-essentials": "^6.5.9",
|
|
34
|
+
"@storybook/addon-links": "^6.5.9",
|
|
35
|
+
"@storybook/vue": "^6.5.9",
|
|
36
36
|
"@vue/cli-plugin-babel": "~4.5.0",
|
|
37
37
|
"@vue/cli-service": "~4.5.0",
|
|
38
38
|
"babel-eslint": "^10.1.0",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
<slot name="control"></slot>
|
|
22
22
|
</div>
|
|
23
23
|
|
|
24
|
-
<span @click="$emit('click', $event)" class="title">
|
|
24
|
+
<span @click="$emit('click', $event)" class="title" :class="titleOverflow ? 'overflow' : ''">
|
|
25
25
|
<slot></slot>
|
|
26
26
|
</span>
|
|
27
27
|
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
import EcsButtonCollapse from '../button-collapse/button-collapse'
|
|
44
44
|
|
|
45
45
|
export default {
|
|
46
|
-
components: { EcsIcon, EcsButtonCollapse },
|
|
46
|
+
components: { EcsIcon, EcsStates, EcsButtonCollapse },
|
|
47
47
|
|
|
48
48
|
props: {
|
|
49
49
|
id: String,
|
|
@@ -76,6 +76,7 @@
|
|
|
76
76
|
type: Boolean,
|
|
77
77
|
default: false
|
|
78
78
|
},
|
|
79
|
+
/** Prop Description */
|
|
79
80
|
large: {
|
|
80
81
|
type: Boolean,
|
|
81
82
|
default: false
|
|
@@ -88,6 +89,10 @@
|
|
|
88
89
|
type: Boolean,
|
|
89
90
|
default: false
|
|
90
91
|
},
|
|
92
|
+
titleOverflow: {
|
|
93
|
+
type: Boolean,
|
|
94
|
+
default: false
|
|
95
|
+
}
|
|
91
96
|
},
|
|
92
97
|
|
|
93
98
|
data () {
|
|
@@ -229,6 +234,10 @@
|
|
|
229
234
|
margin-left: 6px;
|
|
230
235
|
margin-right: 8px;
|
|
231
236
|
flex: 1;
|
|
237
|
+
|
|
238
|
+
&.overflow{
|
|
239
|
+
overflow: unset;
|
|
240
|
+
}
|
|
232
241
|
}
|
|
233
242
|
|
|
234
243
|
&-control{
|