diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b9742c..60059d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.4.3 + +- feat: Add localization / text customization support for all components. + ```dart + // Use the `localization` parameter to customize the text of the UI components. + SupaEmailAuth( + localization: const SupaEmailAuthLocalization( + enterEmail: 'What\'s your email?', + enterPassword: 'Enter your password', + ), + onSignInComplete: _onSignInComplete, + onSignUpComplete: _onSignUpComplete, + ), + ``` + ## 0.4.2 - feat: Add `nativeGoogleAuthConfig` and `enableNativeAppleAuth` parameter to `SupaSocialsAuth` to support native Google and Apple auth. diff --git a/pubspec.yaml b/pubspec.yaml index 2db9e0a..548884f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,12 +1,12 @@ name: supabase_auth_ui description: UI library to implement auth forms using Supabase and Flutter -version: 0.4.2 +version: 0.4.3 homepage: https://supabase.com -repository: "https://github.com/supabase-community/flutter-auth-ui" +repository: 'https://github.com/supabase-community/flutter-auth-ui' environment: - sdk: ">=3.0.0 <4.0.0" - flutter: ">=3.0.0" + sdk: '>=3.0.0 <4.0.0' + flutter: '>=3.0.0' dependencies: flutter: