@timus-networks/theme 2.4.6 → 2.4.7
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/components/development/example.table.vue +1 -1
- package/dist/runtime/public/scss/element-plus/index.css +5 -2
- package/dist/runtime/public/scss/element-plus/table.css +5 -2
- package/dist/runtime/public/scss/element-plus/table.scss +7 -3
- 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.7";
|
|
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 = {
|
|
@@ -20,7 +20,7 @@
|
|
|
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 />
|
|
23
|
+
<el-table-column property="address" label="Address" width="140" show-overflow-tooltip fixed="right" />
|
|
24
24
|
</el-table>
|
|
25
25
|
</div>
|
|
26
26
|
<template #footer>
|
|
@@ -13843,10 +13843,13 @@ heights > $common-component-size
|
|
|
13843
13843
|
.el-table tr input[type=checkbox] {
|
|
13844
13844
|
margin: 0;
|
|
13845
13845
|
}
|
|
13846
|
-
.el-table
|
|
13847
|
-
.el-table
|
|
13846
|
+
.el-table th.el-table__cell.is-leaf,
|
|
13847
|
+
.el-table td.el-table__cell {
|
|
13848
13848
|
border-bottom: var(--el-table-border);
|
|
13849
13849
|
}
|
|
13850
|
+
.el-table tr:last-of-type td.el-table__cell {
|
|
13851
|
+
border-bottom: 1px solid transparent;
|
|
13852
|
+
}
|
|
13850
13853
|
.el-table th.el-table__cell.is-sortable {
|
|
13851
13854
|
cursor: pointer;
|
|
13852
13855
|
}
|
|
@@ -524,10 +524,13 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
524
524
|
.el-table tr input[type=checkbox] {
|
|
525
525
|
margin: 0;
|
|
526
526
|
}
|
|
527
|
-
.el-table
|
|
528
|
-
.el-table
|
|
527
|
+
.el-table th.el-table__cell.is-leaf,
|
|
528
|
+
.el-table td.el-table__cell {
|
|
529
529
|
border-bottom: var(--el-table-border);
|
|
530
530
|
}
|
|
531
|
+
.el-table tr:last-of-type td.el-table__cell {
|
|
532
|
+
border-bottom: 1px solid transparent;
|
|
533
|
+
}
|
|
531
534
|
.el-table th.el-table__cell.is-sortable {
|
|
532
535
|
cursor: pointer;
|
|
533
536
|
}
|
|
@@ -249,10 +249,14 @@
|
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
251
|
|
|
252
|
-
|
|
253
|
-
|
|
252
|
+
th.#{$namespace}-table__cell.is-leaf,
|
|
253
|
+
td.#{$namespace}-table__cell {
|
|
254
|
+
border-bottom: getCssVar('table-border');
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
tr:last-of-type {
|
|
254
258
|
td.#{$namespace}-table__cell {
|
|
255
|
-
border-bottom:
|
|
259
|
+
border-bottom: 1px solid transparent;
|
|
256
260
|
}
|
|
257
261
|
}
|
|
258
262
|
|
package/package.json
CHANGED