@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
3
  "configKey": "themeOptions",
4
- "version": "2.4.268",
4
+ "version": "2.4.269",
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.268";
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
  }
@@ -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
  }
@@ -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
  }
@@ -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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@timus-networks/theme",
3
- "version": "2.4.269",
3
+ "version": "2.4.270",
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": {