-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into chenwz-dev-esmfix
- Loading branch information
Showing
88 changed files
with
735 additions
and
841 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@aws-amplify/ui-react': patch | ||
--- | ||
|
||
fix: Swapped save and cancel buttons. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
"@aws-amplify/ui-react-core": patch | ||
"@aws-amplify/ui-react-native": patch | ||
"@aws-amplify/ui-react": patch | ||
"@aws-amplify/ui": patch | ||
"@aws-amplify/ui-vue": patch | ||
"@aws-amplify/ui-angular": patch | ||
--- | ||
|
||
fix(authenticator): migrate totpSecretCode generation to state machine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@aws-amplify/ui-react': patch | ||
--- | ||
|
||
fix: Updated error text for max file count to be more explicit. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
'@aws-amplify/ui-react-core': patch | ||
'@aws-amplify/ui': patch | ||
--- | ||
|
||
chore(ui,ui-react-core): Add type guard utils |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@aws-amplify/ui-react': patch | ||
--- | ||
|
||
fix: Swap the upload button with the clear all button. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,16 @@ | ||
import { Tabs, TabItem } from '@aws-amplify/ui-react'; | ||
import { Alert } from '@aws-amplify/ui-react'; | ||
import { Alert, Tabs, TabItem } from '@aws-amplify/ui-react'; | ||
import { TerminalCommand } from '@/components/InstallScripts'; | ||
|
||
## 2.x to 3.x | ||
### Installation | ||
Install the 3.x version of the `@aws-amplify/ui-angular` library and the 5.x version of the `aws-amplify` library. | ||
|
||
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm install [email protected] @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="npm install [email protected] @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
<TabItem title="yarn"> | ||
```shell | ||
yarn add [email protected] @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="yarn add [email protected] @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
</Tabs> | ||
|
||
|
@@ -94,19 +87,10 @@ If you wish to still use the legacy components, you can do so by installing `@aw | |
|
||
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm i @aws-amplify/ui-angular-v2@npm:@aws-amplify/ui-angular@^2.4.27 | ||
``` | ||
|
||
<TerminalCommand command="npm install @aws-amplify/ui-angular-v2@npm:@aws-amplify/ui-angular@^2.4.27" /> | ||
</TabItem> | ||
<TabItem title="yarn"> | ||
|
||
|
||
```shell | ||
yarn add @aws-amplify/ui-angular-v2@npm:@aws-amplify/ui-angular@^2.4.27 | ||
``` | ||
|
||
<TerminalCommand command="yarn add @aws-amplify/ui-angular-v2@npm:@aws-amplify/ui-angular@^2.4.27" /> | ||
</TabItem> | ||
</Tabs> | ||
|
||
|
@@ -140,17 +124,10 @@ Install the 2.x version of the `@aws-amplify/ui-angular` library. | |
|
||
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm install aws-amplify @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="npm install aws-amplify @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
<TabItem title="yarn"> | ||
```shell | ||
yarn add aws-amplify @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="yarn add aws-amplify @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
</Tabs> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,16 @@ | ||
import { Tabs, TabItem } from '@aws-amplify/ui-react'; | ||
import { Alert } from '@aws-amplify/ui-react'; | ||
import { Alert, Tabs, TabItem } from '@aws-amplify/ui-react'; | ||
import { TerminalCommand } from '@/components/InstallScripts'; | ||
|
||
## 3.x to 4.x | ||
### Installation | ||
Install the 4.x version of the `@aws-amplify/ui-react` library and the 5.x version of the `aws-amplify` library. | ||
|
||
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm install [email protected] @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="npm install [email protected] @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
<TabItem title="yarn"> | ||
```shell | ||
yarn add [email protected] @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="yarn add [email protected] @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
</Tabs> | ||
|
||
|
@@ -122,17 +115,10 @@ Install the 3.x version of the `@aws-amplify/ui-react` library. | |
|
||
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm install aws-amplify @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="npm install aws-amplify @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
<TabItem title="yarn"> | ||
```shell | ||
yarn add aws-amplify @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="yarn add aws-amplify @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
</Tabs> | ||
|
||
|
@@ -162,17 +148,10 @@ Install the 2.x version of the `@aws-amplify/ui-react` library. | |
|
||
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm install aws-amplify @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="npm install aws-amplify @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
<TabItem title="yarn"> | ||
```shell | ||
yarn add aws-amplify @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="yarn add aws-amplify @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
</Tabs> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,16 @@ | ||
import { Tabs, TabItem } from '@aws-amplify/ui-react'; | ||
import { Alert } from '@aws-amplify/ui-react'; | ||
import { Alert, Tabs, TabItem } from '@aws-amplify/ui-react'; | ||
import { TerminalCommand } from '@/components/InstallScripts'; | ||
|
||
## 2.x to 3.x | ||
### Installation | ||
Install the 3.x version of the `@aws-amplify/ui-vue` library and the 5.x version of the `aws-amplify` library. | ||
|
||
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm install [email protected] @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="npm install [email protected] @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
<TabItem title="yarn"> | ||
```shell | ||
yarn add [email protected] @aws-amplify/[email protected] | ||
``` | ||
|
||
<TerminalCommand command="yarn add [email protected] @aws-amplify/[email protected]" /> | ||
</TabItem> | ||
</Tabs> | ||
|
||
|
@@ -63,15 +56,11 @@ Install the 2.x version of the `@aws-amplify/ui-vue` library. | |
<Tabs> | ||
<TabItem title="npm"> | ||
|
||
```shell | ||
npm install aws-amplify @aws-amplify/ui-vue@2 | ||
``` | ||
<TerminalCommand command="npm install aws-amplify @aws-amplify/ui-vue@2" /> | ||
|
||
</TabItem> | ||
<TabItem title="yarn"> | ||
```shell | ||
yarn add aws-amplify @aws-amplify/ui-vue@2 | ||
``` | ||
<TerminalCommand command="yarn add aws-amplify @aws-amplify/ui-vue@2" /> | ||
|
||
</TabItem> | ||
</Tabs> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.