@aws-amplify/ui-angular 2.4.25 → 3.0.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 +0 -3
- package/aws-amplify-ui-angular.d.ts +1 -27
- package/bundles/aws-amplify-ui-angular.umd.js +1560 -1473
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/esm2015/aws-amplify-ui-angular.js +1 -28
- package/esm2015/lib/components/authenticator/authenticator.module.js +81 -44
- package/esm2015/lib/components/authenticator/components/authenticator/authenticator.component.js +60 -36
- package/esm2015/lib/components/authenticator/components/base-form-fields/base-form-fields.component.js +20 -39
- package/esm2015/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.js +28 -27
- package/esm2015/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.js +25 -30
- package/esm2015/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.js +29 -36
- package/esm2015/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.js +27 -19
- package/esm2015/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.js +20 -17
- package/esm2015/lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component.js +17 -15
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.js +12 -7
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password.component.js +27 -19
- package/esm2015/lib/components/authenticator/components/form-field/form-field.component.js +20 -15
- package/esm2015/lib/components/authenticator/components/reset-password/reset-password.component.js +27 -19
- package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +27 -21
- package/esm2015/lib/components/authenticator/components/sign-in/sign-in.component.js +27 -23
- package/esm2015/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.js +12 -7
- package/esm2015/lib/components/authenticator/components/sign-up/sign-up.component.js +24 -16
- package/esm2015/lib/components/authenticator/components/verify-user/verify-user.component.js +27 -20
- package/esm2015/lib/primitives/button/button.component.js +44 -22
- package/esm2015/lib/primitives/checkbox/checkbox.component.js +24 -15
- package/esm2015/lib/primitives/error/error.component.js +13 -7
- package/esm2015/lib/primitives/password-field/password-field.component.js +37 -21
- package/esm2015/lib/primitives/phone-number-field/phone-number-field.component.js +45 -25
- package/esm2015/lib/primitives/select/select.component.js +22 -14
- package/esm2015/lib/primitives/tab-item/tab-item.component.js +25 -15
- package/esm2015/lib/primitives/tabs/tabs.component.js +17 -11
- package/esm2015/lib/primitives/text-field/text-field.component.js +38 -22
- package/esm2015/lib/services/authenticator.service.js +9 -8
- package/esm2015/lib/services/custom-components.service.js +9 -7
- package/esm2015/lib/utilities/amplify-slot/amplify-slot.component.js +20 -16
- package/esm2015/lib/utilities/amplify-slot/amplify-slot.directive.js +13 -13
- package/fesm2015/aws-amplify-ui-angular.js +1035 -928
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/components/authenticator/authenticator.module.d.ts +33 -0
- package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +27 -24
- package/lib/components/authenticator/components/base-form-fields/base-form-fields.component.d.ts +3 -1
- package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +28 -30
- package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +27 -24
- package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +27 -29
- package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +27 -24
- package/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.d.ts +3 -0
- package/lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component.d.ts +3 -0
- package/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.d.ts +3 -0
- package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +27 -24
- package/lib/components/authenticator/components/form-field/form-field.component.d.ts +3 -0
- package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +27 -24
- package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +27 -24
- package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +27 -24
- package/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.d.ts +3 -0
- package/lib/components/authenticator/components/sign-up/sign-up.component.d.ts +27 -24
- package/lib/components/authenticator/components/verify-user/verify-user.component.d.ts +27 -24
- package/lib/primitives/button/button.component.d.ts +3 -0
- package/lib/primitives/checkbox/checkbox.component.d.ts +3 -0
- package/lib/primitives/error/error.component.d.ts +3 -0
- package/lib/primitives/password-field/password-field.component.d.ts +3 -0
- package/lib/primitives/phone-number-field/phone-number-field.component.d.ts +3 -0
- package/lib/primitives/select/select.component.d.ts +3 -0
- package/lib/primitives/tab-item/tab-item.component.d.ts +3 -0
- package/lib/primitives/tabs/tabs.component.d.ts +3 -0
- package/lib/primitives/text-field/text-field.component.d.ts +3 -0
- package/lib/services/authenticator.service.d.ts +39 -36
- package/lib/services/custom-components.service.d.ts +3 -0
- package/lib/utilities/amplify-slot/amplify-slot.component.d.ts +3 -0
- package/lib/utilities/amplify-slot/amplify-slot.directive.d.ts +3 -0
- package/package.json +3 -6
- package/aws-amplify-ui-angular.metadata.json +0 -1
- package/bundles/aws-amplify-ui-angular-legacy.umd.js +0 -2238
- package/bundles/aws-amplify-ui-angular-legacy.umd.js.map +0 -1
- package/bundles/aws-amplify-ui-angular-legacy.umd.min.js +0 -2
- package/bundles/aws-amplify-ui-angular-legacy.umd.min.js.map +0 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js +0 -2
- package/bundles/aws-amplify-ui-angular.umd.min.js.map +0 -1
- package/esm2015/legacy/aws-amplify-ui-angular-legacy.js +0 -6
- package/esm2015/legacy/index.js +0 -3
- package/esm2015/legacy/legacy-ui-angular.module.js +0 -53
- package/esm2015/legacy/proxies.js +0 -1839
- package/fesm2015/aws-amplify-ui-angular-legacy.js +0 -1846
- package/fesm2015/aws-amplify-ui-angular-legacy.js.map +0 -1
- package/legacy/aws-amplify-ui-angular-legacy.d.ts +0 -5
- package/legacy/aws-amplify-ui-angular-legacy.metadata.json +0 -1
- package/legacy/index.d.ts +0 -2
- package/legacy/legacy-ui-angular.module.d.ts +0 -2
- package/legacy/package.json +0 -11
- package/legacy/proxies.d.ts +0 -395
package/README.md
CHANGED
|
@@ -19,9 +19,6 @@ projects/ui-angular/
|
|
|
19
19
|
| | └── directives/
|
|
20
20
|
| | └── primitives/
|
|
21
21
|
| | └── services/
|
|
22
|
-
├── legacy/ # contains re-expors of legacy web components
|
|
23
|
-
│ └── src/
|
|
24
|
-
│ └── package.json # required by ng-packagr to setup secondary entry points
|
|
25
22
|
└── package.json # name: `@aws-amplify/ui-angular`, private: false
|
|
26
23
|
# contains dependencies that library needs (e.g. xstate)
|
|
27
24
|
|
|
@@ -1,31 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
|
+
/// <amd-module name="@aws-amplify/ui-angular" />
|
|
4
5
|
export * from './index';
|
|
5
|
-
export { AuthenticatorComponent as ɵb } from './lib/components/authenticator/components/authenticator/authenticator.component';
|
|
6
|
-
export { BaseFormFieldsComponent as ɵc } from './lib/components/authenticator/components/base-form-fields/base-form-fields.component';
|
|
7
|
-
export { ConfirmResetPasswordComponent as ɵf } from './lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component';
|
|
8
|
-
export { ConfirmSignInComponent as ɵg } from './lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component';
|
|
9
|
-
export { ConfirmSignUpComponent as ɵh } from './lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component';
|
|
10
|
-
export { ConfirmVerifyUserComponent as ɵi } from './lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component';
|
|
11
|
-
export { FederatedSignInButtonComponent as ɵk } from './lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component';
|
|
12
|
-
export { FederatedSignInComponent as ɵl } from './lib/components/authenticator/components/federated-sign-in/federated-sign-in.component';
|
|
13
|
-
export { ForceNewPasswordFormFieldsComponent as ɵn } from './lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component';
|
|
14
|
-
export { ForceNewPasswordComponent as ɵm } from './lib/components/authenticator/components/force-new-password/force-new-password.component';
|
|
15
|
-
export { FormFieldComponent as ɵo } from './lib/components/authenticator/components/form-field/form-field.component';
|
|
16
|
-
export { ResetPasswordComponent as ɵr } from './lib/components/authenticator/components/reset-password/reset-password.component';
|
|
17
|
-
export { SetupTotpComponent as ɵt } from './lib/components/authenticator/components/setup-totp/setup-totp.component';
|
|
18
|
-
export { SignInComponent as ɵu } from './lib/components/authenticator/components/sign-in/sign-in.component';
|
|
19
|
-
export { SignUpFormFieldsComponent as ɵw } from './lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component';
|
|
20
|
-
export { SignUpComponent as ɵv } from './lib/components/authenticator/components/sign-up/sign-up.component';
|
|
21
|
-
export { VerifyUserComponent as ɵba } from './lib/components/authenticator/components/verify-user/verify-user.component';
|
|
22
|
-
export { ButtonComponent as ɵd } from './lib/primitives/button/button.component';
|
|
23
|
-
export { CheckboxComponent as ɵe } from './lib/primitives/checkbox/checkbox.component';
|
|
24
|
-
export { ErrorComponent as ɵj } from './lib/primitives/error/error.component';
|
|
25
|
-
export { PasswordFieldComponent as ɵp } from './lib/primitives/password-field/password-field.component';
|
|
26
|
-
export { PhoneNumberFieldComponent as ɵq } from './lib/primitives/phone-number-field/phone-number-field.component';
|
|
27
|
-
export { SelectComponent as ɵs } from './lib/primitives/select/select.component';
|
|
28
|
-
export { TabItemComponent as ɵx } from './lib/primitives/tab-item/tab-item.component';
|
|
29
|
-
export { TabsComponent as ɵy } from './lib/primitives/tabs/tabs.component';
|
|
30
|
-
export { TextFieldComponent as ɵz } from './lib/primitives/text-field/text-field.component';
|
|
31
|
-
export { AmplifySlotComponent as ɵa } from './lib/utilities/amplify-slot/amplify-slot.component';
|