@timus-networks/theme 2.4.283 → 2.4.285

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.282",
4
+ "version": "2.4.284",
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.282";
14
+ const version = "2.4.284";
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 = {
@@ -13757,12 +13757,12 @@ heights > $common-component-size
13757
13757
  --el-tag-hover-color: var(--el-color-primary-light-5);
13758
13758
  --el-tag-text-color: var(--el-color-primary-light-5);
13759
13759
  }
13760
+ .el-select__selected-item:has(+ .el-tooltip__trigger) {
13761
+ max-width: calc(100% - 160px);
13762
+ }
13760
13763
  .el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
13761
13764
  max-width: none;
13762
13765
  }
13763
- .el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
13764
- max-width: calc(100% - 160px);
13765
- }
13766
13766
 
13767
13767
  .el-select__tags-text {
13768
13768
  display: block;
@@ -13825,7 +13825,6 @@ heights > $common-component-size
13825
13825
  .el-select__input-wrapper.is-hidden {
13826
13826
  position: absolute;
13827
13827
  opacity: 0;
13828
- display: none;
13829
13828
  }
13830
13829
 
13831
13830
  .el-select__input {
@@ -16601,6 +16600,8 @@ heights > $common-component-size
16601
16600
  }
16602
16601
  .el-tag .el-tag__close {
16603
16602
  margin-left: 8px;
16603
+ margin-left: 4px;
16604
+ margin-right: -3px;
16604
16605
  }
16605
16606
  .el-tag--dark {
16606
16607
  --el-tag-text-color: var(--el-color-white);
@@ -16722,6 +16723,7 @@ heights > $common-component-size
16722
16723
 
16723
16724
  .el-tag.is-closable {
16724
16725
  padding-right: 7px;
16726
+ display: flex;
16725
16727
  }
16726
16728
  .el-tag--large {
16727
16729
  padding: 0 7px;
@@ -18139,9 +18141,6 @@ mark.el-text {
18139
18141
  overflow-wrap: break-word;
18140
18142
  visibility: visible;
18141
18143
  }
18142
- .el-popper .el-select__selected-item {
18143
- max-width: none;
18144
- }
18145
18144
  .el-popper.is-dark {
18146
18145
  color: var(--el-bg-color);
18147
18146
  background: var(--el-text-color-primary);
@@ -2,7 +2,8 @@ import { defineNuxtPlugin } from "#app";
2
2
  export default defineNuxtPlugin((nuxtApp) => {
3
3
  const ignoredWarnings = [
4
4
  "Invalid prop: validation failed",
5
- "Invalid prop: custom validator"
5
+ "Invalid prop: custom validator",
6
+ '[ElMenuItem] Missing required prop: "index"'
6
7
  // Add other warnings to ignore here
7
8
  ];
8
9
  if (process.env.NODE_ENV === "development") {
@@ -2,7 +2,8 @@ import { defineNuxtPlugin } from "#app";
2
2
  export default defineNuxtPlugin((nuxtApp) => {
3
3
  const ignoredWarnings = [
4
4
  "Invalid prop: validation failed",
5
- "Invalid prop: custom validator"
5
+ "Invalid prop: custom validator",
6
+ '[ElMenuItem] Missing required prop: "index"'
6
7
  // Add other warnings to ignore here
7
8
  ];
8
9
  if (process.env.NODE_ENV === "development") {
@@ -12865,12 +12865,12 @@ h6,
12865
12865
  --el-tag-hover-color: var(--el-color-primary-light-5);
12866
12866
  --el-tag-text-color: var(--el-color-primary-light-5);
12867
12867
  }
12868
+ .el-select__selected-item:has(+ .el-tooltip__trigger) {
12869
+ max-width: calc(100% - 160px);
12870
+ }
12868
12871
  .el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
12869
12872
  max-width: none;
12870
12873
  }
12871
- .el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
12872
- max-width: calc(100% - 160px);
12873
- }
12874
12874
 
12875
12875
  .el-select__tags-text {
12876
12876
  display: block;
@@ -12933,7 +12933,6 @@ h6,
12933
12933
  .el-select__input-wrapper.is-hidden {
12934
12934
  position: absolute;
12935
12935
  opacity: 0;
12936
- display: none;
12937
12936
  }
12938
12937
 
12939
12938
  .el-select__input {
@@ -15709,6 +15708,8 @@ h6,
15709
15708
  }
15710
15709
  .el-tag .el-tag__close {
15711
15710
  margin-left: 8px;
15711
+ margin-left: 4px;
15712
+ margin-right: -3px;
15712
15713
  }
15713
15714
  .el-tag--dark {
15714
15715
  --el-tag-text-color: var(--el-color-white);
@@ -15830,6 +15831,7 @@ h6,
15830
15831
 
15831
15832
  .el-tag.is-closable {
15832
15833
  padding-right: 7px;
15834
+ display: flex;
15833
15835
  }
15834
15836
  .el-tag--large {
15835
15837
  padding: 0 7px;
@@ -17247,9 +17249,6 @@ mark.el-text {
17247
17249
  overflow-wrap: break-word;
17248
17250
  visibility: visible;
17249
17251
  }
17250
- .el-popper .el-select__selected-item {
17251
- max-width: none;
17252
- }
17253
17252
  .el-popper.is-dark {
17254
17253
  color: var(--el-bg-color);
17255
17254
  background: var(--el-text-color-primary);
@@ -315,9 +315,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
315
315
  overflow-wrap: break-word;
316
316
  visibility: visible;
317
317
  }
318
- .el-popper .el-select__selected-item {
319
- max-width: none;
320
- }
321
318
  .el-popper.is-dark {
322
319
  color: var(--el-bg-color);
323
320
  background: var(--el-text-color-primary);
@@ -19,10 +19,6 @@
19
19
 
20
20
  $arrow-selector: #{& + '__arrow'};
21
21
 
22
- .el-select__selected-item {
23
- max-width: none;
24
- }
25
-
26
22
  @include when(dark) {
27
23
  color: getCssVar('bg-color');
28
24
  background: getCssVar('text-color', 'primary');
@@ -607,12 +607,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
607
607
  --el-tag-hover-color: var(--el-color-primary-light-5);
608
608
  --el-tag-text-color: var(--el-color-primary-light-5);
609
609
  }
610
+ .el-select__selected-item:has(+ .el-tooltip__trigger) {
611
+ max-width: calc(100% - 160px);
612
+ }
610
613
  .el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
611
614
  max-width: none;
612
615
  }
613
- .el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
614
- max-width: calc(100% - 160px);
615
- }
616
616
 
617
617
  .el-select__tags-text {
618
618
  display: block;
@@ -675,7 +675,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
675
675
  .el-select__input-wrapper.is-hidden {
676
676
  position: absolute;
677
677
  opacity: 0;
678
- display: none;
679
678
  }
680
679
 
681
680
  .el-select__input {
@@ -607,12 +607,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
607
607
  --el-tag-hover-color: var(--el-color-primary-light-5);
608
608
  --el-tag-text-color: var(--el-color-primary-light-5);
609
609
  }
610
+ .el-select__selected-item:has(+ .el-tooltip__trigger) {
611
+ max-width: calc(100% - 160px);
612
+ }
610
613
  .el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
611
614
  max-width: none;
612
615
  }
613
- .el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
614
- max-width: calc(100% - 160px);
615
- }
616
616
 
617
617
  .el-select__tags-text {
618
618
  display: block;
@@ -675,7 +675,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
675
675
  .el-select__input-wrapper.is-hidden {
676
676
  position: absolute;
677
677
  opacity: 0;
678
- display: none;
679
678
  }
680
679
 
681
680
  .el-select__input {
@@ -196,12 +196,12 @@
196
196
  @include css-var-from-global(('tag', 'text-color'), ('color', 'primary', 'light-5'));
197
197
  }
198
198
 
199
- &:has(~ .el-select__input-wrapper.is-hidden) {
200
- max-width: none;
199
+ &:has(+ .el-tooltip__trigger) {
200
+ max-width: calc(100% - 160px);
201
201
  }
202
202
 
203
- &:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
204
- max-width: calc(100% - 160px);
203
+ &:has(~ .el-select__input-wrapper.is-hidden) {
204
+ max-width: none;
205
205
  }
206
206
  }
207
207
 
@@ -246,7 +246,6 @@
246
246
  // Out of the document flow
247
247
  position: absolute;
248
248
  opacity: 0;
249
- display: none;
250
249
  }
251
250
  }
252
251
 
@@ -418,6 +418,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
418
418
  }
419
419
  .el-tag .el-tag__close {
420
420
  margin-left: 8px;
421
+ margin-left: 4px;
422
+ margin-right: -3px;
421
423
  }
422
424
  .el-tag--dark {
423
425
  --el-tag-text-color: var(--el-color-white);
@@ -539,6 +541,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
539
541
 
540
542
  .el-tag.is-closable {
541
543
  padding-right: 7px;
544
+ display: flex;
542
545
  }
543
546
  .el-tag--large {
544
547
  padding: 0 7px;
@@ -113,6 +113,8 @@ $tag-icon-span-gap: map.merge(
113
113
 
114
114
  .#{$namespace}-tag__close {
115
115
  margin-left: map.get($tag-icon-span-gap, 'default');
116
+ margin-left: 4px;
117
+ margin-right: -3px;
116
118
  }
117
119
 
118
120
  @include m(dark) {
@@ -133,6 +135,7 @@ $tag-icon-span-gap: map.merge(
133
135
 
134
136
  &.is-closable {
135
137
  padding-right: map.get($tag-icon-span-gap, 'default') - $border-width;
138
+ display: flex;
136
139
  }
137
140
 
138
141
  @each $size in $sizes {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.283",
3
+ "version": "2.4.285",
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": {