@aws-amplify/ui-angular 2.0.5 → 2.0.9

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.
@@ -6,6 +6,8 @@ export declare class SetupTotpComponent implements OnInit {
6
6
  dataAttr: string;
7
7
  headerText: string;
8
8
  qrCodeSource: string;
9
+ secretKey: string;
10
+ copyTextLabel: string;
9
11
  backToSignInText: string;
10
12
  confirmText: string;
11
13
  constructor(authenticator: AuthenticatorService);
@@ -55,4 +57,5 @@ export declare class SetupTotpComponent implements OnInit {
55
57
  generateQRCode(): Promise<void>;
56
58
  onInput(event: Event): void;
57
59
  onSubmit(event: Event): void;
60
+ copyText(): void;
58
61
  }
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@aws-amplify/ui-angular",
3
- "version": "2.0.5",
3
+ "version": "2.0.9",
4
4
  "license": "Apache-2.0",
5
5
  "peerDependencies": {
6
6
  "aws-amplify": "3.x.x || 4.x.x"
7
7
  },
8
8
  "dependencies": {
9
9
  "@aws-amplify/ui-components": "^1.7.0",
10
- "@aws-amplify/ui": "3.0.5",
11
- "@stencil/core": "^2.7.0",
12
- "nanoid": "^3.1.25",
10
+ "@aws-amplify/ui": "3.0.9",
11
+ "@stencil/core": "2.8.0",
12
+ "nanoid": "^3.1.31",
13
13
  "qrcode": "^1.4.4",
14
14
  "tslib": "^2.0.0",
15
15
  "xstate": "^4.20.1"
package/theme.css CHANGED
@@ -1 +1,13 @@
1
1
  @import '@aws-amplify/ui/dist/styles.css';
2
+
3
+ /** These fonts are added in only temporarily until Angular has it's own theming system */
4
+
5
+ html {
6
+ font-family: var(--amplify-fonts-default-static);
7
+ }
8
+
9
+ @supports (font-variation-settings: normal) {
10
+ html {
11
+ font-family: var(--amplify-fonts-default-variable);
12
+ }
13
+ }