@timus-networks/theme 2.4.39 → 2.4.40
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/public/scss/element-plus/index.css +1 -2
- package/dist/runtime/public/scss/element-plus/select-v2.css +1 -2
- package/dist/runtime/public/scss/element-plus/select.css +1 -2
- package/dist/runtime/public/scss/element-plus/select.scss +2 -2
- 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.40";
|
|
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 = {
|
|
@@ -12332,7 +12332,6 @@ heights > $common-component-size
|
|
|
12332
12332
|
}
|
|
12333
12333
|
.el-select__wrapper {
|
|
12334
12334
|
display: flex;
|
|
12335
|
-
flex-wrap: nowrap;
|
|
12336
12335
|
align-items: center;
|
|
12337
12336
|
position: relative;
|
|
12338
12337
|
box-sizing: border-box;
|
|
@@ -12429,7 +12428,7 @@ heights > $common-component-size
|
|
|
12429
12428
|
.el-select__selection {
|
|
12430
12429
|
position: relative;
|
|
12431
12430
|
display: flex;
|
|
12432
|
-
flex-wrap:
|
|
12431
|
+
flex-wrap: nowrap;
|
|
12433
12432
|
align-items: center;
|
|
12434
12433
|
flex: 1;
|
|
12435
12434
|
min-width: 0;
|
|
@@ -456,7 +456,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
456
456
|
}
|
|
457
457
|
.el-select__wrapper {
|
|
458
458
|
display: flex;
|
|
459
|
-
flex-wrap: nowrap;
|
|
460
459
|
align-items: center;
|
|
461
460
|
position: relative;
|
|
462
461
|
box-sizing: border-box;
|
|
@@ -553,7 +552,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
553
552
|
.el-select__selection {
|
|
554
553
|
position: relative;
|
|
555
554
|
display: flex;
|
|
556
|
-
flex-wrap:
|
|
555
|
+
flex-wrap: nowrap;
|
|
557
556
|
align-items: center;
|
|
558
557
|
flex: 1;
|
|
559
558
|
min-width: 0;
|
|
@@ -456,7 +456,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
456
456
|
}
|
|
457
457
|
.el-select__wrapper {
|
|
458
458
|
display: flex;
|
|
459
|
-
flex-wrap: nowrap;
|
|
460
459
|
align-items: center;
|
|
461
460
|
position: relative;
|
|
462
461
|
box-sizing: border-box;
|
|
@@ -553,7 +552,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
553
552
|
.el-select__selection {
|
|
554
553
|
position: relative;
|
|
555
554
|
display: flex;
|
|
556
|
-
flex-wrap:
|
|
555
|
+
flex-wrap: nowrap;
|
|
557
556
|
align-items: center;
|
|
558
557
|
flex: 1;
|
|
559
558
|
min-width: 0;
|
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
|
|
32
32
|
@include e(wrapper) {
|
|
33
33
|
display: flex;
|
|
34
|
-
flex-wrap: nowrap;
|
|
35
34
|
align-items: center;
|
|
36
35
|
position: relative;
|
|
37
36
|
box-sizing: border-box;
|
|
@@ -139,7 +138,8 @@
|
|
|
139
138
|
@include e(selection) {
|
|
140
139
|
position: relative;
|
|
141
140
|
display: flex;
|
|
142
|
-
flex-wrap: wrap;
|
|
141
|
+
// flex-wrap: wrap;
|
|
142
|
+
flex-wrap: nowrap;
|
|
143
143
|
align-items: center;
|
|
144
144
|
flex: 1;
|
|
145
145
|
min-width: 0;
|
package/package.json
CHANGED