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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-sellmate-ui-kit",
3
- "version": "3.14.29",
3
+ "version": "3.14.30",
4
4
  "author": "Sellmate Dev Team <dev@sellmate.co.kr>",
5
5
  "description": "Sellmate UI Kit",
6
6
  "license": "MIT",
@@ -27,21 +27,19 @@
27
27
  >
28
28
  <!-- TODO: 아무것도 선택되지 않았을 때 props 값으로 표기 해줘야함 기본 값은 "전체" -->
29
29
  <template #before-options>
30
- <div class="search-input-form-container">
31
- <form class="select-search-input-form">
32
- <q-icon :name="searchIcon" size="20px" />
33
- <input
34
- v-model="search"
35
- autofocus
36
- class="select-search-input"
37
- :placeholder="searchPlaceholder"
38
- @input="
39
- data => {
40
- onSearch(data.target.value);
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-form-container">
77
- <form class="select-search-input-form">
78
- <q-icon :name="searchIcon" size="20px" />
79
- <input
80
- v-model="search"
81
- autofocus
82
- class="select-search-input"
83
- :placeholder="searchPlaceholder"
84
- @input="
85
- data => {
86
- onSearch(data.target.value);
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
- .select-search-input-form {
313
+ .search-input-container {
318
314
  height: 28px;
319
315
  display: flex;
320
316
  align-items: center;