@jotforminc/dnd-builder 2.9.2 → 2.9.3
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
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.9.3](https://github.com/jotform/dnd-builder/compare/v2.9.2...v2.9.3) (2024-02-14)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **dnd-builder:** fixes for lint ([2ea65b8](https://github.com/jotform/dnd-builder/commit/2ea65b8660fe87d8295bf7cd2149f55ed39e5272))
|
|
11
|
+
* **dnd-builder:** lint fixes ([6790b7c](https://github.com/jotform/dnd-builder/commit/6790b7c9f3d81318770c9e7ad8a04e6761b36f28))
|
|
12
|
+
* **dnd-builder:** text element height update on edit mode ([1ce5e95](https://github.com/jotform/dnd-builder/commit/1ce5e95b20b671deaea4330f00f5de40ea27826b))
|
|
13
|
+
|
|
5
14
|
### [2.9.2](https://github.com/jotform/dnd-builder/compare/v2.9.1...v2.9.2) (2024-01-16)
|
|
6
15
|
|
|
7
16
|
### [2.9.1](https://github.com/CemTunaKoc/dnd-builder/compare/v2.9.0...v2.9.1) (2024-01-15)
|
|
@@ -22,6 +22,11 @@
|
|
|
22
22
|
font-style: inherit;
|
|
23
23
|
overflow-y: visible;
|
|
24
24
|
&[contentEditable="true"] {
|
|
25
|
+
|
|
26
|
+
/* In the edit mode Text element height and scrollable area for quill editor
|
|
27
|
+
* And calculation applied for tolerance, banner height etc. in each report item
|
|
28
|
+
*/
|
|
29
|
+
max-height: calc(100% - 2.5rem);
|
|
25
30
|
cursor: text;
|
|
26
31
|
}
|
|
27
32
|
|
|
@@ -22,6 +22,11 @@
|
|
|
22
22
|
font-style: inherit;
|
|
23
23
|
overflow-y: visible;
|
|
24
24
|
&[contentEditable="true"] {
|
|
25
|
+
|
|
26
|
+
/* In the edit mode Text element height and scrollable area for quill editor
|
|
27
|
+
* And calculation applied for tolerance, banner height etc. in each report item
|
|
28
|
+
*/
|
|
29
|
+
max-height: calc(100% - 2.5rem);
|
|
25
30
|
cursor: text;
|
|
26
31
|
}
|
|
27
32
|
|