@timus-networks/theme 2.4.268 → 2.4.270
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 +1 -2
- package/dist/runtime/components/development/example.select.vue +15 -2
- 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 +4 -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.269";
|
|
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 = {
|
|
@@ -13741,7 +13741,6 @@ heights > $common-component-size
|
|
|
13741
13741
|
align-items: center;
|
|
13742
13742
|
/* Sonradan ekledim truncate etmek için */
|
|
13743
13743
|
white-space: nowrap;
|
|
13744
|
-
overflow: hidden;
|
|
13745
13744
|
text-overflow: ellipsis;
|
|
13746
13745
|
width: min-content;
|
|
13747
13746
|
}
|
|
@@ -13808,7 +13807,7 @@ heights > $common-component-size
|
|
|
13808
13807
|
}
|
|
13809
13808
|
|
|
13810
13809
|
.el-select__input-wrapper {
|
|
13811
|
-
max-width:
|
|
13810
|
+
max-width: 80px;
|
|
13812
13811
|
width: 100%;
|
|
13813
13812
|
}
|
|
13814
13813
|
.el-select__input-wrapper input {
|
|
@@ -80,11 +80,11 @@
|
|
|
80
80
|
<el-card>
|
|
81
81
|
<template #header> Basic multiple select </template>
|
|
82
82
|
<div class="flex flex-col gap-3 items-start">
|
|
83
|
-
<p>
|
|
83
|
+
<p class="max-w-lg">
|
|
84
84
|
Multiple select uses tags to display selected options. Set <el-text tag="mark">multiple</el-text> attribute for el-select to enable multiple mode. In this case, the value
|
|
85
85
|
of v-model will be an array of selected options. By default the selected options will be displayed as Tags. You can collapse them to a text by using
|
|
86
86
|
<el-text tag="mark">collapse-tags</el-text> attribute. You can check them when mouse hover collapse text by using
|
|
87
|
-
<el-text tag="mark">collapse-tags-tooltip</el-text> attribute.
|
|
87
|
+
<el-text tag="mark">collapse-tags-tooltip</el-text> attribute. Make sure to add <el-text tag="mark">class="wrap"</el-text> to the el-select to enable wrap mode.
|
|
88
88
|
</p>
|
|
89
89
|
<div v-for="(size, index) of sizes" :key="index + 'multiple'" class="flex flex-col items-start justify-start mb-4">
|
|
90
90
|
<h3>{{ capitalize(size) }}</h3>
|
|
@@ -95,6 +95,18 @@
|
|
|
95
95
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
96
96
|
</el-select>
|
|
97
97
|
</div>
|
|
98
|
+
<div class="flex gap-4 flex-col">
|
|
99
|
+
<p>Wrap mode</p>
|
|
100
|
+
<el-select v-model="multiple.one" multiple placeholder="Select" style="width: 184px" :size="size" class="wrap">
|
|
101
|
+
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
102
|
+
</el-select>
|
|
103
|
+
</div>
|
|
104
|
+
<div class="flex gap-4 flex-col">
|
|
105
|
+
<p>No wrap mode</p>
|
|
106
|
+
<el-select :key="multiple.one.length" v-model="multiple.one" filterable multiple placeholder="Select" :size="size">
|
|
107
|
+
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
108
|
+
</el-select>
|
|
109
|
+
</div>
|
|
98
110
|
<div class="flex gap-4 flex-col">
|
|
99
111
|
<p>use collapse-tags</p>
|
|
100
112
|
<el-select v-model="multiple.two" multiple collapse-tags placeholder="Select" style="width: 184px" :size="size">
|
|
@@ -402,6 +414,7 @@ export default defineComponent({
|
|
|
402
414
|
model: [],
|
|
403
415
|
multiple: { one: [], two: [], three: [], four: [] },
|
|
404
416
|
options: [
|
|
417
|
+
{ value: "0", label: "All" },
|
|
405
418
|
{ value: "Option 1", label: "Option 1" },
|
|
406
419
|
{ value: "Option 2", label: "Option 2", disabled: true },
|
|
407
420
|
{ value: "Option 3", label: "Option 3 uzun" },
|
|
@@ -12849,7 +12849,6 @@ h6,
|
|
|
12849
12849
|
align-items: center;
|
|
12850
12850
|
/* Sonradan ekledim truncate etmek için */
|
|
12851
12851
|
white-space: nowrap;
|
|
12852
|
-
overflow: hidden;
|
|
12853
12852
|
text-overflow: ellipsis;
|
|
12854
12853
|
width: min-content;
|
|
12855
12854
|
}
|
|
@@ -12916,7 +12915,7 @@ h6,
|
|
|
12916
12915
|
}
|
|
12917
12916
|
|
|
12918
12917
|
.el-select__input-wrapper {
|
|
12919
|
-
max-width:
|
|
12918
|
+
max-width: 80px;
|
|
12920
12919
|
width: 100%;
|
|
12921
12920
|
}
|
|
12922
12921
|
.el-select__input-wrapper input {
|
|
@@ -591,7 +591,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
591
591
|
align-items: center;
|
|
592
592
|
/* Sonradan ekledim truncate etmek için */
|
|
593
593
|
white-space: nowrap;
|
|
594
|
-
overflow: hidden;
|
|
595
594
|
text-overflow: ellipsis;
|
|
596
595
|
width: min-content;
|
|
597
596
|
}
|
|
@@ -658,7 +657,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
658
657
|
}
|
|
659
658
|
|
|
660
659
|
.el-select__input-wrapper {
|
|
661
|
-
max-width:
|
|
660
|
+
max-width: 80px;
|
|
662
661
|
width: 100%;
|
|
663
662
|
}
|
|
664
663
|
.el-select__input-wrapper input {
|
|
@@ -591,7 +591,6 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
591
591
|
align-items: center;
|
|
592
592
|
/* Sonradan ekledim truncate etmek için */
|
|
593
593
|
white-space: nowrap;
|
|
594
|
-
overflow: hidden;
|
|
595
594
|
text-overflow: ellipsis;
|
|
596
595
|
width: min-content;
|
|
597
596
|
}
|
|
@@ -658,7 +657,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
658
657
|
}
|
|
659
658
|
|
|
660
659
|
.el-select__input-wrapper {
|
|
661
|
-
max-width:
|
|
660
|
+
max-width: 80px;
|
|
662
661
|
width: 100%;
|
|
663
662
|
}
|
|
664
663
|
.el-select__input-wrapper input {
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
|
|
180
180
|
/* Sonradan ekledim truncate etmek için */
|
|
181
181
|
white-space: nowrap;
|
|
182
|
-
overflow: hidden;
|
|
182
|
+
// overflow: hidden;
|
|
183
183
|
text-overflow: ellipsis;
|
|
184
184
|
width: min-content;
|
|
185
185
|
|
|
@@ -222,7 +222,9 @@
|
|
|
222
222
|
}
|
|
223
223
|
|
|
224
224
|
@include e(input-wrapper) {
|
|
225
|
-
max-width: 100
|
|
225
|
+
// bunu sonradan ekledim truncate etmek için max-width: 100% yerine
|
|
226
|
+
max-width: 80px;
|
|
227
|
+
// max-width: 100%;
|
|
226
228
|
width: 100%;
|
|
227
229
|
|
|
228
230
|
input {
|
package/package.json
CHANGED