@aws-amplify/ui 5.5.1 → 5.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/helpers/authenticator/textUtil.js +1 -1
- package/dist/esm/helpers/storage/fileUploader/utils/uploader.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/de.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/defaultTexts.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/en.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/es.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/fr.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/he.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/id.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/it.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/ja.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/kr.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/nl.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/pl.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/pt.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/ru.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/sv.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/tr.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/ua.js +1 -1
- package/dist/esm/i18n/dictionaries/authenticator/zh.js +1 -1
- package/dist/esm/theme/utils.js +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -0
- package/dist/types/helpers/authenticator/textUtil.d.ts +1 -0
- package/dist/types/i18n/dictionaries/authenticator/defaultTexts.d.ts +1 -0
- package/dist/types/i18n/dictionaries/index.d.ts +1 -0
- package/dist/types/i18n/translations.d.ts +1 -0
- package/dist/types/theme/utils.d.ts +4 -5
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1678,6 +1678,7 @@ strong.amplify-text {
|
|
|
1678
1678
|
-webkit-user-select: text;
|
|
1679
1679
|
-moz-user-select: text;
|
|
1680
1680
|
user-select: text;
|
|
1681
|
+
display: inline-flex;
|
|
1681
1682
|
}
|
|
1682
1683
|
.amplify-input:focus {
|
|
1683
1684
|
border-color: var(--amplify-components-fieldcontrol-focus-border-color);
|
|
@@ -10,6 +10,7 @@ export declare const authenticatorTextUtil: {
|
|
|
10
10
|
readonly getCopyText: () => string;
|
|
11
11
|
readonly getHidePasswordText: () => string;
|
|
12
12
|
readonly getLoadingText: () => string;
|
|
13
|
+
readonly getOrText: () => string;
|
|
13
14
|
readonly getResendCodeText: () => string;
|
|
14
15
|
readonly getSendCodeText: () => string;
|
|
15
16
|
readonly getSendingText: () => string;
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ShadowValue, WebDesignToken } from './tokens/types/designToken';
|
|
2
2
|
export declare const CSS_VARIABLE_PREFIX = "amplify";
|
|
3
|
-
export declare function cssValue(token:
|
|
4
|
-
value: unknown;
|
|
5
|
-
}>): unknown;
|
|
3
|
+
export declare function cssValue(token: BaseDesignToken): string | number;
|
|
6
4
|
interface NameTransformProps {
|
|
7
5
|
path?: Array<string>;
|
|
8
6
|
}
|
|
@@ -15,8 +13,9 @@ export declare function cssNameTransform({ path }: NameTransformProps): string;
|
|
|
15
13
|
* @returns boolean
|
|
16
14
|
*/
|
|
17
15
|
export declare function isDesignToken(value: unknown): value is WebDesignToken;
|
|
16
|
+
export declare function isShadowToken(value: unknown): value is ShadowValue;
|
|
18
17
|
declare type SetupTokensProps = {
|
|
19
|
-
tokens
|
|
18
|
+
tokens?: Record<string | number, any>;
|
|
20
19
|
path?: Array<string>;
|
|
21
20
|
setupToken: SetupToken;
|
|
22
21
|
};
|