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 +1 -1
- package/dist/index.min.css +1 -1
- package/dist/index.rtl.css +1 -1
- package/dist/index.rtl.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SSelectSearchAutoComplete.vue +12 -4
- package/dist/index.common.js +0 -6
- package/dist/index.esm.js +0 -6
- package/dist/index.umd.js +0 -6429
- package/dist/index.umd.min.js +0 -6
package/dist/index.css
CHANGED
package/dist/index.min.css
CHANGED
package/dist/index.rtl.css
CHANGED
package/dist/index.rtl.min.css
CHANGED
package/package.json
CHANGED
|
@@ -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
|
-
|
|
127
|
-
|
|
128
|
-
cursor: pointer
|
|
135
|
+
padding: 12px 8px;
|
|
136
|
+
width: 264px;
|
|
129
137
|
}
|
|
130
138
|
}
|
|
131
139
|
|