@timus-networks/theme 2.4.149 → 2.4.151

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.4.148",
4
+ "version": "2.4.150",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "0.8.4",
7
7
  "unbuild": "2.0.0"
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.148";
14
+ const version = "2.4.150";
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 = {
@@ -14998,6 +14998,9 @@ heights > $common-component-size
14998
14998
  .el-table .el-table__cell.is-center {
14999
14999
  text-align: center;
15000
15000
  }
15001
+ .el-table .el-table__cell.is-center .cell {
15002
+ justify-content: center;
15003
+ }
15001
15004
 
15002
15005
  .el-table .el-table__cell.is-right {
15003
15006
  text-align: right;
@@ -15023,7 +15026,6 @@ heights > $common-component-size
15023
15026
  overflow: hidden;
15024
15027
  text-overflow: ellipsis;
15025
15028
  overflow-wrap: break-word;
15026
- line-height: 20px;
15027
15029
  padding: 0 12px;
15028
15030
  align-items: center;
15029
15031
  line-height: 1;
@@ -15104,6 +15106,7 @@ heights > $common-component-size
15104
15106
  }
15105
15107
  .el-table th.el-table__cell {
15106
15108
  background-color: var(--el-table-header-bg-color);
15109
+ line-height: 20px;
15107
15110
  }
15108
15111
  .el-table th.el-table__cell > .cell.highlight {
15109
15112
  color: var(--el-color-primary);
@@ -14112,6 +14112,9 @@ h6,
14112
14112
  .el-table .el-table__cell.is-center {
14113
14113
  text-align: center;
14114
14114
  }
14115
+ .el-table .el-table__cell.is-center .cell {
14116
+ justify-content: center;
14117
+ }
14115
14118
 
14116
14119
  .el-table .el-table__cell.is-right {
14117
14120
  text-align: right;
@@ -14137,7 +14140,6 @@ h6,
14137
14140
  overflow: hidden;
14138
14141
  text-overflow: ellipsis;
14139
14142
  overflow-wrap: break-word;
14140
- line-height: 20px;
14141
14143
  padding: 0 12px;
14142
14144
  align-items: center;
14143
14145
  line-height: 1;
@@ -14218,6 +14220,7 @@ h6,
14218
14220
  }
14219
14221
  .el-table th.el-table__cell {
14220
14222
  background-color: var(--el-table-header-bg-color);
14223
+ line-height: 20px;
14221
14224
  }
14222
14225
  .el-table th.el-table__cell > .cell.highlight {
14223
14226
  color: var(--el-color-primary);
@@ -444,6 +444,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
444
444
  .el-table .el-table__cell.is-center {
445
445
  text-align: center;
446
446
  }
447
+ .el-table .el-table__cell.is-center .cell {
448
+ justify-content: center;
449
+ }
447
450
 
448
451
  .el-table .el-table__cell.is-right {
449
452
  text-align: right;
@@ -469,7 +472,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
469
472
  overflow: hidden;
470
473
  text-overflow: ellipsis;
471
474
  overflow-wrap: break-word;
472
- line-height: 20px;
473
475
  padding: 0 12px;
474
476
  align-items: center;
475
477
  line-height: 1;
@@ -550,6 +552,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
550
552
  }
551
553
  .el-table th.el-table__cell {
552
554
  background-color: var(--el-table-header-bg-color);
555
+ line-height: 20px;
553
556
  }
554
557
  .el-table th.el-table__cell > .cell.highlight {
555
558
  color: var(--el-color-primary);
@@ -184,6 +184,10 @@
184
184
 
185
185
  @include when(center) {
186
186
  text-align: center;
187
+
188
+ .cell {
189
+ justify-content: center;
190
+ }
187
191
  }
188
192
 
189
193
  @include when(right) {
@@ -222,11 +226,10 @@
222
226
  overflow: hidden;
223
227
  text-overflow: ellipsis;
224
228
  overflow-wrap: break-word;
225
- line-height: 20px;
226
229
  padding: 0 12px;
227
230
  align-items: center;
228
231
  // display: flex; // bunu eklersem truncate etmiyor o yüzden aşağıdaki line-height: 1 i ekledim çözüldü
229
- line-height: 1;
232
+ line-height: 1; // 20px;
230
233
  gap: 2px;
231
234
  white-space: nowrap;
232
235
 
@@ -299,6 +302,7 @@
299
302
 
300
303
  th.#{$namespace}-table__cell {
301
304
  background-color: getCssVar('table-header-bg-color');
305
+ line-height: 20px;
302
306
 
303
307
  > .cell.highlight {
304
308
  color: getCssVar('color-primary');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.149",
3
+ "version": "2.4.151",
4
4
  "description": "A comprehensive Nuxt.js module providing a tailored theme experience with integrated TailwindCSS support for applications.",
5
5
  "type": "module",
6
6
  "exports": {