@input-kit/phone 0.2.2 → 0.3.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.
- package/README.md +8 -0
- package/dist/index.cjs +1180 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1135 -1
- package/dist/index.js.map +1 -1
- package/package.json +85 -75
package/README.md
CHANGED
|
@@ -2,8 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Headless React phone input with a complete world country-code dataset, searchable country selection, and `libphonenumber-js` powered formatting and validation.
|
|
4
4
|
|
|
5
|
+
Source, issues, and contributions: **[github.com/harshit-d3v/input-kit-phone](https://github.com/harshit-d3v/input-kit-phone)**
|
|
6
|
+
|
|
5
7
|
## Latest update
|
|
6
8
|
|
|
9
|
+
**0.3.0** — auto-detect respects manual country selection, metadata-based length validation (no more false `too_long` in variable-length countries), input capped at the country's maximum length, `isPhoneTooLong()`, SSR-safe caret handling, dropdown `Home`/`End` + search→list keyboard navigation, unminified published output.
|
|
10
|
+
|
|
7
11
|
**0.2.2** — npm README cleanup: release notes stay inline; removed pointers to repo-only markdown files.
|
|
8
12
|
|
|
9
13
|
**0.2.0** — structured validation (`ValidationReason`, `validatePhoneNumber`, `onValidationChange`), `parsePhoneValue`, `getCountryOptions()`, improved `PhoneInput` a11y (click-outside, listbox ARIA) and RTL tests.
|
|
@@ -137,6 +141,10 @@ bun run lint
|
|
|
137
141
|
|
|
138
142
|
Manual browser check: `test-demo/` (static HTML).
|
|
139
143
|
|
|
144
|
+
## Contributing
|
|
145
|
+
|
|
146
|
+
Bug reports, feature requests, and pull requests are welcome — see [CONTRIBUTING.md](https://github.com/harshit-d3v/input-kit-phone/blob/main/CONTRIBUTING.md). In short: open an issue with a minimal reproduction (include the exact phone number and country for formatting/validation bugs), and for PRs run `bun run test`, `bun run typecheck`, and `bun run lint` before submitting.
|
|
147
|
+
|
|
140
148
|
## Exports
|
|
141
149
|
|
|
142
150
|
### Components and hooks
|