@aws-amplify/ui-react-notifications 2.2.3 → 2.2.4
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 +14 -2
- package/dist/types/version.d.ts +1 -1
- package/package.json +5 -5
package/dist/esm/version.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -332,7 +332,7 @@ const handleMessageLinkAction = (input) => {
|
|
|
332
332
|
window.open(input);
|
|
333
333
|
};
|
|
334
334
|
|
|
335
|
-
const VERSION = '2.2.
|
|
335
|
+
const VERSION = '2.2.4';
|
|
336
336
|
|
|
337
337
|
// TODO: replace below components incrementally as they become available
|
|
338
338
|
function CarouselMessage(_) {
|
package/dist/styles.css
CHANGED
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
--amplify-components-ai-conversation-attachment-padding-block: var(--amplify-space-xxxs);
|
|
51
51
|
--amplify-components-ai-conversation-attachment-padding-inline: var(--amplify-space-xs);
|
|
52
52
|
--amplify-components-ai-conversation-attachment-gap: var(--amplify-space-xs);
|
|
53
|
-
--amplify-components-ai-conversation-attachment-list-padding
|
|
53
|
+
--amplify-components-ai-conversation-attachment-list-padding: var(--amplify-space-xs);
|
|
54
|
+
--amplify-components-ai-conversation-attachment-list-padding-block-start: 0;
|
|
54
55
|
--amplify-components-ai-conversation-attachment-list-gap: var(--amplify-space-xxs);
|
|
55
56
|
--amplify-components-ai-conversation-attachment-name-color: var(--amplify-colors-font-primary);
|
|
56
57
|
--amplify-components-ai-conversation-attachment-name-font-size: var(--amplify-font-sizes-small);
|
|
@@ -3077,6 +3078,7 @@ strong.amplify-text {
|
|
|
3077
3078
|
-moz-user-select: text;
|
|
3078
3079
|
user-select: text;
|
|
3079
3080
|
white-space: pre-wrap;
|
|
3081
|
+
max-height: 100%;
|
|
3080
3082
|
}
|
|
3081
3083
|
.amplify-textarea:focus {
|
|
3082
3084
|
border-color: var(--amplify-components-fieldcontrol-focus-border-color);
|
|
@@ -5802,6 +5804,7 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
5802
5804
|
}
|
|
5803
5805
|
|
|
5804
5806
|
.amplify-textareafield {
|
|
5807
|
+
max-height: 100%;
|
|
5805
5808
|
flex-direction: column;
|
|
5806
5809
|
--amplify-components-fieldcontrol-color: var(
|
|
5807
5810
|
--amplify-components-textareafield-color
|
|
@@ -6837,16 +6840,24 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
6837
6840
|
--internal-flex-direction: row;
|
|
6838
6841
|
--internal-body-align-items: flex-start;
|
|
6839
6842
|
}
|
|
6843
|
+
.amplify-ai-conversation__scrollview {
|
|
6844
|
+
flex: 1 0 50%;
|
|
6845
|
+
}
|
|
6840
6846
|
.amplify-ai-conversation__form {
|
|
6841
6847
|
display: flex;
|
|
6842
6848
|
flex-direction: row;
|
|
6843
6849
|
align-items: flex-start;
|
|
6850
|
+
padding: var(--amplify-components-ai-conversation-form-padding);
|
|
6844
6851
|
gap: var(--amplify-components-ai-conversation-form-gap);
|
|
6852
|
+
max-height: 100%;
|
|
6853
|
+
overflow: hidden;
|
|
6845
6854
|
}
|
|
6846
6855
|
.amplify-ai-conversation__form__dropzone {
|
|
6847
6856
|
text-align: initial;
|
|
6848
6857
|
border: none;
|
|
6849
|
-
padding:
|
|
6858
|
+
padding: 0;
|
|
6859
|
+
display: grid;
|
|
6860
|
+
overflow: hidden;
|
|
6850
6861
|
}
|
|
6851
6862
|
.amplify-ai-conversation__form__error {
|
|
6852
6863
|
padding: 0;
|
|
@@ -6871,6 +6882,7 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
6871
6882
|
flex-direction: row;
|
|
6872
6883
|
flex-wrap: wrap;
|
|
6873
6884
|
gap: var(--amplify-components-ai-conversation-attachment-list-gap);
|
|
6885
|
+
padding: var(--amplify-components-ai-conversation-attachment-list-padding);
|
|
6874
6886
|
padding-block-start: var(--amplify-components-ai-conversation-attachment-list-padding-block-start);
|
|
6875
6887
|
}
|
|
6876
6888
|
.amplify-ai-conversation__attachment__image {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "2.2.
|
|
1
|
+
export declare const VERSION = "2.2.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react-notifications",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"typecheck": "tsc --noEmit"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@aws-amplify/ui": "6.9.
|
|
43
|
-
"@aws-amplify/ui-react": "6.9.
|
|
44
|
-
"@aws-amplify/ui-react-core": "3.3.
|
|
45
|
-
"@aws-amplify/ui-react-core-notifications": "2.2.
|
|
42
|
+
"@aws-amplify/ui": "6.9.1",
|
|
43
|
+
"@aws-amplify/ui-react": "6.9.4",
|
|
44
|
+
"@aws-amplify/ui-react-core": "3.3.4",
|
|
45
|
+
"@aws-amplify/ui-react-core-notifications": "2.2.4",
|
|
46
46
|
"tinycolor2": "1.4.2"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|