@aws-amplify/ui-angular 2.0.8 → 2.0.12
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 +1 -1
- package/aws-amplify-ui-angular.d.ts +15 -14
- package/aws-amplify-ui-angular.metadata.json +1 -1
- package/bundles/aws-amplify-ui-angular-legacy.umd.js.map +1 -1
- package/bundles/aws-amplify-ui-angular-legacy.umd.min.js.map +1 -1
- package/bundles/aws-amplify-ui-angular.umd.js +64 -32
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js.map +1 -1
- package/esm2015/aws-amplify-ui-angular.js +16 -15
- package/esm2015/lib/components/authenticator/authenticator.module.js +4 -1
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.js +30 -0
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password.component.js +2 -2
- package/esm2015/lib/components/authenticator/components/form-field/form-field.component.js +1 -6
- package/esm2015/lib/components/authenticator/components/index.js +2 -1
- package/esm2015/lib/services/authenticator.service.js +19 -14
- package/fesm2015/aws-amplify-ui-angular.js +49 -20
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.d.ts +8 -0
- package/lib/components/authenticator/components/index.d.ts +1 -0
- package/lib/services/authenticator.service.d.ts +2 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -9,22 +9,23 @@ export { ConfirmSignUpComponent as ɵg } from './lib/components/authenticator/co
|
|
|
9
9
|
export { ConfirmVerifyUserComponent as ɵh } from './lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component';
|
|
10
10
|
export { FederatedSignInButtonComponent as ɵj } from './lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component';
|
|
11
11
|
export { FederatedSignInComponent as ɵk } from './lib/components/authenticator/components/federated-sign-in/federated-sign-in.component';
|
|
12
|
+
export { ForceNewPasswordFormFieldsComponent as ɵm } from './lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component';
|
|
12
13
|
export { ForceNewPasswordComponent as ɵl } from './lib/components/authenticator/components/force-new-password/force-new-password.component';
|
|
13
|
-
export { FormFieldComponent as
|
|
14
|
-
export { ResetPasswordComponent as
|
|
15
|
-
export { SetupTotpComponent as
|
|
16
|
-
export { SignInComponent as
|
|
17
|
-
export { SignUpFormFieldsComponent as
|
|
18
|
-
export { SignUpComponent as
|
|
19
|
-
export { UserNameAliasComponent as
|
|
20
|
-
export { VerifyUserComponent as
|
|
14
|
+
export { FormFieldComponent as ɵn } from './lib/components/authenticator/components/form-field/form-field.component';
|
|
15
|
+
export { ResetPasswordComponent as ɵq } from './lib/components/authenticator/components/reset-password/reset-password.component';
|
|
16
|
+
export { SetupTotpComponent as ɵs } from './lib/components/authenticator/components/setup-totp/setup-totp.component';
|
|
17
|
+
export { SignInComponent as ɵt } from './lib/components/authenticator/components/sign-in/sign-in.component';
|
|
18
|
+
export { SignUpFormFieldsComponent as ɵv } from './lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component';
|
|
19
|
+
export { SignUpComponent as ɵu } from './lib/components/authenticator/components/sign-up/sign-up.component';
|
|
20
|
+
export { UserNameAliasComponent as ɵz } from './lib/components/authenticator/components/user-name-alias/user-name-alias.component';
|
|
21
|
+
export { VerifyUserComponent as ɵba } from './lib/components/authenticator/components/verify-user/verify-user.component';
|
|
21
22
|
export { ButtonComponent as ɵc } from './lib/primitives/button/button.component';
|
|
22
23
|
export { CheckboxComponent as ɵd } from './lib/primitives/checkbox/checkbox.component';
|
|
23
24
|
export { ErrorComponent as ɵi } from './lib/primitives/error/error.component';
|
|
24
|
-
export { PasswordFieldComponent as
|
|
25
|
-
export { PhoneNumberFieldComponent as
|
|
26
|
-
export { SelectComponent as
|
|
27
|
-
export { TabItemComponent as
|
|
28
|
-
export { TabsComponent as
|
|
29
|
-
export { TextFieldComponent as
|
|
25
|
+
export { PasswordFieldComponent as ɵo } from './lib/primitives/password-field/password-field.component';
|
|
26
|
+
export { PhoneNumberFieldComponent as ɵp } from './lib/primitives/phone-number-field/phone-number-field.component';
|
|
27
|
+
export { SelectComponent as ɵr } from './lib/primitives/select/select.component';
|
|
28
|
+
export { TabItemComponent as ɵw } from './lib/primitives/tab-item/tab-item.component';
|
|
29
|
+
export { TabsComponent as ɵx } from './lib/primitives/tabs/tabs.component';
|
|
30
|
+
export { TextFieldComponent as ɵy } from './lib/primitives/text-field/text-field.component';
|
|
30
31
|
export { AmplifySlotComponent as ɵa } from './lib/utilities/amplify-slot/amplify-slot.component';
|