@volverjs/ui-vue 0.0.10-beta.44 → 0.0.10-beta.45

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.
@@ -146,15 +146,15 @@ const hasTabindex = computed(() => {
146
146
  const localModelValue = computed({
147
147
  get: () => {
148
148
  if (Array.isArray(props.modelValue)) {
149
- return new Set(props.modelValue)
149
+ return props.modelValue
150
150
  }
151
- return props.modelValue !== undefined && props.modelValue !== null ? new Set([props.modelValue]) : new Set()
151
+ return props.modelValue !== undefined && props.modelValue !== null ? [props.modelValue] : []
152
152
  },
153
- set: (value: Set<unknown>) => {
154
- emit('update:modelValue', props.multiple || Array.isArray(props.modelValue) ? [...value] : [...value].pop())
153
+ set: (value: unknown[]) => {
154
+ emit('update:modelValue', props.multiple || Array.isArray(props.modelValue) ? value : value.pop())
155
155
  },
156
156
  })
157
- const sizeOfModelValue = computed(() => localModelValue.value.size)
157
+ const sizeOfModelValue = computed(() => localModelValue.value.length)
158
158
  const isDirty = computed(() => sizeOfModelValue.value > 0)
159
159
  const hasMaxValues = computed(() => {
160
160
  if (!props.multiple) {
@@ -173,7 +173,7 @@ const isUnselectable = computed(() => {
173
173
  if (!props.unselectable) {
174
174
  return false
175
175
  }
176
- return sizeOfModelValue.value > Number(props.minValues)
176
+ return Number(props.minValues) === 0 || (sizeOfModelValue.value > Number(props.minValues))
177
177
  })
178
178
  const isSelectable = computed(() => {
179
179
  if (isDisabledOrReadonly.value) {
@@ -247,7 +247,16 @@ const filteredOptions = computedAsync(async () => {
247
247
  * @param {T} option
248
248
  */
249
249
  function isOptionSelected(option: T) {
250
- return localModelValue.value.has(getOptionValue(option))
250
+ const optionValue = getOptionValue(option)
251
+ if (typeof optionValue === 'object') {
252
+ return localModelValue.value.some((item) => {
253
+ if (typeof item === 'object') {
254
+ return JSON.stringify(item) === JSON.stringify(optionValue)
255
+ }
256
+ return false
257
+ })
258
+ }
259
+ return localModelValue.value.includes(optionValue)
251
260
  }
252
261
 
253
262
  /**
@@ -288,17 +297,21 @@ function onClickInput() {
288
297
  */
289
298
  function onInput(option: T) {
290
299
  const isSelected = isOptionSelected(option)
300
+ const optionValue = getOptionValue(option)
291
301
  if (isSelected && isUnselectable.value) {
292
- localModelValue.value.delete(getOptionValue(option))
302
+ localModelValue.value = localModelValue.value.filter((item) => {
303
+ if (typeof optionValue === 'object' && typeof item === 'object') {
304
+ return JSON.stringify(item) !== JSON.stringify(optionValue)
305
+ }
306
+ return item !== optionValue
307
+ })
293
308
  }
294
309
  else if (!isSelected && isSelectable.value) {
295
310
  if (!props.multiple) {
296
- localModelValue.value.clear()
311
+ localModelValue.value = []
297
312
  }
298
- localModelValue.value.add(getOptionValue(option))
313
+ localModelValue.value = [...localModelValue.value, optionValue]
299
314
  }
300
- // force reactivity
301
- localModelValue.value = new Set(localModelValue.value)
302
315
  if (!props.multiple && !props.keepOpen) {
303
316
  collapse()
304
317
  }
@@ -61,7 +61,7 @@ function getSvgContent(svg: string): SVGSVGElement | undefined {
61
61
  let dom
62
62
  if (typeof window === 'undefined') {
63
63
  // SSR
64
- // eslint-disable-next-line ts/no-var-requires, ts/no-require-imports
64
+ // eslint-disable-next-line ts/no-require-imports, ts/no-var-requires
65
65
  const { JSDOM } = require('jsdom')
66
66
  dom = new JSDOM().window
67
67
  }