@timus-networks/theme 2.4.215 → 2.4.217

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.214",
4
+ "version": "2.4.216",
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.214";
14
+ const version = "2.4.216";
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 = {
@@ -7426,8 +7426,8 @@ heights > $common-component-size
7426
7426
  border: none;
7427
7427
  display: flex;
7428
7428
  align-items: center;
7429
- height: var(--el-collapse-header-height);
7430
- line-height: var(--el-collapse-header-height);
7429
+ height: 36px;
7430
+ line-height: 36px;
7431
7431
  background-color: var(--el-collapse-header-bg-color);
7432
7432
  color: var(--el-collapse-header-text-color);
7433
7433
  cursor: pointer;
@@ -7462,16 +7462,25 @@ heights > $common-component-size
7462
7462
  }
7463
7463
 
7464
7464
  .el-collapse-item__content {
7465
- padding-bottom: 25px;
7465
+ padding-bottom: 0;
7466
7466
  font-size: var(--el-collapse-content-font-size);
7467
7467
  color: var(--el-collapse-content-text-color);
7468
7468
  line-height: 1.7692307692;
7469
7469
  }
7470
7470
 
7471
+ .el-collapse-item__title {
7472
+ display: flex;
7473
+ flex-grow: 1;
7474
+ }
7475
+
7471
7476
  .el-collapse-item:last-child {
7472
7477
  margin-bottom: -1px;
7473
7478
  }
7474
7479
 
7480
+ .reverse-collapse .el-collapse-item__header .el-collapse-item__title {
7481
+ order: 2;
7482
+ }
7483
+
7475
7484
  .el-color-predefine {
7476
7485
  display: flex;
7477
7486
  font-size: 12px;
@@ -10001,7 +10010,8 @@ heights > $common-component-size
10001
10010
  border-radius: 0;
10002
10011
  margin-left: -1px;
10003
10012
  }
10004
- .el-form-items.sticky > :last-child:not(:first-child) [class*=__wrapper], .el-form-items.sticky > :last-child:not(:first-child).el-button {
10013
+ .el-form-items.sticky > :last-child:not(:first-child) [class*=__wrapper],
10014
+ .el-form-items.sticky > :last-child:not(:first-child) [class*=__content] .el-button, .el-form-items.sticky > :last-child:not(:first-child).el-button {
10005
10015
  border-top-left-radius: 0;
10006
10016
  border-bottom-left-radius: 0;
10007
10017
  margin-left: -1px;
@@ -443,8 +443,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
443
443
  border: none;
444
444
  display: flex;
445
445
  align-items: center;
446
- height: var(--el-collapse-header-height);
447
- line-height: var(--el-collapse-header-height);
446
+ height: 36px;
447
+ line-height: 36px;
448
448
  background-color: var(--el-collapse-header-bg-color);
449
449
  color: var(--el-collapse-header-text-color);
450
450
  cursor: pointer;
@@ -479,12 +479,21 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
479
479
  }
480
480
 
481
481
  .el-collapse-item__content {
482
- padding-bottom: 25px;
482
+ padding-bottom: 0;
483
483
  font-size: var(--el-collapse-content-font-size);
484
484
  color: var(--el-collapse-content-text-color);
485
485
  line-height: 1.7692307692;
486
486
  }
487
487
 
488
+ .el-collapse-item__title {
489
+ display: flex;
490
+ flex-grow: 1;
491
+ }
492
+
488
493
  .el-collapse-item:last-child {
489
494
  margin-bottom: -1px;
495
+ }
496
+
497
+ .reverse-collapse .el-collapse-item__header .el-collapse-item__title {
498
+ order: 2;
490
499
  }
@@ -23,8 +23,10 @@
23
23
  border: none;
24
24
  display: flex;
25
25
  align-items: center;
26
- height: getCssVar('collapse-header-height');
27
- line-height: getCssVar('collapse-header-height');
26
+ // height: getCssVar('collapse-header-height');
27
+ // line-height: getCssVar('collapse-header-height');
28
+ height: 36px;
29
+ line-height: 36px;
28
30
  background-color: getCssVar('collapse-header-bg-color');
29
31
  color: getCssVar('collapse-header-text-color');
30
32
  cursor: pointer;
@@ -58,13 +60,26 @@
58
60
  }
59
61
 
60
62
  @include e(content) {
61
- padding-bottom: 25px;
63
+ padding-bottom: 0;
62
64
  font-size: getCssVar('collapse-content-font-size');
63
65
  color: getCssVar('collapse-content-text-color');
64
66
  line-height: 1.769230769230769;
65
67
  }
66
68
 
69
+ @include e(title) {
70
+ display: flex;
71
+ flex-grow: 1;
72
+ }
73
+
67
74
  &:last-child {
68
75
  margin-bottom: -1px;
69
76
  }
70
77
  }
78
+
79
+ .reverse-collapse {
80
+ .el-collapse-item__header {
81
+ .el-collapse-item__title {
82
+ order: 2;
83
+ }
84
+ }
85
+ }
@@ -526,7 +526,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
526
526
  border-radius: 0;
527
527
  margin-left: -1px;
528
528
  }
529
- .el-form-items.sticky > :last-child:not(:first-child) [class*=__wrapper], .el-form-items.sticky > :last-child:not(:first-child).el-button {
529
+ .el-form-items.sticky > :last-child:not(:first-child) [class*=__wrapper],
530
+ .el-form-items.sticky > :last-child:not(:first-child) [class*=__content] .el-button, .el-form-items.sticky > :last-child:not(:first-child).el-button {
530
531
  border-top-left-radius: 0;
531
532
  border-bottom-left-radius: 0;
532
533
  margin-left: -1px;
@@ -288,6 +288,7 @@ $form-item-label-top-margin-bottom: map.merge(
288
288
 
289
289
  > :last-child:not(:first-child) {
290
290
  [class*='__wrapper'],
291
+ [class*='__content'] .el-button,
291
292
  &.el-button {
292
293
  border-top-left-radius: 0;
293
294
  border-bottom-left-radius: 0;
@@ -6423,8 +6423,8 @@ heights > $common-component-size
6423
6423
  border: none;
6424
6424
  display: flex;
6425
6425
  align-items: center;
6426
- height: var(--el-collapse-header-height);
6427
- line-height: var(--el-collapse-header-height);
6426
+ height: 36px;
6427
+ line-height: 36px;
6428
6428
  background-color: var(--el-collapse-header-bg-color);
6429
6429
  color: var(--el-collapse-header-text-color);
6430
6430
  cursor: pointer;
@@ -6459,16 +6459,25 @@ heights > $common-component-size
6459
6459
  }
6460
6460
 
6461
6461
  .el-collapse-item__content {
6462
- padding-bottom: 25px;
6462
+ padding-bottom: 0;
6463
6463
  font-size: var(--el-collapse-content-font-size);
6464
6464
  color: var(--el-collapse-content-text-color);
6465
6465
  line-height: 1.7692307692;
6466
6466
  }
6467
6467
 
6468
+ .el-collapse-item__title {
6469
+ display: flex;
6470
+ flex-grow: 1;
6471
+ }
6472
+
6468
6473
  .el-collapse-item:last-child {
6469
6474
  margin-bottom: -1px;
6470
6475
  }
6471
6476
 
6477
+ .reverse-collapse .el-collapse-item__header .el-collapse-item__title {
6478
+ order: 2;
6479
+ }
6480
+
6472
6481
  .el-color-predefine {
6473
6482
  display: flex;
6474
6483
  font-size: 12px;
@@ -8998,7 +9007,8 @@ heights > $common-component-size
8998
9007
  border-radius: 0;
8999
9008
  margin-left: -1px;
9000
9009
  }
9001
- .el-form-items.sticky > :last-child:not(:first-child) [class*=__wrapper], .el-form-items.sticky > :last-child:not(:first-child).el-button {
9010
+ .el-form-items.sticky > :last-child:not(:first-child) [class*=__wrapper],
9011
+ .el-form-items.sticky > :last-child:not(:first-child) [class*=__content] .el-button, .el-form-items.sticky > :last-child:not(:first-child).el-button {
9002
9012
  border-top-left-radius: 0;
9003
9013
  border-bottom-left-radius: 0;
9004
9014
  margin-left: -1px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.215",
3
+ "version": "2.4.217",
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": {