barbican-reset 3.25.0 → 3.26.0

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.
@@ -94,7 +94,7 @@ const props = defineProps({
94
94
  default: false,
95
95
  },
96
96
  to: {
97
- type: Object || String,
97
+ type: [Object, String],
98
98
  },
99
99
  disabled: {
100
100
  type: Boolean,
@@ -16,7 +16,7 @@ const isExternal = computed(() => typeof props.to == 'string')
16
16
 
17
17
  const props = defineProps({
18
18
  to: {
19
- type: Object || String,
19
+ type: [Object, String],
20
20
  },
21
21
  })
22
22
  </script>
package/package.json CHANGED
@@ -137,5 +137,5 @@
137
137
  "style:patterns": "cd patterns && gulp build:css",
138
138
  "build:patterns": "cd patterns && rm -rf html && pug views --out html"
139
139
  },
140
- "version": "3.25.0"
140
+ "version": "3.26.0"
141
141
  }