@aws-amplify/ui-angular 1.0.26-unstable.2 → 2.0.1-next.3

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 (80) hide show
  1. package/aws-amplify-ui-angular.d.ts +22 -0
  2. package/aws-amplify-ui-angular.metadata.json +1 -0
  3. package/bundles/aws-amplify-ui-angular.umd.js +3587 -0
  4. package/bundles/aws-amplify-ui-angular.umd.js.map +1 -0
  5. package/bundles/aws-amplify-ui-angular.umd.min.js +2 -0
  6. package/bundles/aws-amplify-ui-angular.umd.min.js.map +1 -0
  7. package/esm2015/aws-amplify-ui-angular.js +23 -0
  8. package/esm2015/index.js +12 -0
  9. package/esm2015/lib/common/helpers.js +3 -0
  10. package/esm2015/lib/common/index.js +3 -0
  11. package/esm2015/lib/common/types/auth-types.js +2 -0
  12. package/esm2015/lib/common/types/component-types.js +2 -0
  13. package/esm2015/lib/common/types/index.js +3 -0
  14. package/esm2015/lib/components/amplify-authenticator/amplify-authenticator.component.js +66 -0
  15. package/esm2015/lib/components/amplify-confirm-sign-in/amplify-confirm-sign-in.component.js +91 -0
  16. package/esm2015/lib/components/amplify-confirm-sign-up/amplify-confirm-sign-up.component.js +102 -0
  17. package/esm2015/lib/components/amplify-federated-sign-in/amplify-federated-sign-in.component.js +37 -0
  18. package/esm2015/lib/components/amplify-federated-sign-in-button/amplify-federated-sign-in-button.component.js +27 -0
  19. package/esm2015/lib/components/amplify-force-new-password/amplify-force-new-password.component.js +83 -0
  20. package/esm2015/lib/components/amplify-reset-password/amplify-reset-password.component.js +68 -0
  21. package/esm2015/lib/components/amplify-setup-totp/amplify-setup-totp.component.js +100 -0
  22. package/esm2015/lib/components/amplify-sign-in/amplify-sign-in.component.js +82 -0
  23. package/esm2015/lib/components/amplify-sign-up/amplify-sign-up.component.js +92 -0
  24. package/esm2015/lib/components/amplify-verify-user/amplify-verify-user.component.js +73 -0
  25. package/esm2015/lib/components/confirm-reset-password/amplify-confirm-reset-password.component.js +76 -0
  26. package/esm2015/lib/components/confirm-verify-user/amplify-confirm-verify-user.component.js +63 -0
  27. package/esm2015/lib/components/index.js +14 -0
  28. package/esm2015/lib/directives/amplify-override.directive.js +21 -0
  29. package/esm2015/lib/primitives/amplify-error/amplify-error.component.js +10 -0
  30. package/esm2015/lib/primitives/amplify-input/amplify-input.component.js +82 -0
  31. package/esm2015/lib/primitives/amplify-select/amplify-select.component.js +17 -0
  32. package/esm2015/lib/primitives/amplify-user-name-alias/amplify-user-name-alias.component.js +35 -0
  33. package/esm2015/lib/primitives/index.js +3 -0
  34. package/esm2015/lib/proxies.js +1839 -0
  35. package/esm2015/lib/services/authenticator-context.service.js +28 -0
  36. package/esm2015/lib/services/state-machine.service.js +46 -0
  37. package/esm2015/lib/ui-angular.module.js +91 -0
  38. package/fesm2015/aws-amplify-ui-angular.js +2989 -0
  39. package/fesm2015/aws-amplify-ui-angular.js.map +1 -0
  40. package/index.d.ts +8 -0
  41. package/lib/common/helpers.d.ts +2 -0
  42. package/lib/common/index.d.ts +2 -0
  43. package/lib/common/types/auth-types.d.ts +6 -0
  44. package/lib/common/types/component-types.d.ts +23 -0
  45. package/lib/common/types/index.d.ts +2 -0
  46. package/lib/components/amplify-authenticator/amplify-authenticator.component.d.ts +31 -0
  47. package/lib/components/amplify-confirm-sign-in/amplify-confirm-sign-in.component.d.ts +31 -0
  48. package/lib/components/amplify-confirm-sign-up/amplify-confirm-sign-up.component.d.ts +37 -0
  49. package/lib/components/amplify-federated-sign-in/amplify-federated-sign-in.component.d.ts +16 -0
  50. package/lib/components/amplify-federated-sign-in-button/amplify-federated-sign-in-button.component.d.ts +9 -0
  51. package/lib/components/amplify-force-new-password/amplify-force-new-password.component.d.ts +31 -0
  52. package/lib/components/amplify-reset-password/amplify-reset-password.component.d.ts +30 -0
  53. package/lib/components/amplify-setup-totp/amplify-setup-totp.component.d.ts +31 -0
  54. package/lib/components/amplify-sign-in/amplify-sign-in.component.d.ts +34 -0
  55. package/lib/components/amplify-sign-up/amplify-sign-up.component.d.ts +35 -0
  56. package/lib/components/amplify-verify-user/amplify-verify-user.component.d.ts +31 -0
  57. package/lib/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +34 -0
  58. package/lib/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +26 -0
  59. package/lib/components/index.d.ts +13 -0
  60. package/lib/directives/amplify-override.directive.d.ts +7 -0
  61. package/lib/primitives/amplify-error/amplify-error.component.d.ts +2 -0
  62. package/lib/primitives/amplify-input/amplify-input.component.d.ts +31 -0
  63. package/lib/primitives/amplify-select/amplify-select.component.d.ts +7 -0
  64. package/lib/primitives/amplify-user-name-alias/amplify-user-name-alias.component.d.ts +15 -0
  65. package/lib/primitives/index.d.ts +2 -0
  66. package/{dist/directives → lib}/proxies.d.ts +0 -0
  67. package/lib/services/authenticator-context.service.d.ts +10 -0
  68. package/lib/services/state-machine.service.d.ts +29 -0
  69. package/lib/ui-angular.module.d.ts +2 -0
  70. package/package.json +27 -49
  71. package/theme.css +99 -0
  72. package/CHANGELOG.md +0 -536
  73. package/LICENSE +0 -201
  74. package/README.md +0 -1
  75. package/dist/amplify-module.d.ts +0 -2
  76. package/dist/core.d.ts +0 -4
  77. package/dist/core.metadata.json +0 -1
  78. package/dist/fesm2015.js +0 -1532
  79. package/dist/fesm5.js +0 -1319
  80. package/dist/index.d.ts +0 -2
package/dist/fesm2015.js DELETED
@@ -1,1532 +0,0 @@
1
- import { __decorate, __metadata } from 'tslib';
2
- import { Component, ChangeDetectionStrategy, ChangeDetectorRef, ElementRef, NgZone, NgModule } from '@angular/core';
3
- import { fromEvent } from 'rxjs';
4
- import { defineCustomElements } from '@aws-amplify/ui-components/loader';
5
-
6
- /**
7
- * @fileoverview added by tsickle
8
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
9
- */
10
- /** @type {?} */
11
- const proxyInputs = (/**
12
- * @param {?} Cmp
13
- * @param {?} inputs
14
- * @return {?}
15
- */
16
- (Cmp, inputs) => {
17
- /** @type {?} */
18
- const Prototype = Cmp.prototype;
19
- inputs.forEach((/**
20
- * @param {?} item
21
- * @return {?}
22
- */
23
- item => {
24
- Object.defineProperty(Prototype, item, {
25
- /**
26
- * @return {?}
27
- */
28
- get() { return this.el[item]; },
29
- /**
30
- * @param {?} val
31
- * @return {?}
32
- */
33
- set(val) { this.z.runOutsideAngular((/**
34
- * @return {?}
35
- */
36
- () => (this.el[item] = val))); }
37
- });
38
- }));
39
- });
40
- /** @type {?} */
41
- const proxyMethods = (/**
42
- * @param {?} Cmp
43
- * @param {?} methods
44
- * @return {?}
45
- */
46
- (Cmp, methods) => {
47
- /** @type {?} */
48
- const Prototype = Cmp.prototype;
49
- methods.forEach((/**
50
- * @param {?} methodName
51
- * @return {?}
52
- */
53
- methodName => {
54
- Prototype[methodName] = (/**
55
- * @return {?}
56
- */
57
- function () {
58
- /** @type {?} */
59
- const args = arguments;
60
- return this.z.runOutsideAngular((/**
61
- * @return {?}
62
- */
63
- () => this.el[methodName].apply(this.el, args)));
64
- });
65
- }));
66
- });
67
- /** @type {?} */
68
- const proxyOutputs = (/**
69
- * @param {?} instance
70
- * @param {?} el
71
- * @param {?} events
72
- * @return {?}
73
- */
74
- (instance, el, events) => {
75
- events.forEach((/**
76
- * @param {?} eventName
77
- * @return {?}
78
- */
79
- eventName => instance[eventName] = fromEvent(el, eventName)));
80
- })
81
- // tslint:disable-next-line: only-arrow-functions
82
- ;
83
- // tslint:disable-next-line: only-arrow-functions
84
- /**
85
- * @param {?} opts
86
- * @return {?}
87
- */
88
- function ProxyCmp(opts) {
89
- /** @type {?} */
90
- const decorator = (/**
91
- * @param {?} cls
92
- * @return {?}
93
- */
94
- function (cls) {
95
- if (opts.inputs) {
96
- proxyInputs(cls, opts.inputs);
97
- }
98
- if (opts.methods) {
99
- proxyMethods(cls, opts.methods);
100
- }
101
- return cls;
102
- });
103
- return decorator;
104
- }
105
- let AmplifyAmazonButton = class AmplifyAmazonButton {
106
- /**
107
- * @param {?} c
108
- * @param {?} r
109
- * @param {?} z
110
- */
111
- constructor(c, r, z) {
112
- this.z = z;
113
- c.detach();
114
- this.el = r.nativeElement;
115
- }
116
- };
117
- AmplifyAmazonButton.decorators = [
118
- { type: Component, args: [{ selector: 'amplify-amazon-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['clientId', 'handleAuthStateChange'] },] },
119
- ];
120
- /** @nocollapse */
121
- AmplifyAmazonButton.ctorParameters = () => [
122
- { type: ChangeDetectorRef },
123
- { type: ElementRef },
124
- { type: NgZone }
125
- ];
126
- AmplifyAmazonButton = __decorate([
127
- ProxyCmp({ inputs: ['clientId', 'handleAuthStateChange'] }),
128
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
129
- ], AmplifyAmazonButton);
130
- class AmplifyAuthContainer {
131
- /**
132
- * @param {?} c
133
- * @param {?} r
134
- * @param {?} z
135
- */
136
- constructor(c, r, z) {
137
- this.z = z;
138
- c.detach();
139
- this.el = r.nativeElement;
140
- }
141
- }
142
- AmplifyAuthContainer.decorators = [
143
- { type: Component, args: [{ selector: 'amplify-auth-container', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>' },] },
144
- ];
145
- /** @nocollapse */
146
- AmplifyAuthContainer.ctorParameters = () => [
147
- { type: ChangeDetectorRef },
148
- { type: ElementRef },
149
- { type: NgZone }
150
- ];
151
- let AmplifyAuthFields = class AmplifyAuthFields {
152
- /**
153
- * @param {?} c
154
- * @param {?} r
155
- * @param {?} z
156
- */
157
- constructor(c, r, z) {
158
- this.z = z;
159
- c.detach();
160
- this.el = r.nativeElement;
161
- }
162
- };
163
- AmplifyAuthFields.decorators = [
164
- { type: Component, args: [{ selector: 'amplify-auth-fields', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['formFields'] },] },
165
- ];
166
- /** @nocollapse */
167
- AmplifyAuthFields.ctorParameters = () => [
168
- { type: ChangeDetectorRef },
169
- { type: ElementRef },
170
- { type: NgZone }
171
- ];
172
- AmplifyAuthFields = __decorate([
173
- ProxyCmp({ inputs: ['formFields'] }),
174
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
175
- ], AmplifyAuthFields);
176
- let AmplifyAuth0Button = class AmplifyAuth0Button {
177
- /**
178
- * @param {?} c
179
- * @param {?} r
180
- * @param {?} z
181
- */
182
- constructor(c, r, z) {
183
- this.z = z;
184
- c.detach();
185
- this.el = r.nativeElement;
186
- }
187
- };
188
- AmplifyAuth0Button.decorators = [
189
- { type: Component, args: [{ selector: 'amplify-auth0-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['config', 'handleAuthStateChange'] },] },
190
- ];
191
- /** @nocollapse */
192
- AmplifyAuth0Button.ctorParameters = () => [
193
- { type: ChangeDetectorRef },
194
- { type: ElementRef },
195
- { type: NgZone }
196
- ];
197
- AmplifyAuth0Button = __decorate([
198
- ProxyCmp({ inputs: ['config', 'handleAuthStateChange'] }),
199
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
200
- ], AmplifyAuth0Button);
201
- let AmplifyAuthenticator = class AmplifyAuthenticator {
202
- /**
203
- * @param {?} c
204
- * @param {?} r
205
- * @param {?} z
206
- */
207
- constructor(c, r, z) {
208
- this.z = z;
209
- c.detach();
210
- this.el = r.nativeElement;
211
- }
212
- };
213
- AmplifyAuthenticator.decorators = [
214
- { type: Component, args: [{ selector: 'amplify-authenticator', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['federated', 'handleAuthStateChange', 'hideToast', 'initialAuthState', 'usernameAlias'] },] },
215
- ];
216
- /** @nocollapse */
217
- AmplifyAuthenticator.ctorParameters = () => [
218
- { type: ChangeDetectorRef },
219
- { type: ElementRef },
220
- { type: NgZone }
221
- ];
222
- AmplifyAuthenticator = __decorate([
223
- ProxyCmp({ inputs: ['federated', 'handleAuthStateChange', 'hideToast', 'initialAuthState', 'usernameAlias'] }),
224
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
225
- ], AmplifyAuthenticator);
226
- let AmplifyButton = class AmplifyButton {
227
- /**
228
- * @param {?} c
229
- * @param {?} r
230
- * @param {?} z
231
- */
232
- constructor(c, r, z) {
233
- this.z = z;
234
- c.detach();
235
- this.el = r.nativeElement;
236
- }
237
- };
238
- AmplifyButton.decorators = [
239
- { type: Component, args: [{ selector: 'amplify-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['disabled', 'handleButtonClick', 'icon', 'type', 'variant'] },] },
240
- ];
241
- /** @nocollapse */
242
- AmplifyButton.ctorParameters = () => [
243
- { type: ChangeDetectorRef },
244
- { type: ElementRef },
245
- { type: NgZone }
246
- ];
247
- AmplifyButton = __decorate([
248
- ProxyCmp({ inputs: ['disabled', 'handleButtonClick', 'icon', 'type', 'variant'] }),
249
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
250
- ], AmplifyButton);
251
- let AmplifyChatbot = class AmplifyChatbot {
252
- /**
253
- * @param {?} c
254
- * @param {?} r
255
- * @param {?} z
256
- */
257
- constructor(c, r, z) {
258
- this.z = z;
259
- c.detach();
260
- this.el = r.nativeElement;
261
- proxyOutputs(this, this.el, ['chatCompleted']);
262
- }
263
- };
264
- AmplifyChatbot.decorators = [
265
- { type: Component, args: [{ selector: 'amplify-chatbot', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['botName', 'botTitle', 'clearOnComplete', 'conversationModeOn', 'silenceThreshold', 'silenceTime', 'textEnabled', 'voiceEnabled', 'welcomeMessage'] },] },
266
- ];
267
- /** @nocollapse */
268
- AmplifyChatbot.ctorParameters = () => [
269
- { type: ChangeDetectorRef },
270
- { type: ElementRef },
271
- { type: NgZone }
272
- ];
273
- AmplifyChatbot = __decorate([
274
- ProxyCmp({ inputs: ['botName', 'botTitle', 'clearOnComplete', 'conversationModeOn', 'silenceThreshold', 'silenceTime', 'textEnabled', 'voiceEnabled', 'welcomeMessage'] }),
275
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
276
- ], AmplifyChatbot);
277
- let AmplifyCheckbox = class AmplifyCheckbox {
278
- /**
279
- * @param {?} c
280
- * @param {?} r
281
- * @param {?} z
282
- */
283
- constructor(c, r, z) {
284
- this.z = z;
285
- c.detach();
286
- this.el = r.nativeElement;
287
- }
288
- };
289
- AmplifyCheckbox.decorators = [
290
- { type: Component, args: [{ selector: 'amplify-checkbox', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['checked', 'disabled', 'fieldId', 'label', 'name', 'value'] },] },
291
- ];
292
- /** @nocollapse */
293
- AmplifyCheckbox.ctorParameters = () => [
294
- { type: ChangeDetectorRef },
295
- { type: ElementRef },
296
- { type: NgZone }
297
- ];
298
- AmplifyCheckbox = __decorate([
299
- ProxyCmp({ inputs: ['checked', 'disabled', 'fieldId', 'label', 'name', 'value'] }),
300
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
301
- ], AmplifyCheckbox);
302
- let AmplifyCodeField = class AmplifyCodeField {
303
- /**
304
- * @param {?} c
305
- * @param {?} r
306
- * @param {?} z
307
- */
308
- constructor(c, r, z) {
309
- this.z = z;
310
- c.detach();
311
- this.el = r.nativeElement;
312
- }
313
- };
314
- AmplifyCodeField.decorators = [
315
- { type: Component, args: [{ selector: 'amplify-code-field', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] },] },
316
- ];
317
- /** @nocollapse */
318
- AmplifyCodeField.ctorParameters = () => [
319
- { type: ChangeDetectorRef },
320
- { type: ElementRef },
321
- { type: NgZone }
322
- ];
323
- AmplifyCodeField = __decorate([
324
- ProxyCmp({ inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] }),
325
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
326
- ], AmplifyCodeField);
327
- let AmplifyConfirmSignIn = class AmplifyConfirmSignIn {
328
- /**
329
- * @param {?} c
330
- * @param {?} r
331
- * @param {?} z
332
- */
333
- constructor(c, r, z) {
334
- this.z = z;
335
- c.detach();
336
- this.el = r.nativeElement;
337
- }
338
- };
339
- AmplifyConfirmSignIn.decorators = [
340
- { type: Component, args: [{ selector: 'amplify-confirm-sign-in', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'submitButtonText', 'user'] },] },
341
- ];
342
- /** @nocollapse */
343
- AmplifyConfirmSignIn.ctorParameters = () => [
344
- { type: ChangeDetectorRef },
345
- { type: ElementRef },
346
- { type: NgZone }
347
- ];
348
- AmplifyConfirmSignIn = __decorate([
349
- ProxyCmp({ inputs: ['formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'submitButtonText', 'user'] }),
350
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
351
- ], AmplifyConfirmSignIn);
352
- let AmplifyConfirmSignUp = class AmplifyConfirmSignUp {
353
- /**
354
- * @param {?} c
355
- * @param {?} r
356
- * @param {?} z
357
- */
358
- constructor(c, r, z) {
359
- this.z = z;
360
- c.detach();
361
- this.el = r.nativeElement;
362
- }
363
- };
364
- AmplifyConfirmSignUp.decorators = [
365
- { type: Component, args: [{ selector: 'amplify-confirm-sign-up', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'submitButtonText', 'user', 'usernameAlias'] },] },
366
- ];
367
- /** @nocollapse */
368
- AmplifyConfirmSignUp.ctorParameters = () => [
369
- { type: ChangeDetectorRef },
370
- { type: ElementRef },
371
- { type: NgZone }
372
- ];
373
- AmplifyConfirmSignUp = __decorate([
374
- ProxyCmp({ inputs: ['formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'submitButtonText', 'user', 'usernameAlias'] }),
375
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
376
- ], AmplifyConfirmSignUp);
377
- class AmplifyContainer {
378
- /**
379
- * @param {?} c
380
- * @param {?} r
381
- * @param {?} z
382
- */
383
- constructor(c, r, z) {
384
- this.z = z;
385
- c.detach();
386
- this.el = r.nativeElement;
387
- }
388
- }
389
- AmplifyContainer.decorators = [
390
- { type: Component, args: [{ selector: 'amplify-container', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>' },] },
391
- ];
392
- /** @nocollapse */
393
- AmplifyContainer.ctorParameters = () => [
394
- { type: ChangeDetectorRef },
395
- { type: ElementRef },
396
- { type: NgZone }
397
- ];
398
- let AmplifyCountryDialCode = class AmplifyCountryDialCode {
399
- /**
400
- * @param {?} c
401
- * @param {?} r
402
- * @param {?} z
403
- */
404
- constructor(c, r, z) {
405
- this.z = z;
406
- c.detach();
407
- this.el = r.nativeElement;
408
- }
409
- };
410
- AmplifyCountryDialCode.decorators = [
411
- { type: Component, args: [{ selector: 'amplify-country-dial-code', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['dialCode', 'fieldId', 'handleInputChange', 'options'] },] },
412
- ];
413
- /** @nocollapse */
414
- AmplifyCountryDialCode.ctorParameters = () => [
415
- { type: ChangeDetectorRef },
416
- { type: ElementRef },
417
- { type: NgZone }
418
- ];
419
- AmplifyCountryDialCode = __decorate([
420
- ProxyCmp({ inputs: ['dialCode', 'fieldId', 'handleInputChange', 'options'] }),
421
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
422
- ], AmplifyCountryDialCode);
423
- let AmplifyEmailField = class AmplifyEmailField {
424
- /**
425
- * @param {?} c
426
- * @param {?} r
427
- * @param {?} z
428
- */
429
- constructor(c, r, z) {
430
- this.z = z;
431
- c.detach();
432
- this.el = r.nativeElement;
433
- }
434
- };
435
- AmplifyEmailField.decorators = [
436
- { type: Component, args: [{ selector: 'amplify-email-field', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] },] },
437
- ];
438
- /** @nocollapse */
439
- AmplifyEmailField.ctorParameters = () => [
440
- { type: ChangeDetectorRef },
441
- { type: ElementRef },
442
- { type: NgZone }
443
- ];
444
- AmplifyEmailField = __decorate([
445
- ProxyCmp({ inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] }),
446
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
447
- ], AmplifyEmailField);
448
- let AmplifyFacebookButton = class AmplifyFacebookButton {
449
- /**
450
- * @param {?} c
451
- * @param {?} r
452
- * @param {?} z
453
- */
454
- constructor(c, r, z) {
455
- this.z = z;
456
- c.detach();
457
- this.el = r.nativeElement;
458
- }
459
- };
460
- AmplifyFacebookButton.decorators = [
461
- { type: Component, args: [{ selector: 'amplify-facebook-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['appId', 'handleAuthStateChange'] },] },
462
- ];
463
- /** @nocollapse */
464
- AmplifyFacebookButton.ctorParameters = () => [
465
- { type: ChangeDetectorRef },
466
- { type: ElementRef },
467
- { type: NgZone }
468
- ];
469
- AmplifyFacebookButton = __decorate([
470
- ProxyCmp({ inputs: ['appId', 'handleAuthStateChange'] }),
471
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
472
- ], AmplifyFacebookButton);
473
- let AmplifyFederatedButtons = class AmplifyFederatedButtons {
474
- /**
475
- * @param {?} c
476
- * @param {?} r
477
- * @param {?} z
478
- */
479
- constructor(c, r, z) {
480
- this.z = z;
481
- c.detach();
482
- this.el = r.nativeElement;
483
- }
484
- };
485
- AmplifyFederatedButtons.decorators = [
486
- { type: Component, args: [{ selector: 'amplify-federated-buttons', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['authState', 'federated', 'handleAuthStateChange'] },] },
487
- ];
488
- /** @nocollapse */
489
- AmplifyFederatedButtons.ctorParameters = () => [
490
- { type: ChangeDetectorRef },
491
- { type: ElementRef },
492
- { type: NgZone }
493
- ];
494
- AmplifyFederatedButtons = __decorate([
495
- ProxyCmp({ inputs: ['authState', 'federated', 'handleAuthStateChange'] }),
496
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
497
- ], AmplifyFederatedButtons);
498
- let AmplifyFederatedSignIn = class AmplifyFederatedSignIn {
499
- /**
500
- * @param {?} c
501
- * @param {?} r
502
- * @param {?} z
503
- */
504
- constructor(c, r, z) {
505
- this.z = z;
506
- c.detach();
507
- this.el = r.nativeElement;
508
- }
509
- };
510
- AmplifyFederatedSignIn.decorators = [
511
- { type: Component, args: [{ selector: 'amplify-federated-sign-in', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['authState', 'federated'] },] },
512
- ];
513
- /** @nocollapse */
514
- AmplifyFederatedSignIn.ctorParameters = () => [
515
- { type: ChangeDetectorRef },
516
- { type: ElementRef },
517
- { type: NgZone }
518
- ];
519
- AmplifyFederatedSignIn = __decorate([
520
- ProxyCmp({ inputs: ['authState', 'federated'] }),
521
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
522
- ], AmplifyFederatedSignIn);
523
- let AmplifyForgotPassword = class AmplifyForgotPassword {
524
- /**
525
- * @param {?} c
526
- * @param {?} r
527
- * @param {?} z
528
- */
529
- constructor(c, r, z) {
530
- this.z = z;
531
- c.detach();
532
- this.el = r.nativeElement;
533
- }
534
- };
535
- AmplifyForgotPassword.decorators = [
536
- { type: Component, args: [{ selector: 'amplify-forgot-password', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['formFields', 'handleAuthStateChange', 'handleSend', 'handleSubmit', 'headerText', 'sendButtonText', 'submitButtonText', 'usernameAlias'] },] },
537
- ];
538
- /** @nocollapse */
539
- AmplifyForgotPassword.ctorParameters = () => [
540
- { type: ChangeDetectorRef },
541
- { type: ElementRef },
542
- { type: NgZone }
543
- ];
544
- AmplifyForgotPassword = __decorate([
545
- ProxyCmp({ inputs: ['formFields', 'handleAuthStateChange', 'handleSend', 'handleSubmit', 'headerText', 'sendButtonText', 'submitButtonText', 'usernameAlias'] }),
546
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
547
- ], AmplifyForgotPassword);
548
- let AmplifyFormField = class AmplifyFormField {
549
- /**
550
- * @param {?} c
551
- * @param {?} r
552
- * @param {?} z
553
- */
554
- constructor(c, r, z) {
555
- this.z = z;
556
- c.detach();
557
- this.el = r.nativeElement;
558
- }
559
- };
560
- AmplifyFormField.decorators = [
561
- { type: Component, args: [{ selector: 'amplify-form-field', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['description', 'disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'name', 'placeholder', 'required', 'type', 'value'] },] },
562
- ];
563
- /** @nocollapse */
564
- AmplifyFormField.ctorParameters = () => [
565
- { type: ChangeDetectorRef },
566
- { type: ElementRef },
567
- { type: NgZone }
568
- ];
569
- AmplifyFormField = __decorate([
570
- ProxyCmp({ inputs: ['description', 'disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'name', 'placeholder', 'required', 'type', 'value'] }),
571
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
572
- ], AmplifyFormField);
573
- let AmplifyFormSection = class AmplifyFormSection {
574
- /**
575
- * @param {?} c
576
- * @param {?} r
577
- * @param {?} z
578
- */
579
- constructor(c, r, z) {
580
- this.z = z;
581
- c.detach();
582
- this.el = r.nativeElement;
583
- }
584
- };
585
- AmplifyFormSection.decorators = [
586
- { type: Component, args: [{ selector: 'amplify-form-section', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['handleSubmit', 'headerText', 'loading', 'secondaryFooterContent', 'submitButtonText', 'testDataPrefix'] },] },
587
- ];
588
- /** @nocollapse */
589
- AmplifyFormSection.ctorParameters = () => [
590
- { type: ChangeDetectorRef },
591
- { type: ElementRef },
592
- { type: NgZone }
593
- ];
594
- AmplifyFormSection = __decorate([
595
- ProxyCmp({ inputs: ['handleSubmit', 'headerText', 'loading', 'secondaryFooterContent', 'submitButtonText', 'testDataPrefix'] }),
596
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
597
- ], AmplifyFormSection);
598
- let AmplifyGoogleButton = class AmplifyGoogleButton {
599
- /**
600
- * @param {?} c
601
- * @param {?} r
602
- * @param {?} z
603
- */
604
- constructor(c, r, z) {
605
- this.z = z;
606
- c.detach();
607
- this.el = r.nativeElement;
608
- }
609
- };
610
- AmplifyGoogleButton.decorators = [
611
- { type: Component, args: [{ selector: 'amplify-google-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['clientId', 'handleAuthStateChange'] },] },
612
- ];
613
- /** @nocollapse */
614
- AmplifyGoogleButton.ctorParameters = () => [
615
- { type: ChangeDetectorRef },
616
- { type: ElementRef },
617
- { type: NgZone }
618
- ];
619
- AmplifyGoogleButton = __decorate([
620
- ProxyCmp({ inputs: ['clientId', 'handleAuthStateChange'] }),
621
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
622
- ], AmplifyGoogleButton);
623
- let AmplifyGreetings = class AmplifyGreetings {
624
- /**
625
- * @param {?} c
626
- * @param {?} r
627
- * @param {?} z
628
- */
629
- constructor(c, r, z) {
630
- this.z = z;
631
- c.detach();
632
- this.el = r.nativeElement;
633
- }
634
- };
635
- AmplifyGreetings.decorators = [
636
- { type: Component, args: [{ selector: 'amplify-greetings', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['handleAuthStateChange', 'logo', 'username'] },] },
637
- ];
638
- /** @nocollapse */
639
- AmplifyGreetings.ctorParameters = () => [
640
- { type: ChangeDetectorRef },
641
- { type: ElementRef },
642
- { type: NgZone }
643
- ];
644
- AmplifyGreetings = __decorate([
645
- ProxyCmp({ inputs: ['handleAuthStateChange', 'logo', 'username'] }),
646
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
647
- ], AmplifyGreetings);
648
- class AmplifyHint {
649
- /**
650
- * @param {?} c
651
- * @param {?} r
652
- * @param {?} z
653
- */
654
- constructor(c, r, z) {
655
- this.z = z;
656
- c.detach();
657
- this.el = r.nativeElement;
658
- }
659
- }
660
- AmplifyHint.decorators = [
661
- { type: Component, args: [{ selector: 'amplify-hint', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>' },] },
662
- ];
663
- /** @nocollapse */
664
- AmplifyHint.ctorParameters = () => [
665
- { type: ChangeDetectorRef },
666
- { type: ElementRef },
667
- { type: NgZone }
668
- ];
669
- let AmplifyIcon = class AmplifyIcon {
670
- /**
671
- * @param {?} c
672
- * @param {?} r
673
- * @param {?} z
674
- */
675
- constructor(c, r, z) {
676
- this.z = z;
677
- c.detach();
678
- this.el = r.nativeElement;
679
- }
680
- };
681
- AmplifyIcon.decorators = [
682
- { type: Component, args: [{ selector: 'amplify-icon', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['name'] },] },
683
- ];
684
- /** @nocollapse */
685
- AmplifyIcon.ctorParameters = () => [
686
- { type: ChangeDetectorRef },
687
- { type: ElementRef },
688
- { type: NgZone }
689
- ];
690
- AmplifyIcon = __decorate([
691
- ProxyCmp({ inputs: ['name'] }),
692
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
693
- ], AmplifyIcon);
694
- let AmplifyIconButton = class AmplifyIconButton {
695
- /**
696
- * @param {?} c
697
- * @param {?} r
698
- * @param {?} z
699
- */
700
- constructor(c, r, z) {
701
- this.z = z;
702
- c.detach();
703
- this.el = r.nativeElement;
704
- }
705
- };
706
- AmplifyIconButton.decorators = [
707
- { type: Component, args: [{ selector: 'amplify-icon-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['autoShowTooltip', 'name', 'tooltip'] },] },
708
- ];
709
- /** @nocollapse */
710
- AmplifyIconButton.ctorParameters = () => [
711
- { type: ChangeDetectorRef },
712
- { type: ElementRef },
713
- { type: NgZone }
714
- ];
715
- AmplifyIconButton = __decorate([
716
- ProxyCmp({ inputs: ['autoShowTooltip', 'name', 'tooltip'] }),
717
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
718
- ], AmplifyIconButton);
719
- let AmplifyInput = class AmplifyInput {
720
- /**
721
- * @param {?} c
722
- * @param {?} r
723
- * @param {?} z
724
- */
725
- constructor(c, r, z) {
726
- this.z = z;
727
- c.detach();
728
- this.el = r.nativeElement;
729
- }
730
- };
731
- AmplifyInput.decorators = [
732
- { type: Component, args: [{ selector: 'amplify-input', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['description', 'disabled', 'fieldId', 'handleInputChange', 'inputProps', 'name', 'placeholder', 'required', 'type', 'value'] },] },
733
- ];
734
- /** @nocollapse */
735
- AmplifyInput.ctorParameters = () => [
736
- { type: ChangeDetectorRef },
737
- { type: ElementRef },
738
- { type: NgZone }
739
- ];
740
- AmplifyInput = __decorate([
741
- ProxyCmp({ inputs: ['description', 'disabled', 'fieldId', 'handleInputChange', 'inputProps', 'name', 'placeholder', 'required', 'type', 'value'] }),
742
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
743
- ], AmplifyInput);
744
- let AmplifyLabel = class AmplifyLabel {
745
- /**
746
- * @param {?} c
747
- * @param {?} r
748
- * @param {?} z
749
- */
750
- constructor(c, r, z) {
751
- this.z = z;
752
- c.detach();
753
- this.el = r.nativeElement;
754
- }
755
- };
756
- AmplifyLabel.decorators = [
757
- { type: Component, args: [{ selector: 'amplify-label', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['htmlFor'] },] },
758
- ];
759
- /** @nocollapse */
760
- AmplifyLabel.ctorParameters = () => [
761
- { type: ChangeDetectorRef },
762
- { type: ElementRef },
763
- { type: NgZone }
764
- ];
765
- AmplifyLabel = __decorate([
766
- ProxyCmp({ inputs: ['htmlFor'] }),
767
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
768
- ], AmplifyLabel);
769
- let AmplifyLink = class AmplifyLink {
770
- /**
771
- * @param {?} c
772
- * @param {?} r
773
- * @param {?} z
774
- */
775
- constructor(c, r, z) {
776
- this.z = z;
777
- c.detach();
778
- this.el = r.nativeElement;
779
- }
780
- };
781
- AmplifyLink.decorators = [
782
- { type: Component, args: [{ selector: 'amplify-link', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['role'] },] },
783
- ];
784
- /** @nocollapse */
785
- AmplifyLink.ctorParameters = () => [
786
- { type: ChangeDetectorRef },
787
- { type: ElementRef },
788
- { type: NgZone }
789
- ];
790
- AmplifyLink = __decorate([
791
- ProxyCmp({ inputs: ['role'] }),
792
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
793
- ], AmplifyLink);
794
- class AmplifyLoadingSpinner {
795
- /**
796
- * @param {?} c
797
- * @param {?} r
798
- * @param {?} z
799
- */
800
- constructor(c, r, z) {
801
- this.z = z;
802
- c.detach();
803
- this.el = r.nativeElement;
804
- }
805
- }
806
- AmplifyLoadingSpinner.decorators = [
807
- { type: Component, args: [{ selector: 'amplify-loading-spinner', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>' },] },
808
- ];
809
- /** @nocollapse */
810
- AmplifyLoadingSpinner.ctorParameters = () => [
811
- { type: ChangeDetectorRef },
812
- { type: ElementRef },
813
- { type: NgZone }
814
- ];
815
- class AmplifyNav {
816
- /**
817
- * @param {?} c
818
- * @param {?} r
819
- * @param {?} z
820
- */
821
- constructor(c, r, z) {
822
- this.z = z;
823
- c.detach();
824
- this.el = r.nativeElement;
825
- }
826
- }
827
- AmplifyNav.decorators = [
828
- { type: Component, args: [{ selector: 'amplify-nav', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>' },] },
829
- ];
830
- /** @nocollapse */
831
- AmplifyNav.ctorParameters = () => [
832
- { type: ChangeDetectorRef },
833
- { type: ElementRef },
834
- { type: NgZone }
835
- ];
836
- let AmplifyOauthButton = class AmplifyOauthButton {
837
- /**
838
- * @param {?} c
839
- * @param {?} r
840
- * @param {?} z
841
- */
842
- constructor(c, r, z) {
843
- this.z = z;
844
- c.detach();
845
- this.el = r.nativeElement;
846
- }
847
- };
848
- AmplifyOauthButton.decorators = [
849
- { type: Component, args: [{ selector: 'amplify-oauth-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['config'] },] },
850
- ];
851
- /** @nocollapse */
852
- AmplifyOauthButton.ctorParameters = () => [
853
- { type: ChangeDetectorRef },
854
- { type: ElementRef },
855
- { type: NgZone }
856
- ];
857
- AmplifyOauthButton = __decorate([
858
- ProxyCmp({ inputs: ['config'] }),
859
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
860
- ], AmplifyOauthButton);
861
- let AmplifyPasswordField = class AmplifyPasswordField {
862
- /**
863
- * @param {?} c
864
- * @param {?} r
865
- * @param {?} z
866
- */
867
- constructor(c, r, z) {
868
- this.z = z;
869
- c.detach();
870
- this.el = r.nativeElement;
871
- }
872
- };
873
- AmplifyPasswordField.decorators = [
874
- { type: Component, args: [{ selector: 'amplify-password-field', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] },] },
875
- ];
876
- /** @nocollapse */
877
- AmplifyPasswordField.ctorParameters = () => [
878
- { type: ChangeDetectorRef },
879
- { type: ElementRef },
880
- { type: NgZone }
881
- ];
882
- AmplifyPasswordField = __decorate([
883
- ProxyCmp({ inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] }),
884
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
885
- ], AmplifyPasswordField);
886
- let AmplifyPhoneField = class AmplifyPhoneField {
887
- /**
888
- * @param {?} c
889
- * @param {?} r
890
- * @param {?} z
891
- */
892
- constructor(c, r, z) {
893
- this.z = z;
894
- c.detach();
895
- this.el = r.nativeElement;
896
- }
897
- };
898
- AmplifyPhoneField.decorators = [
899
- { type: Component, args: [{ selector: 'amplify-phone-field', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['dialCode', 'disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] },] },
900
- ];
901
- /** @nocollapse */
902
- AmplifyPhoneField.ctorParameters = () => [
903
- { type: ChangeDetectorRef },
904
- { type: ElementRef },
905
- { type: NgZone }
906
- ];
907
- AmplifyPhoneField = __decorate([
908
- ProxyCmp({ inputs: ['dialCode', 'disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] }),
909
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
910
- ], AmplifyPhoneField);
911
- let AmplifyPhotoPicker = class AmplifyPhotoPicker {
912
- /**
913
- * @param {?} c
914
- * @param {?} r
915
- * @param {?} z
916
- */
917
- constructor(c, r, z) {
918
- this.z = z;
919
- c.detach();
920
- this.el = r.nativeElement;
921
- }
922
- };
923
- AmplifyPhotoPicker.decorators = [
924
- { type: Component, args: [{ selector: 'amplify-photo-picker', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['buttonText', 'handleClick', 'headerHint', 'headerTitle', 'placeholderHint', 'previewSrc'] },] },
925
- ];
926
- /** @nocollapse */
927
- AmplifyPhotoPicker.ctorParameters = () => [
928
- { type: ChangeDetectorRef },
929
- { type: ElementRef },
930
- { type: NgZone }
931
- ];
932
- AmplifyPhotoPicker = __decorate([
933
- ProxyCmp({ inputs: ['buttonText', 'handleClick', 'headerHint', 'headerTitle', 'placeholderHint', 'previewSrc'] }),
934
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
935
- ], AmplifyPhotoPicker);
936
- let AmplifyPicker = class AmplifyPicker {
937
- /**
938
- * @param {?} c
939
- * @param {?} r
940
- * @param {?} z
941
- */
942
- constructor(c, r, z) {
943
- this.z = z;
944
- c.detach();
945
- this.el = r.nativeElement;
946
- }
947
- };
948
- AmplifyPicker.decorators = [
949
- { type: Component, args: [{ selector: 'amplify-picker', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['acceptValue', 'inputHandler', 'pickerText'] },] },
950
- ];
951
- /** @nocollapse */
952
- AmplifyPicker.ctorParameters = () => [
953
- { type: ChangeDetectorRef },
954
- { type: ElementRef },
955
- { type: NgZone }
956
- ];
957
- AmplifyPicker = __decorate([
958
- ProxyCmp({ inputs: ['acceptValue', 'inputHandler', 'pickerText'] }),
959
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
960
- ], AmplifyPicker);
961
- let AmplifyRadioButton = class AmplifyRadioButton {
962
- /**
963
- * @param {?} c
964
- * @param {?} r
965
- * @param {?} z
966
- */
967
- constructor(c, r, z) {
968
- this.z = z;
969
- c.detach();
970
- this.el = r.nativeElement;
971
- }
972
- };
973
- AmplifyRadioButton.decorators = [
974
- { type: Component, args: [{ selector: 'amplify-radio-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['checked', 'disabled', 'fieldId', 'handleInputChange', 'inputProps', 'label', 'name', 'placeholder', 'value'] },] },
975
- ];
976
- /** @nocollapse */
977
- AmplifyRadioButton.ctorParameters = () => [
978
- { type: ChangeDetectorRef },
979
- { type: ElementRef },
980
- { type: NgZone }
981
- ];
982
- AmplifyRadioButton = __decorate([
983
- ProxyCmp({ inputs: ['checked', 'disabled', 'fieldId', 'handleInputChange', 'inputProps', 'label', 'name', 'placeholder', 'value'] }),
984
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
985
- ], AmplifyRadioButton);
986
- let AmplifyRequireNewPassword = class AmplifyRequireNewPassword {
987
- /**
988
- * @param {?} c
989
- * @param {?} r
990
- * @param {?} z
991
- */
992
- constructor(c, r, z) {
993
- this.z = z;
994
- c.detach();
995
- this.el = r.nativeElement;
996
- }
997
- };
998
- AmplifyRequireNewPassword.decorators = [
999
- { type: Component, args: [{ selector: 'amplify-require-new-password', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'submitButtonText', 'user'] },] },
1000
- ];
1001
- /** @nocollapse */
1002
- AmplifyRequireNewPassword.ctorParameters = () => [
1003
- { type: ChangeDetectorRef },
1004
- { type: ElementRef },
1005
- { type: NgZone }
1006
- ];
1007
- AmplifyRequireNewPassword = __decorate([
1008
- ProxyCmp({ inputs: ['formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'submitButtonText', 'user'] }),
1009
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1010
- ], AmplifyRequireNewPassword);
1011
- let AmplifyS3Album = class AmplifyS3Album {
1012
- /**
1013
- * @param {?} c
1014
- * @param {?} r
1015
- * @param {?} z
1016
- */
1017
- constructor(c, r, z) {
1018
- this.z = z;
1019
- c.detach();
1020
- this.el = r.nativeElement;
1021
- }
1022
- };
1023
- AmplifyS3Album.decorators = [
1024
- { type: Component, args: [{ selector: 'amplify-s3-album', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['contentType', 'fileToKey', 'filter', 'handleOnError', 'handleOnLoad', 'identityId', 'level', 'path', 'picker', 'pickerText', 'sort', 'track'] },] },
1025
- ];
1026
- /** @nocollapse */
1027
- AmplifyS3Album.ctorParameters = () => [
1028
- { type: ChangeDetectorRef },
1029
- { type: ElementRef },
1030
- { type: NgZone }
1031
- ];
1032
- AmplifyS3Album = __decorate([
1033
- ProxyCmp({ inputs: ['contentType', 'fileToKey', 'filter', 'handleOnError', 'handleOnLoad', 'identityId', 'level', 'path', 'picker', 'pickerText', 'sort', 'track'] }),
1034
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1035
- ], AmplifyS3Album);
1036
- let AmplifyS3Image = class AmplifyS3Image {
1037
- /**
1038
- * @param {?} c
1039
- * @param {?} r
1040
- * @param {?} z
1041
- */
1042
- constructor(c, r, z) {
1043
- this.z = z;
1044
- c.detach();
1045
- this.el = r.nativeElement;
1046
- }
1047
- };
1048
- AmplifyS3Image.decorators = [
1049
- { type: Component, args: [{ selector: 'amplify-s3-image', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['alt', 'body', 'contentType', 'handleOnError', 'handleOnLoad', 'identityId', 'imgKey', 'imgProps', 'level', 'path', 'track'] },] },
1050
- ];
1051
- /** @nocollapse */
1052
- AmplifyS3Image.ctorParameters = () => [
1053
- { type: ChangeDetectorRef },
1054
- { type: ElementRef },
1055
- { type: NgZone }
1056
- ];
1057
- AmplifyS3Image = __decorate([
1058
- ProxyCmp({ inputs: ['alt', 'body', 'contentType', 'handleOnError', 'handleOnLoad', 'identityId', 'imgKey', 'imgProps', 'level', 'path', 'track'] }),
1059
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1060
- ], AmplifyS3Image);
1061
- let AmplifyS3ImagePicker = class AmplifyS3ImagePicker {
1062
- /**
1063
- * @param {?} c
1064
- * @param {?} r
1065
- * @param {?} z
1066
- */
1067
- constructor(c, r, z) {
1068
- this.z = z;
1069
- c.detach();
1070
- this.el = r.nativeElement;
1071
- }
1072
- };
1073
- AmplifyS3ImagePicker.decorators = [
1074
- { type: Component, args: [{ selector: 'amplify-s3-image-picker', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['buttonText', 'contentType', 'fileToKey', 'headerHint', 'headerTitle', 'identityId', 'level', 'path', 'placeholderHint', 'track'] },] },
1075
- ];
1076
- /** @nocollapse */
1077
- AmplifyS3ImagePicker.ctorParameters = () => [
1078
- { type: ChangeDetectorRef },
1079
- { type: ElementRef },
1080
- { type: NgZone }
1081
- ];
1082
- AmplifyS3ImagePicker = __decorate([
1083
- ProxyCmp({ inputs: ['buttonText', 'contentType', 'fileToKey', 'headerHint', 'headerTitle', 'identityId', 'level', 'path', 'placeholderHint', 'track'] }),
1084
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1085
- ], AmplifyS3ImagePicker);
1086
- let AmplifyS3Text = class AmplifyS3Text {
1087
- /**
1088
- * @param {?} c
1089
- * @param {?} r
1090
- * @param {?} z
1091
- */
1092
- constructor(c, r, z) {
1093
- this.z = z;
1094
- c.detach();
1095
- this.el = r.nativeElement;
1096
- }
1097
- };
1098
- AmplifyS3Text.decorators = [
1099
- { type: Component, args: [{ selector: 'amplify-s3-text', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['body', 'contentType', 'fallbackText', 'identityId', 'level', 'path', 'textKey', 'track'] },] },
1100
- ];
1101
- /** @nocollapse */
1102
- AmplifyS3Text.ctorParameters = () => [
1103
- { type: ChangeDetectorRef },
1104
- { type: ElementRef },
1105
- { type: NgZone }
1106
- ];
1107
- AmplifyS3Text = __decorate([
1108
- ProxyCmp({ inputs: ['body', 'contentType', 'fallbackText', 'identityId', 'level', 'path', 'textKey', 'track'] }),
1109
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1110
- ], AmplifyS3Text);
1111
- let AmplifyS3TextPicker = class AmplifyS3TextPicker {
1112
- /**
1113
- * @param {?} c
1114
- * @param {?} r
1115
- * @param {?} z
1116
- */
1117
- constructor(c, r, z) {
1118
- this.z = z;
1119
- c.detach();
1120
- this.el = r.nativeElement;
1121
- }
1122
- };
1123
- AmplifyS3TextPicker.decorators = [
1124
- { type: Component, args: [{ selector: 'amplify-s3-text-picker', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['contentType', 'fallbackText', 'fileToKey', 'identityId', 'level', 'path', 'track'] },] },
1125
- ];
1126
- /** @nocollapse */
1127
- AmplifyS3TextPicker.ctorParameters = () => [
1128
- { type: ChangeDetectorRef },
1129
- { type: ElementRef },
1130
- { type: NgZone }
1131
- ];
1132
- AmplifyS3TextPicker = __decorate([
1133
- ProxyCmp({ inputs: ['contentType', 'fallbackText', 'fileToKey', 'identityId', 'level', 'path', 'track'] }),
1134
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1135
- ], AmplifyS3TextPicker);
1136
- let AmplifySection = class AmplifySection {
1137
- /**
1138
- * @param {?} c
1139
- * @param {?} r
1140
- * @param {?} z
1141
- */
1142
- constructor(c, r, z) {
1143
- this.z = z;
1144
- c.detach();
1145
- this.el = r.nativeElement;
1146
- }
1147
- };
1148
- AmplifySection.decorators = [
1149
- { type: Component, args: [{ selector: 'amplify-section', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['role'] },] },
1150
- ];
1151
- /** @nocollapse */
1152
- AmplifySection.ctorParameters = () => [
1153
- { type: ChangeDetectorRef },
1154
- { type: ElementRef },
1155
- { type: NgZone }
1156
- ];
1157
- AmplifySection = __decorate([
1158
- ProxyCmp({ inputs: ['role'] }),
1159
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1160
- ], AmplifySection);
1161
- let AmplifySelect = class AmplifySelect {
1162
- /**
1163
- * @param {?} c
1164
- * @param {?} r
1165
- * @param {?} z
1166
- */
1167
- constructor(c, r, z) {
1168
- this.z = z;
1169
- c.detach();
1170
- this.el = r.nativeElement;
1171
- }
1172
- };
1173
- AmplifySelect.decorators = [
1174
- { type: Component, args: [{ selector: 'amplify-select', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['fieldId', 'handleInputChange', 'options', 'selected'] },] },
1175
- ];
1176
- /** @nocollapse */
1177
- AmplifySelect.ctorParameters = () => [
1178
- { type: ChangeDetectorRef },
1179
- { type: ElementRef },
1180
- { type: NgZone }
1181
- ];
1182
- AmplifySelect = __decorate([
1183
- ProxyCmp({ inputs: ['fieldId', 'handleInputChange', 'options', 'selected'] }),
1184
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1185
- ], AmplifySelect);
1186
- let AmplifySelectMfaType = class AmplifySelectMfaType {
1187
- /**
1188
- * @param {?} c
1189
- * @param {?} r
1190
- * @param {?} z
1191
- */
1192
- constructor(c, r, z) {
1193
- this.z = z;
1194
- c.detach();
1195
- this.el = r.nativeElement;
1196
- }
1197
- };
1198
- AmplifySelectMfaType.decorators = [
1199
- { type: Component, args: [{ selector: 'amplify-select-mfa-type', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['MFATypes', 'authData', 'handleSubmit'] },] },
1200
- ];
1201
- /** @nocollapse */
1202
- AmplifySelectMfaType.ctorParameters = () => [
1203
- { type: ChangeDetectorRef },
1204
- { type: ElementRef },
1205
- { type: NgZone }
1206
- ];
1207
- AmplifySelectMfaType = __decorate([
1208
- ProxyCmp({ inputs: ['MFATypes', 'authData', 'handleSubmit'] }),
1209
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1210
- ], AmplifySelectMfaType);
1211
- let AmplifySignIn = class AmplifySignIn {
1212
- /**
1213
- * @param {?} c
1214
- * @param {?} r
1215
- * @param {?} z
1216
- */
1217
- constructor(c, r, z) {
1218
- this.z = z;
1219
- c.detach();
1220
- this.el = r.nativeElement;
1221
- }
1222
- };
1223
- AmplifySignIn.decorators = [
1224
- { type: Component, args: [{ selector: 'amplify-sign-in', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['federated', 'formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'hideSignUp', 'submitButtonText', 'usernameAlias'] },] },
1225
- ];
1226
- /** @nocollapse */
1227
- AmplifySignIn.ctorParameters = () => [
1228
- { type: ChangeDetectorRef },
1229
- { type: ElementRef },
1230
- { type: NgZone }
1231
- ];
1232
- AmplifySignIn = __decorate([
1233
- ProxyCmp({ inputs: ['federated', 'formFields', 'handleAuthStateChange', 'handleSubmit', 'headerText', 'hideSignUp', 'submitButtonText', 'usernameAlias'] }),
1234
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1235
- ], AmplifySignIn);
1236
- let AmplifySignInButton = class AmplifySignInButton {
1237
- /**
1238
- * @param {?} c
1239
- * @param {?} r
1240
- * @param {?} z
1241
- */
1242
- constructor(c, r, z) {
1243
- this.z = z;
1244
- c.detach();
1245
- this.el = r.nativeElement;
1246
- }
1247
- };
1248
- AmplifySignInButton.decorators = [
1249
- { type: Component, args: [{ selector: 'amplify-sign-in-button', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['provider'] },] },
1250
- ];
1251
- /** @nocollapse */
1252
- AmplifySignInButton.ctorParameters = () => [
1253
- { type: ChangeDetectorRef },
1254
- { type: ElementRef },
1255
- { type: NgZone }
1256
- ];
1257
- AmplifySignInButton = __decorate([
1258
- ProxyCmp({ inputs: ['provider'] }),
1259
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1260
- ], AmplifySignInButton);
1261
- let AmplifySignOut = class AmplifySignOut {
1262
- /**
1263
- * @param {?} c
1264
- * @param {?} r
1265
- * @param {?} z
1266
- */
1267
- constructor(c, r, z) {
1268
- this.z = z;
1269
- c.detach();
1270
- this.el = r.nativeElement;
1271
- }
1272
- };
1273
- AmplifySignOut.decorators = [
1274
- { type: Component, args: [{ selector: 'amplify-sign-out', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['buttonText', 'handleAuthStateChange'] },] },
1275
- ];
1276
- /** @nocollapse */
1277
- AmplifySignOut.ctorParameters = () => [
1278
- { type: ChangeDetectorRef },
1279
- { type: ElementRef },
1280
- { type: NgZone }
1281
- ];
1282
- AmplifySignOut = __decorate([
1283
- ProxyCmp({ inputs: ['buttonText', 'handleAuthStateChange'] }),
1284
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1285
- ], AmplifySignOut);
1286
- let AmplifySignUp = class AmplifySignUp {
1287
- /**
1288
- * @param {?} c
1289
- * @param {?} r
1290
- * @param {?} z
1291
- */
1292
- constructor(c, r, z) {
1293
- this.z = z;
1294
- c.detach();
1295
- this.el = r.nativeElement;
1296
- }
1297
- };
1298
- AmplifySignUp.decorators = [
1299
- { type: Component, args: [{ selector: 'amplify-sign-up', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['formFields', 'handleAuthStateChange', 'handleSignUp', 'handleSubmit', 'haveAccountText', 'headerText', 'signInText', 'submitButtonText', 'usernameAlias', 'validationErrors'] },] },
1300
- ];
1301
- /** @nocollapse */
1302
- AmplifySignUp.ctorParameters = () => [
1303
- { type: ChangeDetectorRef },
1304
- { type: ElementRef },
1305
- { type: NgZone }
1306
- ];
1307
- AmplifySignUp = __decorate([
1308
- ProxyCmp({ inputs: ['formFields', 'handleAuthStateChange', 'handleSignUp', 'handleSubmit', 'haveAccountText', 'headerText', 'signInText', 'submitButtonText', 'usernameAlias', 'validationErrors'] }),
1309
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1310
- ], AmplifySignUp);
1311
- class AmplifyStrike {
1312
- /**
1313
- * @param {?} c
1314
- * @param {?} r
1315
- * @param {?} z
1316
- */
1317
- constructor(c, r, z) {
1318
- this.z = z;
1319
- c.detach();
1320
- this.el = r.nativeElement;
1321
- }
1322
- }
1323
- AmplifyStrike.decorators = [
1324
- { type: Component, args: [{ selector: 'amplify-strike', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>' },] },
1325
- ];
1326
- /** @nocollapse */
1327
- AmplifyStrike.ctorParameters = () => [
1328
- { type: ChangeDetectorRef },
1329
- { type: ElementRef },
1330
- { type: NgZone }
1331
- ];
1332
- let AmplifyToast = class AmplifyToast {
1333
- /**
1334
- * @param {?} c
1335
- * @param {?} r
1336
- * @param {?} z
1337
- */
1338
- constructor(c, r, z) {
1339
- this.z = z;
1340
- c.detach();
1341
- this.el = r.nativeElement;
1342
- }
1343
- };
1344
- AmplifyToast.decorators = [
1345
- { type: Component, args: [{ selector: 'amplify-toast', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['handleClose', 'message'] },] },
1346
- ];
1347
- /** @nocollapse */
1348
- AmplifyToast.ctorParameters = () => [
1349
- { type: ChangeDetectorRef },
1350
- { type: ElementRef },
1351
- { type: NgZone }
1352
- ];
1353
- AmplifyToast = __decorate([
1354
- ProxyCmp({ inputs: ['handleClose', 'message'] }),
1355
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1356
- ], AmplifyToast);
1357
- let AmplifyTooltip = class AmplifyTooltip {
1358
- /**
1359
- * @param {?} c
1360
- * @param {?} r
1361
- * @param {?} z
1362
- */
1363
- constructor(c, r, z) {
1364
- this.z = z;
1365
- c.detach();
1366
- this.el = r.nativeElement;
1367
- }
1368
- };
1369
- AmplifyTooltip.decorators = [
1370
- { type: Component, args: [{ selector: 'amplify-tooltip', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['shouldAutoShow', 'text'] },] },
1371
- ];
1372
- /** @nocollapse */
1373
- AmplifyTooltip.ctorParameters = () => [
1374
- { type: ChangeDetectorRef },
1375
- { type: ElementRef },
1376
- { type: NgZone }
1377
- ];
1378
- AmplifyTooltip = __decorate([
1379
- ProxyCmp({ inputs: ['shouldAutoShow', 'text'] }),
1380
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1381
- ], AmplifyTooltip);
1382
- let AmplifyTotpSetup = class AmplifyTotpSetup {
1383
- /**
1384
- * @param {?} c
1385
- * @param {?} r
1386
- * @param {?} z
1387
- */
1388
- constructor(c, r, z) {
1389
- this.z = z;
1390
- c.detach();
1391
- this.el = r.nativeElement;
1392
- }
1393
- };
1394
- AmplifyTotpSetup.decorators = [
1395
- { type: Component, args: [{ selector: 'amplify-totp-setup', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['handleAuthStateChange', 'handleComplete', 'headerText', 'issuer', 'standalone', 'user'] },] },
1396
- ];
1397
- /** @nocollapse */
1398
- AmplifyTotpSetup.ctorParameters = () => [
1399
- { type: ChangeDetectorRef },
1400
- { type: ElementRef },
1401
- { type: NgZone }
1402
- ];
1403
- AmplifyTotpSetup = __decorate([
1404
- ProxyCmp({ inputs: ['handleAuthStateChange', 'handleComplete', 'headerText', 'issuer', 'standalone', 'user'] }),
1405
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1406
- ], AmplifyTotpSetup);
1407
- let AmplifyUsernameField = class AmplifyUsernameField {
1408
- /**
1409
- * @param {?} c
1410
- * @param {?} r
1411
- * @param {?} z
1412
- */
1413
- constructor(c, r, z) {
1414
- this.z = z;
1415
- c.detach();
1416
- this.el = r.nativeElement;
1417
- }
1418
- };
1419
- AmplifyUsernameField.decorators = [
1420
- { type: Component, args: [{ selector: 'amplify-username-field', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] },] },
1421
- ];
1422
- /** @nocollapse */
1423
- AmplifyUsernameField.ctorParameters = () => [
1424
- { type: ChangeDetectorRef },
1425
- { type: ElementRef },
1426
- { type: NgZone }
1427
- ];
1428
- AmplifyUsernameField = __decorate([
1429
- ProxyCmp({ inputs: ['disabled', 'fieldId', 'handleInputChange', 'hint', 'inputProps', 'label', 'placeholder', 'required', 'value'] }),
1430
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1431
- ], AmplifyUsernameField);
1432
- let AmplifyVerifyContact = class AmplifyVerifyContact {
1433
- /**
1434
- * @param {?} c
1435
- * @param {?} r
1436
- * @param {?} z
1437
- */
1438
- constructor(c, r, z) {
1439
- this.z = z;
1440
- c.detach();
1441
- this.el = r.nativeElement;
1442
- }
1443
- };
1444
- AmplifyVerifyContact.decorators = [
1445
- { type: Component, args: [{ selector: 'amplify-verify-contact', changeDetection: ChangeDetectionStrategy.OnPush, template: '<ng-content></ng-content>', inputs: ['handleAuthStateChange', 'user'] },] },
1446
- ];
1447
- /** @nocollapse */
1448
- AmplifyVerifyContact.ctorParameters = () => [
1449
- { type: ChangeDetectorRef },
1450
- { type: ElementRef },
1451
- { type: NgZone }
1452
- ];
1453
- AmplifyVerifyContact = __decorate([
1454
- ProxyCmp({ inputs: ['handleAuthStateChange', 'user'] }),
1455
- __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1456
- ], AmplifyVerifyContact);
1457
-
1458
- /**
1459
- * @fileoverview added by tsickle
1460
- * @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1461
- */
1462
- defineCustomElements(window);
1463
- /** @type {?} */
1464
- const DECLARATIONS = [
1465
- AmplifyAmazonButton,
1466
- AmplifyAuth0Button,
1467
- AmplifyAuthenticator,
1468
- AmplifyAuthContainer,
1469
- AmplifyAuthFields,
1470
- AmplifyButton,
1471
- AmplifyChatbot,
1472
- AmplifyCheckbox,
1473
- AmplifyCodeField,
1474
- AmplifyConfirmSignIn,
1475
- AmplifyConfirmSignUp,
1476
- AmplifyContainer,
1477
- AmplifyCountryDialCode,
1478
- AmplifyEmailField,
1479
- AmplifyFacebookButton,
1480
- AmplifyFederatedButtons,
1481
- AmplifyFederatedSignIn,
1482
- AmplifyForgotPassword,
1483
- AmplifyFormField,
1484
- AmplifyFormSection,
1485
- AmplifyGoogleButton,
1486
- AmplifyGreetings,
1487
- AmplifyHint,
1488
- AmplifyIcon,
1489
- AmplifyIconButton,
1490
- AmplifyInput,
1491
- AmplifyLabel,
1492
- AmplifyLink,
1493
- AmplifyLoadingSpinner,
1494
- AmplifyNav,
1495
- AmplifyOauthButton,
1496
- AmplifyPasswordField,
1497
- AmplifyPhoneField,
1498
- AmplifyPhotoPicker,
1499
- AmplifyPicker,
1500
- AmplifyRadioButton,
1501
- AmplifyRequireNewPassword,
1502
- AmplifyS3Album,
1503
- AmplifyS3Image,
1504
- AmplifyS3ImagePicker,
1505
- AmplifyS3Text,
1506
- AmplifyS3TextPicker,
1507
- AmplifySection,
1508
- AmplifySelect,
1509
- AmplifySelectMfaType,
1510
- AmplifySignIn,
1511
- AmplifySignInButton,
1512
- AmplifySignOut,
1513
- AmplifySignUp,
1514
- AmplifyStrike,
1515
- AmplifyToast,
1516
- AmplifyTooltip,
1517
- AmplifyTotpSetup,
1518
- AmplifyUsernameField,
1519
- AmplifyVerifyContact,
1520
- ];
1521
- class AmplifyUIAngularModule {
1522
- }
1523
- AmplifyUIAngularModule.decorators = [
1524
- { type: NgModule, args: [{
1525
- declarations: DECLARATIONS,
1526
- exports: DECLARATIONS,
1527
- imports: [],
1528
- providers: [],
1529
- },] },
1530
- ];
1531
-
1532
- export { AmplifyAmazonButton, AmplifyAuth0Button, AmplifyAuthContainer, AmplifyAuthFields, AmplifyAuthenticator, AmplifyButton, AmplifyChatbot, AmplifyCheckbox, AmplifyCodeField, AmplifyConfirmSignIn, AmplifyConfirmSignUp, AmplifyContainer, AmplifyCountryDialCode, AmplifyEmailField, AmplifyFacebookButton, AmplifyFederatedButtons, AmplifyFederatedSignIn, AmplifyForgotPassword, AmplifyFormField, AmplifyFormSection, AmplifyGoogleButton, AmplifyGreetings, AmplifyHint, AmplifyIcon, AmplifyIconButton, AmplifyInput, AmplifyLabel, AmplifyLink, AmplifyLoadingSpinner, AmplifyNav, AmplifyOauthButton, AmplifyPasswordField, AmplifyPhoneField, AmplifyPhotoPicker, AmplifyPicker, AmplifyRadioButton, AmplifyRequireNewPassword, AmplifyS3Album, AmplifyS3Image, AmplifyS3ImagePicker, AmplifyS3Text, AmplifyS3TextPicker, AmplifySection, AmplifySelect, AmplifySelectMfaType, AmplifySignIn, AmplifySignInButton, AmplifySignOut, AmplifySignUp, AmplifyStrike, AmplifyToast, AmplifyTooltip, AmplifyTotpSetup, AmplifyUIAngularModule, AmplifyUsernameField, AmplifyVerifyContact, ProxyCmp, proxyInputs, proxyMethods, proxyOutputs };