@timus-networks/theme 2.4.7 → 2.4.9

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.
Files changed (27) hide show
  1. package/dist/module.json +1 -1
  2. package/dist/module.mjs +1 -1
  3. package/dist/runtime/components/development/example.checkbox.vue +16 -1
  4. package/dist/runtime/components/development/example.checkbox.vue.d.ts +1 -0
  5. package/dist/runtime/components/development/example.popover.vue +11 -2
  6. package/dist/runtime/components/development/example.radio.vue +16 -1
  7. package/dist/runtime/components/development/example.radio.vue.d.ts +1 -0
  8. package/dist/runtime/components/development/example.table.vue +13 -1
  9. package/dist/runtime/public/scss/element-plus/base.css +1 -1
  10. package/dist/runtime/public/scss/element-plus/checkbox-group.css +4 -0
  11. package/dist/runtime/public/scss/element-plus/checkbox-group.scss +5 -0
  12. package/dist/runtime/public/scss/element-plus/common/var.scss +2 -1
  13. package/dist/runtime/public/scss/element-plus/index.css +34 -10
  14. package/dist/runtime/public/scss/element-plus/loading.css +5 -4
  15. package/dist/runtime/public/scss/element-plus/loading.scss +5 -4
  16. package/dist/runtime/public/scss/element-plus/pagination.css +3 -0
  17. package/dist/runtime/public/scss/element-plus/pagination.scss +1 -0
  18. package/dist/runtime/public/scss/element-plus/popover.css +1 -0
  19. package/dist/runtime/public/scss/element-plus/popover.scss +1 -0
  20. package/dist/runtime/public/scss/element-plus/radio-group.css +4 -1
  21. package/dist/runtime/public/scss/element-plus/radio-group.scss +5 -1
  22. package/dist/runtime/public/scss/element-plus/scrollbar.css +4 -4
  23. package/dist/runtime/public/scss/element-plus/scrollbar.scss +4 -4
  24. package/dist/runtime/public/scss/element-plus/table.css +12 -0
  25. package/dist/runtime/public/scss/element-plus/table.scss +16 -0
  26. package/dist/runtime/public/scss/element-plus/var.css +1 -1
  27. package/package.json +1 -1
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.7",
4
+ "version": "2.4.9",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
package/dist/module.mjs CHANGED
@@ -12,7 +12,7 @@ const __filename = __cjs_url__.fileURLToPath(import.meta.url);
12
12
  const __dirname = __cjs_path__.dirname(__filename);
13
13
  const require = __cjs_mod__.createRequire(import.meta.url);
14
14
  const name = "@timus-networks/theme";
15
- const version = "2.4.7";
15
+ const version = "2.4.9";
16
16
  const description = "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.";
17
17
  const type = "module";
18
18
  const exports = {
@@ -59,6 +59,20 @@
59
59
  </template>
60
60
  </el-card>
61
61
 
62
+ <el-card>
63
+ <template #header>Vertical Group</template>
64
+ <div class="flex flex-col gap-3 items-start">
65
+ <p>To made checkbox group vertical just add <el-text tag="mark">class="el-vertical-group"</el-text> to <el-text tag="mark">el-checkbox-group</el-text> component.</p>
66
+ <div class="flex flex-col gap-4 items-start">
67
+ Selected: {{ value }}
68
+ <el-checkbox-group v-model="checkList" class="el-vertical-group">
69
+ <el-checkbox v-for="(size, index) of sizes" :key="index" :value="index" :size="size">Option 1</el-checkbox>
70
+ </el-checkbox-group>
71
+ </div>
72
+ </div>
73
+ <template #footer> <html-encode :tag="snippets.vertical" /> </template>
74
+ </el-card>
75
+
62
76
  <el-card>
63
77
  <template #header> Indeterminate </template>
64
78
  <div class="flex flex-col gap-3 items-start">
@@ -148,7 +162,8 @@ export default defineComponent({
148
162
  </el-checkbox-group>
149
163
  `,
150
164
  indeterminate: ` <el-checkbox v-model="checkAll" :indeterminate="isIndeterminate" @change="handleCheckAllChange"> Check all </el-checkbox> `,
151
- min_max: ``
165
+ min_max: ``,
166
+ vertical: ` <el-checkbox-group v-model="value" class="el-vertical-group" />`
152
167
  },
153
168
  checkAll: false,
154
169
  checkList: ["Value selected and disabled", "Value A"],
@@ -10,6 +10,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
10
10
  group: string;
11
11
  indeterminate: string;
12
12
  min_max: string;
13
+ vertical: string;
13
14
  };
14
15
  checkAll: boolean;
15
16
  checkList: string[];
@@ -18,10 +18,17 @@
18
18
  </template>
19
19
  </el-popover>
20
20
 
21
- <el-popover placement="bottom" title="Title" :width="200" trigger="click" content="this is content, this is content, this is content">
21
+ <el-popover placement="bottom" trigger="click" popper-class="custom-popover">
22
22
  <template #reference>
23
- <el-button>Click to activate</el-button>
23
+ <el-button type="primary">popover</el-button>
24
24
  </template>
25
+ <div class="table-filter-box" style="padding: 10px">
26
+ <el-select v-model="model" style="width: 200px" :teleported="false">
27
+ <el-option label="item1" value="item1" />
28
+ <el-option label="item2" value="item2" />
29
+ <el-option label="item3" value="item3" />
30
+ </el-select>
31
+ </div>
25
32
  </el-popover>
26
33
 
27
34
  <el-popover ref="popoverRef" placement="right" title="Title" :width="200" trigger="focus" content="this is content, this is content, this is content">
@@ -97,6 +104,8 @@
97
104
  const onClickOutside = () => {
98
105
  unref(popoverRef).popperRef?.delayHide?.();
99
106
  };
107
+ const sizes = ['default', 'large', 'medium', 'small', 'mini'];
108
+ const model = ref('');
100
109
  const snippets = {
101
110
  basic: `
102
111
  <el-popover placement="top-start" title="Title" :width="200" trigger="hover" content="this is content, this is content, this is content">
@@ -21,6 +21,20 @@
21
21
  <template #footer> <html-encode :tag="snippets.sizes" /> </template>
22
22
  </el-card>
23
23
 
24
+ <el-card>
25
+ <template #header>Vertical Group</template>
26
+ <div class="flex flex-col gap-3 items-start">
27
+ <p>To made radio group vertical just add <el-text tag="mark">class="el-vertical-group"</el-text> to <el-text tag="mark">el-radio-group</el-text> component.</p>
28
+ <div class="flex flex-col gap-4 items-start">
29
+ Selected: {{ value }}
30
+ <el-radio-group v-model="value" class="el-vertical-group">
31
+ <el-radio v-for="(size, index) of sizes" :key="index" :value="index" :size="size">Option 1</el-radio>
32
+ </el-radio-group>
33
+ </div>
34
+ </div>
35
+ <template #footer> <html-encode :tag="snippets.vertical" /> </template>
36
+ </el-card>
37
+
24
38
  <el-card>
25
39
  <template #header> Disabled </template>
26
40
  <div class="flex flex-col gap-3 items-start">
@@ -135,7 +149,8 @@ export default defineComponent({
135
149
  <el-radio :value="1" border>Option A</el-radio>
136
150
  <el-radio :value="2" border>Option B</el-radio>
137
151
  </el-radio-group>
138
- `
152
+ `,
153
+ vertical: ` <el-radio-group v-model="value" class="el-vertical-group" />`
139
154
  },
140
155
  checkAll: false,
141
156
  checkList: ["Value selected and disabled", "Value A"],
@@ -11,6 +11,7 @@ declare const _default: import("vue").DefineComponent<{}, {}, {
11
11
  group: string;
12
12
  button: string;
13
13
  bordered: string;
14
+ vertical: string;
14
15
  };
15
16
  checkAll: boolean;
16
17
  checkList: string[];
@@ -20,7 +20,19 @@
20
20
  <el-table-column property="state" label="State" width="240" show-overflow-tooltip />
21
21
  <el-table-column property="city" label="City" show-overflow-tooltip />
22
22
  <el-table-column property="zip" label="Zip" show-overflow-tooltip />
23
- <el-table-column property="address" label="Address" width="140" show-overflow-tooltip fixed="right" />
23
+ <el-table-column property="address" label="Address" width="140" show-overflow-tooltip />
24
+ <el-table-column min-width="37" fixed="right">
25
+ <el-dropdown>
26
+ <el-icon class="more-icon"><el-icon-more-filled /></el-icon>
27
+ <template #dropdown>
28
+ <el-dropdown-menu data-testid="pages-customers-index-yisqvkendj">
29
+ <el-dropdown-item value="1"> Action 01 </el-dropdown-item>
30
+ <el-dropdown-item value="2"> Action 02 </el-dropdown-item>
31
+ <el-dropdown-item value="3"> Action 03 </el-dropdown-item>
32
+ </el-dropdown-menu>
33
+ </template>
34
+ </el-dropdown>
35
+ </el-table-column>
24
36
  </el-table>
25
37
  </div>
26
38
  <template #footer>
@@ -379,7 +379,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
379
379
  --el-overlay-color: rgba(0, 0, 0, 0.8);
380
380
  --el-overlay-color-light: rgba(0, 0, 0, 0.7);
381
381
  --el-overlay-color-lighter: #69b64f;
382
- --el-mask-color: rgba(255, 255, 255, 0.9);
382
+ --el-mask-color: rgba(255, 255, 255, 0.8);
383
383
  --el-mask-color-extra-light: rgba(255, 255, 255, 0.3);
384
384
  --el-border-width: 1px;
385
385
  --el-border-style: solid;
@@ -304,4 +304,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
304
304
  display: inline-flex;
305
305
  font-size: 0;
306
306
  line-height: 0;
307
+ }
308
+ .el-checkbox-group.el-vertical-group {
309
+ align-items: flex-start;
310
+ flex-direction: column;
307
311
  }
@@ -5,4 +5,9 @@
5
5
  display: inline-flex;
6
6
  font-size: 0;
7
7
  line-height: 0;
8
+
9
+ &.el-vertical-group {
10
+ align-items: flex-start;
11
+ flex-direction: column;
12
+ }
8
13
  }
@@ -276,7 +276,7 @@ $overlay-color: map.merge(
276
276
  $mask-color: () !default;
277
277
  $mask-color: map.merge(
278
278
  (
279
- '': rgba(255, 255, 255, 0.9),
279
+ '': rgba(255, 255, 255, 0.8),
280
280
  'extra-light': rgba(255, 255, 255, 0.3),
281
281
  ),
282
282
  $mask-color
@@ -1004,6 +1004,7 @@ $pagination: map.merge(
1004
1004
  'button-color': getCssVar('color-neutral-light-4'),
1005
1005
  'button-width': 32px,
1006
1006
  'button-height': 30px,
1007
+ 'select-height': 20px,
1007
1008
  'button-disabled-color': getCssVar('text-color-placeholder'),
1008
1009
  'button-disabled-bg-color': getCssVar('fill-color', 'blank'),
1009
1010
  'button-bg-color': getCssVar('fill-color'),
@@ -379,7 +379,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
379
379
  --el-overlay-color: rgba(0, 0, 0, 0.8);
380
380
  --el-overlay-color-light: rgba(0, 0, 0, 0.7);
381
381
  --el-overlay-color-lighter: #69b64f;
382
- --el-mask-color: rgba(255, 255, 255, 0.9);
382
+ --el-mask-color: rgba(255, 255, 255, 0.8);
383
383
  --el-mask-color-extra-light: rgba(255, 255, 255, 0.3);
384
384
  --el-border-width: 1px;
385
385
  --el-border-style: solid;
@@ -3102,6 +3102,10 @@ heights > $common-component-size
3102
3102
  font-size: 0;
3103
3103
  line-height: 0;
3104
3104
  }
3105
+ .el-checkbox-group.el-vertical-group {
3106
+ align-items: flex-start;
3107
+ flex-direction: column;
3108
+ }
3105
3109
 
3106
3110
  .el-checkbox {
3107
3111
  --el-checkbox-font-size: 14px;
@@ -9932,11 +9936,12 @@ heights > $common-component-size
9932
9936
  z-index: 2000;
9933
9937
  background-color: var(--el-mask-color);
9934
9938
  margin: 0;
9935
- top: 0;
9936
- right: 0;
9937
- bottom: 0;
9938
- left: 0;
9939
+ top: -1px;
9940
+ right: -1px;
9941
+ bottom: -1px;
9942
+ left: -1px;
9939
9943
  transition: opacity var(--el-transition-duration);
9944
+ border-radius: 0;
9940
9945
  }
9941
9946
  .el-loading-mask.is-fullscreen {
9942
9947
  position: fixed;
@@ -10956,6 +10961,7 @@ heights > $common-component-size
10956
10961
  --el-pagination-button-color: var(--el-color-neutral-light-4);
10957
10962
  --el-pagination-button-width: 32px;
10958
10963
  --el-pagination-button-height: 30px;
10964
+ --el-pagination-select-height: 20px;
10959
10965
  --el-pagination-button-disabled-color: var(--el-text-color-placeholder);
10960
10966
  --el-pagination-button-disabled-bg-color: var(--el-fill-color-blank);
10961
10967
  --el-pagination-button-bg-color: var(--el-fill-color);
@@ -10974,6 +10980,7 @@ heights > $common-component-size
10974
10980
  --el-pagination-button-color: var(--el-color-neutral-light-4);
10975
10981
  --el-pagination-button-width: 32px;
10976
10982
  --el-pagination-button-height: 30px;
10983
+ --el-pagination-select-height: 20px;
10977
10984
  --el-pagination-button-disabled-color: var(--el-text-color-placeholder);
10978
10985
  --el-pagination-button-disabled-bg-color: var(--el-fill-color-blank);
10979
10986
  --el-pagination-button-bg-color: var(--el-fill-color);
@@ -11002,6 +11009,7 @@ heights > $common-component-size
11002
11009
  width: 128px;
11003
11010
  }
11004
11011
  .el-pagination .el-select .el-select__wrapper {
11012
+ height: var(--el-pagination-select-height);
11005
11013
  min-height: var(--el-pagination-button-height);
11006
11014
  }
11007
11015
  .el-pagination button {
@@ -11271,6 +11279,7 @@ heights > $common-component-size
11271
11279
  box-shadow: var(--el-box-shadow-light);
11272
11280
  overflow-wrap: break-word;
11273
11281
  box-sizing: border-box;
11282
+ width: auto !important;
11274
11283
  }
11275
11284
  .el-popover.el-popper--plain {
11276
11285
  padding: var(--el-popover-padding-large);
@@ -11601,10 +11610,13 @@ heights > $common-component-size
11601
11610
 
11602
11611
  .el-radio-group {
11603
11612
  display: inline-flex;
11604
- align-items: center;
11605
11613
  flex-wrap: wrap;
11606
11614
  font-size: 0;
11607
11615
  }
11616
+ .el-radio-group.el-vertical-group {
11617
+ align-items: flex-start;
11618
+ flex-direction: column;
11619
+ }
11608
11620
 
11609
11621
  .el-radio {
11610
11622
  --el-radio-font-size: var(--el-font-size-base);
@@ -12108,13 +12120,13 @@ heights > $common-component-size
12108
12120
 
12109
12121
  .el-scrollbar__bar {
12110
12122
  position: absolute;
12111
- right: 2px;
12112
- bottom: 2px;
12123
+ right: 0;
12124
+ bottom: 0;
12113
12125
  z-index: 1;
12114
12126
  border-radius: 4px;
12115
12127
  }
12116
12128
  .el-scrollbar__bar.is-vertical {
12117
- width: 6px;
12129
+ width: 4px;
12118
12130
  top: 2px;
12119
12131
  }
12120
12132
  .el-scrollbar__bar.is-vertical > div {
@@ -12122,7 +12134,7 @@ heights > $common-component-size
12122
12134
  }
12123
12135
 
12124
12136
  .el-scrollbar__bar.is-horizontal {
12125
- height: 6px;
12137
+ height: 4px;
12126
12138
  left: 2px;
12127
12139
  }
12128
12140
  .el-scrollbar__bar.is-horizontal > div {
@@ -13807,6 +13819,18 @@ heights > $common-component-size
13807
13819
  font-size: var(--el-table-font-size);
13808
13820
  line-height: 16px;
13809
13821
  }
13822
+ .el-table .cell .more-icon {
13823
+ display: flex;
13824
+ align-items: center;
13825
+ justify-content: center;
13826
+ color: var(--el-color-neutral-light-3);
13827
+ width: 24px;
13828
+ height: 24px;
13829
+ }
13830
+ .el-table .cell .more-icon svg {
13831
+ width: 24px;
13832
+ height: 20px;
13833
+ }
13810
13834
  .el-table--large {
13811
13835
  font-size: var(--el-font-size-base);
13812
13836
  }
@@ -318,11 +318,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
318
318
  z-index: 2000;
319
319
  background-color: var(--el-mask-color);
320
320
  margin: 0;
321
- top: 0;
322
- right: 0;
323
- bottom: 0;
324
- left: 0;
321
+ top: -1px;
322
+ right: -1px;
323
+ bottom: -1px;
324
+ left: -1px;
325
325
  transition: opacity var(--el-transition-duration);
326
+ border-radius: 0;
326
327
  }
327
328
  .el-loading-mask.is-fullscreen {
328
329
  position: fixed;
@@ -21,11 +21,12 @@
21
21
  z-index: 2000;
22
22
  background-color: getCssVar('mask-color');
23
23
  margin: 0;
24
- top: 0;
25
- right: 0;
26
- bottom: 0;
27
- left: 0;
24
+ top: -1px;
25
+ right: -1px;
26
+ bottom: -1px;
27
+ left: -1px;
28
28
  transition: opacity getCssVar('transition-duration');
29
+ border-radius: 0;
29
30
 
30
31
  @include when(fullscreen) {
31
32
  position: fixed;
@@ -308,6 +308,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
308
308
  --el-pagination-button-color: var(--el-color-neutral-light-4);
309
309
  --el-pagination-button-width: 32px;
310
310
  --el-pagination-button-height: 30px;
311
+ --el-pagination-select-height: 20px;
311
312
  --el-pagination-button-disabled-color: var(--el-text-color-placeholder);
312
313
  --el-pagination-button-disabled-bg-color: var(--el-fill-color-blank);
313
314
  --el-pagination-button-bg-color: var(--el-fill-color);
@@ -326,6 +327,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
326
327
  --el-pagination-button-color: var(--el-color-neutral-light-4);
327
328
  --el-pagination-button-width: 32px;
328
329
  --el-pagination-button-height: 30px;
330
+ --el-pagination-select-height: 20px;
329
331
  --el-pagination-button-disabled-color: var(--el-text-color-placeholder);
330
332
  --el-pagination-button-disabled-bg-color: var(--el-fill-color-blank);
331
333
  --el-pagination-button-bg-color: var(--el-fill-color);
@@ -354,6 +356,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
354
356
  width: 128px;
355
357
  }
356
358
  .el-pagination .el-select .el-select__wrapper {
359
+ height: var(--el-pagination-select-height);
357
360
  min-height: var(--el-pagination-button-height);
358
361
  }
359
362
  .el-pagination button {
@@ -76,6 +76,7 @@
76
76
  width: 128px;
77
77
 
78
78
  .#{$namespace}-select__wrapper {
79
+ height: getCssVar('pagination-select-height');
79
80
  min-height: getCssVar('pagination-button-height');
80
81
  }
81
82
  }
@@ -324,6 +324,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
324
324
  box-shadow: var(--el-box-shadow-light);
325
325
  overflow-wrap: break-word;
326
326
  box-sizing: border-box;
327
+ width: auto !important;
327
328
  }
328
329
  .el-popover.el-popper--plain {
329
330
  padding: var(--el-popover-padding-large);
@@ -18,6 +18,7 @@
18
18
  box-shadow: getCssVar('box-shadow-light');
19
19
  overflow-wrap: break-word;
20
20
  box-sizing: border-box;
21
+ width: auto !important;
21
22
 
22
23
  @include m(plain) {
23
24
  padding: getCssVar('popover-padding-large');
@@ -302,7 +302,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
302
302
  **/
303
303
  .el-radio-group {
304
304
  display: inline-flex;
305
- align-items: center;
306
305
  flex-wrap: wrap;
307
306
  font-size: 0;
307
+ }
308
+ .el-radio-group.el-vertical-group {
309
+ align-items: flex-start;
310
+ flex-direction: column;
308
311
  }
@@ -3,7 +3,11 @@
3
3
 
4
4
  @include b(radio-group) {
5
5
  display: inline-flex;
6
- align-items: center;
7
6
  flex-wrap: wrap;
8
7
  font-size: 0;
8
+
9
+ &.el-vertical-group {
10
+ align-items: flex-start;
11
+ flex-direction: column;
12
+ }
9
13
  }
@@ -341,13 +341,13 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
341
341
 
342
342
  .el-scrollbar__bar {
343
343
  position: absolute;
344
- right: 2px;
345
- bottom: 2px;
344
+ right: 0;
345
+ bottom: 0;
346
346
  z-index: 1;
347
347
  border-radius: 4px;
348
348
  }
349
349
  .el-scrollbar__bar.is-vertical {
350
- width: 6px;
350
+ width: 4px;
351
351
  top: 2px;
352
352
  }
353
353
  .el-scrollbar__bar.is-vertical > div {
@@ -355,7 +355,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
355
355
  }
356
356
 
357
357
  .el-scrollbar__bar.is-horizontal {
358
- height: 6px;
358
+ height: 4px;
359
359
  left: 2px;
360
360
  }
361
361
  .el-scrollbar__bar.is-horizontal > div {
@@ -44,13 +44,13 @@
44
44
 
45
45
  @include e(bar) {
46
46
  position: absolute;
47
- right: 2px;
48
- bottom: 2px;
47
+ right: 0;
48
+ bottom: 0;
49
49
  z-index: 1;
50
50
  border-radius: 4px;
51
51
 
52
52
  @include when(vertical) {
53
- width: 6px;
53
+ width: 4px;
54
54
  top: 2px;
55
55
 
56
56
  > div {
@@ -59,7 +59,7 @@
59
59
  }
60
60
 
61
61
  @include when(horizontal) {
62
- height: 6px;
62
+ height: 4px;
63
63
  left: 2px;
64
64
 
65
65
  > div {
@@ -488,6 +488,18 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
488
488
  font-size: var(--el-table-font-size);
489
489
  line-height: 16px;
490
490
  }
491
+ .el-table .cell .more-icon {
492
+ display: flex;
493
+ align-items: center;
494
+ justify-content: center;
495
+ color: var(--el-color-neutral-light-3);
496
+ width: 24px;
497
+ height: 24px;
498
+ }
499
+ .el-table .cell .more-icon svg {
500
+ width: 24px;
501
+ height: 20px;
502
+ }
491
503
  .el-table--large {
492
504
  font-size: var(--el-font-size-base);
493
505
  }
@@ -203,6 +203,7 @@
203
203
  &:last-of-type {
204
204
  .cell {
205
205
  padding-right: 0;
206
+ // padding-left: 0;
206
207
  }
207
208
  }
208
209
  }
@@ -225,6 +226,21 @@
225
226
  font-size: getCssVar('table-font-size');
226
227
  line-height: 16px;
227
228
  }
229
+
230
+ .more-icon {
231
+ display: flex;
232
+ align-items: center;
233
+ justify-content: center;
234
+ color: var(--el-color-neutral-light-3);
235
+ width: 24px;
236
+ height: 24px;
237
+ // margin-left: 4px;
238
+
239
+ svg {
240
+ width: 24px;
241
+ height: 20px;
242
+ }
243
+ }
228
244
  }
229
245
 
230
246
  @each $size in (large, default, small) {
@@ -379,7 +379,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
379
379
  --el-overlay-color: rgba(0, 0, 0, 0.8);
380
380
  --el-overlay-color-light: rgba(0, 0, 0, 0.7);
381
381
  --el-overlay-color-lighter: #69b64f;
382
- --el-mask-color: rgba(255, 255, 255, 0.9);
382
+ --el-mask-color: rgba(255, 255, 255, 0.8);
383
383
  --el-mask-color-extra-light: rgba(255, 255, 255, 0.3);
384
384
  --el-border-width: 1px;
385
385
  --el-border-style: solid;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.7",
3
+ "version": "2.4.9",
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": {