@falcondev-oss/nuxt-layers-base 0.14.0 → 0.14.1

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.
@@ -5,10 +5,10 @@ import { regex } from 'arkregex'
5
5
  import { vMaska } from 'maska/vue'
6
6
  import { useForwardPropsEmits } from 'reka-ui'
7
7
 
8
- const props =
9
- defineProps<Omit<InputProps<string>, 'modelValue' | 'defaultValue' | 'modelModifiers'>>()
8
+ type Props = Omit<InputProps<string>, 'modelValue' | 'defaultValue' | 'modelModifiers'>
9
+ const props = defineProps<Props>()
10
10
  const emit = defineEmits<Omit<InputEmits<string>, 'update:modelValue'>>()
11
- const forwardedProps = useForwardPropsEmits(props, emit)
11
+ const forwardedProps = useForwardPropsEmits(props as Props, emit)
12
12
 
13
13
  const model = defineModel<number | null>({
14
14
  required: true,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@falcondev-oss/nuxt-layers-base",
3
3
  "type": "module",
4
- "version": "0.14.0",
4
+ "version": "0.14.1",
5
5
  "description": "Nuxt layer with lots of useful helpers and @nuxt/ui components",
6
6
  "license": "MIT",
7
7
  "repository": "github:falcondev-oss/nuxt-layers",