@dataloop-ai/components 0.17.71 → 0.17.72

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.17.71",
3
+ "version": "0.17.72",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -251,8 +251,8 @@ export default defineComponent({
251
251
  },
252
252
  props: {
253
253
  modelValue: {
254
- type: Object,
255
- default: {} as { [key: string]: any }
254
+ type: Object as PropType<Record<string, any>>,
255
+ default: () => ({})
256
256
  },
257
257
  status: {
258
258
  type: Object as PropType<SearchStatus>,
@@ -260,7 +260,7 @@ export default defineComponent({
260
260
  },
261
261
  schema: {
262
262
  type: Object as PropType<Schema>,
263
- default: () => {}
263
+ default: () => ({})
264
264
  },
265
265
  aliases: {
266
266
  type: Array as PropType<Alias[]>,