@timus-networks/theme 2.4.69 → 2.4.71
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/components/development/example.input.vue +10 -3
- package/dist/runtime/components/development/example.radio.vue +2 -2
- package/dist/runtime/components/development/example.select.vue +1 -1
- package/dist/runtime/public/scss/element-plus/divider.css +3 -3
- package/dist/runtime/public/scss/element-plus/divider.scss +3 -3
- package/dist/runtime/public/scss/element-plus/index.css +4 -3
- package/dist/runtime/public/scss/element-plus/select-v2.css +1 -0
- package/dist/runtime/public/scss/element-plus/select.css +1 -0
- package/dist/runtime/public/scss/element-plus/select.scss +1 -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.71";
|
|
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 = {
|
|
@@ -11,7 +11,14 @@
|
|
|
11
11
|
sizes <el-text tag="mark">{{ sizes.join(', ') }}</el-text>
|
|
12
12
|
</p>
|
|
13
13
|
<div class="flex gap-4 items-start">
|
|
14
|
-
<el-input
|
|
14
|
+
<el-input
|
|
15
|
+
v-for="(size, index) of sizes"
|
|
16
|
+
:key="size + index"
|
|
17
|
+
v-model="input"
|
|
18
|
+
placeholder="Please input"
|
|
19
|
+
:size="size !== 'default' ? size : undefined"
|
|
20
|
+
:prefix-icon="ElIconSearch"
|
|
21
|
+
/>
|
|
15
22
|
</div>
|
|
16
23
|
</div>
|
|
17
24
|
<template #footer>
|
|
@@ -28,7 +35,7 @@
|
|
|
28
35
|
Disable the Input with the <code><el-text tag="mark">disabled</el-text></code> attribute.
|
|
29
36
|
</p>
|
|
30
37
|
<div class="flex gap-4 items-start">
|
|
31
|
-
<el-input v-for="(size, index) of sizes" :key="size + index" v-model="input" placeholder="Please input"
|
|
38
|
+
<el-input v-for="(size, index) of sizes" :key="size + index" v-model="input" placeholder="Please input" v-bind="size !== 'default' ? { size } : {}" disabled />
|
|
32
39
|
</div>
|
|
33
40
|
</div>
|
|
34
41
|
<template #footer>
|
|
@@ -43,7 +50,7 @@
|
|
|
43
50
|
<div class="flex flex-col gap-3 items-start">
|
|
44
51
|
<p>Make the Input clearable with the <el-text tag="mark">clearable</el-text> attribute.</p>
|
|
45
52
|
<div class="flex gap-4">
|
|
46
|
-
<el-input v-for="(size, index) of sizes" :key="size + index" v-model="input" placeholder="Please input"
|
|
53
|
+
<el-input v-for="(size, index) of sizes" :key="size + index" v-model="input" placeholder="Please input" v-bind="size !== 'default' ? { size } : {}" clearable />
|
|
47
54
|
</div>
|
|
48
55
|
</div>
|
|
49
56
|
<template #footer>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<div class="flex flex-col gap-4 items-start">
|
|
15
15
|
Selected: {{ value }}
|
|
16
16
|
<el-radio-group v-model="value">
|
|
17
|
-
<el-radio v-for="(size, index) of sizes" :key="index" :value="index"
|
|
17
|
+
<el-radio v-for="(size, index) of sizes" :key="index" :value="index" v-bind="size !== 'default' ? { size } : {}">Option 1</el-radio>
|
|
18
18
|
</el-radio-group>
|
|
19
19
|
</div>
|
|
20
20
|
</div>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<div class="flex flex-col gap-4 items-start">
|
|
29
29
|
Selected: {{ value }}
|
|
30
30
|
<el-radio-group v-model="value" class="el-vertical-group">
|
|
31
|
-
<el-radio v-for="(size, index) of sizes" :key="index" :value="index"
|
|
31
|
+
<el-radio v-for="(size, index) of sizes" :key="index" :value="index" v-bind="size !== 'default' ? { size } : {}">Option 1</el-radio>
|
|
32
32
|
</el-radio-group>
|
|
33
33
|
</div>
|
|
34
34
|
</div>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
sizes <el-text tag="mark">{{ sizes.join(', ') }}</el-text>
|
|
12
12
|
</p>
|
|
13
13
|
<div class="flex gap-4 items-start">
|
|
14
|
-
<el-select v-for="(size, index) of sizes" :key="size + index" v-model="value"
|
|
14
|
+
<el-select v-for="(size, index) of sizes" :key="size + index" v-model="value" v-bind="size !== 'default' ? { size } : {}" placeholder="Select" style="width: 140px">
|
|
15
15
|
<el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value" />
|
|
16
16
|
</el-select>
|
|
17
17
|
</div>
|
|
@@ -307,8 +307,8 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
307
307
|
display: block;
|
|
308
308
|
height: 1px;
|
|
309
309
|
width: 100%;
|
|
310
|
-
margin:
|
|
311
|
-
border-top: 1px var(--el-
|
|
310
|
+
margin: 8px 0;
|
|
311
|
+
border-top: 1px var(--el-color-neutral-light-3) var(--el-border-style);
|
|
312
312
|
}
|
|
313
313
|
|
|
314
314
|
.el-divider--vertical {
|
|
@@ -318,7 +318,7 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
318
318
|
margin: 0 8px;
|
|
319
319
|
vertical-align: middle;
|
|
320
320
|
position: relative;
|
|
321
|
-
border-left: 1px var(--el-
|
|
321
|
+
border-left: 1px var(--el-color-neutral-light-3) var(--el-border-style);
|
|
322
322
|
}
|
|
323
323
|
|
|
324
324
|
.el-divider__text {
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
display: block;
|
|
9
9
|
height: 1px;
|
|
10
10
|
width: 100%;
|
|
11
|
-
margin:
|
|
12
|
-
border-top: 1px getCssVar('
|
|
11
|
+
margin: 8px 0;
|
|
12
|
+
border-top: 1px getCssVar('color', 'neutral', 'light-3') getCssVar('border-style');
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
@include m(vertical) {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
margin: 0 8px;
|
|
20
20
|
vertical-align: middle;
|
|
21
21
|
position: relative;
|
|
22
|
-
border-left: 1px getCssVar('
|
|
22
|
+
border-left: 1px getCssVar('color', 'neutral', 'light-3') getCssVar('border-style');
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
@include e(text) {
|
|
@@ -8310,8 +8310,8 @@ heights > $common-component-size
|
|
|
8310
8310
|
display: block;
|
|
8311
8311
|
height: 1px;
|
|
8312
8312
|
width: 100%;
|
|
8313
|
-
margin:
|
|
8314
|
-
border-top: 1px var(--el-
|
|
8313
|
+
margin: 8px 0;
|
|
8314
|
+
border-top: 1px var(--el-color-neutral-light-3) var(--el-border-style);
|
|
8315
8315
|
}
|
|
8316
8316
|
|
|
8317
8317
|
.el-divider--vertical {
|
|
@@ -8321,7 +8321,7 @@ heights > $common-component-size
|
|
|
8321
8321
|
margin: 0 8px;
|
|
8322
8322
|
vertical-align: middle;
|
|
8323
8323
|
position: relative;
|
|
8324
|
-
border-left: 1px var(--el-
|
|
8324
|
+
border-left: 1px var(--el-color-neutral-light-3) var(--el-border-style);
|
|
8325
8325
|
}
|
|
8326
8326
|
|
|
8327
8327
|
.el-divider__text {
|
|
@@ -12476,6 +12476,7 @@ h6,
|
|
|
12476
12476
|
font-size: 14px;
|
|
12477
12477
|
padding: 10px 12px;
|
|
12478
12478
|
gap: 8px;
|
|
12479
|
+
height: 36px;
|
|
12479
12480
|
min-height: 36px;
|
|
12480
12481
|
line-height: 20px;
|
|
12481
12482
|
border-radius: var(--el-border-radius-small);
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
font-size: map.get($input-font-size, 'default');
|
|
40
40
|
padding: map.get($select-wrapper-padding, 'default');
|
|
41
41
|
gap: map.get($select-item-gap, 'default');
|
|
42
|
+
height: map.get($common-component-size, 'default');
|
|
42
43
|
min-height: map.get($input-height, 'default');
|
|
43
44
|
line-height: map.get($select-item-height, 'default');
|
|
44
45
|
border-radius: getCssVar('border-radius-small');
|
package/package.json
CHANGED