@indielayer/ui 1.9.2 → 1.9.3

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/lib/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "1.9.2";
1
+ declare const _default: "1.9.3";
2
2
  export default _default;
package/lib/version.js CHANGED
@@ -1,4 +1,4 @@
1
- const e = "1.9.2";
1
+ const e = "1.9.3";
2
2
  export {
3
3
  e as default
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@indielayer/ui",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "description": "Indielayer UI Components with Tailwind CSS build for Vue 3",
5
5
  "author": {
6
6
  "name": "João Teixeira",
@@ -91,9 +91,8 @@ const props = defineProps({
91
91
  },
92
92
  })
93
93
 
94
- const selected = defineModel<number | number[]>('selected')
95
-
96
- const hasSelected = computed(() => typeof selected.value === 'number')
94
+ const selected = defineModel<number | string>('selected')
95
+ const hasSelected = computed(() => typeof selected.value !== 'undefined')
97
96
 
98
97
  type internalT = T & {
99
98
  __expanded?: boolean;
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export default '1.9.2'
1
+ export default '1.9.3'