@timus-networks/theme 2.4.284 → 2.4.286
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 +6 -0
- package/dist/runtime/plugins/disable-warnings-plugin.js +2 -1
- package/dist/runtime/plugins/disable-warnings-plugin.mjs +2 -1
- package/dist/runtime/public/scss/element-plus/index.css +6 -0
- package/dist/runtime/public/scss/element-plus/select-v2.css +3 -0
- package/dist/runtime/public/scss/element-plus/select.css +3 -0
- package/dist/runtime/public/scss/element-plus/select.scss +4 -0
- package/dist/runtime/public/scss/element-plus/tag.css +3 -0
- package/dist/runtime/public/scss/element-plus/tag.scss +3 -0
- 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.285";
|
|
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 = {
|
|
@@ -13763,6 +13763,9 @@ heights > $common-component-size
|
|
|
13763
13763
|
.el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
|
|
13764
13764
|
max-width: calc(100% - 160px);
|
|
13765
13765
|
}
|
|
13766
|
+
.el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
|
|
13767
|
+
max-width: none;
|
|
13768
|
+
}
|
|
13766
13769
|
|
|
13767
13770
|
.el-select__tags-text {
|
|
13768
13771
|
display: block;
|
|
@@ -16601,6 +16604,8 @@ heights > $common-component-size
|
|
|
16601
16604
|
}
|
|
16602
16605
|
.el-tag .el-tag__close {
|
|
16603
16606
|
margin-left: 8px;
|
|
16607
|
+
margin-left: 4px;
|
|
16608
|
+
margin-right: -3px;
|
|
16604
16609
|
}
|
|
16605
16610
|
.el-tag--dark {
|
|
16606
16611
|
--el-tag-text-color: var(--el-color-white);
|
|
@@ -16722,6 +16727,7 @@ heights > $common-component-size
|
|
|
16722
16727
|
|
|
16723
16728
|
.el-tag.is-closable {
|
|
16724
16729
|
padding-right: 7px;
|
|
16730
|
+
display: flex;
|
|
16725
16731
|
}
|
|
16726
16732
|
.el-tag--large {
|
|
16727
16733
|
padding: 0 7px;
|
|
@@ -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") {
|
|
@@ -12871,6 +12871,9 @@ h6,
|
|
|
12871
12871
|
.el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
|
|
12872
12872
|
max-width: calc(100% - 160px);
|
|
12873
12873
|
}
|
|
12874
|
+
.el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
|
|
12875
|
+
max-width: none;
|
|
12876
|
+
}
|
|
12874
12877
|
|
|
12875
12878
|
.el-select__tags-text {
|
|
12876
12879
|
display: block;
|
|
@@ -15709,6 +15712,8 @@ h6,
|
|
|
15709
15712
|
}
|
|
15710
15713
|
.el-tag .el-tag__close {
|
|
15711
15714
|
margin-left: 8px;
|
|
15715
|
+
margin-left: 4px;
|
|
15716
|
+
margin-right: -3px;
|
|
15712
15717
|
}
|
|
15713
15718
|
.el-tag--dark {
|
|
15714
15719
|
--el-tag-text-color: var(--el-color-white);
|
|
@@ -15830,6 +15835,7 @@ h6,
|
|
|
15830
15835
|
|
|
15831
15836
|
.el-tag.is-closable {
|
|
15832
15837
|
padding-right: 7px;
|
|
15838
|
+
display: flex;
|
|
15833
15839
|
}
|
|
15834
15840
|
.el-tag--large {
|
|
15835
15841
|
padding: 0 7px;
|
|
@@ -613,6 +613,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
613
613
|
.el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
|
|
614
614
|
max-width: calc(100% - 160px);
|
|
615
615
|
}
|
|
616
|
+
.el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
|
|
617
|
+
max-width: none;
|
|
618
|
+
}
|
|
616
619
|
|
|
617
620
|
.el-select__tags-text {
|
|
618
621
|
display: block;
|
|
@@ -613,6 +613,9 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
613
613
|
.el-select__selected-item:has(+ .el-tooltip__trigger + .el-select__input-wrapper:not(.is-hidden)) {
|
|
614
614
|
max-width: calc(100% - 160px);
|
|
615
615
|
}
|
|
616
|
+
.el-select__selected-item:has(~ .el-select__input-wrapper.is-hidden) {
|
|
617
|
+
max-width: none;
|
|
618
|
+
}
|
|
616
619
|
|
|
617
620
|
.el-select__tags-text {
|
|
618
621
|
display: block;
|
|
@@ -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