quasar-ui-sellmate-ui-kit 3.14.29 → 3.14.30
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/index.common.js +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/dist/index.umd.js +44 -50
- package/dist/index.umd.min.js +2 -2
- package/package.json +1 -1
- package/src/components/SSelectSearchCheckbox.vue +27 -31
package/package.json
CHANGED
|
@@ -27,21 +27,19 @@
|
|
|
27
27
|
>
|
|
28
28
|
<!-- TODO: 아무것도 선택되지 않았을 때 props 값으로 표기 해줘야함 기본 값은 "전체" -->
|
|
29
29
|
<template #before-options>
|
|
30
|
-
<div class="search-input-
|
|
31
|
-
<
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
data
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
/>
|
|
44
|
-
</form>
|
|
30
|
+
<div class="search-input-container">
|
|
31
|
+
<q-icon :name="searchIcon" size="20px" />
|
|
32
|
+
<input
|
|
33
|
+
v-model="search"
|
|
34
|
+
autofocus
|
|
35
|
+
class="select-search-input"
|
|
36
|
+
:placeholder="searchPlaceholder"
|
|
37
|
+
@input="
|
|
38
|
+
data => {
|
|
39
|
+
onSearch(data.target.value);
|
|
40
|
+
}
|
|
41
|
+
"
|
|
42
|
+
/>
|
|
45
43
|
</div>
|
|
46
44
|
</template>
|
|
47
45
|
<template #option="{ itemProps, opt, selected, toggleOption }">
|
|
@@ -73,21 +71,19 @@
|
|
|
73
71
|
</div>
|
|
74
72
|
</template>
|
|
75
73
|
<template #no-option>
|
|
76
|
-
<div class="search-input-
|
|
77
|
-
<
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
data
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
/>
|
|
90
|
-
</form>
|
|
74
|
+
<div class="search-input-container">
|
|
75
|
+
<q-icon :name="searchIcon" size="20px" />
|
|
76
|
+
<input
|
|
77
|
+
v-model="search"
|
|
78
|
+
autofocus
|
|
79
|
+
class="select-search-input"
|
|
80
|
+
:placeholder="searchPlaceholder"
|
|
81
|
+
@input="
|
|
82
|
+
data => {
|
|
83
|
+
onSearch(data.target.value);
|
|
84
|
+
}
|
|
85
|
+
"
|
|
86
|
+
/>
|
|
91
87
|
</div>
|
|
92
88
|
<q-item class="s-select-no-option">
|
|
93
89
|
<q-item-section class="text-grey">{{ noData }}</q-item-section>
|
|
@@ -314,7 +310,7 @@
|
|
|
314
310
|
color: $grey_65 !important;
|
|
315
311
|
}
|
|
316
312
|
|
|
317
|
-
.
|
|
313
|
+
.search-input-container {
|
|
318
314
|
height: 28px;
|
|
319
315
|
display: flex;
|
|
320
316
|
align-items: center;
|