@timus-networks/theme 2.4.39 → 2.4.41
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.dropdown.vue +26 -1
- package/dist/runtime/public/scss/element-plus/index.css +9 -2
- package/dist/runtime/public/scss/element-plus/popper.css +8 -0
- package/dist/runtime/public/scss/element-plus/popper.scss +10 -0
- 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.41";
|
|
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 = {
|
|
@@ -12,6 +12,18 @@
|
|
|
12
12
|
having to click it.
|
|
13
13
|
</p>
|
|
14
14
|
<div class="flex gap-2">
|
|
15
|
+
<el-dropdown placement="bottom-end" trigger="click">
|
|
16
|
+
<span class="el-dropdown-link">
|
|
17
|
+
Long Lont a text Serkan Konakcı<el-icon class="el-icon--right"><ElIconArrowDown /></el-icon>
|
|
18
|
+
</span>
|
|
19
|
+
<template #dropdown>
|
|
20
|
+
<el-dropdown-menu>
|
|
21
|
+
<el-dropdown-item>Profile</el-dropdown-item>
|
|
22
|
+
<el-dropdown-item>Sign out</el-dropdown-item>
|
|
23
|
+
</el-dropdown-menu>
|
|
24
|
+
</template>
|
|
25
|
+
</el-dropdown>
|
|
26
|
+
|
|
15
27
|
<el-dropdown>
|
|
16
28
|
<span class="el-dropdown-link">
|
|
17
29
|
Dropdown List
|
|
@@ -156,7 +168,20 @@
|
|
|
156
168
|
const size_list = ref(['default', 'large', 'medium', 'small', 'mini']);
|
|
157
169
|
const size_selected = ref('default');
|
|
158
170
|
const snippets = ref({
|
|
159
|
-
basic:
|
|
171
|
+
basic: `
|
|
172
|
+
<el-dropdown>
|
|
173
|
+
<span class="el-dropdown-link">
|
|
174
|
+
Dropdown List
|
|
175
|
+
<el-icon class="el-icon--right">
|
|
176
|
+
<ElIconArrowDown />
|
|
177
|
+
</el-icon>
|
|
178
|
+
</span>
|
|
179
|
+
<template #dropdown>
|
|
180
|
+
<el-dropdown-menu>
|
|
181
|
+
<el-dropdown-item v-for="item of [1, 2, 3, 4, 5]" :key="item" :disabled="item === 4" :divided="item === 5">Action {{ item }}</el-dropdown-item>
|
|
182
|
+
</el-dropdown-menu>
|
|
183
|
+
</template>
|
|
184
|
+
</el-dropdown>`,
|
|
160
185
|
disabled: `<el-link type="secondary" disabled>default</el-link>`,
|
|
161
186
|
underline: `<el-link :underline="false">Without Underline</el-link>`,
|
|
162
187
|
icon: `<el-link class="isax-add icon-right">Check</el-link>`,
|
|
@@ -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;
|
|
@@ -16803,6 +16802,14 @@ mark.el-text {
|
|
|
16803
16802
|
border-right-color: transparent !important;
|
|
16804
16803
|
border-top-color: transparent !important;
|
|
16805
16804
|
}
|
|
16805
|
+
.el-popper[data-popper-placement$=-end] > .el-popper__arrow {
|
|
16806
|
+
left: auto !important;
|
|
16807
|
+
right: 10px !important;
|
|
16808
|
+
}
|
|
16809
|
+
.el-popper[data-popper-placement$=-start] > .el-popper__arrow {
|
|
16810
|
+
right: auto !important;
|
|
16811
|
+
left: 10px !important;
|
|
16812
|
+
}
|
|
16806
16813
|
|
|
16807
16814
|
.el-statistic {
|
|
16808
16815
|
--el-statistic-title-font-weight: 400;
|
|
@@ -397,4 +397,12 @@ Bununla selectorun içerisine variable ekleyebiliyorsun
|
|
|
397
397
|
.el-popper[data-popper-placement^=right] .el-popper__arrow::before {
|
|
398
398
|
border-right-color: transparent !important;
|
|
399
399
|
border-top-color: transparent !important;
|
|
400
|
+
}
|
|
401
|
+
.el-popper[data-popper-placement$=-end] > .el-popper__arrow {
|
|
402
|
+
left: auto !important;
|
|
403
|
+
right: 10px !important;
|
|
404
|
+
}
|
|
405
|
+
.el-popper[data-popper-placement$=-start] > .el-popper__arrow {
|
|
406
|
+
right: auto !important;
|
|
407
|
+
left: 10px !important;
|
|
400
408
|
}
|
|
@@ -104,4 +104,14 @@
|
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
106
|
}
|
|
107
|
+
|
|
108
|
+
&[data-popper-placement$='-end'] > #{$arrow-selector} {
|
|
109
|
+
left: auto !important;
|
|
110
|
+
right: 10px !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&[data-popper-placement$='-start'] > #{$arrow-selector} {
|
|
114
|
+
right: auto !important;
|
|
115
|
+
left: 10px !important;
|
|
116
|
+
}
|
|
107
117
|
}
|
|
@@ -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