evui 3.3.36 → 3.3.39
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/LICENSE +21 -21
- package/README.md +40 -40
- package/dist/evui.common.js +1907 -1832
- package/dist/evui.common.js.map +1 -1
- package/dist/evui.umd.js +1907 -1832
- package/dist/evui.umd.js.map +1 -1
- package/dist/evui.umd.min.js +1 -1
- package/dist/evui.umd.min.js.map +1 -1
- package/dist/img/{EVUI.7f3588fb.svg → EVUI.b82ee81a.svg} +292 -292
- package/dist/img/{icon_mysql.7ea26d5d.svg → icon_mysql.1085fdc9.svg} +78 -78
- package/dist/img/{icon_oracle.9009b108.svg → icon_oracle.0572d3ee.svg} +13 -13
- package/dist/img/{icon_postgresql.f8fffba9.svg → icon_postgresql.ee12bde8.svg} +58 -58
- package/package.json +61 -61
- package/src/common/emitter.js +20 -20
- package/src/common/utils.debounce.js +223 -223
- package/src/common/utils.js +134 -134
- package/src/common/utils.table.js +78 -78
- package/src/common/utils.throttle.js +83 -83
- package/src/common/utils.tree.js +18 -18
- package/src/components/button/Button.vue +198 -198
- package/src/components/button/index.js +7 -7
- package/src/components/buttonGroup/ButtonGroup.vue +11 -11
- package/src/components/buttonGroup/index.js +7 -7
- package/src/components/calendar/Calendar.vue +661 -661
- package/src/components/calendar/index.js +7 -7
- package/src/components/calendar/uses.js +1272 -1272
- package/src/components/chart/Chart.vue +189 -192
- package/src/components/chart/chart.core.js +870 -870
- package/src/components/chart/element/element.bar.js +524 -524
- package/src/components/chart/element/element.bar.time.js +156 -156
- package/src/components/chart/element/element.heatmap.js +533 -533
- package/src/components/chart/element/element.line.js +339 -339
- package/src/components/chart/element/element.pie.js +197 -197
- package/src/components/chart/element/element.scatter.js +184 -184
- package/src/components/chart/element/element.tip.js +550 -542
- package/src/components/chart/helpers/helpers.canvas.js +265 -265
- package/src/components/chart/helpers/helpers.constant.js +206 -206
- package/src/components/chart/helpers/helpers.util.js +346 -338
- package/src/components/chart/index.js +9 -9
- package/src/components/chart/model/index.js +4 -4
- package/src/components/chart/model/model.series.js +93 -93
- package/src/components/chart/model/model.store.js +977 -967
- package/src/components/chart/plugins/plugins.interaction.js +769 -769
- package/src/components/chart/plugins/plugins.legend.gradient.js +602 -602
- package/src/components/chart/plugins/plugins.legend.js +1155 -1151
- package/src/components/chart/plugins/plugins.pie.js +254 -254
- package/src/components/chart/plugins/plugins.title.js +56 -56
- package/src/components/chart/plugins/plugins.tooltip.js +692 -692
- package/src/components/chart/scale/scale.js +848 -848
- package/src/components/chart/scale/scale.linear.js +38 -38
- package/src/components/chart/scale/scale.logarithmic.js +128 -128
- package/src/components/chart/scale/scale.step.js +336 -336
- package/src/components/chart/scale/scale.time.category.js +277 -277
- package/src/components/chart/scale/scale.time.js +48 -48
- package/src/components/chart/style/chart.scss +312 -312
- package/src/components/chart/uses.js +264 -252
- package/src/components/checkbox/Checkbox.vue +200 -200
- package/src/components/checkbox/index.js +7 -7
- package/src/components/checkboxGroup/CheckboxGroup.vue +44 -44
- package/src/components/checkboxGroup/index.js +7 -7
- package/src/components/contextMenu/ContextMenu.vue +80 -80
- package/src/components/contextMenu/MenuList.vue +149 -149
- package/src/components/contextMenu/index.js +7 -7
- package/src/components/contextMenu/uses.js +203 -203
- package/src/components/datePicker/DatePicker.vue +437 -437
- package/src/components/datePicker/index.js +7 -7
- package/src/components/datePicker/uses.js +419 -419
- package/src/components/grid/Grid.vue +827 -827
- package/src/components/grid/grid.filter.window.vue +493 -493
- package/src/components/grid/grid.pagination.vue +75 -75
- package/src/components/grid/grid.summary.vue +265 -265
- package/src/components/grid/grid.toolbar.vue +26 -26
- package/src/components/grid/index.js +11 -11
- package/src/components/grid/style/grid.scss +263 -263
- package/src/components/grid/uses.js +1002 -1007
- package/src/components/icon/Icon.vue +49 -49
- package/src/components/icon/index.js +8 -8
- package/src/components/inputNumber/InputNumber.vue +212 -212
- package/src/components/inputNumber/index.js +7 -7
- package/src/components/inputNumber/uses.js +217 -217
- package/src/components/loading/Loading.vue +125 -125
- package/src/components/loading/index.js +7 -7
- package/src/components/menu/Menu.vue +68 -68
- package/src/components/menu/MenuItem.vue +187 -187
- package/src/components/menu/index.js +7 -7
- package/src/components/message/Message.vue +223 -223
- package/src/components/message/index.js +31 -31
- package/src/components/messageBox/MessageBox.vue +358 -358
- package/src/components/messageBox/index.js +22 -22
- package/src/components/notification/Notification.vue +316 -316
- package/src/components/notification/index.js +49 -49
- package/src/components/pagination/Pagination.vue +271 -271
- package/src/components/pagination/index.js +7 -7
- package/src/components/pagination/pageButton.vue +30 -30
- package/src/components/progress/Progress.vue +139 -139
- package/src/components/progress/index.js +7 -7
- package/src/components/radio/Radio.vue +159 -159
- package/src/components/radio/index.js +7 -7
- package/src/components/radioGroup/RadioGroup.vue +41 -41
- package/src/components/radioGroup/index.js +7 -7
- package/src/components/scheduler/Scheduler.vue +149 -149
- package/src/components/scheduler/index.js +7 -7
- package/src/components/scheduler/uses.js +183 -183
- package/src/components/select/Select.vue +440 -440
- package/src/components/select/index.js +7 -7
- package/src/components/select/uses.js +270 -270
- package/src/components/slider/Slider.vue +505 -505
- package/src/components/slider/index.js +7 -7
- package/src/components/slider/uses.js +390 -390
- package/src/components/tabPanel/TabPanel.vue +74 -74
- package/src/components/tabPanel/index.js +7 -7
- package/src/components/tabs/Tabs.vue +517 -517
- package/src/components/tabs/index.js +7 -7
- package/src/components/textField/TextField.vue +375 -375
- package/src/components/textField/index.js +7 -7
- package/src/components/timePicker/TimePicker.vue +352 -352
- package/src/components/timePicker/index.js +7 -7
- package/src/components/toggle/Toggle.vue +115 -115
- package/src/components/toggle/index.js +7 -7
- package/src/components/tree/Tree.vue +313 -313
- package/src/components/tree/TreeNode.vue +293 -293
- package/src/components/tree/index.js +7 -7
- package/src/components/treeGrid/TreeGrid.vue +758 -758
- package/src/components/treeGrid/TreeGridNode.vue +275 -275
- package/src/components/treeGrid/index.js +9 -9
- package/src/components/treeGrid/style/treeGrid.scss +261 -261
- package/src/components/treeGrid/treeGrid.toolbar.vue +26 -26
- package/src/components/treeGrid/uses.js +867 -867
- package/src/components/window/Window.vue +329 -329
- package/src/components/window/index.js +7 -7
- package/src/components/window/uses.js +899 -899
- package/src/directives/clickoutside.js +90 -90
- package/src/main.js +116 -116
- package/src/style/components/input.scss +108 -108
- package/src/style/functions.scss +3 -3
- package/src/style/index.scss +6 -6
- package/src/style/lib/fonts/EVUI.svg +292 -292
- package/src/style/lib/icon.css +888 -888
- package/src/style/mixins.scss +94 -94
- package/src/style/themes.scss +67 -67
- package/src/style/variables.scss +22 -22
|
@@ -1,198 +1,198 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<button
|
|
3
|
-
ref="buttonRef"
|
|
4
|
-
class="ev-button"
|
|
5
|
-
:class="{
|
|
6
|
-
disabled,
|
|
7
|
-
[`type-${type}`]: !!type,
|
|
8
|
-
[`shape-${shape}`]: shape !== 'square',
|
|
9
|
-
[`size-${size}`]: size !== 'medium',
|
|
10
|
-
}"
|
|
11
|
-
:type="htmlType"
|
|
12
|
-
:disabled="disabled"
|
|
13
|
-
:autofocus="autoFocus"
|
|
14
|
-
@click="(e) => $emit('click', e)"
|
|
15
|
-
>
|
|
16
|
-
<slot />
|
|
17
|
-
</button>
|
|
18
|
-
</template>
|
|
19
|
-
|
|
20
|
-
<script>
|
|
21
|
-
import { onMounted, ref } from 'vue';
|
|
22
|
-
|
|
23
|
-
export default {
|
|
24
|
-
name: 'EvButton',
|
|
25
|
-
props: {
|
|
26
|
-
disabled: {
|
|
27
|
-
type: Boolean,
|
|
28
|
-
default: false,
|
|
29
|
-
},
|
|
30
|
-
autoFocus: {
|
|
31
|
-
type: Boolean,
|
|
32
|
-
default: false,
|
|
33
|
-
},
|
|
34
|
-
type: {
|
|
35
|
-
type: String,
|
|
36
|
-
default: 'default',
|
|
37
|
-
validator: val => ['default', 'primary', 'info', 'warning', 'error', 'ghost', 'dashed', 'text'].includes(val),
|
|
38
|
-
},
|
|
39
|
-
htmlType: {
|
|
40
|
-
type: String,
|
|
41
|
-
default: 'button',
|
|
42
|
-
validator: val => ['button', 'submit', 'reset'].includes(val),
|
|
43
|
-
},
|
|
44
|
-
shape: {
|
|
45
|
-
type: String,
|
|
46
|
-
default: 'square',
|
|
47
|
-
validator: val => ['square', 'radius', 'circle'].includes(val),
|
|
48
|
-
},
|
|
49
|
-
size: {
|
|
50
|
-
type: String,
|
|
51
|
-
default: 'medium',
|
|
52
|
-
validator: val => ['small', 'medium', 'large'].includes(val),
|
|
53
|
-
},
|
|
54
|
-
},
|
|
55
|
-
emits: {
|
|
56
|
-
click: null,
|
|
57
|
-
},
|
|
58
|
-
setup(props) {
|
|
59
|
-
const buttonRef = ref(null);
|
|
60
|
-
|
|
61
|
-
onMounted(() => {
|
|
62
|
-
if (props.autoFocus) {
|
|
63
|
-
buttonRef.value.focus();
|
|
64
|
-
}
|
|
65
|
-
});
|
|
66
|
-
|
|
67
|
-
return {
|
|
68
|
-
buttonRef,
|
|
69
|
-
};
|
|
70
|
-
},
|
|
71
|
-
};
|
|
72
|
-
</script>
|
|
73
|
-
|
|
74
|
-
<style lang="scss">
|
|
75
|
-
@import '../../style/index.scss';
|
|
76
|
-
|
|
77
|
-
.ev-button {
|
|
78
|
-
$default-padding: 12px;
|
|
79
|
-
$default-height: $input-default-height;
|
|
80
|
-
|
|
81
|
-
height: $default-height;
|
|
82
|
-
padding: 0 $default-padding;
|
|
83
|
-
line-height: $default-height;
|
|
84
|
-
font-size: $font-size-medium;
|
|
85
|
-
border-radius: $default-radius;
|
|
86
|
-
cursor: pointer;
|
|
87
|
-
outline: none;
|
|
88
|
-
color: $color-white;
|
|
89
|
-
transition: opacity $animate-base;
|
|
90
|
-
|
|
91
|
-
@each $type in (
|
|
92
|
-
'default',
|
|
93
|
-
'primary',
|
|
94
|
-
'info',
|
|
95
|
-
'warning',
|
|
96
|
-
'error',
|
|
97
|
-
'ghost',
|
|
98
|
-
'dashed',
|
|
99
|
-
'text',
|
|
100
|
-
) {
|
|
101
|
-
&.type-#{$type} {
|
|
102
|
-
@if $type != 'ghost' and $type != 'dashed' and $type != 'text' {
|
|
103
|
-
@include evThemify() {
|
|
104
|
-
border: 1px solid evThemed($type);
|
|
105
|
-
background-color: evThemed($type);
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
@else if $type == 'ghost' {
|
|
110
|
-
background-color: transparent;
|
|
111
|
-
|
|
112
|
-
@include evThemify() {
|
|
113
|
-
border: 1px solid evThemed('border-base');
|
|
114
|
-
color: evThemed('font-base');
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
@else if $type == 'dashed' {
|
|
118
|
-
background-color: transparent;
|
|
119
|
-
|
|
120
|
-
@include evThemify() {
|
|
121
|
-
border: 1px dashed evThemed('border-base');
|
|
122
|
-
color: evThemed('font-base');
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
@else if $type == 'text' {
|
|
126
|
-
border: 1px solid transparent;
|
|
127
|
-
background-color: transparent;
|
|
128
|
-
|
|
129
|
-
@include evThemify() {
|
|
130
|
-
color: evThemed('font-base');
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
@each $shape, $radius in (
|
|
136
|
-
'radius': 40px,
|
|
137
|
-
'circle': 50%,
|
|
138
|
-
) {
|
|
139
|
-
&.shape-#{$shape} {
|
|
140
|
-
border-radius: $radius;
|
|
141
|
-
|
|
142
|
-
@if $shape == 'circle' {
|
|
143
|
-
min-width: $default-height;
|
|
144
|
-
padding: 0 10px;
|
|
145
|
-
}
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
@each $size, $size-gap in (
|
|
149
|
-
'large': 5px,
|
|
150
|
-
'small': -5px,
|
|
151
|
-
) {
|
|
152
|
-
&.size-#{$size} {
|
|
153
|
-
height: $default-height + $size-gap;
|
|
154
|
-
padding: 0 #{$default-padding + $size-gap};
|
|
155
|
-
line-height: $default-height + $size-gap;
|
|
156
|
-
|
|
157
|
-
@if $size == 'small' {
|
|
158
|
-
font-size: $font-size-base;
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
@else if $size == 'large' {
|
|
162
|
-
font-size: $font-size-large;
|
|
163
|
-
}
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
&:hover,
|
|
168
|
-
&:focus {
|
|
169
|
-
opacity: 0.7;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
@include state('disabled') {
|
|
173
|
-
opacity: 0.5;
|
|
174
|
-
cursor: not-allowed;
|
|
175
|
-
|
|
176
|
-
&:hover,
|
|
177
|
-
&:focus {
|
|
178
|
-
opacity: 0.5;
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
@include state('ev-button-group') {
|
|
184
|
-
.ev-button {
|
|
185
|
-
margin: 0;
|
|
186
|
-
border-radius: 0 !important;
|
|
187
|
-
border-left: 1px solid $color-white !important;
|
|
188
|
-
|
|
189
|
-
&:first-child {
|
|
190
|
-
border-radius: $default-radius 0 0 $default-radius !important;
|
|
191
|
-
border-left: 1px solid transparent !important;
|
|
192
|
-
}
|
|
193
|
-
&:last-child {
|
|
194
|
-
border-radius: 0 $default-radius $default-radius 0 !important;
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<button
|
|
3
|
+
ref="buttonRef"
|
|
4
|
+
class="ev-button"
|
|
5
|
+
:class="{
|
|
6
|
+
disabled,
|
|
7
|
+
[`type-${type}`]: !!type,
|
|
8
|
+
[`shape-${shape}`]: shape !== 'square',
|
|
9
|
+
[`size-${size}`]: size !== 'medium',
|
|
10
|
+
}"
|
|
11
|
+
:type="htmlType"
|
|
12
|
+
:disabled="disabled"
|
|
13
|
+
:autofocus="autoFocus"
|
|
14
|
+
@click="(e) => $emit('click', e)"
|
|
15
|
+
>
|
|
16
|
+
<slot />
|
|
17
|
+
</button>
|
|
18
|
+
</template>
|
|
19
|
+
|
|
20
|
+
<script>
|
|
21
|
+
import { onMounted, ref } from 'vue';
|
|
22
|
+
|
|
23
|
+
export default {
|
|
24
|
+
name: 'EvButton',
|
|
25
|
+
props: {
|
|
26
|
+
disabled: {
|
|
27
|
+
type: Boolean,
|
|
28
|
+
default: false,
|
|
29
|
+
},
|
|
30
|
+
autoFocus: {
|
|
31
|
+
type: Boolean,
|
|
32
|
+
default: false,
|
|
33
|
+
},
|
|
34
|
+
type: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: 'default',
|
|
37
|
+
validator: val => ['default', 'primary', 'info', 'warning', 'error', 'ghost', 'dashed', 'text'].includes(val),
|
|
38
|
+
},
|
|
39
|
+
htmlType: {
|
|
40
|
+
type: String,
|
|
41
|
+
default: 'button',
|
|
42
|
+
validator: val => ['button', 'submit', 'reset'].includes(val),
|
|
43
|
+
},
|
|
44
|
+
shape: {
|
|
45
|
+
type: String,
|
|
46
|
+
default: 'square',
|
|
47
|
+
validator: val => ['square', 'radius', 'circle'].includes(val),
|
|
48
|
+
},
|
|
49
|
+
size: {
|
|
50
|
+
type: String,
|
|
51
|
+
default: 'medium',
|
|
52
|
+
validator: val => ['small', 'medium', 'large'].includes(val),
|
|
53
|
+
},
|
|
54
|
+
},
|
|
55
|
+
emits: {
|
|
56
|
+
click: null,
|
|
57
|
+
},
|
|
58
|
+
setup(props) {
|
|
59
|
+
const buttonRef = ref(null);
|
|
60
|
+
|
|
61
|
+
onMounted(() => {
|
|
62
|
+
if (props.autoFocus) {
|
|
63
|
+
buttonRef.value.focus();
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
return {
|
|
68
|
+
buttonRef,
|
|
69
|
+
};
|
|
70
|
+
},
|
|
71
|
+
};
|
|
72
|
+
</script>
|
|
73
|
+
|
|
74
|
+
<style lang="scss">
|
|
75
|
+
@import '../../style/index.scss';
|
|
76
|
+
|
|
77
|
+
.ev-button {
|
|
78
|
+
$default-padding: 12px;
|
|
79
|
+
$default-height: $input-default-height;
|
|
80
|
+
|
|
81
|
+
height: $default-height;
|
|
82
|
+
padding: 0 $default-padding;
|
|
83
|
+
line-height: $default-height;
|
|
84
|
+
font-size: $font-size-medium;
|
|
85
|
+
border-radius: $default-radius;
|
|
86
|
+
cursor: pointer;
|
|
87
|
+
outline: none;
|
|
88
|
+
color: $color-white;
|
|
89
|
+
transition: opacity $animate-base;
|
|
90
|
+
|
|
91
|
+
@each $type in (
|
|
92
|
+
'default',
|
|
93
|
+
'primary',
|
|
94
|
+
'info',
|
|
95
|
+
'warning',
|
|
96
|
+
'error',
|
|
97
|
+
'ghost',
|
|
98
|
+
'dashed',
|
|
99
|
+
'text',
|
|
100
|
+
) {
|
|
101
|
+
&.type-#{$type} {
|
|
102
|
+
@if $type != 'ghost' and $type != 'dashed' and $type != 'text' {
|
|
103
|
+
@include evThemify() {
|
|
104
|
+
border: 1px solid evThemed($type);
|
|
105
|
+
background-color: evThemed($type);
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
@else if $type == 'ghost' {
|
|
110
|
+
background-color: transparent;
|
|
111
|
+
|
|
112
|
+
@include evThemify() {
|
|
113
|
+
border: 1px solid evThemed('border-base');
|
|
114
|
+
color: evThemed('font-base');
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
@else if $type == 'dashed' {
|
|
118
|
+
background-color: transparent;
|
|
119
|
+
|
|
120
|
+
@include evThemify() {
|
|
121
|
+
border: 1px dashed evThemed('border-base');
|
|
122
|
+
color: evThemed('font-base');
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
@else if $type == 'text' {
|
|
126
|
+
border: 1px solid transparent;
|
|
127
|
+
background-color: transparent;
|
|
128
|
+
|
|
129
|
+
@include evThemify() {
|
|
130
|
+
color: evThemed('font-base');
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
@each $shape, $radius in (
|
|
136
|
+
'radius': 40px,
|
|
137
|
+
'circle': 50%,
|
|
138
|
+
) {
|
|
139
|
+
&.shape-#{$shape} {
|
|
140
|
+
border-radius: $radius;
|
|
141
|
+
|
|
142
|
+
@if $shape == 'circle' {
|
|
143
|
+
min-width: $default-height;
|
|
144
|
+
padding: 0 10px;
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
@each $size, $size-gap in (
|
|
149
|
+
'large': 5px,
|
|
150
|
+
'small': -5px,
|
|
151
|
+
) {
|
|
152
|
+
&.size-#{$size} {
|
|
153
|
+
height: $default-height + $size-gap;
|
|
154
|
+
padding: 0 #{$default-padding + $size-gap};
|
|
155
|
+
line-height: $default-height + $size-gap;
|
|
156
|
+
|
|
157
|
+
@if $size == 'small' {
|
|
158
|
+
font-size: $font-size-base;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
@else if $size == 'large' {
|
|
162
|
+
font-size: $font-size-large;
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
&:hover,
|
|
168
|
+
&:focus {
|
|
169
|
+
opacity: 0.7;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
@include state('disabled') {
|
|
173
|
+
opacity: 0.5;
|
|
174
|
+
cursor: not-allowed;
|
|
175
|
+
|
|
176
|
+
&:hover,
|
|
177
|
+
&:focus {
|
|
178
|
+
opacity: 0.5;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
@include state('ev-button-group') {
|
|
184
|
+
.ev-button {
|
|
185
|
+
margin: 0;
|
|
186
|
+
border-radius: 0 !important;
|
|
187
|
+
border-left: 1px solid $color-white !important;
|
|
188
|
+
|
|
189
|
+
&:first-child {
|
|
190
|
+
border-radius: $default-radius 0 0 $default-radius !important;
|
|
191
|
+
border-left: 1px solid transparent !important;
|
|
192
|
+
}
|
|
193
|
+
&:last-child {
|
|
194
|
+
border-radius: 0 $default-radius $default-radius 0 !important;
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
</style>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import EvButton from './Button';
|
|
2
|
-
|
|
3
|
-
EvButton.install = (app) => {
|
|
4
|
-
app.component(EvButton.name, EvButton);
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
export default EvButton;
|
|
1
|
+
import EvButton from './Button';
|
|
2
|
+
|
|
3
|
+
EvButton.install = (app) => {
|
|
4
|
+
app.component(EvButton.name, EvButton);
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export default EvButton;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="ev-button-group">
|
|
3
|
-
<slot />
|
|
4
|
-
</div>
|
|
5
|
-
</template>
|
|
6
|
-
|
|
7
|
-
<script>
|
|
8
|
-
export default {
|
|
9
|
-
name: 'EvButtonGroup',
|
|
10
|
-
};
|
|
11
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div class="ev-button-group">
|
|
3
|
+
<slot />
|
|
4
|
+
</div>
|
|
5
|
+
</template>
|
|
6
|
+
|
|
7
|
+
<script>
|
|
8
|
+
export default {
|
|
9
|
+
name: 'EvButtonGroup',
|
|
10
|
+
};
|
|
11
|
+
</script>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import EvButtonGroup from './ButtonGroup';
|
|
2
|
-
|
|
3
|
-
EvButtonGroup.install = (app) => {
|
|
4
|
-
app.component(EvButtonGroup.name, EvButtonGroup);
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
export default EvButtonGroup;
|
|
1
|
+
import EvButtonGroup from './ButtonGroup';
|
|
2
|
+
|
|
3
|
+
EvButtonGroup.install = (app) => {
|
|
4
|
+
app.component(EvButtonGroup.name, EvButtonGroup);
|
|
5
|
+
};
|
|
6
|
+
|
|
7
|
+
export default EvButtonGroup;
|