@vygruppen/spor-react 12.5.1 → 12.5.2
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/.turbo/turbo-build.log +11 -11
- package/.turbo/turbo-postinstall.log +3 -2
- package/CHANGELOG.md +6 -0
- package/dist/index.d.mts +1 -7
- package/dist/index.d.ts +1 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/input/PhoneNumberInput.tsx +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vygruppen/spor-react",
|
3
|
-
"version": "12.5.
|
3
|
+
"version": "12.5.2",
|
4
4
|
"exports": {
|
5
5
|
".": {
|
6
6
|
"types": "./dist/index.d.ts",
|
@@ -66,8 +66,8 @@
|
|
66
66
|
"vitest": "^0.26.3",
|
67
67
|
"vitest-axe": "^0.1.0",
|
68
68
|
"vitest-canvas-mock": "^0.2.2",
|
69
|
-
"@vygruppen/
|
70
|
-
"@vygruppen/
|
69
|
+
"@vygruppen/eslint-config": "1.1.1",
|
70
|
+
"@vygruppen/tsconfig": "0.1.0"
|
71
71
|
},
|
72
72
|
"peerDependencies": {
|
73
73
|
"react": ">=18.0.0 <19.0.0",
|
@@ -11,7 +11,7 @@ export type CountryCodeAndPhoneNumber = {
|
|
11
11
|
nationalNumber: string;
|
12
12
|
};
|
13
13
|
|
14
|
-
type PhoneNumberInputProps = InputProps & {
|
14
|
+
type PhoneNumberInputProps = Omit<InputProps, "value"> & {
|
15
15
|
/** The label. Defaults to a localized version of "Phone number" */
|
16
16
|
label?: string;
|
17
17
|
/** Callback for when the country code or phone number changes */
|