@timus-networks/theme 2.4.73 → 2.4.75
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/common/var.scss +2 -2
- package/dist/runtime/public/scss/element-plus/index.css +15 -10
- package/dist/runtime/public/scss/element-plus/table-v2.css +2 -2
- package/dist/runtime/public/scss/element-plus/table.css +13 -8
- package/dist/runtime/public/scss/element-plus/table.scss +12 -6
- 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.75";
|
|
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 = {
|
|
@@ -941,10 +941,10 @@ $mention: map.merge(
|
|
|
941
941
|
$table: () !default;
|
|
942
942
|
$table: map.merge(
|
|
943
943
|
(
|
|
944
|
-
'border-color': getCssVar('color-neutral-light-
|
|
944
|
+
'border-color': getCssVar('color-neutral-light-2'),
|
|
945
945
|
'border': 1px solid getCssVar('table-border-color'),
|
|
946
946
|
'text-color': getCssVar('color-neutral-light-7'),
|
|
947
|
-
'header-text-color': getCssVar('
|
|
947
|
+
'header-text-color': getCssVar('color-neutral-light-9'),
|
|
948
948
|
'row-hover-bg-color': getCssVar('color-white'),
|
|
949
949
|
'current-row-bg-color': getCssVar('color-primary-light-9'),
|
|
950
950
|
'header-bg-color': getCssVar('bg-color'),
|
|
@@ -13798,10 +13798,10 @@ h6,
|
|
|
13798
13798
|
}
|
|
13799
13799
|
|
|
13800
13800
|
.el-table {
|
|
13801
|
-
--el-table-border-color: var(--el-color-neutral-light-
|
|
13801
|
+
--el-table-border-color: var(--el-color-neutral-light-2);
|
|
13802
13802
|
--el-table-border: 1px solid var(--el-table-border-color);
|
|
13803
13803
|
--el-table-text-color: var(--el-color-neutral-light-7);
|
|
13804
|
-
--el-table-header-text-color: var(--el-
|
|
13804
|
+
--el-table-header-text-color: var(--el-color-neutral-light-9);
|
|
13805
13805
|
--el-table-row-hover-bg-color: var(--el-color-white);
|
|
13806
13806
|
--el-table-current-row-bg-color: var(--el-color-primary-light-9);
|
|
13807
13807
|
--el-table-header-bg-color: var(--el-bg-color);
|
|
@@ -13824,10 +13824,12 @@ h6,
|
|
|
13824
13824
|
height: fit-content;
|
|
13825
13825
|
max-width: 100%;
|
|
13826
13826
|
background-color: var(--el-table-bg-color);
|
|
13827
|
-
font-size: var(--el-table-font-size
|
|
13827
|
+
font-size: var(--el-table-font-size);
|
|
13828
13828
|
font-weight: var(--el-table-font-weight-body);
|
|
13829
13829
|
color: var(--el-table-text-color);
|
|
13830
13830
|
overflow: initial;
|
|
13831
|
+
border-bottom: 1px solid var(--el-table-border-color);
|
|
13832
|
+
border-top: 1px solid var(--el-table-border-color);
|
|
13831
13833
|
}
|
|
13832
13834
|
.el-table__inner-wrapper {
|
|
13833
13835
|
position: relative;
|
|
@@ -13969,7 +13971,7 @@ h6,
|
|
|
13969
13971
|
min-width: 50px;
|
|
13970
13972
|
}
|
|
13971
13973
|
.el-table .cell .el-link {
|
|
13972
|
-
font-size: var(--el-table-font-size
|
|
13974
|
+
font-size: var(--el-table-font-size);
|
|
13973
13975
|
line-height: 16px;
|
|
13974
13976
|
}
|
|
13975
13977
|
.el-table .cell .more-icon {
|
|
@@ -14422,22 +14424,25 @@ h6,
|
|
|
14422
14424
|
box-shadow: 0 0 0 1px var(--el-color-neutral-light-3);
|
|
14423
14425
|
border-radius: 6px;
|
|
14424
14426
|
}
|
|
14427
|
+
.el-table.t-border-none {
|
|
14428
|
+
border: none;
|
|
14429
|
+
}
|
|
14425
14430
|
.el-table.t-border-b {
|
|
14426
|
-
border-bottom: 1px solid var(--el-table-border-color);
|
|
14431
|
+
border-bottom: 1px solid var(--el-table-border-color) !important;
|
|
14427
14432
|
}
|
|
14428
14433
|
.el-table.t-border-t {
|
|
14429
|
-
border-top: 1px solid var(--el-table-border-color);
|
|
14434
|
+
border-top: 1px solid var(--el-table-border-color) !important;
|
|
14430
14435
|
}
|
|
14431
14436
|
.el-table.t-border-y {
|
|
14432
|
-
border-bottom: 1px solid var(--el-table-border-color);
|
|
14433
|
-
border-top: 1px solid var(--el-table-border-color);
|
|
14437
|
+
border-bottom: 1px solid var(--el-table-border-color) !important;
|
|
14438
|
+
border-top: 1px solid var(--el-table-border-color) !important;
|
|
14434
14439
|
}
|
|
14435
14440
|
|
|
14436
14441
|
.el-table-v2 {
|
|
14437
|
-
--el-table-border-color: var(--el-color-neutral-light-
|
|
14442
|
+
--el-table-border-color: var(--el-color-neutral-light-2);
|
|
14438
14443
|
--el-table-border: 1px solid var(--el-table-border-color);
|
|
14439
14444
|
--el-table-text-color: var(--el-color-neutral-light-7);
|
|
14440
|
-
--el-table-header-text-color: var(--el-
|
|
14445
|
+
--el-table-header-text-color: var(--el-color-neutral-light-9);
|
|
14441
14446
|
--el-table-row-hover-bg-color: var(--el-color-white);
|
|
14442
14447
|
--el-table-current-row-bg-color: var(--el-color-primary-light-9);
|
|
14443
14448
|
--el-table-header-bg-color: var(--el-bg-color);
|
|
@@ -301,10 +301,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
301
301
|
}
|
|
302
302
|
**/
|
|
303
303
|
.el-table-v2 {
|
|
304
|
-
--el-table-border-color: var(--el-color-neutral-light-
|
|
304
|
+
--el-table-border-color: var(--el-color-neutral-light-2);
|
|
305
305
|
--el-table-border: 1px solid var(--el-table-border-color);
|
|
306
306
|
--el-table-text-color: var(--el-color-neutral-light-7);
|
|
307
|
-
--el-table-header-text-color: var(--el-
|
|
307
|
+
--el-table-header-text-color: var(--el-color-neutral-light-9);
|
|
308
308
|
--el-table-row-hover-bg-color: var(--el-color-white);
|
|
309
309
|
--el-table-current-row-bg-color: var(--el-color-primary-light-9);
|
|
310
310
|
--el-table-header-bg-color: var(--el-bg-color);
|
|
@@ -301,10 +301,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
301
301
|
}
|
|
302
302
|
**/
|
|
303
303
|
.el-table {
|
|
304
|
-
--el-table-border-color: var(--el-color-neutral-light-
|
|
304
|
+
--el-table-border-color: var(--el-color-neutral-light-2);
|
|
305
305
|
--el-table-border: 1px solid var(--el-table-border-color);
|
|
306
306
|
--el-table-text-color: var(--el-color-neutral-light-7);
|
|
307
|
-
--el-table-header-text-color: var(--el-
|
|
307
|
+
--el-table-header-text-color: var(--el-color-neutral-light-9);
|
|
308
308
|
--el-table-row-hover-bg-color: var(--el-color-white);
|
|
309
309
|
--el-table-current-row-bg-color: var(--el-color-primary-light-9);
|
|
310
310
|
--el-table-header-bg-color: var(--el-bg-color);
|
|
@@ -327,10 +327,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
327
327
|
height: fit-content;
|
|
328
328
|
max-width: 100%;
|
|
329
329
|
background-color: var(--el-table-bg-color);
|
|
330
|
-
font-size: var(--el-table-font-size
|
|
330
|
+
font-size: var(--el-table-font-size);
|
|
331
331
|
font-weight: var(--el-table-font-weight-body);
|
|
332
332
|
color: var(--el-table-text-color);
|
|
333
333
|
overflow: initial;
|
|
334
|
+
border-bottom: 1px solid var(--el-table-border-color);
|
|
335
|
+
border-top: 1px solid var(--el-table-border-color);
|
|
334
336
|
}
|
|
335
337
|
.el-table__inner-wrapper {
|
|
336
338
|
position: relative;
|
|
@@ -472,7 +474,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
472
474
|
min-width: 50px;
|
|
473
475
|
}
|
|
474
476
|
.el-table .cell .el-link {
|
|
475
|
-
font-size: var(--el-table-font-size
|
|
477
|
+
font-size: var(--el-table-font-size);
|
|
476
478
|
line-height: 16px;
|
|
477
479
|
}
|
|
478
480
|
.el-table .cell .more-icon {
|
|
@@ -925,13 +927,16 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
925
927
|
box-shadow: 0 0 0 1px var(--el-color-neutral-light-3);
|
|
926
928
|
border-radius: 6px;
|
|
927
929
|
}
|
|
930
|
+
.el-table.t-border-none {
|
|
931
|
+
border: none;
|
|
932
|
+
}
|
|
928
933
|
.el-table.t-border-b {
|
|
929
|
-
border-bottom: 1px solid var(--el-table-border-color);
|
|
934
|
+
border-bottom: 1px solid var(--el-table-border-color) !important;
|
|
930
935
|
}
|
|
931
936
|
.el-table.t-border-t {
|
|
932
|
-
border-top: 1px solid var(--el-table-border-color);
|
|
937
|
+
border-top: 1px solid var(--el-table-border-color) !important;
|
|
933
938
|
}
|
|
934
939
|
.el-table.t-border-y {
|
|
935
|
-
border-bottom: 1px solid var(--el-table-border-color);
|
|
936
|
-
border-top: 1px solid var(--el-table-border-color);
|
|
940
|
+
border-bottom: 1px solid var(--el-table-border-color) !important;
|
|
941
|
+
border-top: 1px solid var(--el-table-border-color) !important;
|
|
937
942
|
}
|
|
@@ -16,10 +16,12 @@
|
|
|
16
16
|
// width: calc(100% - 48px) !important;
|
|
17
17
|
max-width: 100%;
|
|
18
18
|
background-color: getCssVar('table-bg-color');
|
|
19
|
-
font-size: getCssVar('table-font-size
|
|
19
|
+
font-size: getCssVar('table-font-size');
|
|
20
20
|
font-weight: getCssVar('table-font-weight-body');
|
|
21
21
|
color: getCssVar('table-text-color');
|
|
22
22
|
overflow: initial;
|
|
23
|
+
border-bottom: 1px solid getCssVar('table-border-color');
|
|
24
|
+
border-top: 1px solid getCssVar('table-border-color');
|
|
23
25
|
// transform: translateX(24px);
|
|
24
26
|
// margin: 8px 0;
|
|
25
27
|
|
|
@@ -223,7 +225,7 @@
|
|
|
223
225
|
}
|
|
224
226
|
|
|
225
227
|
.el-link {
|
|
226
|
-
font-size: getCssVar('table-font-size
|
|
228
|
+
font-size: getCssVar('table-font-size');
|
|
227
229
|
line-height: 16px;
|
|
228
230
|
}
|
|
229
231
|
|
|
@@ -779,16 +781,20 @@
|
|
|
779
781
|
}
|
|
780
782
|
}
|
|
781
783
|
|
|
784
|
+
&.t-border-none {
|
|
785
|
+
border: none;
|
|
786
|
+
}
|
|
787
|
+
|
|
782
788
|
&.t-border-b {
|
|
783
|
-
border-bottom: 1px solid getCssVar('table-border-color');
|
|
789
|
+
border-bottom: 1px solid getCssVar('table-border-color') !important;
|
|
784
790
|
}
|
|
785
791
|
|
|
786
792
|
&.t-border-t {
|
|
787
|
-
border-top: 1px solid getCssVar('table-border-color');
|
|
793
|
+
border-top: 1px solid getCssVar('table-border-color') !important;
|
|
788
794
|
}
|
|
789
795
|
|
|
790
796
|
&.t-border-y {
|
|
791
|
-
border-bottom: 1px solid getCssVar('table-border-color');
|
|
792
|
-
border-top: 1px solid getCssVar('table-border-color');
|
|
797
|
+
border-bottom: 1px solid getCssVar('table-border-color') !important;
|
|
798
|
+
border-top: 1px solid getCssVar('table-border-color') !important;
|
|
793
799
|
}
|
|
794
800
|
}
|
package/package.json
CHANGED