@atzentis/auth-expo 0.1.0 → 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/CHANGELOG.md +42 -0
- package/dist/index.d.ts +967 -122
- package/dist/index.js +361 -448
- package/dist/index.js.map +1 -1
- package/package.json +26 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#10](https://github.com/atzentis/auth-sdk/pull/10) [`e122c25`](https://github.com/atzentis/auth-sdk/commit/e122c2577ba2212b96b9743de6727124417deb16) Thanks [@vassilibo](https://github.com/vassilibo)! - Fix form field labels that incorrectly used `*_PLACEHOLDER` localization keys as visible labels.
|
|
8
|
+
|
|
9
|
+
- Add dedicated label keys `PHONE_NUMBER` (auth) and `BACKUP_CODE` (two-factor) to `@atzentis/auth-locales`, with EN/DE/EL values.
|
|
10
|
+
- React: phone-login, signup, recover-account, and two-factor forms now render the proper label key instead of the placeholder key.
|
|
11
|
+
- Expo: signup, forgot-password, and magic-link screens now use the bare label key for the `label` prop while keeping the `*_PLACEHOLDER` key as the input `placeholder`.
|
|
12
|
+
|
|
13
|
+
No public API change. Visible labels are corrected; placeholder text is unchanged.
|
|
14
|
+
|
|
15
|
+
- [#10](https://github.com/atzentis/auth-sdk/pull/10) [`e7b5c17`](https://github.com/atzentis/auth-sdk/commit/e7b5c1730b9709c38530a6f705abaea3bc9151f0) Thanks [@vassilibo](https://github.com/vassilibo)! - Use an "Email or username" label for the sign-in identity field.
|
|
16
|
+
|
|
17
|
+
- Add `EMAIL_OR_USERNAME` key to `@atzentis/auth-locales` (EN/DE/EL).
|
|
18
|
+
- React `LoginForm` and Expo login screen now label the identity field with `EMAIL_OR_USERNAME` instead of `EMAIL` / `SIGN_IN_USERNAME_PLACEHOLDER`, since the field accepts either an email or a username.
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [[`e122c25`](https://github.com/atzentis/auth-sdk/commit/e122c2577ba2212b96b9743de6727124417deb16), [`e7b5c17`](https://github.com/atzentis/auth-sdk/commit/e7b5c1730b9709c38530a6f705abaea3bc9151f0), [`40ee53e`](https://github.com/atzentis/auth-sdk/commit/40ee53eb83c2259b149fab085370f3a4373be022)]:
|
|
21
|
+
- @atzentis/auth-locales@0.3.0
|
|
22
|
+
- @atzentis/auth-sdk@0.3.0
|
|
23
|
+
|
|
24
|
+
## 0.2.0
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- [`c98fda5`](https://github.com/atzentis/auth-sdk/commit/c98fda5d6b57b691a689e8cd51ccf0b46fd85eeb) Thanks [@vassilibo](https://github.com/vassilibo)! - Release v0.2.0 — route constants extraction, test stabilization, Better Auth 1.5 alignment
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies [[`2f86a4c`](https://github.com/atzentis/auth-sdk/commit/2f86a4c53d209c53f49c00281f6d116f11f5b762), [`c98fda5`](https://github.com/atzentis/auth-sdk/commit/c98fda5d6b57b691a689e8cd51ccf0b46fd85eeb), [`60cd7bb`](https://github.com/atzentis/auth-sdk/commit/60cd7bb6ae5decaea7c2b753f87c83a960c1e94f)]:
|
|
33
|
+
- @atzentis/auth-sdk@0.2.0
|
|
34
|
+
- @atzentis/auth-locales@0.2.0
|
|
35
|
+
|
|
36
|
+
## 0.1.1
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- [`1370133`](https://github.com/atzentis/atzentis-auth-sdk/commit/1370133228d81bc1ac5db2f2f1d6b97edf163fe8) Thanks [@vassilibo](https://github.com/vassilibo)! - Fix TypeScript type errors in TanStack Query hooks and form components. Added explicit type parameters to useQuery and useMutation to prevent never type inference. Fixed Checkbox type coercion in SignupForm and corrected test expectation for retryAfter milliseconds.
|
|
41
|
+
|
|
42
|
+
- Updated dependencies [[`1370133`](https://github.com/atzentis/atzentis-auth-sdk/commit/1370133228d81bc1ac5db2f2f1d6b97edf163fe8)]:
|
|
43
|
+
- @atzentis/auth-sdk@0.1.1
|
|
44
|
+
|
|
3
45
|
All notable changes to this project will be documented in this file.
|
|
4
46
|
|
|
5
47
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|