quasar-ui-sellmate-ui-kit 1.4.3 → 1.4.5
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/SDatePickerRange.vue +1 -0
- package/src/components/SDropdown.vue +16 -16
- package/src/components/SSelect.vue +12 -2
- package/src/components/SSelectCheckbox.vue +18 -8
- package/src/components/SSelectGroupCheckbox.vue +252 -0
- package/src/components/SSelectSearch.vue +213 -213
- package/src/components/SSelectSearchCheckbox.vue +62 -72
- package/src/components/STable.vue +2 -0
- package/src/css/extends.scss +4 -2
- package/src/vue-plugin.js +2 -0
- package/dist/index.common.js +0 -6
- package/dist/index.esm.js +0 -6
- package/dist/index.umd.js +0 -4598
- 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
|
@@ -96,6 +96,7 @@ export default defineComponent({
|
|
|
96
96
|
isDisable: Boolean,
|
|
97
97
|
insideLabel: String,
|
|
98
98
|
useInput: Boolean,
|
|
99
|
+
// TODO: 유효성 검사 필요 (리미티드 보통 90일) 사용자 입력으로 받았을 때 어떻게 오류를 보여줄 것인지, 언제 유효성 검사를 할 것인지 정해야함
|
|
99
100
|
rangeDate: { type: Number, default: () => 1 },
|
|
100
101
|
// 몇달 뒤인지
|
|
101
102
|
// TODO: 추후 월 일 만들기
|
|
@@ -18,22 +18,22 @@
|
|
|
18
18
|
}"
|
|
19
19
|
>
|
|
20
20
|
<q-menu class="s-dropdown-menu" :offset="[0, 4]">
|
|
21
|
-
<
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
</q-item
|
|
36
|
-
</
|
|
21
|
+
<template v-for="(opt, i) in options" :key="i">
|
|
22
|
+
<q-item :clickable="opt.disable === undefined || opt.disable === false"
|
|
23
|
+
v-if="opt.display === true || opt.display === undefined"
|
|
24
|
+
v-close-popup
|
|
25
|
+
@click="
|
|
26
|
+
() => {
|
|
27
|
+
$emit('handleClickOption', opt.value);
|
|
28
|
+
$emit('handleClick', opt);
|
|
29
|
+
}
|
|
30
|
+
"
|
|
31
|
+
>
|
|
32
|
+
<q-item-section>
|
|
33
|
+
<q-item-label v-html="opt.label"></q-item-label>
|
|
34
|
+
</q-item-section>
|
|
35
|
+
</q-item>
|
|
36
|
+
</template>
|
|
37
37
|
</q-menu>
|
|
38
38
|
</q-btn>
|
|
39
39
|
</template>
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
options-dense
|
|
6
6
|
:dropdown-icon="selectDownArrowIcon"
|
|
7
7
|
:options-selected-class="selectedOpt"
|
|
8
|
-
popup-content-class="s-select-group-opts"
|
|
8
|
+
:popup-content-class="`s-select-opts ${group ? 's-select-group-opts' : ''} ${popupContentClass ?? ''}`"
|
|
9
9
|
class="s-select"
|
|
10
10
|
ref="sSelectRef"
|
|
11
11
|
:class="{ 's-select-multiple': $attrs.multiple }"
|
|
@@ -98,6 +98,10 @@ export default defineComponent({
|
|
|
98
98
|
options: Array,
|
|
99
99
|
noSelected: String,
|
|
100
100
|
emitValue: Boolean,
|
|
101
|
+
popupContentClass: {
|
|
102
|
+
default: () => '',
|
|
103
|
+
type: String,
|
|
104
|
+
},
|
|
101
105
|
},
|
|
102
106
|
setup(props, { emit, attrs }) {
|
|
103
107
|
const filteredOptions = ref(props.options);
|
|
@@ -254,6 +258,10 @@ export default defineComponent({
|
|
|
254
258
|
}
|
|
255
259
|
}
|
|
256
260
|
|
|
261
|
+
.s-select-opts {
|
|
262
|
+
@extend %select-menu-list;
|
|
263
|
+
}
|
|
264
|
+
|
|
257
265
|
.s-select-group-opts {
|
|
258
266
|
padding: 0;
|
|
259
267
|
.s-select-no-option {
|
|
@@ -274,9 +282,11 @@ export default defineComponent({
|
|
|
274
282
|
.group-option {
|
|
275
283
|
padding: 4px 12px 4px 20px !important;
|
|
276
284
|
&.disabled {
|
|
277
|
-
color: $Grey_Lighten-1 !important;
|
|
278
285
|
background: white !important;
|
|
279
286
|
border: none !important;
|
|
287
|
+
.q-item__section {
|
|
288
|
+
color: $Grey_Lighten-1 !important;
|
|
289
|
+
}
|
|
280
290
|
}
|
|
281
291
|
}
|
|
282
292
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
emit-value
|
|
11
11
|
map-options
|
|
12
12
|
color="positive"
|
|
13
|
-
popup-content-class="s-select-checkbox-opts"
|
|
13
|
+
:popup-content-class="`s-select-checkbox-opts ${$props?.popupContentClass ?? ''}`"
|
|
14
14
|
class="s-select-checkbox"
|
|
15
15
|
:option-label="optionLabel"
|
|
16
16
|
:option-value="optionValue"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
@update:modelValue="toggleOption(opt)"
|
|
32
32
|
/>
|
|
33
33
|
</q-item-section>
|
|
34
|
-
<q-item-section v-if="opt[optionGroup]" class="text-
|
|
34
|
+
<q-item-section v-if="opt[optionGroup]" class="text-Grey_Darken-4 group-title">
|
|
35
35
|
{{ opt[optionGroup] }}
|
|
36
36
|
</q-item-section>
|
|
37
37
|
<q-item-section avatar v-if="opt.logo">
|
|
@@ -102,6 +102,10 @@ export default defineComponent({
|
|
|
102
102
|
type: String,
|
|
103
103
|
default: '전체',
|
|
104
104
|
},
|
|
105
|
+
popupContentClass: {
|
|
106
|
+
default: () => '',
|
|
107
|
+
type: String,
|
|
108
|
+
},
|
|
105
109
|
},
|
|
106
110
|
setup(props, { emit }) {
|
|
107
111
|
const model = ref(props.modelValue);
|
|
@@ -206,15 +210,21 @@ export default defineComponent({
|
|
|
206
210
|
|
|
207
211
|
.s-select-checkbox-opts {
|
|
208
212
|
@extend %select-menu-list;
|
|
213
|
+
> .q-virtual-scroll__content {
|
|
214
|
+
> .q-item.disabled {
|
|
215
|
+
border: none;
|
|
216
|
+
color: $Grey_Darken-4 !important;
|
|
217
|
+
opacity: 1 !important;
|
|
218
|
+
background: $Grey_Lighten-5 !important;
|
|
219
|
+
border-top: 1px solid $Grey_Lighten-3 !important;
|
|
220
|
+
&:not(.q-manual-focusable):first-of-type {
|
|
221
|
+
border-top: none !important;
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
}
|
|
209
225
|
}
|
|
210
226
|
|
|
211
227
|
.custom-select-options {
|
|
212
228
|
height: $default-height;
|
|
213
229
|
}
|
|
214
|
-
|
|
215
|
-
.disabled.s-select-checkbox-option {
|
|
216
|
-
border: none;
|
|
217
|
-
background: none !important;
|
|
218
|
-
color: $Grey_Default !important;
|
|
219
|
-
}
|
|
220
230
|
</style>
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<q-select
|
|
3
|
+
outlined
|
|
4
|
+
dense
|
|
5
|
+
options-dense
|
|
6
|
+
:dropdown-icon="selectDownArrowIcon"
|
|
7
|
+
v-model="model"
|
|
8
|
+
:options="options"
|
|
9
|
+
multiple
|
|
10
|
+
emit-value
|
|
11
|
+
map-options
|
|
12
|
+
color="positive"
|
|
13
|
+
:popup-content-class="`s-select-group-checkbox-opts ${$props?.popupContentClass ?? ''}`"
|
|
14
|
+
class="s-select-checkbox"
|
|
15
|
+
:option-label="optionLabel"
|
|
16
|
+
:option-value="optionValue"
|
|
17
|
+
:option-group="optionGroup"
|
|
18
|
+
@add="onAddChecked"
|
|
19
|
+
@remove="onRemoveChecked"
|
|
20
|
+
:menu-offset="[0, 4]"
|
|
21
|
+
menu-self="top left"
|
|
22
|
+
menu-anchor="bottom start"
|
|
23
|
+
no-error-icon
|
|
24
|
+
hide-bottom-space
|
|
25
|
+
>
|
|
26
|
+
<template v-slot:option="{ itemProps, opt, selected, toggleOption }">
|
|
27
|
+
<q-item v-bind="itemProps" class="flex column grouping-opt">
|
|
28
|
+
<q-item-section class="s-px-sm s-py-xxs row justify-start text-Grey_Darken-4 group-title">
|
|
29
|
+
<s-checkbox
|
|
30
|
+
class="s-mr-xs"
|
|
31
|
+
:modelValue="selected"
|
|
32
|
+
@update:modelValue="toggleOption(opt.optionLabel)"
|
|
33
|
+
/>
|
|
34
|
+
{{ opt[optionLabel] }}
|
|
35
|
+
</q-item-section>
|
|
36
|
+
<template v-for="groupOpt in opt.options" :key="groupOpt.optionValue">
|
|
37
|
+
<q-item-section class="group-content full-width">
|
|
38
|
+
<s-checkbox
|
|
39
|
+
class="s-mr-xs"
|
|
40
|
+
:modelValue="selected"
|
|
41
|
+
@update:modelValue="toggleOption(opt.optionLabel)"
|
|
42
|
+
/>
|
|
43
|
+
<q-img
|
|
44
|
+
class="q-pa-none inline-block bg-Grey_Lighten-5 s-border-Grey_Lighten-7 s-border-radius-xxs q-mr-sm"
|
|
45
|
+
:src="groupOpt.logo"
|
|
46
|
+
width="60px"
|
|
47
|
+
height="22px"
|
|
48
|
+
v-if="groupOpt.logo"
|
|
49
|
+
/>
|
|
50
|
+
{{ groupOpt[optionLabel] }}
|
|
51
|
+
</q-item-section>
|
|
52
|
+
</template>
|
|
53
|
+
</q-item>
|
|
54
|
+
</template>
|
|
55
|
+
<template v-if="useAll && model.length === options.filter(v => !v.category).length" v-slot:selected>
|
|
56
|
+
<div>
|
|
57
|
+
{{ allPlaceholder }}
|
|
58
|
+
</div>
|
|
59
|
+
</template>
|
|
60
|
+
</q-select>
|
|
61
|
+
</template>
|
|
62
|
+
|
|
63
|
+
<script>
|
|
64
|
+
import {
|
|
65
|
+
defineComponent, onBeforeMount, ref, nextTick, watch,
|
|
66
|
+
} from 'vue';
|
|
67
|
+
import {
|
|
68
|
+
QSelect, QItem, QItemSection, QImg,
|
|
69
|
+
} from 'quasar';
|
|
70
|
+
import { selectDownArrowIcon } from '../assets/icons.js';
|
|
71
|
+
|
|
72
|
+
export default defineComponent({
|
|
73
|
+
name: 'SSelectGroupCheckbox',
|
|
74
|
+
emits: ['update:modelValue'],
|
|
75
|
+
components: {
|
|
76
|
+
QSelect,
|
|
77
|
+
QItem,
|
|
78
|
+
QItemSection,
|
|
79
|
+
QImg,
|
|
80
|
+
},
|
|
81
|
+
props: {
|
|
82
|
+
options: {
|
|
83
|
+
type: Array,
|
|
84
|
+
required: true,
|
|
85
|
+
},
|
|
86
|
+
modelValue: {
|
|
87
|
+
type: Array,
|
|
88
|
+
required: true,
|
|
89
|
+
},
|
|
90
|
+
optionLabel: {
|
|
91
|
+
type: [String, Function],
|
|
92
|
+
default: 'label',
|
|
93
|
+
},
|
|
94
|
+
optionValue: {
|
|
95
|
+
type: String,
|
|
96
|
+
default: 'value',
|
|
97
|
+
},
|
|
98
|
+
optionGroup: {
|
|
99
|
+
type: String,
|
|
100
|
+
default: 'group',
|
|
101
|
+
},
|
|
102
|
+
useAll: {
|
|
103
|
+
type: Boolean,
|
|
104
|
+
default: false,
|
|
105
|
+
},
|
|
106
|
+
allPlaceholder: {
|
|
107
|
+
type: String,
|
|
108
|
+
default: '전체',
|
|
109
|
+
},
|
|
110
|
+
popupContentClass: {
|
|
111
|
+
default: () => '',
|
|
112
|
+
type: String,
|
|
113
|
+
},
|
|
114
|
+
},
|
|
115
|
+
// TODO: 기능 미완성
|
|
116
|
+
setup(props, { emit }) {
|
|
117
|
+
const model = ref(props.modelValue);
|
|
118
|
+
function onRemoveChecked(detail) {
|
|
119
|
+
const idx = model.value.findIndex(v => v[props.optionValue] === '');
|
|
120
|
+
if (detail.value[props.optionValue]?.includes('all')) {
|
|
121
|
+
nextTick(() => {
|
|
122
|
+
model.value = [];
|
|
123
|
+
});
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
if (detail.value[props.optionValue] === '') {
|
|
127
|
+
nextTick(() => {
|
|
128
|
+
model.value = [];
|
|
129
|
+
});
|
|
130
|
+
} else if (idx >= 0) {
|
|
131
|
+
nextTick(() => {
|
|
132
|
+
model.value.splice(idx, 1);
|
|
133
|
+
});
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
function onAddChecked(detail) {
|
|
137
|
+
if (detail.value === '') {
|
|
138
|
+
nextTick(() => {
|
|
139
|
+
model.value = props.options;
|
|
140
|
+
});
|
|
141
|
+
} else {
|
|
142
|
+
nextTick(() => {
|
|
143
|
+
if (model.value.length === props.options.length - 1) {
|
|
144
|
+
model.value = props.options;
|
|
145
|
+
}
|
|
146
|
+
});
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
watch(() => props.modelValue, () => {
|
|
151
|
+
model.value = props.modelValue;
|
|
152
|
+
});
|
|
153
|
+
watch(model, () => {
|
|
154
|
+
emit('update:modelValue', model.value);
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
onBeforeMount(() => {
|
|
158
|
+
if (props.useAll && model.value.length === 1 && !props.modelValue[0].value) {
|
|
159
|
+
model.value = props.options.filter(v => !v.category);
|
|
160
|
+
}
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
return {
|
|
164
|
+
model,
|
|
165
|
+
selectDownArrowIcon,
|
|
166
|
+
onRemoveChecked,
|
|
167
|
+
onAddChecked,
|
|
168
|
+
};
|
|
169
|
+
},
|
|
170
|
+
});
|
|
171
|
+
</script>
|
|
172
|
+
|
|
173
|
+
<style lang="scss">
|
|
174
|
+
@import "../css/variable.scss";
|
|
175
|
+
@import "../css/extends.scss";
|
|
176
|
+
|
|
177
|
+
.s-select-checkbox {
|
|
178
|
+
@extend %select;
|
|
179
|
+
.q-field__native {
|
|
180
|
+
display: block;
|
|
181
|
+
min-height: 0;
|
|
182
|
+
height: $default-height;
|
|
183
|
+
width: 100%;
|
|
184
|
+
padding: $select-padding !important;
|
|
185
|
+
color: $Grey_Darken-4;
|
|
186
|
+
white-space: nowrap;
|
|
187
|
+
overflow: hidden;
|
|
188
|
+
text-overflow: ellipsis;
|
|
189
|
+
> span {
|
|
190
|
+
max-height: $default-height;
|
|
191
|
+
}
|
|
192
|
+
> .s-checkbox {
|
|
193
|
+
margin-right: $default-icon-margin;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
.q-field--disabled.s-select {
|
|
198
|
+
.q-field__inner {
|
|
199
|
+
.q-field__control {
|
|
200
|
+
opacity: 1 !important;
|
|
201
|
+
background: $Grey_Lighten-3;
|
|
202
|
+
&:after {
|
|
203
|
+
border: 1px solid $Grey_Lighten-2;
|
|
204
|
+
}
|
|
205
|
+
&-container {
|
|
206
|
+
.q-field__native {
|
|
207
|
+
> span {
|
|
208
|
+
color: $Grey_Default;
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
.q-field__append {
|
|
213
|
+
.q-icon {
|
|
214
|
+
color: $Grey_Default;
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.s-select-group-checkbox-opts {
|
|
222
|
+
@extend %select-menu-list;
|
|
223
|
+
> .q-virtual-scroll__content {
|
|
224
|
+
> .q-item.grouping-opt {
|
|
225
|
+
border: none;
|
|
226
|
+
color: $Grey_Darken-4 !important;
|
|
227
|
+
opacity: 1 !important;
|
|
228
|
+
height: auto;
|
|
229
|
+
padding: 0;
|
|
230
|
+
background-color: white;
|
|
231
|
+
> .group-title, .group-content {
|
|
232
|
+
flex-direction: row !important;
|
|
233
|
+
justify-content: flex-start !important;
|
|
234
|
+
> .s-checkbox {
|
|
235
|
+
margin-right: 10px;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
> .group-title {
|
|
239
|
+
background-color: $Grey_Lighten-5;
|
|
240
|
+
border-top: 1px solid $Grey_Lighten-3 !important;
|
|
241
|
+
&:first-of-type {
|
|
242
|
+
border-top: none !important;
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
> .group-content {
|
|
246
|
+
margin: 0;
|
|
247
|
+
padding: 4px 12px 4px 16px;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
</style>
|