@timus-networks/theme 2.4.4 → 2.4.6
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 +3 -0
- package/dist/runtime/public/scss/element-plus/index.css +7 -1
- package/dist/runtime/public/scss/element-plus/table-v2.css +1 -0
- package/dist/runtime/public/scss/element-plus/table.css +6 -1
- package/dist/runtime/public/scss/element-plus/table.scss +6 -1
- package/package.json +1 -1
package/dist/module.json
CHANGED
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.
|
|
15
|
+
const version = "2.4.6";
|
|
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 = {
|
|
@@ -955,6 +955,7 @@ $table: map.merge(
|
|
|
955
955
|
'index': getCssVar('index-normal'),
|
|
956
956
|
'font-weight-body': 300,
|
|
957
957
|
'font-weight-head': 400,
|
|
958
|
+
'font-size': 13px,
|
|
958
959
|
),
|
|
959
960
|
$table
|
|
960
961
|
);
|
|
@@ -964,7 +965,9 @@ $table-font-size: map.merge(
|
|
|
964
965
|
(
|
|
965
966
|
'large': getCssVar('font-size', 'base'),
|
|
966
967
|
'default': 14px,
|
|
968
|
+
'medium': 13px,
|
|
967
969
|
'small': 12px,
|
|
970
|
+
'mini': 12px,
|
|
968
971
|
),
|
|
969
972
|
$table-font-size
|
|
970
973
|
);
|
|
@@ -13636,6 +13636,7 @@ heights > $common-component-size
|
|
|
13636
13636
|
--el-table-index: var(--el-index-normal);
|
|
13637
13637
|
--el-table-font-weight-body: 300;
|
|
13638
13638
|
--el-table-font-weight-head: 400;
|
|
13639
|
+
--el-table-font-size: 13px;
|
|
13639
13640
|
}
|
|
13640
13641
|
|
|
13641
13642
|
.el-table {
|
|
@@ -13646,7 +13647,7 @@ heights > $common-component-size
|
|
|
13646
13647
|
width: calc(100% - 48px) !important;
|
|
13647
13648
|
max-width: 100%;
|
|
13648
13649
|
background-color: var(--el-table-bg-color);
|
|
13649
|
-
font-size:
|
|
13650
|
+
font-size: var(--el-table-font-size);
|
|
13650
13651
|
font-weight: var(--el-table-font-weight-body);
|
|
13651
13652
|
color: var(--el-table-text-color);
|
|
13652
13653
|
overflow: initial;
|
|
@@ -13802,6 +13803,10 @@ heights > $common-component-size
|
|
|
13802
13803
|
white-space: nowrap;
|
|
13803
13804
|
min-width: 50px;
|
|
13804
13805
|
}
|
|
13806
|
+
.el-table .cell .el-link {
|
|
13807
|
+
font-size: var(--el-table-font-size);
|
|
13808
|
+
line-height: 16px;
|
|
13809
|
+
}
|
|
13805
13810
|
.el-table--large {
|
|
13806
13811
|
font-size: var(--el-font-size-base);
|
|
13807
13812
|
}
|
|
@@ -14231,6 +14236,7 @@ heights > $common-component-size
|
|
|
14231
14236
|
--el-table-index: var(--el-index-normal);
|
|
14232
14237
|
--el-table-font-weight-body: 300;
|
|
14233
14238
|
--el-table-font-weight-head: 400;
|
|
14239
|
+
--el-table-font-size: 13px;
|
|
14234
14240
|
}
|
|
14235
14241
|
|
|
14236
14242
|
.el-table-v2 {
|
|
@@ -317,6 +317,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
317
317
|
--el-table-index: var(--el-index-normal);
|
|
318
318
|
--el-table-font-weight-body: 300;
|
|
319
319
|
--el-table-font-weight-head: 400;
|
|
320
|
+
--el-table-font-size: 13px;
|
|
320
321
|
}
|
|
321
322
|
|
|
322
323
|
.el-table {
|
|
@@ -327,7 +328,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
327
328
|
width: calc(100% - 48px) !important;
|
|
328
329
|
max-width: 100%;
|
|
329
330
|
background-color: var(--el-table-bg-color);
|
|
330
|
-
font-size:
|
|
331
|
+
font-size: var(--el-table-font-size);
|
|
331
332
|
font-weight: var(--el-table-font-weight-body);
|
|
332
333
|
color: var(--el-table-text-color);
|
|
333
334
|
overflow: initial;
|
|
@@ -483,6 +484,10 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
483
484
|
white-space: nowrap;
|
|
484
485
|
min-width: 50px;
|
|
485
486
|
}
|
|
487
|
+
.el-table .cell .el-link {
|
|
488
|
+
font-size: var(--el-table-font-size);
|
|
489
|
+
line-height: 16px;
|
|
490
|
+
}
|
|
486
491
|
.el-table--large {
|
|
487
492
|
font-size: var(--el-font-size-base);
|
|
488
493
|
}
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
width: calc(100% - 48px) !important;
|
|
17
17
|
max-width: 100%;
|
|
18
18
|
background-color: getCssVar('table-bg-color');
|
|
19
|
-
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;
|
|
@@ -220,6 +220,11 @@
|
|
|
220
220
|
white-space: nowrap;
|
|
221
221
|
min-width: 50px;
|
|
222
222
|
}
|
|
223
|
+
|
|
224
|
+
.el-link {
|
|
225
|
+
font-size: getCssVar('table-font-size');
|
|
226
|
+
line-height: 16px;
|
|
227
|
+
}
|
|
223
228
|
}
|
|
224
229
|
|
|
225
230
|
@each $size in (large, default, small) {
|
package/package.json
CHANGED