@pie-lib/editable-html 11.1.1 → 11.1.2-next.1595
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.json +12 -3322
- package/CHANGELOG.md +170 -100
- package/NEXT.CHANGELOG.json +1 -0
- package/lib/block-tags.js +25 -0
- package/lib/block-tags.js.map +1 -0
- package/lib/constants.js +16 -0
- package/lib/constants.js.map +1 -0
- package/lib/editor.js +352 -90
- package/lib/editor.js.map +1 -1
- package/lib/index.js +25 -9
- package/lib/index.js.map +1 -1
- package/lib/plugins/characters/index.js +8 -3
- package/lib/plugins/characters/index.js.map +1 -1
- package/lib/plugins/characters/utils.js +12 -12
- package/lib/plugins/characters/utils.js.map +1 -1
- package/lib/plugins/css/icons/index.js +37 -0
- package/lib/plugins/css/icons/index.js.map +1 -0
- package/lib/plugins/css/index.js +397 -0
- package/lib/plugins/css/index.js.map +1 -0
- package/lib/plugins/customPlugin/index.js +114 -0
- package/lib/plugins/customPlugin/index.js.map +1 -0
- package/lib/plugins/html/index.js +11 -7
- package/lib/plugins/html/index.js.map +1 -1
- package/lib/plugins/image/index.js +2 -1
- package/lib/plugins/image/index.js.map +1 -1
- package/lib/plugins/image/insert-image-handler.js +13 -4
- package/lib/plugins/image/insert-image-handler.js.map +1 -1
- package/lib/plugins/index.js +270 -11
- package/lib/plugins/index.js.map +1 -1
- package/lib/plugins/list/index.js +130 -0
- package/lib/plugins/list/index.js.map +1 -1
- package/lib/plugins/math/index.js +91 -56
- package/lib/plugins/math/index.js.map +1 -1
- package/lib/plugins/media/index.js +5 -2
- package/lib/plugins/media/index.js.map +1 -1
- package/lib/plugins/media/media-dialog.js +98 -57
- package/lib/plugins/media/media-dialog.js.map +1 -1
- package/lib/plugins/rendering/index.js +46 -0
- package/lib/plugins/rendering/index.js.map +1 -0
- package/lib/plugins/respArea/drag-in-the-blank/choice.js +45 -7
- package/lib/plugins/respArea/drag-in-the-blank/choice.js.map +1 -1
- package/lib/plugins/respArea/explicit-constructed-response/index.js +11 -9
- package/lib/plugins/respArea/explicit-constructed-response/index.js.map +1 -1
- package/lib/plugins/respArea/index.js +69 -21
- package/lib/plugins/respArea/index.js.map +1 -1
- package/lib/plugins/respArea/inline-dropdown/index.js +9 -4
- package/lib/plugins/respArea/inline-dropdown/index.js.map +1 -1
- package/lib/plugins/respArea/math-templated/index.js +130 -0
- package/lib/plugins/respArea/math-templated/index.js.map +1 -0
- package/lib/plugins/respArea/utils.js +16 -1
- package/lib/plugins/respArea/utils.js.map +1 -1
- package/lib/plugins/table/CustomTablePlugin.js +133 -0
- package/lib/plugins/table/CustomTablePlugin.js.map +1 -0
- package/lib/plugins/table/index.js +43 -59
- package/lib/plugins/table/index.js.map +1 -1
- package/lib/plugins/table/table-toolbar.js +33 -4
- package/lib/plugins/table/table-toolbar.js.map +1 -1
- package/lib/plugins/textAlign/icons/index.js +226 -0
- package/lib/plugins/textAlign/icons/index.js.map +1 -0
- package/lib/plugins/textAlign/index.js +34 -0
- package/lib/plugins/textAlign/index.js.map +1 -0
- package/lib/plugins/toolbar/default-toolbar.js +82 -27
- package/lib/plugins/toolbar/default-toolbar.js.map +1 -1
- package/lib/plugins/toolbar/done-button.js +5 -2
- package/lib/plugins/toolbar/done-button.js.map +1 -1
- package/lib/plugins/toolbar/editor-and-toolbar.js +18 -19
- package/lib/plugins/toolbar/editor-and-toolbar.js.map +1 -1
- package/lib/plugins/toolbar/toolbar-buttons.js +44 -11
- package/lib/plugins/toolbar/toolbar-buttons.js.map +1 -1
- package/lib/plugins/toolbar/toolbar.js +35 -11
- package/lib/plugins/toolbar/toolbar.js.map +1 -1
- package/lib/serialization.js +233 -44
- package/lib/serialization.js.map +1 -1
- package/lib/shared/alert-dialog.js +75 -0
- package/package.json +7 -6
- package/src/__tests__/editor.test.jsx +363 -0
- package/src/__tests__/serialization.test.js +291 -0
- package/src/__tests__/utils.js +36 -0
- package/src/block-tags.js +17 -0
- package/src/constants.js +7 -0
- package/src/editor.jsx +307 -52
- package/src/index.jsx +19 -10
- package/src/plugins/characters/index.jsx +11 -3
- package/src/plugins/characters/utils.js +12 -12
- package/src/plugins/css/icons/index.jsx +17 -0
- package/src/plugins/css/index.jsx +346 -0
- package/src/plugins/customPlugin/index.jsx +85 -0
- package/src/plugins/html/index.jsx +9 -6
- package/src/plugins/image/__tests__/__snapshots__/component.test.jsx.snap +51 -0
- package/src/plugins/image/__tests__/__snapshots__/image-toolbar-logic.test.jsx.snap +27 -0
- package/src/plugins/image/__tests__/__snapshots__/image-toolbar.test.jsx.snap +44 -0
- package/src/plugins/image/__tests__/component.test.jsx +41 -0
- package/src/plugins/image/__tests__/image-toolbar-logic.test.jsx +42 -0
- package/src/plugins/image/__tests__/image-toolbar.test.jsx +11 -0
- package/src/plugins/image/__tests__/index.test.js +95 -0
- package/src/plugins/image/__tests__/insert-image-handler.test.js +113 -0
- package/src/plugins/image/__tests__/mock-change.js +15 -0
- package/src/plugins/image/index.jsx +2 -1
- package/src/plugins/image/insert-image-handler.js +13 -6
- package/src/plugins/index.jsx +248 -5
- package/src/plugins/list/__tests__/index.test.js +54 -0
- package/src/plugins/list/index.jsx +130 -0
- package/src/plugins/math/__tests__/__snapshots__/index.test.jsx.snap +48 -0
- package/src/plugins/math/__tests__/index.test.jsx +245 -0
- package/src/plugins/math/index.jsx +87 -56
- package/src/plugins/media/__tests__/index.test.js +75 -0
- package/src/plugins/media/index.jsx +3 -2
- package/src/plugins/media/media-dialog.js +106 -57
- package/src/plugins/rendering/index.js +31 -0
- package/src/plugins/respArea/drag-in-the-blank/choice.jsx +35 -5
- package/src/plugins/respArea/explicit-constructed-response/index.jsx +10 -8
- package/src/plugins/respArea/index.jsx +53 -7
- package/src/plugins/respArea/inline-dropdown/index.jsx +12 -5
- package/src/plugins/respArea/math-templated/index.jsx +104 -0
- package/src/plugins/respArea/utils.jsx +11 -0
- package/src/plugins/table/CustomTablePlugin.js +113 -0
- package/src/plugins/table/__tests__/__snapshots__/table-toolbar.test.jsx.snap +44 -0
- package/src/plugins/table/__tests__/index.test.jsx +401 -0
- package/src/plugins/table/__tests__/table-toolbar.test.jsx +42 -0
- package/src/plugins/table/index.jsx +46 -59
- package/src/plugins/table/table-toolbar.jsx +39 -2
- package/src/plugins/textAlign/icons/index.jsx +139 -0
- package/src/plugins/textAlign/index.jsx +23 -0
- package/src/plugins/toolbar/__tests__/__snapshots__/default-toolbar.test.jsx.snap +923 -0
- package/src/plugins/toolbar/__tests__/__snapshots__/editor-and-toolbar.test.jsx.snap +20 -0
- package/src/plugins/toolbar/__tests__/__snapshots__/toolbar-buttons.test.jsx.snap +36 -0
- package/src/plugins/toolbar/__tests__/__snapshots__/toolbar.test.jsx.snap +46 -0
- package/src/plugins/toolbar/__tests__/default-toolbar.test.jsx +94 -0
- package/src/plugins/toolbar/__tests__/editor-and-toolbar.test.jsx +37 -0
- package/src/plugins/toolbar/__tests__/toolbar-buttons.test.jsx +51 -0
- package/src/plugins/toolbar/__tests__/toolbar.test.jsx +106 -0
- package/src/plugins/toolbar/default-toolbar.jsx +82 -20
- package/src/plugins/toolbar/done-button.jsx +3 -1
- package/src/plugins/toolbar/editor-and-toolbar.jsx +18 -13
- package/src/plugins/toolbar/toolbar-buttons.jsx +52 -11
- package/src/plugins/toolbar/toolbar.jsx +31 -8
- package/src/serialization.jsx +213 -38
- package/README.md +0 -45
- package/deploy.sh +0 -16
- package/playground/image/data.js +0 -59
- package/playground/image/index.html +0 -22
- package/playground/image/index.jsx +0 -81
- package/playground/index.html +0 -25
- package/playground/mathquill/index.html +0 -22
- package/playground/mathquill/index.jsx +0 -155
- package/playground/package.json +0 -15
- package/playground/prod-test/index.html +0 -22
- package/playground/prod-test/index.jsx +0 -28
- package/playground/schema-override/data.js +0 -29
- package/playground/schema-override/image-plugin.jsx +0 -41
- package/playground/schema-override/index.html +0 -21
- package/playground/schema-override/index.jsx +0 -97
- package/playground/serialization/data.js +0 -29
- package/playground/serialization/image-plugin.jsx +0 -41
- package/playground/serialization/index.html +0 -22
- package/playground/serialization/index.jsx +0 -12
- package/playground/static.json +0 -3
- package/playground/table-examples.html +0 -70
- package/playground/webpack.config.js +0 -42
- package/static.json +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,60 +3,55 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
# [11.16.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.15.0...@pie-lib/editable-html@11.16.0) (2025-09-18)
|
|
7
7
|
|
|
8
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
8
9
|
|
|
9
|
-
### Bug Fixes
|
|
10
10
|
|
|
11
|
-
* **editable-html:** avoid using setState multiple times PD-3221 ([c8af6af](https://github.com/pie-framework/pie-lib/commit/c8af6af081e68c634eb9dd16f6ffd016021bbb58))
|
|
12
|
-
* **editable-html:** avoid using setState multiple times PD-3221 ([6cf868b](https://github.com/pie-framework/pie-lib/commit/6cf868b549673121f60ed10530d755873d783372))
|
|
13
11
|
|
|
14
12
|
|
|
15
13
|
|
|
14
|
+
# [11.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.14.0...@pie-lib/editable-html@11.15.0) (2025-09-18)
|
|
16
15
|
|
|
16
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
17
17
|
|
|
18
|
-
# [11.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.9...@pie-lib/editable-html@11.1.0) (2023-10-16)
|
|
19
18
|
|
|
20
19
|
|
|
21
|
-
### Bug Fixes
|
|
22
20
|
|
|
23
|
-
* made sure editor is waiting for image and sound upload before finishes editing PD-2950 ([41b9407](https://github.com/pie-framework/pie-lib/commit/41b94078da7c50ce8d36fdc67bda83a44e0bff9b))
|
|
24
21
|
|
|
22
|
+
# [11.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.14.0) (2025-09-18)
|
|
25
23
|
|
|
26
|
-
### Features
|
|
27
24
|
|
|
28
|
-
|
|
25
|
+
### Bug Fixes
|
|
29
26
|
|
|
27
|
+
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
30
28
|
|
|
31
29
|
|
|
30
|
+
### Features
|
|
32
31
|
|
|
32
|
+
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
33
33
|
|
|
34
|
-
## [11.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.8...@pie-lib/editable-html@11.0.9) (2023-10-16)
|
|
35
34
|
|
|
36
35
|
|
|
37
|
-
### Bug Fixes
|
|
38
36
|
|
|
39
|
-
* **editable-html:** add clarifying comments for HTML mode edit tracking PD-2765 ([3870a4d](https://github.com/pie-framework/pie-lib/commit/3870a4d9b2e618ae6f32e6d20713978c4d791b14))
|
|
40
|
-
* **editable-html:** hide DoneButton on active htmlMode PD-2765 ([636a302](https://github.com/pie-framework/pie-lib/commit/636a302ab81016b2de8a16b1e6d96923d25b0592))
|
|
41
|
-
* **editable-html:** Prevent infinite loop in componentDidUpdate by refining isEdited state check PD-2765 ([e858ad0](https://github.com/pie-framework/pie-lib/commit/e858ad030e444b6be1ea57e950e6aa3462b5f60d))
|
|
42
|
-
* **editable-html:** Remove body overflow set by Material-UI and disable dialog scroll lock PD-3233 ([8ab4bde](https://github.com/pie-framework/pie-lib/commit/8ab4bde07fa411ef3cb31794309213bde541b6eb))
|
|
43
37
|
|
|
38
|
+
# [11.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.12.0...@pie-lib/editable-html@11.13.0) (2025-09-17)
|
|
44
39
|
|
|
40
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
45
41
|
|
|
46
42
|
|
|
47
43
|
|
|
48
|
-
## [11.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.7...@pie-lib/editable-html@11.0.8) (2023-10-03)
|
|
49
44
|
|
|
50
45
|
|
|
51
|
-
|
|
46
|
+
# [11.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.11.0...@pie-lib/editable-html@11.12.0) (2025-09-17)
|
|
52
47
|
|
|
53
|
-
|
|
48
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
54
49
|
|
|
55
50
|
|
|
56
51
|
|
|
57
52
|
|
|
58
53
|
|
|
59
|
-
|
|
54
|
+
# [11.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.10.1...@pie-lib/editable-html@11.11.0) (2025-09-17)
|
|
60
55
|
|
|
61
56
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
62
57
|
|
|
@@ -64,267 +59,342 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
64
59
|
|
|
65
60
|
|
|
66
61
|
|
|
67
|
-
## [11.
|
|
68
|
-
|
|
69
|
-
**Note:** Version bump only for package @pie-lib/editable-html
|
|
70
|
-
|
|
62
|
+
## [11.10.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.10.1) (2025-08-11)
|
|
71
63
|
|
|
72
64
|
|
|
65
|
+
### Bug Fixes
|
|
73
66
|
|
|
67
|
+
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
74
68
|
|
|
75
|
-
## [11.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.4...@pie-lib/editable-html@11.0.5) (2023-09-27)
|
|
76
69
|
|
|
77
|
-
|
|
70
|
+
### Features
|
|
78
71
|
|
|
72
|
+
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
79
73
|
|
|
80
74
|
|
|
81
75
|
|
|
82
76
|
|
|
83
|
-
## [11.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.3...@pie-lib/editable-html@11.0.4) (2023-09-27)
|
|
84
77
|
|
|
85
|
-
|
|
78
|
+
# [11.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.10.0) (2025-08-07)
|
|
86
79
|
|
|
80
|
+
### Features
|
|
87
81
|
|
|
82
|
+
- split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
|
|
88
83
|
|
|
84
|
+
# [11.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.9.0) (2025-07-31)
|
|
89
85
|
|
|
86
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
90
87
|
|
|
91
|
-
|
|
88
|
+
# [11.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.8.0) (2025-07-31)
|
|
92
89
|
|
|
90
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
93
91
|
|
|
94
|
-
|
|
92
|
+
# [11.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.7.0) (2025-07-31)
|
|
95
93
|
|
|
96
|
-
|
|
94
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
97
95
|
|
|
96
|
+
# [11.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.6.0) (2025-07-31)
|
|
98
97
|
|
|
98
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
99
99
|
|
|
100
|
+
# [11.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.5.0) (2025-07-31)
|
|
100
101
|
|
|
102
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
101
103
|
|
|
102
|
-
|
|
104
|
+
# [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
|
|
103
105
|
|
|
104
106
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
105
107
|
|
|
108
|
+
# [11.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.6.0) (2025-07-31)
|
|
106
109
|
|
|
110
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
107
111
|
|
|
112
|
+
# [11.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.5.0) (2025-07-31)
|
|
108
113
|
|
|
114
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
109
115
|
|
|
110
|
-
|
|
116
|
+
# [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
|
|
111
117
|
|
|
112
118
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
113
119
|
|
|
120
|
+
# [11.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.5.0) (2025-07-31)
|
|
114
121
|
|
|
122
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
115
123
|
|
|
124
|
+
# [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
|
|
116
125
|
|
|
126
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
117
127
|
|
|
118
|
-
# [11.
|
|
119
|
-
|
|
128
|
+
# [11.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0) (2025-07-31)
|
|
120
129
|
|
|
121
|
-
|
|
130
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
122
131
|
|
|
123
|
-
|
|
132
|
+
# [11.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0) (2025-07-31)
|
|
124
133
|
|
|
134
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
125
135
|
|
|
126
|
-
|
|
136
|
+
# [11.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.4.0) (2025-07-31)
|
|
127
137
|
|
|
128
|
-
|
|
138
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
129
139
|
|
|
140
|
+
# [11.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0) (2025-07-31)
|
|
130
141
|
|
|
142
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
131
143
|
|
|
144
|
+
# [11.2.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.8) (2025-07-25)
|
|
132
145
|
|
|
146
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
133
147
|
|
|
134
|
-
|
|
148
|
+
# [11.2.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.7) (2025-07-25)
|
|
135
149
|
|
|
150
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
136
151
|
|
|
137
|
-
|
|
152
|
+
# [11.2.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.7) (2025-07-25)
|
|
138
153
|
|
|
139
|
-
|
|
140
|
-
* **editable-html:** Disable HTML mode in player & retain html mode on alert dialog cancel PD-2765 ([4c56092](https://github.com/pie-framework/pie-lib/commit/4c56092bc66ebde1571b42419c563c580c68b927))
|
|
154
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
141
155
|
|
|
156
|
+
# [11.2.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.6) (2025-07-25)
|
|
142
157
|
|
|
158
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
143
159
|
|
|
160
|
+
# [11.2.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.6) (2025-07-25)
|
|
144
161
|
|
|
162
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
145
163
|
|
|
146
|
-
|
|
164
|
+
# [11.2.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.5) (2025-07-25)
|
|
147
165
|
|
|
148
166
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
149
167
|
|
|
168
|
+
# [11.2.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.5) (2025-07-25)
|
|
150
169
|
|
|
170
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
151
171
|
|
|
172
|
+
# [11.2.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.4) (2025-07-25)
|
|
152
173
|
|
|
174
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
153
175
|
|
|
154
|
-
|
|
155
|
-
|
|
176
|
+
# [11.2.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.3) (2025-07-25)
|
|
156
177
|
|
|
157
|
-
|
|
178
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
158
179
|
|
|
159
|
-
|
|
180
|
+
# [11.2.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.4) (2025-07-23)
|
|
160
181
|
|
|
182
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
161
183
|
|
|
184
|
+
# [11.2.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.3) (2025-07-23)
|
|
162
185
|
|
|
186
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
163
187
|
|
|
188
|
+
# [11.2.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.3) (2025-07-20)
|
|
164
189
|
|
|
165
|
-
|
|
190
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
166
191
|
|
|
192
|
+
# [11.2.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.2) (2025-07-20)
|
|
167
193
|
|
|
168
|
-
|
|
194
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
169
195
|
|
|
170
|
-
|
|
196
|
+
# [11.2.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.1) (2025-07-20)
|
|
171
197
|
|
|
198
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
172
199
|
|
|
200
|
+
# [11.2.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.2) (2025-07-20)
|
|
173
201
|
|
|
202
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
174
203
|
|
|
204
|
+
# [11.2.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.1) (2025-07-20)
|
|
175
205
|
|
|
176
|
-
|
|
206
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
177
207
|
|
|
208
|
+
# [11.2.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.1) (2025-07-20)
|
|
178
209
|
|
|
179
|
-
|
|
210
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
180
211
|
|
|
181
|
-
|
|
212
|
+
# [11.2.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.0) (2025-07-20)
|
|
182
213
|
|
|
214
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
183
215
|
|
|
216
|
+
# [11.3.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.3.0-beta.0) (2025-07-15)
|
|
184
217
|
|
|
218
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
185
219
|
|
|
220
|
+
# [11.2.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.1.1...@pie-lib/editable-html@11.2.0-beta.0) (2025-07-15)
|
|
186
221
|
|
|
187
|
-
|
|
222
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
188
223
|
|
|
224
|
+
# [11.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.9...@pie-lib/editable-html@11.1.0) (2023-10-16)
|
|
189
225
|
|
|
190
226
|
### Bug Fixes
|
|
191
227
|
|
|
192
|
-
|
|
228
|
+
- made sure editor is waiting for image and sound upload before finishes editing PD-2950 ([41b9407](https://github.com/pie-framework/pie-lib/commit/41b94078da7c50ce8d36fdc67bda83a44e0bff9b))
|
|
193
229
|
|
|
230
|
+
### Features
|
|
194
231
|
|
|
232
|
+
- made sure editor is waiting for image and sound upload before finishes editing PD-2950 ([#948](https://github.com/pie-framework/pie-lib/issues/948)) ([bd16707](https://github.com/pie-framework/pie-lib/commit/bd16707f13f824dfe2c2db7f395e58fa25eb2ffb))
|
|
195
233
|
|
|
234
|
+
## [11.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.8...@pie-lib/editable-html@11.0.9) (2023-10-16)
|
|
196
235
|
|
|
236
|
+
### Bug Fixes
|
|
197
237
|
|
|
198
|
-
|
|
238
|
+
- **editable-html:** add clarifying comments for HTML mode edit tracking PD-2765 ([3870a4d](https://github.com/pie-framework/pie-lib/commit/3870a4d9b2e618ae6f32e6d20713978c4d791b14))
|
|
239
|
+
- **editable-html:** hide DoneButton on active htmlMode PD-2765 ([636a302](https://github.com/pie-framework/pie-lib/commit/636a302ab81016b2de8a16b1e6d96923d25b0592))
|
|
240
|
+
- **editable-html:** Prevent infinite loop in componentDidUpdate by refining isEdited state check PD-2765 ([e858ad0](https://github.com/pie-framework/pie-lib/commit/e858ad030e444b6be1ea57e950e6aa3462b5f60d))
|
|
241
|
+
- **editable-html:** Remove body overflow set by Material-UI and disable dialog scroll lock PD-3233 ([8ab4bde](https://github.com/pie-framework/pie-lib/commit/8ab4bde07fa411ef3cb31794309213bde541b6eb))
|
|
199
242
|
|
|
243
|
+
## [11.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.7...@pie-lib/editable-html@11.0.8) (2023-10-03)
|
|
200
244
|
|
|
201
245
|
### Bug Fixes
|
|
202
246
|
|
|
203
|
-
|
|
247
|
+
- revert to pie-lib/math-rendering that what working ([25660ea](https://github.com/pie-framework/pie-lib/commit/25660ea6595e800a71c5494bd3bb9eecd3609a5a))
|
|
248
|
+
|
|
249
|
+
## [11.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.6...@pie-lib/editable-html@11.0.7) (2023-10-01)
|
|
204
250
|
|
|
251
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
205
252
|
|
|
253
|
+
## [11.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.5...@pie-lib/editable-html@11.0.6) (2023-09-27)
|
|
206
254
|
|
|
255
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
207
256
|
|
|
257
|
+
## [11.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.4...@pie-lib/editable-html@11.0.5) (2023-09-27)
|
|
208
258
|
|
|
209
|
-
|
|
259
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
210
260
|
|
|
261
|
+
## [11.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.3...@pie-lib/editable-html@11.0.4) (2023-09-27)
|
|
211
262
|
|
|
212
|
-
|
|
263
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
213
264
|
|
|
214
|
-
|
|
265
|
+
## [11.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.2...@pie-lib/editable-html@11.0.3) (2023-09-26)
|
|
215
266
|
|
|
267
|
+
### Bug Fixes
|
|
216
268
|
|
|
217
|
-
|
|
269
|
+
- **charting:** adjust icon for the drag handle PD-2790 ([fe670d7](https://github.com/pie-framework/pie-lib/commit/fe670d7a04f44da5c93dadbeec41b753ce50f9f6))
|
|
218
270
|
|
|
219
|
-
|
|
220
|
-
* **editable-html:** display warning dialog upon exiting html mode PD-2765 ([8fd9fb9](https://github.com/pie-framework/pie-lib/commit/8fd9fb964f681d261e22ec09aa8b8e6def2f7744))
|
|
221
|
-
* **editable-html:** implement toggle functionality for for switching between WYSIWYG and plain text HTML editors PD-2765 ([d44a549](https://github.com/pie-framework/pie-lib/commit/d44a549dcd4bb117c71a1f90bd7bc8eeb6a82a5e))
|
|
222
|
-
* **editable-html:** implement toggle functionality for switching between WYSIWYG and plain text HTML editors PD-2765 ([6541a85](https://github.com/pie-framework/pie-lib/commit/6541a85dd430d4d7c81fe3960a37e597f29a0ec2))
|
|
223
|
-
* **editable-html:** only show relevant toolbar buttons in HTML mode PD-2765 ([ed36dcb](https://github.com/pie-framework/pie-lib/commit/ed36dcb9a95f3d990da967f65e942922b60e42e6))
|
|
224
|
-
* **editable-html:** revise state handling for isHtmlMode and isEdited to accurately display choices in response area when toggling between html mode and rich text editor ([c800a22](https://github.com/pie-framework/pie-lib/commit/c800a22e323e863bae691e07b2b80774997ba0ea))
|
|
225
|
-
* **editable-html:** revise state handling for isHtmlMode and isEdited to accurately display choices in response area when toggling between html mode and rich text editor ([6daf84e](https://github.com/pie-framework/pie-lib/commit/6daf84e9692df368f7aa6866a33368941312872e))
|
|
271
|
+
## [11.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.1...@pie-lib/editable-html@11.0.2) (2023-09-25)
|
|
226
272
|
|
|
273
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
227
274
|
|
|
228
|
-
|
|
275
|
+
## [11.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@11.0.0...@pie-lib/editable-html@11.0.1) (2023-09-20)
|
|
229
276
|
|
|
230
|
-
|
|
277
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
231
278
|
|
|
279
|
+
# [11.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.7...@pie-lib/editable-html@11.0.0) (2023-09-20)
|
|
232
280
|
|
|
281
|
+
### Bug Fixes
|
|
233
282
|
|
|
283
|
+
- update mathml-to-latex version ([1d101d2](https://github.com/pie-framework/pie-lib/commit/1d101d22298bd480a5aec638e4c9708d5aa52ce4))
|
|
234
284
|
|
|
285
|
+
### BREAKING CHANGES
|
|
235
286
|
|
|
236
|
-
|
|
287
|
+
- updated mathml-to-latex version.
|
|
237
288
|
|
|
289
|
+
## [10.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.6...@pie-lib/editable-html@10.0.7) (2023-09-18)
|
|
238
290
|
|
|
239
291
|
### Bug Fixes
|
|
240
292
|
|
|
241
|
-
|
|
293
|
+
- use the mathMl resulted no matter if new latex is not identical; added a function to fix the round branckets issue ([61eeaed](https://github.com/pie-framework/pie-lib/commit/61eeaedc240bc247842a0164c07e58a8d8d792c9))
|
|
294
|
+
- **editable-html:** Disable HTML mode in player & retain html mode on alert dialog cancel PD-2765 ([4c56092](https://github.com/pie-framework/pie-lib/commit/4c56092bc66ebde1571b42419c563c580c68b927))
|
|
242
295
|
|
|
296
|
+
## [10.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.5...@pie-lib/editable-html@10.0.6) (2023-09-14)
|
|
243
297
|
|
|
298
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
244
299
|
|
|
300
|
+
## [10.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.4...@pie-lib/editable-html@10.0.5) (2023-09-14)
|
|
245
301
|
|
|
302
|
+
### Bug Fixes
|
|
246
303
|
|
|
247
|
-
|
|
304
|
+
- sanity check ([88e9afd](https://github.com/pie-framework/pie-lib/commit/88e9afd40b0aada05eb55284e00c7d918f029f08))
|
|
248
305
|
|
|
249
|
-
|
|
306
|
+
## [10.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.3...@pie-lib/editable-html@10.0.4) (2023-09-14)
|
|
250
307
|
|
|
308
|
+
### Bug Fixes
|
|
251
309
|
|
|
310
|
+
- import reduceMultipleBrs, add more details into console message PD-3167 ([5adcc05](https://github.com/pie-framework/pie-lib/commit/5adcc054e1bd5a71809827484d368d172a1255d3))
|
|
252
311
|
|
|
312
|
+
## [10.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.2...@pie-lib/editable-html@10.0.3) (2023-09-05)
|
|
253
313
|
|
|
314
|
+
### Bug Fixes
|
|
254
315
|
|
|
255
|
-
|
|
316
|
+
- make HTML disabled by default PD-2765 ([82bd362](https://github.com/pie-framework/pie-lib/commit/82bd36240205b8e0e31043cc8559267de0d5dc30))
|
|
256
317
|
|
|
257
|
-
|
|
318
|
+
## [10.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.1...@pie-lib/editable-html@10.0.2) (2023-09-02)
|
|
258
319
|
|
|
320
|
+
### Bug Fixes
|
|
259
321
|
|
|
322
|
+
- made sure div blocks are not present at the same level as paragraph ones PD-3051 ([f597969](https://github.com/pie-framework/pie-lib/commit/f59796980ad87323b401543fb3963edcea3775c6))
|
|
260
323
|
|
|
324
|
+
## [10.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@10.0.0...@pie-lib/editable-html@10.0.1) (2023-09-02)
|
|
261
325
|
|
|
326
|
+
### Bug Fixes
|
|
262
327
|
|
|
263
|
-
|
|
328
|
+
- made sure multiple nodes are wrapped in a block, in order for slate to handle it properly PD-3051 ([fd6ed48](https://github.com/pie-framework/pie-lib/commit/fd6ed48070979cd34bc64403228b728394a8afed))
|
|
264
329
|
|
|
330
|
+
# [10.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.8...@pie-lib/editable-html@10.0.0) (2023-08-30)
|
|
265
331
|
|
|
266
332
|
### Bug Fixes
|
|
267
333
|
|
|
268
|
-
|
|
334
|
+
- **editable-html:** Update 'isEdited' state to accurately track changes made in HTML mode PD-2765 ([913543e](https://github.com/pie-framework/pie-lib/commit/913543ec75302da3de0b86efc48c62bb06f92515))
|
|
269
335
|
|
|
336
|
+
### Features
|
|
270
337
|
|
|
338
|
+
- **editable-html:** display warning dialog conditional on edits in HTML mode PD-2765 ([58d66d5](https://github.com/pie-framework/pie-lib/commit/58d66d57668a8288f32e3e6ed78cf97a61f58b17))
|
|
339
|
+
- **editable-html:** display warning dialog upon exiting html mode PD-2765 ([8fd9fb9](https://github.com/pie-framework/pie-lib/commit/8fd9fb964f681d261e22ec09aa8b8e6def2f7744))
|
|
340
|
+
- **editable-html:** implement toggle functionality for for switching between WYSIWYG and plain text HTML editors PD-2765 ([d44a549](https://github.com/pie-framework/pie-lib/commit/d44a549dcd4bb117c71a1f90bd7bc8eeb6a82a5e))
|
|
341
|
+
- **editable-html:** implement toggle functionality for switching between WYSIWYG and plain text HTML editors PD-2765 ([6541a85](https://github.com/pie-framework/pie-lib/commit/6541a85dd430d4d7c81fe3960a37e597f29a0ec2))
|
|
342
|
+
- **editable-html:** only show relevant toolbar buttons in HTML mode PD-2765 ([ed36dcb](https://github.com/pie-framework/pie-lib/commit/ed36dcb9a95f3d990da967f65e942922b60e42e6))
|
|
343
|
+
- **editable-html:** revise state handling for isHtmlMode and isEdited to accurately display choices in response area when toggling between html mode and rich text editor ([c800a22](https://github.com/pie-framework/pie-lib/commit/c800a22e323e863bae691e07b2b80774997ba0ea))
|
|
344
|
+
- **editable-html:** revise state handling for isHtmlMode and isEdited to accurately display choices in response area when toggling between html mode and rich text editor ([6daf84e](https://github.com/pie-framework/pie-lib/commit/6daf84e9692df368f7aa6866a33368941312872e))
|
|
271
345
|
|
|
346
|
+
### BREAKING CHANGES
|
|
272
347
|
|
|
348
|
+
- **editable-html:** add a button to the editable-html editor that changes the field from using a WYSIWYG editor to using a plaintext editor that displays the raw HTML and allows it to be edited.
|
|
273
349
|
|
|
274
|
-
## [9.7.
|
|
275
|
-
|
|
276
|
-
**Note:** Version bump only for package @pie-lib/editable-html
|
|
350
|
+
## [9.7.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.7...@pie-lib/editable-html@9.7.8) (2023-08-21)
|
|
277
351
|
|
|
352
|
+
### Bug Fixes
|
|
278
353
|
|
|
354
|
+
- revert revert changes made for PD-3051 because they were causing PD-3119 ([371111c](https://github.com/pie-framework/pie-lib/commit/371111c26e0b0f886724f72ea67df0da3febef74))
|
|
279
355
|
|
|
356
|
+
## [9.7.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.6...@pie-lib/editable-html@9.7.7) (2023-08-21)
|
|
280
357
|
|
|
358
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
281
359
|
|
|
282
|
-
## [9.7.
|
|
360
|
+
## [9.7.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.5...@pie-lib/editable-html@9.7.6) (2023-08-15)
|
|
283
361
|
|
|
284
362
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
285
363
|
|
|
364
|
+
## [9.7.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.4...@pie-lib/editable-html@9.7.5) (2023-08-07)
|
|
286
365
|
|
|
366
|
+
### Bug Fixes
|
|
287
367
|
|
|
368
|
+
- made sure content is wrapped in a paragraph in order for slate to handle it properly PD-3051 ([4e3f756](https://github.com/pie-framework/pie-lib/commit/4e3f756bc783cae3b67762cacfacc09d32828918))
|
|
288
369
|
|
|
289
|
-
|
|
290
|
-
## [9.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.1...@pie-lib/editable-html@9.7.2) (2023-07-04)
|
|
370
|
+
## [9.7.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.3...@pie-lib/editable-html@9.7.4) (2023-07-31)
|
|
291
371
|
|
|
292
372
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
293
373
|
|
|
374
|
+
## [9.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.2...@pie-lib/editable-html@9.7.3) (2023-07-24)
|
|
294
375
|
|
|
376
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
295
377
|
|
|
378
|
+
## [9.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.1...@pie-lib/editable-html@9.7.2) (2023-07-04)
|
|
296
379
|
|
|
380
|
+
**Note:** Version bump only for package @pie-lib/editable-html
|
|
297
381
|
|
|
298
382
|
## [9.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.7.0...@pie-lib/editable-html@9.7.1) (2023-06-24)
|
|
299
383
|
|
|
300
|
-
|
|
301
384
|
### Bug Fixes
|
|
302
385
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
386
|
+
- made sure mathMlOptions are editable live [PD-2150](<[31ce3d3](https://github.com/pie-framework/pie-lib/commit/31ce3d3536788021b912895c611f972aa87161b0)>)
|
|
308
387
|
|
|
309
388
|
# [9.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.6...@pie-lib/editable-html@9.7.0) (2023-06-23)
|
|
310
389
|
|
|
311
|
-
|
|
312
390
|
### Features
|
|
313
391
|
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
392
|
+
- **editable-html:** make error class important to avoid overwriting ([37af2fc](https://github.com/pie-framework/pie-lib/commit/37af2fc862f3e5d0dfd0b1ad42fbd462d98bac89))
|
|
319
393
|
|
|
320
394
|
## [9.6.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.5...@pie-lib/editable-html@9.6.6) (2023-06-13)
|
|
321
395
|
|
|
322
396
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
323
397
|
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
398
|
## [9.6.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/editable-html@9.6.4...@pie-lib/editable-html@9.6.5) (2023-06-12)
|
|
329
399
|
|
|
330
400
|
**Note:** Version bump only for package @pie-lib/editable-html
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[]
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.BLOCK_TAGS = void 0;
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Tags to blocks.
|
|
10
|
+
*
|
|
11
|
+
* @type {Object}
|
|
12
|
+
*/
|
|
13
|
+
var BLOCK_TAGS = {
|
|
14
|
+
div: 'div',
|
|
15
|
+
// span: 'span',
|
|
16
|
+
p: 'paragraph',
|
|
17
|
+
pre: 'code',
|
|
18
|
+
h1: 'heading-one',
|
|
19
|
+
h2: 'heading-two',
|
|
20
|
+
h4: 'heading-four',
|
|
21
|
+
h5: 'heading-five',
|
|
22
|
+
h6: 'heading-six'
|
|
23
|
+
};
|
|
24
|
+
exports.BLOCK_TAGS = BLOCK_TAGS;
|
|
25
|
+
//# sourceMappingURL=block-tags.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/block-tags.js"],"names":["BLOCK_TAGS","div","p","pre","h1","h2","h4","h5","h6"],"mappings":";;;;;;;AAAA;AACA;AACA;AACA;AACA;AAEO,IAAMA,UAAU,GAAG;AACxBC,EAAAA,GAAG,EAAE,KADmB;AAExB;AACAC,EAAAA,CAAC,EAAE,WAHqB;AAIxBC,EAAAA,GAAG,EAAE,MAJmB;AAKxBC,EAAAA,EAAE,EAAE,aALoB;AAMxBC,EAAAA,EAAE,EAAE,aANoB;AAOxBC,EAAAA,EAAE,EAAE,cAPoB;AAQxBC,EAAAA,EAAE,EAAE,cARoB;AASxBC,EAAAA,EAAE,EAAE;AAToB,CAAnB","sourcesContent":["/**\n * Tags to blocks.\n *\n * @type {Object}\n */\n\nexport const BLOCK_TAGS = {\n div: 'div',\n // span: 'span',\n p: 'paragraph',\n pre: 'code',\n h1: 'heading-one',\n h2: 'heading-two',\n h4: 'heading-four',\n h5: 'heading-five',\n h6: 'heading-six',\n};\n"],"file":"block-tags.js"}
|
package/lib/constants.js
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = exports.PIE_TOOLBAR__CLASS = exports.MAIN_CONTAINER_CLASS = void 0;
|
|
7
|
+
var MAIN_CONTAINER_CLASS = 'main-container';
|
|
8
|
+
exports.MAIN_CONTAINER_CLASS = MAIN_CONTAINER_CLASS;
|
|
9
|
+
var PIE_TOOLBAR__CLASS = 'pie-toolbar';
|
|
10
|
+
exports.PIE_TOOLBAR__CLASS = PIE_TOOLBAR__CLASS;
|
|
11
|
+
var _default = {
|
|
12
|
+
MAIN_CONTAINER_CLASS: MAIN_CONTAINER_CLASS,
|
|
13
|
+
PIE_TOOLBAR__CLASS: PIE_TOOLBAR__CLASS
|
|
14
|
+
};
|
|
15
|
+
exports["default"] = _default;
|
|
16
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/constants.js"],"names":["MAIN_CONTAINER_CLASS","PIE_TOOLBAR__CLASS"],"mappings":";;;;;;AAAO,IAAMA,oBAAoB,GAAG,gBAA7B;;AACA,IAAMC,kBAAkB,GAAG,aAA3B;;eAEQ;AACbD,EAAAA,oBAAoB,EAApBA,oBADa;AAEbC,EAAAA,kBAAkB,EAAlBA;AAFa,C","sourcesContent":["export const MAIN_CONTAINER_CLASS = 'main-container';\nexport const PIE_TOOLBAR__CLASS = 'pie-toolbar';\n\nexport default {\n MAIN_CONTAINER_CLASS,\n PIE_TOOLBAR__CLASS,\n};\n"],"file":"constants.js"}
|