@timus-networks/theme 2.4.111 → 2.4.112

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.4.110",
4
+ "version": "2.4.111",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
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.110";
14
+ const version = "2.4.111";
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 v-for="(size, index) of sizes" :key="size + index" v-model="value" v-bind="size !== 'default' ? { size } : {}" placeholder="Select" style="width: 140px">
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 v-model="multiple.four" multiple collapse-tags collapse-tags-tooltip :max-collapse-tags="3" placeholder="Select" style="width: 184px" :size="size">
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>
@@ -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 12px,
493
- 'large': 10px 12px,
494
- 'medium': 8px 12px,
495
- 'small': 6px 12px,
496
- 'mini': 5px 12px,
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
  }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.111",
3
+ "version": "2.4.112",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "type": "module",
6
6
  "exports": {