@timus-networks/theme 2.4.239 → 2.4.241

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.238",
4
+ "version": "2.4.240",
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.238";
14
+ const version = "2.4.240";
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 = {
@@ -9179,6 +9179,7 @@ heights > $common-component-size
9179
9179
  --el-dialog-content-line-height: 22px;
9180
9180
  --el-dialog-padding-primary: 24px;
9181
9181
  --el-dialog-border-radius: 8px;
9182
+ --el-dialog-padding-bottom: 16px;
9182
9183
  position: relative;
9183
9184
  margin: var(--el-dialog-margin-top, 15vh) auto 50px;
9184
9185
  background: var(--el-dialog-bg-color);
@@ -9220,7 +9221,7 @@ heights > $common-component-size
9220
9221
  }
9221
9222
 
9222
9223
  .el-dialog__header {
9223
- padding-bottom: var(--el-dialog-padding-primary);
9224
+ padding-bottom: var(--el-dialog-padding-bottom);
9224
9225
  }
9225
9226
  .el-dialog__header.show-close {
9226
9227
  padding-right: calc(var(--el-dialog-padding-primary) + var(--el-message-close-size, 12px));
@@ -15107,7 +15108,7 @@ heights > $common-component-size
15107
15108
  margin-left: 0;
15108
15109
  padding-left: 0;
15109
15110
  }
15110
- .el-table .el-table__cell:last-of-type .cell {
15111
+ .el-table .el-table__cell:last-of-type:not(:first-of-type) .cell {
15111
15112
  padding-right: 0;
15112
15113
  padding-left: 12px;
15113
15114
  }
@@ -16005,6 +16006,7 @@ heights > $common-component-size
16005
16006
  overflow: hidden;
16006
16007
  position: relative;
16007
16008
  flex-grow: 1;
16009
+ min-height: 1px;
16008
16010
  }
16009
16011
 
16010
16012
  .el-tabs--top > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom > .el-tabs__header .el-tabs__item:nth-child(2) {
@@ -871,6 +871,7 @@ $dialog: map.merge(
871
871
  'content-line-height': 22px,
872
872
  'padding-primary': 24px,
873
873
  'border-radius': 8px,
874
+ 'padding-bottom': 16px,
874
875
  ),
875
876
  $dialog
876
877
  );
@@ -348,6 +348,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
348
348
  --el-dialog-content-line-height: 22px;
349
349
  --el-dialog-padding-primary: 24px;
350
350
  --el-dialog-border-radius: 8px;
351
+ --el-dialog-padding-bottom: 16px;
351
352
  position: relative;
352
353
  margin: var(--el-dialog-margin-top, 15vh) auto 50px;
353
354
  background: var(--el-dialog-bg-color);
@@ -389,7 +390,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
389
390
  }
390
391
 
391
392
  .el-dialog__header {
392
- padding-bottom: var(--el-dialog-padding-primary);
393
+ padding-bottom: var(--el-dialog-padding-bottom);
393
394
  }
394
395
  .el-dialog__header.show-close {
395
396
  padding-right: calc(var(--el-dialog-padding-primary) + var(--el-message-close-size, 12px));
@@ -17,6 +17,7 @@
17
17
  box-shadow: getCssVar('dialog', 'box-shadow');
18
18
  box-sizing: border-box;
19
19
  padding: getCssVar('dialog', 'padding-primary');
20
+
20
21
  width: var(#{getCssVarName('dialog-width')}, 50%);
21
22
  overflow-wrap: break-word;
22
23
 
@@ -55,7 +56,7 @@
55
56
  }
56
57
 
57
58
  @include e(header) {
58
- padding-bottom: getCssVar('dialog', 'padding-primary');
59
+ padding-bottom: getCssVar('dialog', 'padding-bottom');
59
60
 
60
61
  &.show-close {
61
62
  padding-right: calc(getCssVar('dialog', 'padding-primary') + var(#{getCssVarName('message-close-size')}, map.get($message, 'close-size')));
@@ -8176,6 +8176,7 @@ heights > $common-component-size
8176
8176
  --el-dialog-content-line-height: 22px;
8177
8177
  --el-dialog-padding-primary: 24px;
8178
8178
  --el-dialog-border-radius: 8px;
8179
+ --el-dialog-padding-bottom: 16px;
8179
8180
  position: relative;
8180
8181
  margin: var(--el-dialog-margin-top, 15vh) auto 50px;
8181
8182
  background: var(--el-dialog-bg-color);
@@ -8217,7 +8218,7 @@ heights > $common-component-size
8217
8218
  }
8218
8219
 
8219
8220
  .el-dialog__header {
8220
- padding-bottom: var(--el-dialog-padding-primary);
8221
+ padding-bottom: var(--el-dialog-padding-bottom);
8221
8222
  }
8222
8223
  .el-dialog__header.show-close {
8223
8224
  padding-right: calc(var(--el-dialog-padding-primary) + var(--el-message-close-size, 12px));
@@ -14215,7 +14216,7 @@ h6,
14215
14216
  margin-left: 0;
14216
14217
  padding-left: 0;
14217
14218
  }
14218
- .el-table .el-table__cell:last-of-type .cell {
14219
+ .el-table .el-table__cell:last-of-type:not(:first-of-type) .cell {
14219
14220
  padding-right: 0;
14220
14221
  padding-left: 12px;
14221
14222
  }
@@ -15113,6 +15114,7 @@ h6,
15113
15114
  overflow: hidden;
15114
15115
  position: relative;
15115
15116
  flex-grow: 1;
15117
+ min-height: 1px;
15116
15118
  }
15117
15119
 
15118
15120
  .el-tabs--top > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom > .el-tabs__header .el-tabs__item:nth-child(2) {
@@ -467,7 +467,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
467
467
  margin-left: 0;
468
468
  padding-left: 0;
469
469
  }
470
- .el-table .el-table__cell:last-of-type .cell {
470
+ .el-table .el-table__cell:last-of-type:not(:first-of-type) .cell {
471
471
  padding-right: 0;
472
472
  padding-left: 12px;
473
473
  }
@@ -219,7 +219,7 @@
219
219
  }
220
220
  }
221
221
 
222
- &:last-of-type {
222
+ &:last-of-type:not(:first-of-type) {
223
223
  .cell {
224
224
  padding-right: 0;
225
225
  // padding-left: 0;
@@ -470,6 +470,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
470
470
  overflow: hidden;
471
471
  position: relative;
472
472
  flex-grow: 1;
473
+ min-height: 1px;
473
474
  }
474
475
 
475
476
  .el-tabs--top > .el-tabs__header .el-tabs__item:nth-child(2), .el-tabs--bottom > .el-tabs__header .el-tabs__item:nth-child(2) {
@@ -176,6 +176,7 @@
176
176
  overflow: hidden;
177
177
  position: relative;
178
178
  flex-grow: 1;
179
+ min-height: 1px;
179
180
  }
180
181
  @include m((top, bottom)) {
181
182
  > .#{$namespace}-tabs__header {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.239",
3
+ "version": "2.4.241",
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": {