@ankhorage/zora 0.5.2 → 0.6.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/CHANGELOG.md +12 -0
- package/README.md +267 -283
- package/dist/components/form/Form.d.ts +4 -0
- package/dist/components/form/Form.d.ts.map +1 -0
- package/dist/components/form/Form.js +27 -0
- package/dist/components/form/Form.js.map +1 -0
- package/dist/components/form/FormActions.d.ts +4 -0
- package/dist/components/form/FormActions.d.ts.map +1 -0
- package/dist/components/form/FormActions.js +12 -0
- package/dist/components/form/FormActions.js.map +1 -0
- package/dist/components/form/FormError.d.ts +4 -0
- package/dist/components/form/FormError.d.ts.map +1 -0
- package/dist/components/form/FormError.js +14 -0
- package/dist/components/form/FormError.js.map +1 -0
- package/dist/components/form/FormField.d.ts +4 -0
- package/dist/components/form/FormField.d.ts.map +1 -0
- package/dist/components/form/FormField.js +74 -0
- package/dist/components/form/FormField.js.map +1 -0
- package/dist/components/form/index.d.ts +8 -0
- package/dist/components/form/index.d.ts.map +1 -0
- package/dist/components/form/index.js +7 -0
- package/dist/components/form/index.js.map +1 -0
- package/dist/components/form/types.d.ts +107 -0
- package/dist/components/form/types.d.ts.map +1 -0
- package/dist/components/form/types.js +2 -0
- package/dist/components/form/types.js.map +1 -0
- package/dist/components/form/useFormController.d.ts +3 -0
- package/dist/components/form/useFormController.d.ts.map +1 -0
- package/dist/components/form/useFormController.js +62 -0
- package/dist/components/form/useFormController.js.map +1 -0
- package/dist/components/form/validation.d.ts +6 -0
- package/dist/components/form/validation.d.ts.map +1 -0
- package/dist/components/form/validation.js +52 -0
- package/dist/components/form/validation.js.map +1 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/patterns/auth/ForgotPasswordForm.d.ts +4 -0
- package/dist/patterns/auth/ForgotPasswordForm.d.ts.map +1 -0
- package/dist/patterns/auth/ForgotPasswordForm.js +31 -0
- package/dist/patterns/auth/ForgotPasswordForm.js.map +1 -0
- package/dist/patterns/auth/OtpForm.d.ts +4 -0
- package/dist/patterns/auth/OtpForm.d.ts.map +1 -0
- package/dist/patterns/auth/OtpForm.js +30 -0
- package/dist/patterns/auth/OtpForm.js.map +1 -0
- package/dist/patterns/auth/SignInForm.d.ts +4 -0
- package/dist/patterns/auth/SignInForm.d.ts.map +1 -0
- package/dist/patterns/auth/SignInForm.js +45 -0
- package/dist/patterns/auth/SignInForm.js.map +1 -0
- package/dist/patterns/auth/SignUpForm.d.ts +4 -0
- package/dist/patterns/auth/SignUpForm.d.ts.map +1 -0
- package/dist/patterns/auth/SignUpForm.js +37 -0
- package/dist/patterns/auth/SignUpForm.js.map +1 -0
- package/dist/patterns/auth/index.d.ts +6 -0
- package/dist/patterns/auth/index.d.ts.map +1 -0
- package/dist/patterns/auth/index.js +5 -0
- package/dist/patterns/auth/index.js.map +1 -0
- package/dist/patterns/auth/types.d.ts +57 -0
- package/dist/patterns/auth/types.d.ts.map +1 -0
- package/dist/patterns/auth/types.js +2 -0
- package/dist/patterns/auth/types.js.map +1 -0
- package/dist/patterns/auth/utils.d.ts +8 -0
- package/dist/patterns/auth/utils.d.ts.map +1 -0
- package/dist/patterns/auth/utils.js +51 -0
- package/dist/patterns/auth/utils.js.map +1 -0
- package/package.json +2 -2
- package/src/components/form/Form.tsx +61 -0
- package/src/components/form/FormActions.tsx +23 -0
- package/src/components/form/FormError.tsx +20 -0
- package/src/components/form/FormField.tsx +128 -0
- package/src/components/form/index.ts +24 -0
- package/src/components/form/types.ts +115 -0
- package/src/components/form/useFormController.ts +105 -0
- package/src/components/form/validation.test.ts +79 -0
- package/src/components/form/validation.ts +83 -0
- package/src/index.ts +43 -2
- package/src/patterns/auth/ForgotPasswordForm.tsx +84 -0
- package/src/patterns/auth/OtpForm.tsx +80 -0
- package/src/patterns/auth/SignInForm.tsx +111 -0
- package/src/patterns/auth/SignUpForm.tsx +76 -0
- package/src/patterns/auth/index.ts +17 -0
- package/src/patterns/auth/types.ts +67 -0
- package/src/patterns/auth/utils.ts +80 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ab9fc54: Add provider-agnostic form primitives and auth form patterns for sign-in, sign-up, password reset, and OTP flows.
|
|
8
|
+
|
|
9
|
+
## 0.5.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- bbc43fd: update @ankhorage/surface
|
|
14
|
+
|
|
3
15
|
## 0.5.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|