quasar-ui-sellmate-ui-kit 1.9.3 → 1.9.4

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.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * quasar-ui-sellmate-ui-kit v1.9.2
2
+ * quasar-ui-sellmate-ui-kit v1.9.3
3
3
  * (c) 2023 Sellmate Dev Team <dev@sellmate.co.kr>
4
4
  * Released under the MIT License.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * quasar-ui-sellmate-ui-kit v1.9.2
2
+ * quasar-ui-sellmate-ui-kit v1.9.3
3
3
  * (c) 2023 Sellmate Dev Team <dev@sellmate.co.kr>
4
4
  * Released under the MIT License.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * quasar-ui-sellmate-ui-kit v1.9.2
2
+ * quasar-ui-sellmate-ui-kit v1.9.3
3
3
  * (c) 2023 Sellmate Dev Team <dev@sellmate.co.kr>
4
4
  * Released under the MIT License.
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * quasar-ui-sellmate-ui-kit v1.9.2
2
+ * quasar-ui-sellmate-ui-kit v1.9.3
3
3
  * (c) 2023 Sellmate Dev Team <dev@sellmate.co.kr>
4
4
  * Released under the MIT License.
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quasar-ui-sellmate-ui-kit",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "author": "Sellmate Dev Team <dev@sellmate.co.kr>",
5
5
  "description": "Sellmate UI Kit",
6
6
  "license": "MIT",
@@ -7,7 +7,10 @@
7
7
  <template v-if="!isSelect && isSearchAutoComplete">
8
8
  <div class="q-mt-xs s-select-search-auto-complete-options-wrapper">
9
9
  <q-item v-for="options in filteredOptions" :key="options.value" class="select-items full-height q-pa-none items-center">
10
- <span @click="selectOption(options)" class="full-width">{{ options.label }}</span>
10
+ <!-- <span @click="selectOption(options)" class="full-width">{{ options.label }}</span> -->
11
+ <q-item-section>
12
+ <q-item-label @click="selectOption(options)">{{ options.label }}</q-item-label>
13
+ </q-item-section>
11
14
  </q-item>
12
15
  </div>
13
16
  </template>
@@ -48,6 +51,7 @@ import {
48
51
  QItem,
49
52
  } from 'quasar';
50
53
  import { searchIcon } from '../assets/icons.js';
54
+ import SInput from './SInput';
51
55
 
52
56
  export default defineComponent({
53
57
  name: 'SSelectSearchAutoComplete',
@@ -56,6 +60,7 @@ export default defineComponent({
56
60
  QIcon,
57
61
  QSelect,
58
62
  QItem,
63
+ SInput,
59
64
  },
60
65
  props: {
61
66
  options: Array,
@@ -122,10 +127,13 @@ export default defineComponent({
122
127
  @import "../css/extends.scss";
123
128
  @import "../css/variable.scss";
124
129
  .s-select-search-auto-complete-options-wrapper {
130
+ position: absolute;
131
+ background: white;
132
+ cursor: pointer;
133
+ z-index: 1;
125
134
  .q-item {
126
- background: white;
127
- padding: 6px 8px;
128
- cursor: pointer
135
+ padding: 12px 8px;
136
+ width: 264px;
129
137
  }
130
138
  }
131
139