@simsustech/quasar-components 0.5.2 → 0.5.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @simsustech/quasar-components
2
2
 
3
+ ## 0.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - a908cb3: fix(PostalCodeInput): make modelValue optional
8
+
3
9
  ## 0.5.2
4
10
 
5
11
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  export type PostalCodeLocales = 'nl';
2
2
  export interface Props {
3
- modelValue: string;
3
+ modelValue?: string;
4
4
  locale: PostalCodeLocales;
5
5
  required?: boolean;
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simsustech/quasar-components",
3
- "version": "0.5.2",
3
+ "version": "0.5.3",
4
4
  "author": "Stefan van Herwijnen",
5
5
  "description": "High level components for Quasar Framework",
6
6
  "license": "MIT",
@@ -17,7 +17,7 @@ import { useLang } from './lang'
17
17
  export type PostalCodeLocales = 'nl'
18
18
 
19
19
  export interface Props {
20
- modelValue: string
20
+ modelValue?: string
21
21
  locale: PostalCodeLocales
22
22
  required?: boolean
23
23
  }