@timus-networks/theme 2.4.111 → 2.4.114
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/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/development/example.select.vue +20 -2
- package/dist/runtime/components/development/example.tab.vue +1 -1
- package/dist/runtime/pages/theme.vue +1 -1
- package/dist/runtime/public/scss/element-plus/common/var.scss +5 -5
- package/dist/runtime/public/scss/element-plus/index.css +21 -1
- package/dist/runtime/public/scss/element-plus/select-v2.css +16 -0
- package/dist/runtime/public/scss/element-plus/select.css +16 -0
- package/dist/runtime/public/scss/element-plus/select.scss +6 -2
- package/dist/runtime/public/scss/element-plus/table.css +4 -0
- package/dist/runtime/public/scss/element-plus/table.scss +7 -0
- package/dist/runtime/public/scss/element-plus/tabs.css +1 -1
- package/dist/runtime/public/scss/element-plus/tabs.scss +1 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -11,7 +11,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
|
|
|
11
11
|
const __dirname = __cjs_path__.dirname(__filename);
|
|
12
12
|
const require = __cjs_mod__.createRequire(import.meta.url);
|
|
13
13
|
const name = "@timus-networks/theme";
|
|
14
|
-
const version = "2.4.
|
|
14
|
+
const version = "2.4.113";
|
|
15
15
|
const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
|
|
16
16
|
const type = "module";
|
|
17
17
|
const exports = {
|
|
@@ -11,7 +11,15 @@
|
|
|
11
11
|
sizes <el-text tag="mark">{{ sizes.join(', ') }}</el-text>
|
|
12
12
|
</p>
|
|
13
13
|
<div class="flex gap-4 items-start">
|
|
14
|
-
<el-select
|
|
14
|
+
<el-select
|
|
15
|
+
v-for="(size, index) of sizes"
|
|
16
|
+
:key="size + index"
|
|
17
|
+
v-model="value"
|
|
18
|
+
filterable
|
|
19
|
+
v-bind="size !== 'default' ? { size } : {}"
|
|
20
|
+
placeholder="Select"
|
|
21
|
+
style="width: 140px"
|
|
22
|
+
>
|
|
15
23
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
16
24
|
</el-select>
|
|
17
25
|
</div>
|
|
@@ -101,7 +109,17 @@
|
|
|
101
109
|
</div>
|
|
102
110
|
<div class="flex gap-4 flex-col">
|
|
103
111
|
<p>use max-collapse-tags</p>
|
|
104
|
-
<el-select
|
|
112
|
+
<el-select
|
|
113
|
+
v-model="multiple.four"
|
|
114
|
+
filterable
|
|
115
|
+
multiple
|
|
116
|
+
collapse-tags
|
|
117
|
+
collapse-tags-tooltip
|
|
118
|
+
:max-collapse-tags="3"
|
|
119
|
+
placeholder="Select"
|
|
120
|
+
style="width: 184px"
|
|
121
|
+
:size="size"
|
|
122
|
+
>
|
|
105
123
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
106
124
|
</el-select>
|
|
107
125
|
</div>
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
Basic and concise tabs. Tabs provide a selective card functionality. By default the first tab is selected as active, and you can activate any tab by setting the value
|
|
11
11
|
attribute.
|
|
12
12
|
</p>
|
|
13
|
-
<el-tabs v-model="activeName" class="demo-tabs" style="width: 100%"
|
|
13
|
+
<el-tabs v-model="activeName" class="demo-tabs" style="width: 100%">
|
|
14
14
|
<el-tab-pane label="User" name="first">User</el-tab-pane>
|
|
15
15
|
<el-tab-pane label="Config" name="second">Config</el-tab-pane>
|
|
16
16
|
<el-tab-pane label="Role" name="third">Role</el-tab-pane>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<el-tabs v-model="activeName" class="demo-tabs"
|
|
2
|
+
<el-tabs v-model="activeName" class="demo-tabs">
|
|
3
3
|
<el-tab-pane label="Alert" name="alert" lazy><example-alert /></el-tab-pane>
|
|
4
4
|
<el-tab-pane label="Avatar" name="avatar" lazy><example-avatar /></el-tab-pane>
|
|
5
5
|
<el-tab-pane label="Badge" name="badge" lazy><example-badge /></el-tab-pane>
|
|
@@ -489,11 +489,11 @@ $select-dropdown: map.merge(
|
|
|
489
489
|
$select-wrapper-padding: () !default;
|
|
490
490
|
$select-wrapper-padding: map.merge(
|
|
491
491
|
(
|
|
492
|
-
'default': 8px
|
|
493
|
-
'large': 10px
|
|
494
|
-
'medium': 8px
|
|
495
|
-
'small': 6px
|
|
496
|
-
'mini': 5px
|
|
492
|
+
'default': 8px,
|
|
493
|
+
'large': 10px,
|
|
494
|
+
'medium': 8px,
|
|
495
|
+
'small': 6px,
|
|
496
|
+
'mini': 5px,
|
|
497
497
|
),
|
|
498
498
|
$select-wrapper-padding
|
|
499
499
|
);
|
|
@@ -12739,6 +12739,10 @@ h6,
|
|
|
12739
12739
|
height: 20px;
|
|
12740
12740
|
}
|
|
12741
12741
|
|
|
12742
|
+
.el-select--large .el-select__selected-item {
|
|
12743
|
+
height: 20px;
|
|
12744
|
+
}
|
|
12745
|
+
|
|
12742
12746
|
.el-select--medium .el-select__wrapper {
|
|
12743
12747
|
gap: 8px;
|
|
12744
12748
|
padding: 8px 12px;
|
|
@@ -12766,6 +12770,10 @@ h6,
|
|
|
12766
12770
|
height: 20px;
|
|
12767
12771
|
}
|
|
12768
12772
|
|
|
12773
|
+
.el-select--medium .el-select__selected-item {
|
|
12774
|
+
height: 20px;
|
|
12775
|
+
}
|
|
12776
|
+
|
|
12769
12777
|
.el-select--small .el-select__wrapper {
|
|
12770
12778
|
gap: 4px;
|
|
12771
12779
|
padding: 6px 12px;
|
|
@@ -12793,6 +12801,10 @@ h6,
|
|
|
12793
12801
|
height: 20px;
|
|
12794
12802
|
}
|
|
12795
12803
|
|
|
12804
|
+
.el-select--small .el-select__selected-item {
|
|
12805
|
+
height: 20px;
|
|
12806
|
+
}
|
|
12807
|
+
|
|
12796
12808
|
.el-select--mini .el-select__wrapper {
|
|
12797
12809
|
gap: 4px;
|
|
12798
12810
|
padding: 5px 12px;
|
|
@@ -12815,6 +12827,10 @@ h6,
|
|
|
12815
12827
|
gap: 4px;
|
|
12816
12828
|
}
|
|
12817
12829
|
|
|
12830
|
+
.el-select--mini .el-select__selected-item {
|
|
12831
|
+
height: 18px;
|
|
12832
|
+
}
|
|
12833
|
+
|
|
12818
12834
|
.el-skeleton {
|
|
12819
12835
|
--el-skeleton-circle-size: var(--el-avatar-size);
|
|
12820
12836
|
}
|
|
@@ -13956,6 +13972,10 @@ h6,
|
|
|
13956
13972
|
font-weight: var(--el-table-font-weight-head);
|
|
13957
13973
|
border-bottom: 1px solid var(--el-color-neutral-light-3);
|
|
13958
13974
|
}
|
|
13975
|
+
.el-table thead th .el-table__cell .cell {
|
|
13976
|
+
display: flex;
|
|
13977
|
+
gap: 3px;
|
|
13978
|
+
}
|
|
13959
13979
|
.el-table thead.is-group th.el-table__cell {
|
|
13960
13980
|
background: var(--el-fill-color-light);
|
|
13961
13981
|
}
|
|
@@ -15226,7 +15246,7 @@ h6,
|
|
|
15226
15246
|
}
|
|
15227
15247
|
|
|
15228
15248
|
.el-tabs--top {
|
|
15229
|
-
flex-direction: column
|
|
15249
|
+
flex-direction: column;
|
|
15230
15250
|
}
|
|
15231
15251
|
|
|
15232
15252
|
.slideInRight-transition,
|
|
@@ -697,6 +697,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
697
697
|
height: 20px;
|
|
698
698
|
}
|
|
699
699
|
|
|
700
|
+
.el-select--large .el-select__selected-item {
|
|
701
|
+
height: 20px;
|
|
702
|
+
}
|
|
703
|
+
|
|
700
704
|
.el-select--medium .el-select__wrapper {
|
|
701
705
|
gap: 8px;
|
|
702
706
|
padding: 8px 12px;
|
|
@@ -724,6 +728,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
724
728
|
height: 20px;
|
|
725
729
|
}
|
|
726
730
|
|
|
731
|
+
.el-select--medium .el-select__selected-item {
|
|
732
|
+
height: 20px;
|
|
733
|
+
}
|
|
734
|
+
|
|
727
735
|
.el-select--small .el-select__wrapper {
|
|
728
736
|
gap: 4px;
|
|
729
737
|
padding: 6px 12px;
|
|
@@ -751,6 +759,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
751
759
|
height: 20px;
|
|
752
760
|
}
|
|
753
761
|
|
|
762
|
+
.el-select--small .el-select__selected-item {
|
|
763
|
+
height: 20px;
|
|
764
|
+
}
|
|
765
|
+
|
|
754
766
|
.el-select--mini .el-select__wrapper {
|
|
755
767
|
gap: 4px;
|
|
756
768
|
padding: 5px 12px;
|
|
@@ -771,4 +783,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
771
783
|
|
|
772
784
|
.el-select--mini .el-select__suffix {
|
|
773
785
|
gap: 4px;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.el-select--mini .el-select__selected-item {
|
|
789
|
+
height: 18px;
|
|
774
790
|
}
|
|
@@ -697,6 +697,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
697
697
|
height: 20px;
|
|
698
698
|
}
|
|
699
699
|
|
|
700
|
+
.el-select--large .el-select__selected-item {
|
|
701
|
+
height: 20px;
|
|
702
|
+
}
|
|
703
|
+
|
|
700
704
|
.el-select--medium .el-select__wrapper {
|
|
701
705
|
gap: 8px;
|
|
702
706
|
padding: 8px 12px;
|
|
@@ -724,6 +728,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
724
728
|
height: 20px;
|
|
725
729
|
}
|
|
726
730
|
|
|
731
|
+
.el-select--medium .el-select__selected-item {
|
|
732
|
+
height: 20px;
|
|
733
|
+
}
|
|
734
|
+
|
|
727
735
|
.el-select--small .el-select__wrapper {
|
|
728
736
|
gap: 4px;
|
|
729
737
|
padding: 6px 12px;
|
|
@@ -751,6 +759,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
751
759
|
height: 20px;
|
|
752
760
|
}
|
|
753
761
|
|
|
762
|
+
.el-select--small .el-select__selected-item {
|
|
763
|
+
height: 20px;
|
|
764
|
+
}
|
|
765
|
+
|
|
754
766
|
.el-select--mini .el-select__wrapper {
|
|
755
767
|
gap: 4px;
|
|
756
768
|
padding: 5px 12px;
|
|
@@ -771,4 +783,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
771
783
|
|
|
772
784
|
.el-select--mini .el-select__suffix {
|
|
773
785
|
gap: 4px;
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
.el-select--mini .el-select__selected-item {
|
|
789
|
+
height: 18px;
|
|
774
790
|
}
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
cursor: pointer;
|
|
38
38
|
text-align: left;
|
|
39
39
|
font-size: map.get($input-font-size, 'default');
|
|
40
|
-
padding: map.get($select-wrapper-padding, 'default');
|
|
40
|
+
padding: map.get($select-wrapper-padding, 'default') 12px;
|
|
41
41
|
gap: map.get($select-item-gap, 'default');
|
|
42
42
|
// height: map.get($common-component-size, 'default');
|
|
43
43
|
min-height: map.get($input-height, 'default');
|
|
@@ -255,7 +255,7 @@
|
|
|
255
255
|
@include m($size) {
|
|
256
256
|
@include e(wrapper) {
|
|
257
257
|
gap: map.get($select-item-gap, $size);
|
|
258
|
-
padding: map.get($select-wrapper-padding, $size);
|
|
258
|
+
padding: map.get($select-wrapper-padding, $size) 12px;
|
|
259
259
|
min-height: map.get($input-height, $size);
|
|
260
260
|
// height: map.get($input-height, $size);
|
|
261
261
|
line-height: map.get($select-item-height, $size);
|
|
@@ -281,6 +281,10 @@
|
|
|
281
281
|
@include e(input) {
|
|
282
282
|
height: map.get($select-item-height, $size);
|
|
283
283
|
}
|
|
284
|
+
|
|
285
|
+
@include e(selected-item) {
|
|
286
|
+
height: map.get($input-height, $size) - map.get($select-wrapper-padding, $size) * 2;
|
|
287
|
+
}
|
|
284
288
|
}
|
|
285
289
|
}
|
|
286
290
|
}
|
|
@@ -424,6 +424,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
424
424
|
font-weight: var(--el-table-font-weight-head);
|
|
425
425
|
border-bottom: 1px solid var(--el-color-neutral-light-3);
|
|
426
426
|
}
|
|
427
|
+
.el-table thead th .el-table__cell .cell {
|
|
428
|
+
display: flex;
|
|
429
|
+
gap: 3px;
|
|
430
|
+
}
|
|
427
431
|
.el-table thead.is-group th.el-table__cell {
|
|
428
432
|
background: var(--el-fill-color-light);
|
|
429
433
|
}
|
|
@@ -156,6 +156,13 @@
|
|
|
156
156
|
th {
|
|
157
157
|
font-weight: getCssVar('table-font-weight-head');
|
|
158
158
|
border-bottom: 1px solid getCssVar('color-neutral-light-3');
|
|
159
|
+
|
|
160
|
+
.#{$namespace}-table__cell {
|
|
161
|
+
.cell {
|
|
162
|
+
display: flex;
|
|
163
|
+
gap: 3px;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
159
166
|
}
|
|
160
167
|
|
|
161
168
|
&.is-group {
|
package/package.json
CHANGED