@timus-networks/theme 2.4.173 → 2.4.175
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/assets/scss/main.css +2 -0
- package/dist/runtime/public/scss/element-plus/index.css +2 -0
- package/dist/runtime/public/scss/element-plus/table.css +2 -0
- package/dist/runtime/public/scss/element-plus/table.scss +2 -1
- 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.174";
|
|
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 = {
|
|
@@ -15039,6 +15039,7 @@ heights > $common-component-size
|
|
|
15039
15039
|
}
|
|
15040
15040
|
.el-table .el-table__cell:last-of-type .cell {
|
|
15041
15041
|
padding-right: 0;
|
|
15042
|
+
padding-left: 0;
|
|
15042
15043
|
}
|
|
15043
15044
|
.el-table .cell {
|
|
15044
15045
|
box-sizing: border-box;
|
|
@@ -15046,6 +15047,7 @@ heights > $common-component-size
|
|
|
15046
15047
|
text-overflow: ellipsis;
|
|
15047
15048
|
overflow-wrap: break-word;
|
|
15048
15049
|
margin-left: 12px;
|
|
15050
|
+
padding-left: 12px;
|
|
15049
15051
|
align-items: center;
|
|
15050
15052
|
gap: 2px;
|
|
15051
15053
|
white-space: nowrap;
|
|
@@ -14152,6 +14152,7 @@ h6,
|
|
|
14152
14152
|
}
|
|
14153
14153
|
.el-table .el-table__cell:last-of-type .cell {
|
|
14154
14154
|
padding-right: 0;
|
|
14155
|
+
padding-left: 0;
|
|
14155
14156
|
}
|
|
14156
14157
|
.el-table .cell {
|
|
14157
14158
|
box-sizing: border-box;
|
|
@@ -14159,6 +14160,7 @@ h6,
|
|
|
14159
14160
|
text-overflow: ellipsis;
|
|
14160
14161
|
overflow-wrap: break-word;
|
|
14161
14162
|
margin-left: 12px;
|
|
14163
|
+
padding-left: 12px;
|
|
14162
14164
|
align-items: center;
|
|
14163
14165
|
gap: 2px;
|
|
14164
14166
|
white-space: nowrap;
|
|
@@ -465,6 +465,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
465
465
|
}
|
|
466
466
|
.el-table .el-table__cell:last-of-type .cell {
|
|
467
467
|
padding-right: 0;
|
|
468
|
+
padding-left: 0;
|
|
468
469
|
}
|
|
469
470
|
.el-table .cell {
|
|
470
471
|
box-sizing: border-box;
|
|
@@ -472,6 +473,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
472
473
|
text-overflow: ellipsis;
|
|
473
474
|
overflow-wrap: break-word;
|
|
474
475
|
margin-left: 12px;
|
|
476
|
+
padding-left: 12px;
|
|
475
477
|
align-items: center;
|
|
476
478
|
gap: 2px;
|
|
477
479
|
white-space: nowrap;
|
|
@@ -217,7 +217,7 @@
|
|
|
217
217
|
&:last-of-type {
|
|
218
218
|
.cell {
|
|
219
219
|
padding-right: 0;
|
|
220
|
-
|
|
220
|
+
padding-left: 0;
|
|
221
221
|
}
|
|
222
222
|
}
|
|
223
223
|
}
|
|
@@ -229,6 +229,7 @@
|
|
|
229
229
|
overflow-wrap: break-word;
|
|
230
230
|
// padding: 0 12px 0 0;
|
|
231
231
|
margin-left: 12px;
|
|
232
|
+
padding-left: 12px;
|
|
232
233
|
align-items: center;
|
|
233
234
|
// display: flex; // bunu eklersem truncate etmiyor o yüzden aşağıdaki line-height: 1 i ekledim çözüldü
|
|
234
235
|
// line-height: 20px; // 1
|
package/package.json
CHANGED