@timus-networks/theme 2.4.269 → 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 +0 -1
- package/dist/runtime/components/development/example.select.vue +15 -2
- package/dist/runtime/public/scss/element-plus/index.css +0 -1
- package/dist/runtime/public/scss/element-plus/select-v2.css +0 -1
- package/dist/runtime/public/scss/element-plus/select.css +0 -1
- package/dist/runtime/public/scss/element-plus/select.scss +1 -1
- 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
|
}
|
|
@@ -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
|
}
|
package/package.json
CHANGED