@appquality/unguess-design-system 3.1.62 → 3.1.64
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/CHANGELOG.md +26 -0
- package/build/index.js +7 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# v3.1.64 (Mon Jan 08 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Chat colors minor changes [#293](https://github.com/AppQuality/unguess-design-system/pull/293) ([@iDome89](https://github.com/iDome89) [@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
- Chat box border fix [#292](https://github.com/AppQuality/unguess-design-system/pull/292) ([@cannarocks](https://github.com/cannarocks) [@iDome89](https://github.com/iDome89))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- [@iDome89](https://github.com/iDome89)
|
|
11
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
# v3.1.63 (Thu Jan 04 2024)
|
|
16
|
+
|
|
17
|
+
#### 🐛 Bug Fix
|
|
18
|
+
|
|
19
|
+
- Develop [#291](https://github.com/AppQuality/unguess-design-system/pull/291) ([@cannarocks](https://github.com/cannarocks))
|
|
20
|
+
|
|
21
|
+
#### Authors: 1
|
|
22
|
+
|
|
23
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
1
27
|
# v3.1.62 (Tue Jan 02 2024)
|
|
2
28
|
|
|
3
29
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -2317,6 +2317,7 @@ const MessagesContainer = styled__default["default"].div `
|
|
|
2317
2317
|
gap: ${({ theme }) => theme.space.xs};
|
|
2318
2318
|
background: ${({ chatBkg }) => chatBkg !== null && chatBkg !== void 0 ? chatBkg : `#fff`};
|
|
2319
2319
|
overflow-y: auto;
|
|
2320
|
+
border-top: ${({ theme }) => `1px solid ${theme.palette.grey[200]}`};
|
|
2320
2321
|
`;
|
|
2321
2322
|
|
|
2322
2323
|
/**
|
|
@@ -2328,7 +2329,6 @@ const ChatTitle = styled__default["default"](Title$1) `
|
|
|
2328
2329
|
color: ${({ theme }) => theme.palette.blue[600]};
|
|
2329
2330
|
margin: ${({ theme }) => `0 -${theme.space.md}`};
|
|
2330
2331
|
padding: ${({ theme }) => `${theme.space.sm} ${theme.space.md}`};
|
|
2331
|
-
border-bottom: ${({ theme }) => `1px solid ${theme.palette.grey[200]}`};
|
|
2332
2332
|
`;
|
|
2333
2333
|
|
|
2334
2334
|
const editorStyle = styled.css `
|
|
@@ -2583,6 +2583,8 @@ const editorStyle = styled.css `
|
|
|
2583
2583
|
pointer-events: none;
|
|
2584
2584
|
height: 0;
|
|
2585
2585
|
}
|
|
2586
|
+
|
|
2587
|
+
word-break: break-word;
|
|
2586
2588
|
`;
|
|
2587
2589
|
|
|
2588
2590
|
var _path$o;
|
|
@@ -2819,7 +2821,6 @@ const Header$1 = styled__default["default"].div `
|
|
|
2819
2821
|
display: flex;
|
|
2820
2822
|
flex-direction: column;
|
|
2821
2823
|
padding: ${({ theme }) => theme.space.xs} ${({ theme }) => theme.space.md};
|
|
2822
|
-
border-bottom: 1px solid ${({ theme }) => theme.palette.grey[300]};
|
|
2823
2824
|
`;
|
|
2824
2825
|
const Title = styled__default["default"](MD) `
|
|
2825
2826
|
${props => reactTheming.retrieveComponentStyles("text.primary", props)}
|
|
@@ -2954,9 +2955,12 @@ const Footer$2 = styled.styled.div `
|
|
|
2954
2955
|
justify-content: flex-end;
|
|
2955
2956
|
gap: ${({ theme }) => theme.space.xs};
|
|
2956
2957
|
`;
|
|
2958
|
+
const CommentTitle = styled.styled(Title$1) `
|
|
2959
|
+
color: ${({ theme }) => theme.palette.blue[600]};
|
|
2960
|
+
`;
|
|
2957
2961
|
const Comment = ({ author, message, children, date, }) => {
|
|
2958
2962
|
var _a, _b;
|
|
2959
|
-
return (jsxRuntime.jsxs(CommentCard, { children: [jsxRuntime.jsxs(AuthorContainer, { children: [jsxRuntime.jsx(Avatar, Object.assign({ avatarType: (_a = author.avatarType) !== null && _a !== void 0 ? _a : "text", style: { flexShrink: 0 } }, { children: author.avatar })), jsxRuntime.jsxs("div", { children: [jsxRuntime.jsxs(
|
|
2963
|
+
return (jsxRuntime.jsxs(CommentCard, { children: [jsxRuntime.jsxs(AuthorContainer, { children: [jsxRuntime.jsx(Avatar, Object.assign({ avatarType: (_a = author.avatarType) !== null && _a !== void 0 ? _a : "text", style: { flexShrink: 0 } }, { children: author.avatar })), jsxRuntime.jsxs("div", { children: [jsxRuntime.jsxs(CommentTitle, { children: [(_b = author.name) !== null && _b !== void 0 ? _b : "User", jsxRuntime.jsx(CommentDate, { children: date })] }), jsxRuntime.jsx(ReadOnly, { children: jsxRuntime.jsx(Editor, Object.assign({ editable: false }, { children: message })) })] })] }), jsxRuntime.jsx(Footer$2, { children: children })] }));
|
|
2960
2964
|
};
|
|
2961
2965
|
|
|
2962
2966
|
/**
|