@timus-networks/theme 2.4.77 → 2.4.78
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/public/scss/element-plus/form.css +3 -0
- package/dist/runtime/public/scss/element-plus/form.scss +4 -0
- package/dist/runtime/public/scss/element-plus/index.css +13 -5
- package/dist/runtime/public/scss/element-plus/table.css +10 -5
- package/dist/runtime/public/scss/element-plus/table.scss +10 -5
- 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.78";
|
|
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 = {
|
|
@@ -97,6 +97,10 @@ $form-item-label-top-margin-bottom: map.merge(
|
|
|
97
97
|
--font-size: #{map.get($input-font-size, 'default')};
|
|
98
98
|
margin-bottom: #{map.get($form-item-margin-bottom, 'default')};
|
|
99
99
|
|
|
100
|
+
&:last-child {
|
|
101
|
+
margin-bottom: 0;
|
|
102
|
+
}
|
|
103
|
+
|
|
100
104
|
.#{$namespace}-form-item {
|
|
101
105
|
margin-bottom: 0;
|
|
102
106
|
}
|
|
@@ -8757,6 +8757,9 @@ heights > $common-component-size
|
|
|
8757
8757
|
--font-size: 14px;
|
|
8758
8758
|
margin-bottom: 16px;
|
|
8759
8759
|
}
|
|
8760
|
+
.el-form-item:last-child {
|
|
8761
|
+
margin-bottom: 0;
|
|
8762
|
+
}
|
|
8760
8763
|
.el-form-item .el-form-item {
|
|
8761
8764
|
margin-bottom: 0;
|
|
8762
8765
|
}
|
|
@@ -13963,10 +13966,13 @@ h6,
|
|
|
13963
13966
|
box-sizing: border-box;
|
|
13964
13967
|
overflow: hidden;
|
|
13965
13968
|
text-overflow: ellipsis;
|
|
13966
|
-
white-space: normal;
|
|
13967
13969
|
overflow-wrap: break-word;
|
|
13968
13970
|
line-height: 20px;
|
|
13969
13971
|
padding: 0 12px;
|
|
13972
|
+
align-items: center;
|
|
13973
|
+
display: flex;
|
|
13974
|
+
gap: 2px;
|
|
13975
|
+
white-space: nowrap;
|
|
13970
13976
|
}
|
|
13971
13977
|
.el-table .cell.el-tooltip {
|
|
13972
13978
|
white-space: nowrap;
|
|
@@ -14275,19 +14281,21 @@ h6,
|
|
|
14275
14281
|
display: inline-flex;
|
|
14276
14282
|
flex-direction: column;
|
|
14277
14283
|
align-items: center;
|
|
14278
|
-
height: 14px;
|
|
14279
|
-
width: 24px;
|
|
14280
14284
|
vertical-align: middle;
|
|
14281
14285
|
cursor: pointer;
|
|
14282
14286
|
overflow: initial;
|
|
14283
14287
|
position: relative;
|
|
14288
|
+
gap: 2px;
|
|
14289
|
+
height: auto;
|
|
14290
|
+
width: 14px;
|
|
14284
14291
|
}
|
|
14285
14292
|
.el-table .sort-caret {
|
|
14286
14293
|
width: 0;
|
|
14287
14294
|
height: 0;
|
|
14288
14295
|
border: solid 5px transparent;
|
|
14289
|
-
|
|
14290
|
-
|
|
14296
|
+
left: 0;
|
|
14297
|
+
top: 0;
|
|
14298
|
+
position: relative;
|
|
14291
14299
|
}
|
|
14292
14300
|
.el-table .sort-caret.ascending {
|
|
14293
14301
|
border-bottom-color: var(--el-text-color-placeholder);
|
|
@@ -464,10 +464,13 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
464
464
|
box-sizing: border-box;
|
|
465
465
|
overflow: hidden;
|
|
466
466
|
text-overflow: ellipsis;
|
|
467
|
-
white-space: normal;
|
|
468
467
|
overflow-wrap: break-word;
|
|
469
468
|
line-height: 20px;
|
|
470
469
|
padding: 0 12px;
|
|
470
|
+
align-items: center;
|
|
471
|
+
display: flex;
|
|
472
|
+
gap: 2px;
|
|
473
|
+
white-space: nowrap;
|
|
471
474
|
}
|
|
472
475
|
.el-table .cell.el-tooltip {
|
|
473
476
|
white-space: nowrap;
|
|
@@ -776,19 +779,21 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
776
779
|
display: inline-flex;
|
|
777
780
|
flex-direction: column;
|
|
778
781
|
align-items: center;
|
|
779
|
-
height: 14px;
|
|
780
|
-
width: 24px;
|
|
781
782
|
vertical-align: middle;
|
|
782
783
|
cursor: pointer;
|
|
783
784
|
overflow: initial;
|
|
784
785
|
position: relative;
|
|
786
|
+
gap: 2px;
|
|
787
|
+
height: auto;
|
|
788
|
+
width: 14px;
|
|
785
789
|
}
|
|
786
790
|
.el-table .sort-caret {
|
|
787
791
|
width: 0;
|
|
788
792
|
height: 0;
|
|
789
793
|
border: solid 5px transparent;
|
|
790
|
-
|
|
791
|
-
|
|
794
|
+
left: 0;
|
|
795
|
+
top: 0;
|
|
796
|
+
position: relative;
|
|
792
797
|
}
|
|
793
798
|
.el-table .sort-caret.ascending {
|
|
794
799
|
border-bottom-color: var(--el-text-color-placeholder);
|
|
@@ -214,10 +214,13 @@
|
|
|
214
214
|
box-sizing: border-box;
|
|
215
215
|
overflow: hidden;
|
|
216
216
|
text-overflow: ellipsis;
|
|
217
|
-
white-space: normal;
|
|
218
217
|
overflow-wrap: break-word;
|
|
219
218
|
line-height: 20px;
|
|
220
219
|
padding: 0 12px;
|
|
220
|
+
align-items: center;
|
|
221
|
+
display: flex;
|
|
222
|
+
gap: 2px;
|
|
223
|
+
white-space: nowrap;
|
|
221
224
|
|
|
222
225
|
&.#{$namespace}-tooltip {
|
|
223
226
|
white-space: nowrap;
|
|
@@ -581,20 +584,22 @@
|
|
|
581
584
|
display: inline-flex;
|
|
582
585
|
flex-direction: column;
|
|
583
586
|
align-items: center;
|
|
584
|
-
height: 14px;
|
|
585
|
-
width: 24px;
|
|
586
587
|
vertical-align: middle;
|
|
587
588
|
cursor: pointer;
|
|
588
589
|
overflow: initial;
|
|
589
590
|
position: relative;
|
|
591
|
+
gap: 2px;
|
|
592
|
+
height: auto;
|
|
593
|
+
width: 14px;
|
|
590
594
|
}
|
|
591
595
|
|
|
592
596
|
.sort-caret {
|
|
593
597
|
width: 0;
|
|
594
598
|
height: 0;
|
|
595
599
|
border: solid 5px transparent;
|
|
596
|
-
|
|
597
|
-
|
|
600
|
+
left: 0;
|
|
601
|
+
top: 0;
|
|
602
|
+
position: relative;
|
|
598
603
|
|
|
599
604
|
&.ascending {
|
|
600
605
|
border-bottom-color: getCssVar('text-color', 'placeholder');
|
package/package.json
CHANGED