@aws-amplify/ui-react 6.9.3 → 6.9.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/AIConversation.css +10 -1
- package/dist/styles/AIConversation.layer.css +10 -1
- package/dist/styles/base.css +2 -1
- package/dist/styles/base.layer.css +2 -1
- package/dist/styles/textArea.css +1 -0
- package/dist/styles/textArea.layer.css +1 -0
- package/dist/styles/textAreaField.css +1 -0
- package/dist/styles/textAreaField.layer.css +1 -0
- package/dist/styles.css +14 -2
- package/dist/styles.layer.css +14 -2
- package/dist/types/version.d.ts +1 -1
- package/package.json +3 -3
package/dist/esm/version.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -2469,7 +2469,7 @@ const defaultDeleteUserDisplayText = {
|
|
|
2469
2469
|
warningText: 'Deleting your account is not reversible. You will lose access to your account and all data associated with it.',
|
|
2470
2470
|
};
|
|
2471
2471
|
|
|
2472
|
-
const VERSION = '6.9.
|
|
2472
|
+
const VERSION = '6.9.4';
|
|
2473
2473
|
|
|
2474
2474
|
const logger$2 = ui.getLogger('AccountSettings');
|
|
2475
2475
|
const getIsDisabled = (formValues, validationError) => {
|
|
@@ -84,16 +84,24 @@
|
|
|
84
84
|
--internal-flex-direction: row;
|
|
85
85
|
--internal-body-align-items: flex-start;
|
|
86
86
|
}
|
|
87
|
+
.amplify-ai-conversation__scrollview {
|
|
88
|
+
flex: 1 0 50%;
|
|
89
|
+
}
|
|
87
90
|
.amplify-ai-conversation__form {
|
|
88
91
|
display: flex;
|
|
89
92
|
flex-direction: row;
|
|
90
93
|
align-items: flex-start;
|
|
94
|
+
padding: var(--amplify-components-ai-conversation-form-padding);
|
|
91
95
|
gap: var(--amplify-components-ai-conversation-form-gap);
|
|
96
|
+
max-height: 100%;
|
|
97
|
+
overflow: hidden;
|
|
92
98
|
}
|
|
93
99
|
.amplify-ai-conversation__form__dropzone {
|
|
94
100
|
text-align: initial;
|
|
95
101
|
border: none;
|
|
96
|
-
padding:
|
|
102
|
+
padding: 0;
|
|
103
|
+
display: grid;
|
|
104
|
+
overflow: hidden;
|
|
97
105
|
}
|
|
98
106
|
.amplify-ai-conversation__form__error {
|
|
99
107
|
padding: 0;
|
|
@@ -118,6 +126,7 @@
|
|
|
118
126
|
flex-direction: row;
|
|
119
127
|
flex-wrap: wrap;
|
|
120
128
|
gap: var(--amplify-components-ai-conversation-attachment-list-gap);
|
|
129
|
+
padding: var(--amplify-components-ai-conversation-attachment-list-padding);
|
|
121
130
|
padding-block-start: var(--amplify-components-ai-conversation-attachment-list-padding-block-start);
|
|
122
131
|
}
|
|
123
132
|
.amplify-ai-conversation__attachment__image {
|
|
@@ -85,16 +85,24 @@
|
|
|
85
85
|
--internal-flex-direction: row;
|
|
86
86
|
--internal-body-align-items: flex-start;
|
|
87
87
|
}
|
|
88
|
+
.amplify-ai-conversation__scrollview {
|
|
89
|
+
flex: 1 0 50%;
|
|
90
|
+
}
|
|
88
91
|
.amplify-ai-conversation__form {
|
|
89
92
|
display: flex;
|
|
90
93
|
flex-direction: row;
|
|
91
94
|
align-items: flex-start;
|
|
95
|
+
padding: var(--amplify-components-ai-conversation-form-padding);
|
|
92
96
|
gap: var(--amplify-components-ai-conversation-form-gap);
|
|
97
|
+
max-height: 100%;
|
|
98
|
+
overflow: hidden;
|
|
93
99
|
}
|
|
94
100
|
.amplify-ai-conversation__form__dropzone {
|
|
95
101
|
text-align: initial;
|
|
96
102
|
border: none;
|
|
97
|
-
padding:
|
|
103
|
+
padding: 0;
|
|
104
|
+
display: grid;
|
|
105
|
+
overflow: hidden;
|
|
98
106
|
}
|
|
99
107
|
.amplify-ai-conversation__form__error {
|
|
100
108
|
padding: 0;
|
|
@@ -119,6 +127,7 @@
|
|
|
119
127
|
flex-direction: row;
|
|
120
128
|
flex-wrap: wrap;
|
|
121
129
|
gap: var(--amplify-components-ai-conversation-attachment-list-gap);
|
|
130
|
+
padding: var(--amplify-components-ai-conversation-attachment-list-padding);
|
|
122
131
|
padding-block-start: var(--amplify-components-ai-conversation-attachment-list-padding-block-start);
|
|
123
132
|
}
|
|
124
133
|
.amplify-ai-conversation__attachment__image {
|
package/dist/styles/base.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);
|
|
@@ -51,7 +51,8 @@
|
|
|
51
51
|
--amplify-components-ai-conversation-attachment-padding-block: var(--amplify-space-xxxs);
|
|
52
52
|
--amplify-components-ai-conversation-attachment-padding-inline: var(--amplify-space-xs);
|
|
53
53
|
--amplify-components-ai-conversation-attachment-gap: var(--amplify-space-xs);
|
|
54
|
-
--amplify-components-ai-conversation-attachment-list-padding
|
|
54
|
+
--amplify-components-ai-conversation-attachment-list-padding: var(--amplify-space-xs);
|
|
55
|
+
--amplify-components-ai-conversation-attachment-list-padding-block-start: 0;
|
|
55
56
|
--amplify-components-ai-conversation-attachment-list-gap: var(--amplify-space-xxs);
|
|
56
57
|
--amplify-components-ai-conversation-attachment-name-color: var(--amplify-colors-font-primary);
|
|
57
58
|
--amplify-components-ai-conversation-attachment-name-font-size: var(--amplify-font-sizes-small);
|
package/dist/styles/textArea.css
CHANGED
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/styles.layer.css
CHANGED
|
@@ -51,7 +51,8 @@
|
|
|
51
51
|
--amplify-components-ai-conversation-attachment-padding-block: var(--amplify-space-xxxs);
|
|
52
52
|
--amplify-components-ai-conversation-attachment-padding-inline: var(--amplify-space-xs);
|
|
53
53
|
--amplify-components-ai-conversation-attachment-gap: var(--amplify-space-xs);
|
|
54
|
-
--amplify-components-ai-conversation-attachment-list-padding
|
|
54
|
+
--amplify-components-ai-conversation-attachment-list-padding: var(--amplify-space-xs);
|
|
55
|
+
--amplify-components-ai-conversation-attachment-list-padding-block-start: 0;
|
|
55
56
|
--amplify-components-ai-conversation-attachment-list-gap: var(--amplify-space-xxs);
|
|
56
57
|
--amplify-components-ai-conversation-attachment-name-color: var(--amplify-colors-font-primary);
|
|
57
58
|
--amplify-components-ai-conversation-attachment-name-font-size: var(--amplify-font-sizes-small);
|
|
@@ -3078,6 +3079,7 @@ strong.amplify-text {
|
|
|
3078
3079
|
-moz-user-select: text;
|
|
3079
3080
|
user-select: text;
|
|
3080
3081
|
white-space: pre-wrap;
|
|
3082
|
+
max-height: 100%;
|
|
3081
3083
|
}
|
|
3082
3084
|
.amplify-textarea:focus {
|
|
3083
3085
|
border-color: var(--amplify-components-fieldcontrol-focus-border-color);
|
|
@@ -5803,6 +5805,7 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
5803
5805
|
}
|
|
5804
5806
|
|
|
5805
5807
|
.amplify-textareafield {
|
|
5808
|
+
max-height: 100%;
|
|
5806
5809
|
flex-direction: column;
|
|
5807
5810
|
--amplify-components-fieldcontrol-color: var(
|
|
5808
5811
|
--amplify-components-textareafield-color
|
|
@@ -6838,16 +6841,24 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
6838
6841
|
--internal-flex-direction: row;
|
|
6839
6842
|
--internal-body-align-items: flex-start;
|
|
6840
6843
|
}
|
|
6844
|
+
.amplify-ai-conversation__scrollview {
|
|
6845
|
+
flex: 1 0 50%;
|
|
6846
|
+
}
|
|
6841
6847
|
.amplify-ai-conversation__form {
|
|
6842
6848
|
display: flex;
|
|
6843
6849
|
flex-direction: row;
|
|
6844
6850
|
align-items: flex-start;
|
|
6851
|
+
padding: var(--amplify-components-ai-conversation-form-padding);
|
|
6845
6852
|
gap: var(--amplify-components-ai-conversation-form-gap);
|
|
6853
|
+
max-height: 100%;
|
|
6854
|
+
overflow: hidden;
|
|
6846
6855
|
}
|
|
6847
6856
|
.amplify-ai-conversation__form__dropzone {
|
|
6848
6857
|
text-align: initial;
|
|
6849
6858
|
border: none;
|
|
6850
|
-
padding:
|
|
6859
|
+
padding: 0;
|
|
6860
|
+
display: grid;
|
|
6861
|
+
overflow: hidden;
|
|
6851
6862
|
}
|
|
6852
6863
|
.amplify-ai-conversation__form__error {
|
|
6853
6864
|
padding: 0;
|
|
@@ -6872,6 +6883,7 @@ html[dir=rtl] .amplify-field-group__inner-start {
|
|
|
6872
6883
|
flex-direction: row;
|
|
6873
6884
|
flex-wrap: wrap;
|
|
6874
6885
|
gap: var(--amplify-components-ai-conversation-attachment-list-gap);
|
|
6886
|
+
padding: var(--amplify-components-ai-conversation-attachment-list-padding);
|
|
6875
6887
|
padding-block-start: var(--amplify-components-ai-conversation-attachment-list-padding-block-start);
|
|
6876
6888
|
}
|
|
6877
6889
|
.amplify-ai-conversation__attachment__image {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "6.9.
|
|
1
|
+
export declare const VERSION = "6.9.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-react",
|
|
3
|
-
"version": "6.9.
|
|
3
|
+
"version": "6.9.4",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/esm/index.mjs",
|
|
6
6
|
"exports": {
|
|
@@ -55,8 +55,8 @@
|
|
|
55
55
|
"typecheck": "tsc --noEmit"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@aws-amplify/ui": "6.9.
|
|
59
|
-
"@aws-amplify/ui-react-core": "3.3.
|
|
58
|
+
"@aws-amplify/ui": "6.9.1",
|
|
59
|
+
"@aws-amplify/ui-react-core": "3.3.4",
|
|
60
60
|
"@radix-ui/react-direction": "^1.1.0",
|
|
61
61
|
"@radix-ui/react-dropdown-menu": "^2.1.4",
|
|
62
62
|
"@radix-ui/react-slider": "^1.2.2",
|