sprintify-ui 0.0.85 → 0.0.86

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.
@@ -2451,7 +2451,7 @@ const ds = { class: "relative" }, fs = { class: "relative" }, ms = ["value", "pl
2451
2451
  }, [
2452
2452
  Q(W.$slots, "option", {
2453
2453
  option: he.option,
2454
- selected: h(M)(he),
2454
+ selected: C(() => h(M)(he)).value,
2455
2455
  active: h(t) && h(t).value == he.value
2456
2456
  }, () => [
2457
2457
  v("div", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.0.85",
3
+ "version": "0.0.86",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -95,7 +95,7 @@
95
95
  <slot
96
96
  name="option"
97
97
  :option="option.option"
98
- :selected="isSelected(option)"
98
+ :selected="computed(() => isSelected(option)).value"
99
99
  :active="optionActive && optionActive.value == option.value"
100
100
  >
101
101
  <div
@@ -152,7 +152,7 @@
152
152
 
153
153
  <script lang="ts" setup>
154
154
  import { get } from 'lodash';
155
- import { PropType, Ref, ComputedRef } from 'vue';
155
+ import { PropType, Ref, ComputedRef, computed } from 'vue';
156
156
  import { NormalizedOption, Option } from '@/types';
157
157
  import { useInfiniteScroll } from '@vueuse/core';
158
158
  import BaseSkeleton from '@/components/BaseSkeleton.vue';