@aws-amplify/ui-react-storage 3.3.9 → 3.3.10
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/version.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/styles.css +12 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +6 -7
package/dist/esm/version.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -546,7 +546,7 @@ function FilePicker$1({ children, className = ui.ComponentClassName.FileUploader
|
|
|
546
546
|
return (React__namespace["default"].createElement(uiReact.Button, { ...props, className: className, size: size }, children));
|
|
547
547
|
}
|
|
548
548
|
|
|
549
|
-
const VERSION = '3.3.
|
|
549
|
+
const VERSION = '3.3.10';
|
|
550
550
|
|
|
551
551
|
const logger$1 = ui.getLogger('Storage');
|
|
552
552
|
const MISSING_REQUIRED_PROPS_MESSAGE$1 = '`FileUploader` requires a `maxFileCount` prop to be provided.';
|
package/dist/styles.css
CHANGED
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
--amplify-components-ai-conversation-message-sender-timestamp-font-size: inherit;
|
|
41
41
|
--amplify-components-ai-conversation-message-sender-timestamp-font-weight: inherit;
|
|
42
42
|
--amplify-components-ai-conversation-message-body-gap: var(--amplify-space-xs);
|
|
43
|
+
--amplify-components-ai-conversation-message-actions-gap: var(--amplify-space-xs);
|
|
43
44
|
--amplify-components-ai-conversation-form-gap: var(--amplify-space-small);
|
|
44
45
|
--amplify-components-ai-conversation-form-padding: var(--amplify-space-small);
|
|
45
46
|
--amplify-components-ai-conversation-attachment-border-color: var(--amplify-colors-border-secondary);
|
|
@@ -6642,6 +6643,7 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
6642
6643
|
}
|
|
6643
6644
|
.amplify-ai-conversation__message__body {
|
|
6644
6645
|
display: flex;
|
|
6646
|
+
flex: 1;
|
|
6645
6647
|
flex-direction: column;
|
|
6646
6648
|
align-items: var(--internal-body-align-items);
|
|
6647
6649
|
gap: var(--amplify-components-ai-conversation-message-body-gap);
|
|
@@ -6650,10 +6652,20 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
6650
6652
|
background-color: var(--internal-content-bg);
|
|
6651
6653
|
border-radius: var(--amplify-radii-medium);
|
|
6652
6654
|
padding: var(--internal-content-padding);
|
|
6655
|
+
display: flex;
|
|
6656
|
+
flex-direction: column;
|
|
6657
|
+
gap: var(--amplify-space-small);
|
|
6658
|
+
}
|
|
6659
|
+
.amplify-ai-conversation__message__text {
|
|
6660
|
+
display: block;
|
|
6661
|
+
}
|
|
6662
|
+
.amplify-ai-conversation__message__image {
|
|
6663
|
+
max-width: 25%;
|
|
6653
6664
|
}
|
|
6654
6665
|
.amplify-ai-conversation__message__actions {
|
|
6655
6666
|
display: flex;
|
|
6656
6667
|
flex-direction: row;
|
|
6668
|
+
gap: var(--amplify-components-ai-conversation-message-actions-gap);
|
|
6657
6669
|
}
|
|
6658
6670
|
.amplify-ai-conversation__message--bubble {
|
|
6659
6671
|
--internal-content-bg: var(--internal-bg-color);
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "3.3.
|
|
1
|
+
export declare const VERSION = "3.3.10";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react-storage",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.10",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -39,10 +39,9 @@
|
|
|
39
39
|
"typecheck": "tsc --noEmit"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@aws-amplify/ui": "6.6.
|
|
43
|
-
"@aws-amplify/ui-react": "6.
|
|
44
|
-
"@aws-amplify/ui-react-core": "3.0.
|
|
45
|
-
"lodash": "4.17.21",
|
|
42
|
+
"@aws-amplify/ui": "6.6.6",
|
|
43
|
+
"@aws-amplify/ui-react": "6.6.0",
|
|
44
|
+
"@aws-amplify/ui-react-core": "3.0.30",
|
|
46
45
|
"tslib": "^2.5.2"
|
|
47
46
|
},
|
|
48
47
|
"peerDependencies": {
|
|
@@ -58,7 +57,7 @@
|
|
|
58
57
|
"name": "FileUploader",
|
|
59
58
|
"path": "dist/esm/index.mjs",
|
|
60
59
|
"import": "{ FileUploader }",
|
|
61
|
-
"limit": "
|
|
60
|
+
"limit": "22 kB"
|
|
62
61
|
},
|
|
63
62
|
{
|
|
64
63
|
"name": "StorageImage",
|
|
@@ -70,7 +69,7 @@
|
|
|
70
69
|
"name": "StorageManager",
|
|
71
70
|
"path": "dist/esm/index.mjs",
|
|
72
71
|
"import": "{ StorageManager }",
|
|
73
|
-
"limit": "
|
|
72
|
+
"limit": "22 kB"
|
|
74
73
|
}
|
|
75
74
|
]
|
|
76
75
|
}
|