@appquality/unguess-design-system 3.1.69 → 3.1.70
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 +7 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# v3.1.70 (Fri Jan 26 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Add supports to very long comments [#311](https://github.com/AppQuality/unguess-design-system/pull/311) ([@marcbon](https://github.com/marcbon) [@cannarocks](https://github.com/cannarocks))
|
|
6
|
+
- 🐛 fix(chat): remove unnecessary text in chat message [#310](https://github.com/AppQuality/unguess-design-system/pull/310) ([@marcbon](https://github.com/marcbon))
|
|
7
|
+
|
|
8
|
+
#### Authors: 2
|
|
9
|
+
|
|
10
|
+
- Luca Cannarozzo ([@cannarocks](https://github.com/cannarocks))
|
|
11
|
+
- Marco Bonomo ([@marcbon](https://github.com/marcbon))
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v3.1.69 (Fri Jan 26 2024)
|
|
2
16
|
|
|
3
17
|
#### 🐛 Bug Fix
|
package/build/index.js
CHANGED
|
@@ -2644,14 +2644,17 @@ const EditorContainer$1 = styled__default["default"](reactForms.FauxInput) `
|
|
|
2644
2644
|
: `
|
|
2645
2645
|
margin-left: ${theme.space.sm};
|
|
2646
2646
|
padding: ${`${theme.space.xxs} ${theme.space.xs}`};
|
|
2647
|
+
|
|
2648
|
+
.ProseMirror {
|
|
2649
|
+
min-height: 36px;
|
|
2650
|
+
outline: none;
|
|
2651
|
+
max-height: 210px;
|
|
2652
|
+
overflow-y: auto;
|
|
2653
|
+
}
|
|
2647
2654
|
`}
|
|
2648
2655
|
|
|
2649
2656
|
.ProseMirror {
|
|
2650
2657
|
background-color: transparent;
|
|
2651
|
-
min-height: 36px;
|
|
2652
|
-
outline: none;
|
|
2653
|
-
max-height: 210px;
|
|
2654
|
-
overflow-y: auto;
|
|
2655
2658
|
|
|
2656
2659
|
${editorStyle}
|
|
2657
2660
|
}
|