@appquality/unguess-design-system 3.1.63 → 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 +14 -0
- package/build/index.js +5 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
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
|
+
|
|
1
15
|
# v3.1.63 (Thu Jan 04 2024)
|
|
2
16
|
|
|
3
17
|
#### 🐛 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 `
|
|
@@ -2821,7 +2821,6 @@ const Header$1 = styled__default["default"].div `
|
|
|
2821
2821
|
display: flex;
|
|
2822
2822
|
flex-direction: column;
|
|
2823
2823
|
padding: ${({ theme }) => theme.space.xs} ${({ theme }) => theme.space.md};
|
|
2824
|
-
border-bottom: 1px solid ${({ theme }) => theme.palette.grey[300]};
|
|
2825
2824
|
`;
|
|
2826
2825
|
const Title = styled__default["default"](MD) `
|
|
2827
2826
|
${props => reactTheming.retrieveComponentStyles("text.primary", props)}
|
|
@@ -2956,9 +2955,12 @@ const Footer$2 = styled.styled.div `
|
|
|
2956
2955
|
justify-content: flex-end;
|
|
2957
2956
|
gap: ${({ theme }) => theme.space.xs};
|
|
2958
2957
|
`;
|
|
2958
|
+
const CommentTitle = styled.styled(Title$1) `
|
|
2959
|
+
color: ${({ theme }) => theme.palette.blue[600]};
|
|
2960
|
+
`;
|
|
2959
2961
|
const Comment = ({ author, message, children, date, }) => {
|
|
2960
2962
|
var _a, _b;
|
|
2961
|
-
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 })] }));
|
|
2962
2964
|
};
|
|
2963
2965
|
|
|
2964
2966
|
/**
|