@everchron/ec-shards 0.7.10 → 0.7.13
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 +288 -171
- package/dist/ec-shards.common.js.map +1 -1
- package/dist/ec-shards.css +1 -1
- package/dist/ec-shards.umd.js +288 -171
- 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/assets/icons/hide-checked.svg +9 -0
- package/src/assets/icons/hide-unchecked.svg +8 -0
- package/src/assets/icons/swap.svg +6 -0
- package/src/assets/icons/warning-error.svg +5 -0
- package/src/components/button-table/button-table.vue +34 -9
- package/src/components/data-card/data-card.vue +11 -0
- package/src/components/overlay/overlay.vue +40 -10
- package/src/components/section/section.vue +29 -3
- package/src/components/sticker/sticker.vue +1 -2
- package/src/components/tab-button/tab-button.vue +1 -2
- package/src/stories/data-card/data-card.stories.js +4 -0
- package/src/stories/data-card/data-card.stories.mdx +4 -0
- package/src/stories/overlay/overlay.stories.js +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path vector-effect="non-scaling-stroke" d="M11.3467 15.6289L13.7833 18.0655L19.1022 12.7455" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path vector-effect="non-scaling-stroke" d="M12.5 25H7.22222C5.99444 25 5 24.0056 5 22.7778V7.22222C5 5.99444 5.99444 5 7.22222 5H22.7778C24.0056 5 25 5.99444 25 7.22222V15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path vector-effect="non-scaling-stroke" d="M21 25.4999C20.5088 25.4999 20.0171 25.4109 19.5393 25.2524" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path vector-effect="non-scaling-stroke" d="M26.1812 22.234C25.0775 23.9835 23.0387 25.5 21 25.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path vector-effect="non-scaling-stroke" d="M25.1294 20.4605C25.5325 20.865 25.8907 21.306 26.1812 21.7665C26.2728 21.912 26.2728 22.0885 26.1812 22.234" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path vector-effect="non-scaling-stroke" d="M23.0954 19C22.4235 18.6849 21.7116 18.5001 21 18.5001C18.9613 18.5001 16.9225 20.0166 15.8188 21.7666C15.7273 21.9121 15.7273 22.0886 15.8188 22.2341C16.2233 22.8751 16.7532 23.4847 17.3625 24" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path vector-effect="non-scaling-stroke" d="M16.5 25.5L25 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path vector-effect="non-scaling-stroke" d="M12.5 25H7.22222C5.99444 25 5 24.0056 5 22.7778V7.22222C5 5.99444 5.99444 5 7.22222 5H22.7778C24.0056 5 25 5.99444 25 7.22222V15" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path vector-effect="non-scaling-stroke" d="M21 25.4999C20.5088 25.4999 20.0171 25.4109 19.5393 25.2524" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path vector-effect="non-scaling-stroke" d="M26.1812 22.234C25.0775 23.9835 23.0387 25.5 21 25.5" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path vector-effect="non-scaling-stroke" d="M25.1294 20.4605C25.5325 20.865 25.8907 21.306 26.1812 21.7665C26.2728 21.912 26.2728 22.0885 26.1812 22.234" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path vector-effect="non-scaling-stroke" d="M23.0954 19C22.4235 18.6849 21.7116 18.5001 21 18.5001C18.9613 18.5001 16.9225 20.0166 15.8188 21.7666C15.7273 21.9121 15.7273 22.0886 15.8188 22.2341C16.2233 22.8751 16.7532 23.4847 17.3625 24" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path vector-effect="non-scaling-stroke" d="M16.5 25.5L25 18" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path vector-effect="non-scaling-stroke" d="M10.9 6L7 9.9L10.9 13.8" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path vector-effect="non-scaling-stroke" d="M22.1667 9.89996H7" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path vector-effect="non-scaling-stroke" d="M18.2667 24.6333L22.1667 20.7333L18.2667 16.8333" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path vector-effect="non-scaling-stroke" d="M7 20.7333H22.1667" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path vector-effect="non-scaling-stroke" d="M17.0312 6.27644L25.3284 20.7974C26.2926 22.4853 25.0738 24.5859 23.1303 24.5859H6.53583C4.59124 24.5859 3.37249 22.4853 4.33774 20.7974L12.635 6.27644C13.6067 4.57452 16.0594 4.57452 17.0312 6.27644Z" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path vector-effect="non-scaling-stroke" d="M17 15L13 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
4
|
+
<path vector-effect="non-scaling-stroke" d="M13 15L17 19" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
subtle ? 'subtle' : '',
|
|
8
8
|
pale ? 'pale' : '',
|
|
9
9
|
unreactive ? 'unreactive' : '',
|
|
10
|
+
loading ? 'loading' : '',
|
|
10
11
|
sizeClass
|
|
11
12
|
]"
|
|
12
13
|
:disabled="disabled"
|
|
@@ -14,7 +15,7 @@
|
|
|
14
15
|
@mouseover="$emit('mouseover', $event)"
|
|
15
16
|
@mouseleave="$emit('mouseleave', $event)">
|
|
16
17
|
|
|
17
|
-
<ecs-icon v-if="icon" :type="
|
|
18
|
+
<ecs-icon v-if="icon || loading" :type="iconType" :width="iconSize" :height="iconSize" />
|
|
18
19
|
<div v-if="label != null" class="button-label">{{ label }}</div>
|
|
19
20
|
<div v-if="chevron" class="chevron" :class="active ? 'expand' : ''" />
|
|
20
21
|
</button>
|
|
@@ -60,6 +61,10 @@
|
|
|
60
61
|
unreactive: {
|
|
61
62
|
type: Boolean,
|
|
62
63
|
default: false
|
|
64
|
+
},
|
|
65
|
+
loading: {
|
|
66
|
+
type: Boolean,
|
|
67
|
+
default: false
|
|
63
68
|
}
|
|
64
69
|
},
|
|
65
70
|
|
|
@@ -81,6 +86,13 @@
|
|
|
81
86
|
return '16'
|
|
82
87
|
else
|
|
83
88
|
return '20'
|
|
89
|
+
},
|
|
90
|
+
|
|
91
|
+
iconType() {
|
|
92
|
+
if (this.loading)
|
|
93
|
+
return `loading`
|
|
94
|
+
else
|
|
95
|
+
return this.icon
|
|
84
96
|
}
|
|
85
97
|
}
|
|
86
98
|
}
|
|
@@ -183,14 +195,6 @@
|
|
|
183
195
|
}
|
|
184
196
|
}
|
|
185
197
|
|
|
186
|
-
&.active{
|
|
187
|
-
background: rgba($blue-8, .05);
|
|
188
|
-
|
|
189
|
-
.icon{
|
|
190
|
-
color: $blue-8;
|
|
191
|
-
}
|
|
192
|
-
}
|
|
193
|
-
|
|
194
198
|
&.pale{
|
|
195
199
|
color: $gray-10;
|
|
196
200
|
background: rgba($gray-7, .08);
|
|
@@ -218,10 +222,31 @@
|
|
|
218
222
|
}
|
|
219
223
|
}
|
|
220
224
|
|
|
225
|
+
&.active{
|
|
226
|
+
background: rgba($blue-8, .05);
|
|
227
|
+
|
|
228
|
+
.icon{
|
|
229
|
+
color: $blue-8;
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
221
233
|
&.unreactive{
|
|
222
234
|
cursor: default;
|
|
223
235
|
}
|
|
224
236
|
|
|
237
|
+
&.loading{
|
|
238
|
+
opacity: .7;
|
|
239
|
+
cursor: wait;
|
|
240
|
+
|
|
241
|
+
.icon{
|
|
242
|
+
animation: spin .8s infinite linear reverse;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
&:after{
|
|
246
|
+
opacity: 0;
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
|
|
225
250
|
&:disabled{
|
|
226
251
|
opacity: .5;
|
|
227
252
|
cursor: default;
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
$slots.actions ? 'ecs-data-card-hover' : '',
|
|
6
6
|
hover ? 'ecs-data-card-hover' : '',
|
|
7
7
|
active ? 'active' : '',
|
|
8
|
+
shadow ? 'shadow' : '',
|
|
8
9
|
isExpanded ? 'expanded' : '',
|
|
9
10
|
loading ? 'loading' : ''
|
|
10
11
|
]">
|
|
@@ -65,6 +66,10 @@
|
|
|
65
66
|
type: Boolean,
|
|
66
67
|
default: false
|
|
67
68
|
},
|
|
69
|
+
shadow: {
|
|
70
|
+
type: Boolean,
|
|
71
|
+
default: false
|
|
72
|
+
},
|
|
68
73
|
control: {
|
|
69
74
|
type: Boolean,
|
|
70
75
|
default: false
|
|
@@ -171,6 +176,12 @@
|
|
|
171
176
|
}
|
|
172
177
|
}
|
|
173
178
|
|
|
179
|
+
&.shadow{
|
|
180
|
+
.ecs-data-card-inner{
|
|
181
|
+
opacity: .5;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
174
185
|
.control{
|
|
175
186
|
margin-right: 10px;
|
|
176
187
|
}
|
|
@@ -12,22 +12,22 @@
|
|
|
12
12
|
<div v-if="$slots.headercontrols" class="ecs-overlay-header-controls">
|
|
13
13
|
<slot name="headercontrols"></slot>
|
|
14
14
|
</div>
|
|
15
|
-
<ecs-button-toolbar v-if="$slots.sidebar && width <=
|
|
15
|
+
<ecs-button-toolbar v-if="$slots.sidebar && width <= 1500" @click="sidebarToggle" :icon="sidebarIcon" :title="showSidebar ? 'Hide ' + sidebarTitle : 'Show ' + sidebarTitle" :active="showSidebar" :badge="sidebarIconBadge" class="sidebar-button" />
|
|
16
16
|
<ecs-button-toolbar @click="$emit('close')" :disabled="closeDisabled" icon="close">{{ closeText }}</ecs-button-toolbar>
|
|
17
17
|
</div>
|
|
18
18
|
<div ref="content" class="ecs-overlay-content scrollbar">
|
|
19
19
|
<div v-if="$slots.tabs" class="ecs-overlay-tabs scrollbar scrollbar-sml">
|
|
20
20
|
<slot name="tabs"></slot>
|
|
21
21
|
</div>
|
|
22
|
-
<div class="ecs-overlay-content-inner">
|
|
23
|
-
<div class="ecs-overlay-content-inner-inner" :class="$slots.sidebar && !fullWidth && width >
|
|
22
|
+
<div class="ecs-overlay-content-inner scrollbar" :class="sidebarOpenClass">
|
|
23
|
+
<div class="ecs-overlay-content-inner-inner" :class="$slots.sidebar && !fullWidth && width > 1500 ? 'has-sidebar' : ' '" :style="{ width: contentWidth, maxWidth: contentMaxWidth, minWidth: contentMinWidth }">
|
|
24
24
|
<slot></slot>
|
|
25
25
|
</div>
|
|
26
|
-
<div v-if="$slots.sidebar && width >
|
|
26
|
+
<div v-if="$slots.sidebar && width > 1500" class="ecs-overlay-sidebar ecs-overlay-sidebar-static">
|
|
27
27
|
<slot name="sidebar"></slot>
|
|
28
28
|
</div>
|
|
29
29
|
<transition name="slide">
|
|
30
|
-
<div v-if="$slots.sidebar && width <=
|
|
30
|
+
<div v-if="$slots.sidebar && width <= 1500 && showSidebar" class="ecs-overlay-sidebar ecs-overlay-sidebar-float scrollbar scrollbar-sml">
|
|
31
31
|
<slot name="sidebar"></slot>
|
|
32
32
|
</div>
|
|
33
33
|
</transition>
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
<div class="ecs-overlay-footer-content-inner" :style="{ width: contentWidth, maxWidth: contentMaxWidth, minWidth: contentMinWidth }">
|
|
40
40
|
<slot name="footer"></slot>
|
|
41
41
|
</div>
|
|
42
|
-
<div v-if="$slots.sidebar && width >
|
|
42
|
+
<div v-if="$slots.sidebar && width > 1500" class="spacer-sidebar" />
|
|
43
43
|
</div>
|
|
44
44
|
</div>
|
|
45
45
|
</div>
|
|
@@ -129,12 +129,18 @@
|
|
|
129
129
|
|
|
130
130
|
contentMinWidth(){
|
|
131
131
|
if(this.$slots.tabs && this.$slots.sidebar){
|
|
132
|
-
return 'calc(100vw - 260px -
|
|
132
|
+
return 'calc(100vw - 260px - 420px)'
|
|
133
133
|
} else if(this.fullWidth && this.$slots.tabs){
|
|
134
134
|
return 'calc(100vw - 260px)'
|
|
135
135
|
} else {
|
|
136
136
|
return '780px'
|
|
137
137
|
}
|
|
138
|
+
},
|
|
139
|
+
|
|
140
|
+
sidebarOpenClass(){
|
|
141
|
+
if(this.showSidebar && this.width < 1500){
|
|
142
|
+
return 'sidebar-open'
|
|
143
|
+
}
|
|
138
144
|
}
|
|
139
145
|
},
|
|
140
146
|
|
|
@@ -210,11 +216,16 @@
|
|
|
210
216
|
&-content{
|
|
211
217
|
flex: 1;
|
|
212
218
|
display: flex;
|
|
213
|
-
overflow:
|
|
219
|
+
overflow: hidden;
|
|
214
220
|
position: relative;
|
|
215
221
|
|
|
216
222
|
&.overflow-hidden{
|
|
217
|
-
overflow: hidden;
|
|
223
|
+
overflow: hidden !important;
|
|
224
|
+
|
|
225
|
+
.ecs-overlay-content-inner,
|
|
226
|
+
.ecs-overlay-content-inner-inner{
|
|
227
|
+
overflow: hidden !important;
|
|
228
|
+
}
|
|
218
229
|
}
|
|
219
230
|
}
|
|
220
231
|
|
|
@@ -225,10 +236,10 @@
|
|
|
225
236
|
height: 100%;
|
|
226
237
|
min-height: min-content;
|
|
227
238
|
position: relative;
|
|
239
|
+
overflow: auto;
|
|
228
240
|
|
|
229
241
|
&-inner{
|
|
230
242
|
position: relative;
|
|
231
|
-
height: min-content;
|
|
232
243
|
margin: 0 auto;
|
|
233
244
|
height: 100%;
|
|
234
245
|
|
|
@@ -236,6 +247,14 @@
|
|
|
236
247
|
margin: 0 0 0 auto;
|
|
237
248
|
}
|
|
238
249
|
}
|
|
250
|
+
|
|
251
|
+
&.sidebar-open{
|
|
252
|
+
overflow: hidden;
|
|
253
|
+
|
|
254
|
+
.ecs-overlay-content-inner-inner{
|
|
255
|
+
overflow: auto;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
239
258
|
}
|
|
240
259
|
|
|
241
260
|
&-tabs{
|
|
@@ -255,6 +274,7 @@
|
|
|
255
274
|
padding: 0 15px 0 30px;
|
|
256
275
|
width: 400px;
|
|
257
276
|
margin: 0 auto 0 0;
|
|
277
|
+
height: min-content;
|
|
258
278
|
}
|
|
259
279
|
|
|
260
280
|
&-sidebar-float{
|
|
@@ -337,6 +357,16 @@
|
|
|
337
357
|
}
|
|
338
358
|
}
|
|
339
359
|
|
|
360
|
+
@media only screen and (min-width: 1500px) {
|
|
361
|
+
.ecs-overlay-content{
|
|
362
|
+
overflow: auto;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.ecs-overlay-content-inner-inner{
|
|
366
|
+
overflow: initial;
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
|
|
340
370
|
.fade-enter-active,
|
|
341
371
|
.fade-leave-active{
|
|
342
372
|
transition: all .3s;
|
|
@@ -12,7 +12,11 @@
|
|
|
12
12
|
</div>
|
|
13
13
|
</h3>
|
|
14
14
|
|
|
15
|
-
<div class="ecs-section-content"
|
|
15
|
+
<div class="ecs-section-content"
|
|
16
|
+
:class="[
|
|
17
|
+
title ? '' : 'equal',
|
|
18
|
+
condensed ? 'condensed' : '',
|
|
19
|
+
]">
|
|
16
20
|
<slot></slot>
|
|
17
21
|
</div>
|
|
18
22
|
</div>
|
|
@@ -42,6 +46,10 @@
|
|
|
42
46
|
},
|
|
43
47
|
headlineBold: {
|
|
44
48
|
type: Boolean
|
|
49
|
+
},
|
|
50
|
+
condensed: {
|
|
51
|
+
type: Boolean,
|
|
52
|
+
default: false
|
|
45
53
|
}
|
|
46
54
|
},
|
|
47
55
|
|
|
@@ -112,9 +120,18 @@
|
|
|
112
120
|
padding-top: 15px;
|
|
113
121
|
padding-bottom: 25px;
|
|
114
122
|
|
|
115
|
-
|
|
123
|
+
&.equal{
|
|
116
124
|
padding-top: 25px;
|
|
117
125
|
}
|
|
126
|
+
|
|
127
|
+
&.condensed{
|
|
128
|
+
padding-top: 5px;
|
|
129
|
+
padding-bottom: 15px;
|
|
130
|
+
|
|
131
|
+
&.equal{
|
|
132
|
+
padding-top: 15px;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
118
135
|
}
|
|
119
136
|
|
|
120
137
|
&-indent-md,
|
|
@@ -159,9 +176,18 @@
|
|
|
159
176
|
padding-top: 10px;
|
|
160
177
|
padding-bottom: 20px;
|
|
161
178
|
|
|
162
|
-
|
|
179
|
+
&.equal{
|
|
163
180
|
padding-top: 20px;
|
|
164
181
|
}
|
|
182
|
+
|
|
183
|
+
&.condensed{
|
|
184
|
+
padding-top: 0;
|
|
185
|
+
padding-bottom: 10px;
|
|
186
|
+
|
|
187
|
+
&.equal{
|
|
188
|
+
padding-top: 10px;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
165
191
|
}
|
|
166
192
|
}
|
|
167
193
|
|
|
@@ -24,6 +24,10 @@ export const states = () => ({
|
|
|
24
24
|
<span>Added last 2 months</span>
|
|
25
25
|
<span class="subtle">4h ago</span>
|
|
26
26
|
</ecs-data-card>
|
|
27
|
+
<ecs-data-card shadow>
|
|
28
|
+
<span>Added last 2 months</span>
|
|
29
|
+
<span class="subtle">4h ago</span>
|
|
30
|
+
</ecs-data-card>
|
|
27
31
|
<ecs-button-more type="expand">Show More</ecs-button-more>
|
|
28
32
|
</ecs-data-card-list>`
|
|
29
33
|
});
|
|
@@ -38,6 +38,10 @@ If more than one data card is used in a list-like structure, they should be wrap
|
|
|
38
38
|
<span>Added last 2 months</span>
|
|
39
39
|
<span class="subtle">4h ago</span>
|
|
40
40
|
</ecs-data-card>
|
|
41
|
+
<ecs-data-card shadow>
|
|
42
|
+
<span>Added last 2 months</span>
|
|
43
|
+
<span class="subtle">4h ago</span>
|
|
44
|
+
</ecs-data-card>
|
|
41
45
|
```
|
|
42
46
|
|
|
43
47
|
## Content Types
|
|
@@ -109,7 +109,7 @@ export const overlayTabsSidebar = () => ({
|
|
|
109
109
|
<button @click="showOverlay = true">Show Overlay</button>
|
|
110
110
|
<ecs-overlay :show="showOverlay" @close="showOverlay = false" icon="archive" header-title="Title" header-title-emphasized="Overlay:" header-title-subline="John G. Deposition (10/12/2020) – Pages 1 - 321" sidebar-icon-badge>
|
|
111
111
|
|
|
112
|
-
content area
|
|
112
|
+
<div style="height:800px;background:gray">content area</div>
|
|
113
113
|
|
|
114
114
|
<template slot="tabs">tab area</template>
|
|
115
115
|
<template slot="sidebar"><div style="height:500px;background:gray">sidebar area</div></template>
|