@aws-amplify/ui-angular 2.4.26 → 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.
Files changed (89) hide show
  1. package/README.md +0 -3
  2. package/aws-amplify-ui-angular.d.ts +1 -27
  3. package/bundles/aws-amplify-ui-angular.umd.js +1585 -1498
  4. package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
  5. package/esm2015/aws-amplify-ui-angular.js +1 -28
  6. package/esm2015/lib/components/authenticator/authenticator.module.js +81 -44
  7. package/esm2015/lib/components/authenticator/components/authenticator/authenticator.component.js +60 -36
  8. package/esm2015/lib/components/authenticator/components/base-form-fields/base-form-fields.component.js +20 -39
  9. package/esm2015/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.js +28 -27
  10. package/esm2015/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.js +25 -30
  11. package/esm2015/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.js +29 -36
  12. package/esm2015/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.js +27 -19
  13. package/esm2015/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.js +20 -17
  14. package/esm2015/lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component.js +17 -15
  15. package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.js +12 -7
  16. package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password.component.js +27 -19
  17. package/esm2015/lib/components/authenticator/components/form-field/form-field.component.js +20 -15
  18. package/esm2015/lib/components/authenticator/components/reset-password/reset-password.component.js +27 -19
  19. package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +27 -21
  20. package/esm2015/lib/components/authenticator/components/sign-in/sign-in.component.js +27 -23
  21. package/esm2015/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.js +12 -7
  22. package/esm2015/lib/components/authenticator/components/sign-up/sign-up.component.js +24 -16
  23. package/esm2015/lib/components/authenticator/components/verify-user/verify-user.component.js +27 -20
  24. package/esm2015/lib/primitives/button/button.component.js +44 -22
  25. package/esm2015/lib/primitives/checkbox/checkbox.component.js +24 -15
  26. package/esm2015/lib/primitives/error/error.component.js +13 -7
  27. package/esm2015/lib/primitives/password-field/password-field.component.js +37 -21
  28. package/esm2015/lib/primitives/phone-number-field/phone-number-field.component.js +45 -25
  29. package/esm2015/lib/primitives/select/select.component.js +22 -14
  30. package/esm2015/lib/primitives/tab-item/tab-item.component.js +25 -15
  31. package/esm2015/lib/primitives/tabs/tabs.component.js +17 -11
  32. package/esm2015/lib/primitives/text-field/text-field.component.js +38 -22
  33. package/esm2015/lib/services/authenticator.service.js +9 -8
  34. package/esm2015/lib/services/custom-components.service.js +9 -7
  35. package/esm2015/lib/utilities/amplify-slot/amplify-slot.component.js +20 -16
  36. package/esm2015/lib/utilities/amplify-slot/amplify-slot.directive.js +13 -13
  37. package/fesm2015/aws-amplify-ui-angular.js +1035 -928
  38. package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
  39. package/lib/components/authenticator/authenticator.module.d.ts +33 -0
  40. package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +27 -24
  41. package/lib/components/authenticator/components/base-form-fields/base-form-fields.component.d.ts +3 -1
  42. package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +28 -30
  43. package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +27 -24
  44. package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +27 -29
  45. package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +27 -24
  46. package/lib/components/authenticator/components/federated-sign-in/federated-sign-in.component.d.ts +3 -0
  47. package/lib/components/authenticator/components/federated-sign-in-button/federated-sign-in-button.component.d.ts +3 -0
  48. package/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.d.ts +3 -0
  49. package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +27 -24
  50. package/lib/components/authenticator/components/form-field/form-field.component.d.ts +3 -0
  51. package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +27 -24
  52. package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +27 -24
  53. package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +27 -24
  54. package/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.d.ts +3 -0
  55. package/lib/components/authenticator/components/sign-up/sign-up.component.d.ts +27 -24
  56. package/lib/components/authenticator/components/verify-user/verify-user.component.d.ts +27 -24
  57. package/lib/primitives/button/button.component.d.ts +3 -0
  58. package/lib/primitives/checkbox/checkbox.component.d.ts +3 -0
  59. package/lib/primitives/error/error.component.d.ts +3 -0
  60. package/lib/primitives/password-field/password-field.component.d.ts +3 -0
  61. package/lib/primitives/phone-number-field/phone-number-field.component.d.ts +3 -0
  62. package/lib/primitives/select/select.component.d.ts +3 -0
  63. package/lib/primitives/tab-item/tab-item.component.d.ts +3 -0
  64. package/lib/primitives/tabs/tabs.component.d.ts +3 -0
  65. package/lib/primitives/text-field/text-field.component.d.ts +3 -0
  66. package/lib/services/authenticator.service.d.ts +39 -36
  67. package/lib/services/custom-components.service.d.ts +3 -0
  68. package/lib/utilities/amplify-slot/amplify-slot.component.d.ts +3 -0
  69. package/lib/utilities/amplify-slot/amplify-slot.directive.d.ts +3 -0
  70. package/package.json +3 -6
  71. package/aws-amplify-ui-angular.metadata.json +0 -1
  72. package/bundles/aws-amplify-ui-angular-legacy.umd.js +0 -2238
  73. package/bundles/aws-amplify-ui-angular-legacy.umd.js.map +0 -1
  74. package/bundles/aws-amplify-ui-angular-legacy.umd.min.js +0 -2
  75. package/bundles/aws-amplify-ui-angular-legacy.umd.min.js.map +0 -1
  76. package/bundles/aws-amplify-ui-angular.umd.min.js +0 -2
  77. package/bundles/aws-amplify-ui-angular.umd.min.js.map +0 -1
  78. package/esm2015/legacy/aws-amplify-ui-angular-legacy.js +0 -6
  79. package/esm2015/legacy/index.js +0 -3
  80. package/esm2015/legacy/legacy-ui-angular.module.js +0 -53
  81. package/esm2015/legacy/proxies.js +0 -1839
  82. package/fesm2015/aws-amplify-ui-angular-legacy.js +0 -1846
  83. package/fesm2015/aws-amplify-ui-angular-legacy.js.map +0 -1
  84. package/legacy/aws-amplify-ui-angular-legacy.d.ts +0 -5
  85. package/legacy/aws-amplify-ui-angular-legacy.metadata.json +0 -1
  86. package/legacy/index.d.ts +0 -2
  87. package/legacy/legacy-ui-angular.module.d.ts +0 -2
  88. package/legacy/package.json +0 -11
  89. package/legacy/proxies.d.ts +0 -395
@@ -1,395 +0,0 @@
1
- import { ChangeDetectorRef, ElementRef, EventEmitter, NgZone } from '@angular/core';
2
- export declare const proxyInputs: (Cmp: any, inputs: string[]) => void;
3
- export declare const proxyMethods: (Cmp: any, methods: string[]) => void;
4
- export declare const proxyOutputs: (instance: any, el: any, events: string[]) => void;
5
- export declare function ProxyCmp(opts: {
6
- inputs?: any;
7
- methods?: any;
8
- }): (cls: any) => any;
9
- import { Components } from '@aws-amplify/ui-components';
10
- export declare interface AmplifyAmazonButton extends Components.AmplifyAmazonButton {
11
- }
12
- export declare class AmplifyAmazonButton {
13
- protected z: NgZone;
14
- protected el: HTMLElement;
15
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
16
- }
17
- export declare interface AmplifyAuthContainer extends Components.AmplifyAuthContainer {
18
- }
19
- export declare class AmplifyAuthContainer {
20
- protected z: NgZone;
21
- protected el: HTMLElement;
22
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
23
- }
24
- export declare interface AmplifyAuthFields extends Components.AmplifyAuthFields {
25
- }
26
- export declare class AmplifyAuthFields {
27
- protected z: NgZone;
28
- protected el: HTMLElement;
29
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
30
- }
31
- export declare interface AmplifyAuth0Button extends Components.AmplifyAuth0Button {
32
- }
33
- export declare class AmplifyAuth0Button {
34
- protected z: NgZone;
35
- protected el: HTMLElement;
36
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
37
- }
38
- export declare interface AmplifyAuthenticator extends Components.AmplifyAuthenticator {
39
- }
40
- export declare class AmplifyAuthenticator {
41
- protected z: NgZone;
42
- protected el: HTMLElement;
43
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
44
- }
45
- export declare interface AmplifyButton extends Components.AmplifyButton {
46
- }
47
- export declare class AmplifyButton {
48
- protected z: NgZone;
49
- protected el: HTMLElement;
50
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
51
- }
52
- export declare interface AmplifyChatbot extends Components.AmplifyChatbot {
53
- }
54
- export declare class AmplifyChatbot {
55
- protected z: NgZone;
56
- chatCompleted: EventEmitter<CustomEvent>;
57
- protected el: HTMLElement;
58
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
59
- }
60
- export declare interface AmplifyCheckbox extends Components.AmplifyCheckbox {
61
- }
62
- export declare class AmplifyCheckbox {
63
- protected z: NgZone;
64
- protected el: HTMLElement;
65
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
66
- }
67
- export declare interface AmplifyCodeField extends Components.AmplifyCodeField {
68
- }
69
- export declare class AmplifyCodeField {
70
- protected z: NgZone;
71
- protected el: HTMLElement;
72
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
73
- }
74
- export declare interface AmplifyConfirmSignIn extends Components.AmplifyConfirmSignIn {
75
- }
76
- export declare class AmplifyConfirmSignIn {
77
- protected z: NgZone;
78
- protected el: HTMLElement;
79
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
80
- }
81
- export declare interface AmplifyConfirmSignUp extends Components.AmplifyConfirmSignUp {
82
- }
83
- export declare class AmplifyConfirmSignUp {
84
- protected z: NgZone;
85
- protected el: HTMLElement;
86
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
87
- }
88
- export declare interface AmplifyContainer extends Components.AmplifyContainer {
89
- }
90
- export declare class AmplifyContainer {
91
- protected z: NgZone;
92
- protected el: HTMLElement;
93
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
94
- }
95
- export declare interface AmplifyCountryDialCode extends Components.AmplifyCountryDialCode {
96
- }
97
- export declare class AmplifyCountryDialCode {
98
- protected z: NgZone;
99
- protected el: HTMLElement;
100
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
101
- }
102
- export declare interface AmplifyEmailField extends Components.AmplifyEmailField {
103
- }
104
- export declare class AmplifyEmailField {
105
- protected z: NgZone;
106
- protected el: HTMLElement;
107
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
108
- }
109
- export declare interface AmplifyFacebookButton extends Components.AmplifyFacebookButton {
110
- }
111
- export declare class AmplifyFacebookButton {
112
- protected z: NgZone;
113
- protected el: HTMLElement;
114
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
115
- }
116
- export declare interface AmplifyFederatedButtons extends Components.AmplifyFederatedButtons {
117
- }
118
- export declare class AmplifyFederatedButtons {
119
- protected z: NgZone;
120
- protected el: HTMLElement;
121
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
122
- }
123
- export declare interface AmplifyFederatedSignIn extends Components.AmplifyFederatedSignIn {
124
- }
125
- export declare class AmplifyFederatedSignIn {
126
- protected z: NgZone;
127
- protected el: HTMLElement;
128
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
129
- }
130
- export declare interface AmplifyForgotPassword extends Components.AmplifyForgotPassword {
131
- }
132
- export declare class AmplifyForgotPassword {
133
- protected z: NgZone;
134
- protected el: HTMLElement;
135
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
136
- }
137
- export declare interface AmplifyFormField extends Components.AmplifyFormField {
138
- }
139
- export declare class AmplifyFormField {
140
- protected z: NgZone;
141
- protected el: HTMLElement;
142
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
143
- }
144
- export declare interface AmplifyFormSection extends Components.AmplifyFormSection {
145
- }
146
- export declare class AmplifyFormSection {
147
- protected z: NgZone;
148
- protected el: HTMLElement;
149
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
150
- }
151
- export declare interface AmplifyGoogleButton extends Components.AmplifyGoogleButton {
152
- }
153
- export declare class AmplifyGoogleButton {
154
- protected z: NgZone;
155
- protected el: HTMLElement;
156
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
157
- }
158
- export declare interface AmplifyGreetings extends Components.AmplifyGreetings {
159
- }
160
- export declare class AmplifyGreetings {
161
- protected z: NgZone;
162
- protected el: HTMLElement;
163
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
164
- }
165
- export declare interface AmplifyHint extends Components.AmplifyHint {
166
- }
167
- export declare class AmplifyHint {
168
- protected z: NgZone;
169
- protected el: HTMLElement;
170
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
171
- }
172
- export declare interface AmplifyIcon extends Components.AmplifyIcon {
173
- }
174
- export declare class AmplifyIcon {
175
- protected z: NgZone;
176
- protected el: HTMLElement;
177
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
178
- }
179
- export declare interface AmplifyIconButton extends Components.AmplifyIconButton {
180
- }
181
- export declare class AmplifyIconButton {
182
- protected z: NgZone;
183
- protected el: HTMLElement;
184
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
185
- }
186
- export declare interface AmplifyInput extends Components.AmplifyInput {
187
- }
188
- export declare class AmplifyInput {
189
- protected z: NgZone;
190
- protected el: HTMLElement;
191
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
192
- }
193
- export declare interface AmplifyLabel extends Components.AmplifyLabel {
194
- }
195
- export declare class AmplifyLabel {
196
- protected z: NgZone;
197
- protected el: HTMLElement;
198
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
199
- }
200
- export declare interface AmplifyLink extends Components.AmplifyLink {
201
- }
202
- export declare class AmplifyLink {
203
- protected z: NgZone;
204
- protected el: HTMLElement;
205
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
206
- }
207
- export declare interface AmplifyLoadingSpinner extends Components.AmplifyLoadingSpinner {
208
- }
209
- export declare class AmplifyLoadingSpinner {
210
- protected z: NgZone;
211
- protected el: HTMLElement;
212
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
213
- }
214
- export declare interface AmplifyNav extends Components.AmplifyNav {
215
- }
216
- export declare class AmplifyNav {
217
- protected z: NgZone;
218
- protected el: HTMLElement;
219
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
220
- }
221
- export declare interface AmplifyOauthButton extends Components.AmplifyOauthButton {
222
- }
223
- export declare class AmplifyOauthButton {
224
- protected z: NgZone;
225
- protected el: HTMLElement;
226
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
227
- }
228
- export declare interface AmplifyPasswordField extends Components.AmplifyPasswordField {
229
- }
230
- export declare class AmplifyPasswordField {
231
- protected z: NgZone;
232
- protected el: HTMLElement;
233
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
234
- }
235
- export declare interface AmplifyPhoneField extends Components.AmplifyPhoneField {
236
- }
237
- export declare class AmplifyPhoneField {
238
- protected z: NgZone;
239
- protected el: HTMLElement;
240
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
241
- }
242
- export declare interface AmplifyPhotoPicker extends Components.AmplifyPhotoPicker {
243
- }
244
- export declare class AmplifyPhotoPicker {
245
- protected z: NgZone;
246
- protected el: HTMLElement;
247
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
248
- }
249
- export declare interface AmplifyPicker extends Components.AmplifyPicker {
250
- }
251
- export declare class AmplifyPicker {
252
- protected z: NgZone;
253
- protected el: HTMLElement;
254
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
255
- }
256
- export declare interface AmplifyRadioButton extends Components.AmplifyRadioButton {
257
- }
258
- export declare class AmplifyRadioButton {
259
- protected z: NgZone;
260
- protected el: HTMLElement;
261
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
262
- }
263
- export declare interface AmplifyRequireNewPassword extends Components.AmplifyRequireNewPassword {
264
- }
265
- export declare class AmplifyRequireNewPassword {
266
- protected z: NgZone;
267
- protected el: HTMLElement;
268
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
269
- }
270
- export declare interface AmplifyS3Album extends Components.AmplifyS3Album {
271
- }
272
- export declare class AmplifyS3Album {
273
- protected z: NgZone;
274
- protected el: HTMLElement;
275
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
276
- }
277
- export declare interface AmplifyS3Image extends Components.AmplifyS3Image {
278
- }
279
- export declare class AmplifyS3Image {
280
- protected z: NgZone;
281
- protected el: HTMLElement;
282
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
283
- }
284
- export declare interface AmplifyS3ImagePicker extends Components.AmplifyS3ImagePicker {
285
- }
286
- export declare class AmplifyS3ImagePicker {
287
- protected z: NgZone;
288
- protected el: HTMLElement;
289
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
290
- }
291
- export declare interface AmplifyS3Text extends Components.AmplifyS3Text {
292
- }
293
- export declare class AmplifyS3Text {
294
- protected z: NgZone;
295
- protected el: HTMLElement;
296
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
297
- }
298
- export declare interface AmplifyS3TextPicker extends Components.AmplifyS3TextPicker {
299
- }
300
- export declare class AmplifyS3TextPicker {
301
- protected z: NgZone;
302
- protected el: HTMLElement;
303
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
304
- }
305
- export declare interface AmplifySection extends Components.AmplifySection {
306
- }
307
- export declare class AmplifySection {
308
- protected z: NgZone;
309
- protected el: HTMLElement;
310
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
311
- }
312
- export declare interface AmplifySelect extends Components.AmplifySelect {
313
- }
314
- export declare class AmplifySelect {
315
- protected z: NgZone;
316
- protected el: HTMLElement;
317
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
318
- }
319
- export declare interface AmplifySelectMfaType extends Components.AmplifySelectMfaType {
320
- }
321
- export declare class AmplifySelectMfaType {
322
- protected z: NgZone;
323
- protected el: HTMLElement;
324
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
325
- }
326
- export declare interface AmplifySignIn extends Components.AmplifySignIn {
327
- }
328
- export declare class AmplifySignIn {
329
- protected z: NgZone;
330
- protected el: HTMLElement;
331
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
332
- }
333
- export declare interface AmplifySignInButton extends Components.AmplifySignInButton {
334
- }
335
- export declare class AmplifySignInButton {
336
- protected z: NgZone;
337
- protected el: HTMLElement;
338
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
339
- }
340
- export declare interface AmplifySignOut extends Components.AmplifySignOut {
341
- }
342
- export declare class AmplifySignOut {
343
- protected z: NgZone;
344
- protected el: HTMLElement;
345
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
346
- }
347
- export declare interface AmplifySignUp extends Components.AmplifySignUp {
348
- }
349
- export declare class AmplifySignUp {
350
- protected z: NgZone;
351
- protected el: HTMLElement;
352
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
353
- }
354
- export declare interface AmplifyStrike extends Components.AmplifyStrike {
355
- }
356
- export declare class AmplifyStrike {
357
- protected z: NgZone;
358
- protected el: HTMLElement;
359
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
360
- }
361
- export declare interface AmplifyToast extends Components.AmplifyToast {
362
- }
363
- export declare class AmplifyToast {
364
- protected z: NgZone;
365
- protected el: HTMLElement;
366
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
367
- }
368
- export declare interface AmplifyTooltip extends Components.AmplifyTooltip {
369
- }
370
- export declare class AmplifyTooltip {
371
- protected z: NgZone;
372
- protected el: HTMLElement;
373
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
374
- }
375
- export declare interface AmplifyTotpSetup extends Components.AmplifyTotpSetup {
376
- }
377
- export declare class AmplifyTotpSetup {
378
- protected z: NgZone;
379
- protected el: HTMLElement;
380
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
381
- }
382
- export declare interface AmplifyUsernameField extends Components.AmplifyUsernameField {
383
- }
384
- export declare class AmplifyUsernameField {
385
- protected z: NgZone;
386
- protected el: HTMLElement;
387
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
388
- }
389
- export declare interface AmplifyVerifyContact extends Components.AmplifyVerifyContact {
390
- }
391
- export declare class AmplifyVerifyContact {
392
- protected z: NgZone;
393
- protected el: HTMLElement;
394
- constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
395
- }