@aws-amplify/ui 6.3.0 → 6.4.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.
- package/dist/esm/theme/tokens/components/avatar.mjs +49 -0
- package/dist/esm/theme/tokens/components/index.mjs +2 -0
- package/dist/esm/types/primitives/componentClassName.mjs +25 -0
- package/dist/index.js +74 -0
- package/dist/styles/AIConversation.css +108 -0
- package/dist/styles/AIConversation.layer.css +110 -0
- package/dist/styles/avatar.css +111 -0
- package/dist/styles/avatar.layer.css +113 -0
- package/dist/styles/base.css +29 -0
- package/dist/styles/base.layer.css +29 -0
- package/dist/styles.css +250 -0
- package/dist/styles.layer.css +250 -0
- package/dist/theme.css +29 -0
- package/dist/types/theme/components/avatar.d.ts +5 -0
- package/dist/types/theme/components/index.d.ts +3 -1
- package/dist/types/theme/tokens/components/avatar.d.ts +14 -0
- package/dist/types/theme/tokens/components/index.d.ts +2 -0
- package/dist/types/types/primitives/componentClassName.d.ts +25 -0
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AlertTokens } from './alert';
|
|
2
2
|
import { AutocompleteTokens } from './autocomplete';
|
|
3
3
|
import { AuthenticatorTokens } from './authenticator';
|
|
4
|
+
import { AvatarTokens } from './avatar';
|
|
4
5
|
import { BadgeTokens } from './badge';
|
|
5
6
|
import { BreadcrumbsTokens } from './breadcrumbs';
|
|
6
7
|
import { ButtonTokens } from './button';
|
|
@@ -57,6 +58,7 @@ type BaseComponentTokens<Output extends OutputVariantKey> = {
|
|
|
57
58
|
alert?: AlertTokens<Output>;
|
|
58
59
|
authenticator?: AuthenticatorTokens<Output>;
|
|
59
60
|
autocomplete?: AutocompleteTokens<Output>;
|
|
61
|
+
avatar?: AvatarTokens<Output>;
|
|
60
62
|
badge?: BadgeTokens<Output>;
|
|
61
63
|
breadcrumbs?: BreadcrumbsTokens<Output>;
|
|
62
64
|
button?: ButtonTokens<Output>;
|
|
@@ -17,6 +17,31 @@ export declare const ComponentClassName: {
|
|
|
17
17
|
readonly AutocompleteMenuLoading: "amplify-autocomplete__menu--loading";
|
|
18
18
|
readonly AutocompleteMenuOption: "amplify-autocomplete__menu__option";
|
|
19
19
|
readonly AutocompleteMenuOptions: "amplify-autocomplete__menu__options";
|
|
20
|
+
readonly Avatar: "amplify-avatar";
|
|
21
|
+
readonly AvatarIcon: "amplify-avatar__icon";
|
|
22
|
+
readonly AvatarImage: "amplify-avatar__image";
|
|
23
|
+
readonly AIConversation: "amplify-ai-conversation";
|
|
24
|
+
readonly AIConversationAttachment: "amplify-ai-conversation__attachment";
|
|
25
|
+
readonly AIConversationAttachmentList: "amplify-ai-conversation__attachment__list";
|
|
26
|
+
readonly AIConversationAttachmentImage: "amplify-ai-conversation__attachment__image";
|
|
27
|
+
readonly AIConversationAttachmentName: "amplify-ai-conversation__attachment__name";
|
|
28
|
+
readonly AIConversationAttachmentSize: "amplify-ai-conversation__attachment__size";
|
|
29
|
+
readonly AIConversationAttachmentRemove: "amplify-ai-conversation__attachment__remove";
|
|
30
|
+
readonly AIConversationForm: "amplify-ai-conversation__form";
|
|
31
|
+
readonly AIConversationFormAttach: "amplify-ai-conversation__form__attach";
|
|
32
|
+
readonly AIConversationFormSend: "amplify-ai-conversation__form__send";
|
|
33
|
+
readonly AIConversationFormField: "amplify-ai-conversation__form__field";
|
|
34
|
+
readonly AIConversationFormDropzone: "amplify-ai-conversation__form__dropzone";
|
|
35
|
+
readonly AIConversationMessage: "amplify-ai-conversation__message";
|
|
36
|
+
readonly AIConversationMessageAvatar: "amplify-ai-conversation__message__avatar";
|
|
37
|
+
readonly AIConversationMessageSender: "amplify-ai-conversation__message__sender";
|
|
38
|
+
readonly AIConversationMessageSenderUsername: "amplify-ai-conversation__message__sender__username";
|
|
39
|
+
readonly AIConversationMessageSenderTimestamp: "amplify-ai-conversation__message__sender__timestamp";
|
|
40
|
+
readonly AIConversationMessageBody: "amplify-ai-conversation__message__body";
|
|
41
|
+
readonly AIConversationMessageContent: "amplify-ai-conversation__message__content";
|
|
42
|
+
readonly AIConversationMessageActions: "amplify-ai-conversation__message__actions";
|
|
43
|
+
readonly AIConversationMessageList: "amplify-ai-conversation__message__list";
|
|
44
|
+
readonly AIConversationPrompt: "amplify-ai-conversation__prompt";
|
|
20
45
|
readonly Badge: "amplify-badge";
|
|
21
46
|
readonly Breadcrumbs: "amplify-breadcrumbs";
|
|
22
47
|
readonly BreadcrumbsList: "amplify-breadcrumbs__list";
|