@pie-lib/render-ui 6.1.1-next.37 → 6.1.1-next.57

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.
Files changed (105) hide show
  1. package/CHANGELOG.json +1 -0
  2. package/CHANGELOG.md +1144 -0
  3. package/LICENSE.md +5 -0
  4. package/lib/assets/enableAudioAutoplayImage.js +8 -0
  5. package/lib/assets/enableAudioAutoplayImage.js.map +1 -0
  6. package/lib/collapsible/index.js +105 -0
  7. package/lib/collapsible/index.js.map +1 -0
  8. package/lib/color.js +235 -0
  9. package/lib/color.js.map +1 -0
  10. package/lib/feedback.js +112 -0
  11. package/lib/feedback.js.map +1 -0
  12. package/lib/has-media.js +22 -0
  13. package/lib/has-media.js.map +1 -0
  14. package/lib/has-text.js +22 -0
  15. package/lib/has-text.js.map +1 -0
  16. package/lib/html-and-math.js +54 -0
  17. package/lib/html-and-math.js.map +1 -0
  18. package/lib/index.js +113 -0
  19. package/lib/index.js.map +1 -0
  20. package/lib/input-container.js +59 -0
  21. package/lib/input-container.js.map +1 -0
  22. package/lib/preview-layout.js +65 -0
  23. package/lib/preview-layout.js.map +1 -0
  24. package/lib/preview-prompt.js +299 -0
  25. package/lib/preview-prompt.js.map +1 -0
  26. package/lib/purpose.js +22 -0
  27. package/lib/purpose.js.map +1 -0
  28. package/lib/readable.js +22 -0
  29. package/lib/readable.js.map +1 -0
  30. package/lib/response-indicators.js +102 -0
  31. package/lib/response-indicators.js.map +1 -0
  32. package/lib/transform-headings.js +53 -0
  33. package/lib/transform-headings.js.map +1 -0
  34. package/lib/ui-layout.js +125 -0
  35. package/lib/ui-layout.js.map +1 -0
  36. package/lib/withUndoReset.js +135 -0
  37. package/lib/withUndoReset.js.map +1 -0
  38. package/package.json +20 -32
  39. package/src/__tests__/color.test.js +259 -0
  40. package/src/__tests__/feedback.test.jsx +279 -0
  41. package/src/__tests__/has-media.test.js +19 -0
  42. package/src/__tests__/has-text.test.js +20 -0
  43. package/src/__tests__/html-and-math.test.js +36 -0
  44. package/src/__tests__/input-container.test.jsx +328 -0
  45. package/src/__tests__/preview-layout.test.jsx +349 -0
  46. package/src/__tests__/preview-prompt.test.jsx +379 -0
  47. package/src/__tests__/purpose.test.jsx +51 -0
  48. package/src/__tests__/readable.test.jsx +69 -0
  49. package/src/__tests__/response-indicators.test.jsx +111 -0
  50. package/src/__tests__/ui-layout.test.jsx +52 -0
  51. package/src/__tests__/withUndoReset.test.jsx +176 -0
  52. package/src/assets/enableAudioAutoplayImage.js +1 -0
  53. package/src/collapsible/__tests__/index.test.jsx +39 -0
  54. package/src/collapsible/index.jsx +64 -0
  55. package/src/color.js +139 -0
  56. package/src/feedback.jsx +84 -0
  57. package/src/has-media.js +16 -0
  58. package/src/has-text.js +18 -0
  59. package/src/html-and-math.js +21 -0
  60. package/src/index.js +35 -0
  61. package/src/input-container.jsx +47 -0
  62. package/src/preview-layout.jsx +41 -0
  63. package/src/preview-prompt.jsx +280 -0
  64. package/src/purpose.jsx +17 -0
  65. package/src/readable.jsx +19 -0
  66. package/src/response-indicators.jsx +82 -0
  67. package/{dist/transform-headings.d.ts → src/transform-headings.js} +30 -9
  68. package/src/ui-layout.jsx +96 -0
  69. package/src/withUndoReset.jsx +114 -0
  70. package/dist/_virtual/_rolldown/runtime.js +0 -11
  71. package/dist/assets/enableAudioAutoplayImage.d.ts +0 -10
  72. package/dist/assets/enableAudioAutoplayImage.js +0 -4
  73. package/dist/collapsible/index.d.ts +0 -31
  74. package/dist/collapsible/index.js +0 -53
  75. package/dist/color.d.ts +0 -116
  76. package/dist/color.js +0 -120
  77. package/dist/feedback.d.ts +0 -20
  78. package/dist/feedback.js +0 -65
  79. package/dist/has-media.d.ts +0 -9
  80. package/dist/has-media.js +0 -10
  81. package/dist/has-text.d.ts +0 -9
  82. package/dist/has-text.js +0 -10
  83. package/dist/html-and-math.d.ts +0 -22
  84. package/dist/html-and-math.js +0 -25
  85. package/dist/index.d.ts +0 -26
  86. package/dist/index.js +0 -18
  87. package/dist/inline-menu.d.ts +0 -33
  88. package/dist/inline-menu.js +0 -29
  89. package/dist/input-container.d.ts +0 -23
  90. package/dist/input-container.js +0 -39
  91. package/dist/preview-layout.d.ts +0 -24
  92. package/dist/preview-layout.js +0 -37
  93. package/dist/preview-prompt.d.ts +0 -38
  94. package/dist/preview-prompt.js +0 -154
  95. package/dist/purpose.d.ts +0 -18
  96. package/dist/purpose.js +0 -11
  97. package/dist/readable.d.ts +0 -18
  98. package/dist/readable.js +0 -11
  99. package/dist/response-indicators.d.ts +0 -121
  100. package/dist/response-indicators.js +0 -62
  101. package/dist/transform-headings.js +0 -15
  102. package/dist/ui-layout.d.ts +0 -31
  103. package/dist/ui-layout.js +0 -55
  104. package/dist/withUndoReset.d.ts +0 -47
  105. package/dist/withUndoReset.js +0 -84
package/CHANGELOG.md ADDED
@@ -0,0 +1,1144 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [6.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@6.1.0-next.2...@pie-lib/render-ui@6.1.0) (2026-05-07)
7
+
8
+ **Note:** Version bump only for package @pie-lib/render-ui
9
+
10
+ # [6.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@6.1.0-next.1...@pie-lib/render-ui@6.1.0-next.2) (2026-05-07)
11
+
12
+ **Note:** Version bump only for package @pie-lib/render-ui
13
+
14
+ # [6.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@6.1.0-next.0...@pie-lib/render-ui@6.1.0-next.1) (2026-05-06)
15
+
16
+ ### Bug Fixes
17
+
18
+ - tweak table styling rules to exclude role="presentation" PIE-440 ([dfefed1](https://github.com/pie-framework/pie-lib/commit/dfefed1a6f231bef4690e5863f20b9b240212594))
19
+
20
+ # [6.1.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.4...@pie-lib/render-ui@6.1.0-next.0) (2026-05-06)
21
+
22
+ ### Bug Fixes
23
+
24
+ - **graphing:** color changes for graph buttons PD-5590 ([1053f44](https://github.com/pie-framework/pie-lib/commit/1053f44cd10521bf5e3431ac071fb3f18e97f467))
25
+ - **graphing:** revert to previous disabled colors PD-5510 ([e50a991](https://github.com/pie-framework/pie-lib/commit/e50a991aaa20f134d338a3f27d6d46d68db02a57))
26
+ - **math-toolbar:** update math keypad colors and styles for improved UI consistency PD-5530 ([713c283](https://github.com/pie-framework/pie-lib/commit/713c283a11e1cff6568da7010e98e0b84df164ab))
27
+ - **render-ui/editable-html-tip-tap:** fix disableImageAlignmentButtons prop and fix alignment in PreviewPrompt PIE-45 ([ef87ea4](https://github.com/pie-framework/pie-lib/commit/ef87ea4e4f9343be4779ea370036a556d67c8cb3))
28
+
29
+ ### Features
30
+
31
+ - **math-input:** add hover styles for keypad buttons and update color definitions PD-5530 ([a3cb101](https://github.com/pie-framework/pie-lib/commit/a3cb101e5f326df14d0ae8454689ee18218744db))
32
+ - **render-ui:** add transformDataHeadings function to convert data-heading paragraphs to headings - PIE-151 ([b59a7cc](https://github.com/pie-framework/pie-lib/commit/b59a7cc091ce9d1ace1679bd854e72ab3d57fc76))
33
+
34
+ ## [6.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@6.0.0...@pie-lib/render-ui@6.0.1) (2026-04-28)
35
+
36
+ **Note:** Version bump only for package @pie-lib/render-ui
37
+
38
+ # [5.2.0-next.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.8...@pie-lib/render-ui@5.2.0-next.9) (2026-04-23)
39
+
40
+ ### Features
41
+
42
+ - **render-ui:** add transformDataHeadings function to convert data-heading paragraphs to headings - PIE-151 ([b59a7cc](https://github.com/pie-framework/pie-lib/commit/b59a7cc091ce9d1ace1679bd854e72ab3d57fc76))
43
+
44
+ # [5.2.0-next.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.7...@pie-lib/render-ui@5.2.0-next.8) (2026-04-15)
45
+
46
+ ### Bug Fixes
47
+
48
+ - **render-ui/editable-html-tip-tap:** fix disableImageAlignmentButtons prop and fix alignment in PreviewPrompt PIE-45 ([ef87ea4](https://github.com/pie-framework/pie-lib/commit/ef87ea4e4f9343be4779ea370036a556d67c8cb3))
49
+
50
+ # [5.2.0-next.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.6...@pie-lib/render-ui@5.2.0-next.7) (2026-03-25)
51
+
52
+ ### Features
53
+
54
+ - **math-input:** add hover styles for keypad buttons and update color definitions PD-5530 ([a3cb101](https://github.com/pie-framework/pie-lib/commit/a3cb101e5f326df14d0ae8454689ee18218744db))
55
+
56
+ # [5.2.0-next.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.5...@pie-lib/render-ui@5.2.0-next.6) (2026-03-18)
57
+
58
+ ### Bug Fixes
59
+
60
+ - **math-toolbar:** update math keypad colors and styles for improved UI consistency PD-5530 ([713c283](https://github.com/pie-framework/pie-lib/commit/713c283a11e1cff6568da7010e98e0b84df164ab))
61
+
62
+ # [5.2.0-next.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.4...@pie-lib/render-ui@5.2.0-next.5) (2026-03-18)
63
+
64
+ ### Bug Fixes
65
+
66
+ - **graphing:** color changes for graph buttons PD-5590 ([1053f44](https://github.com/pie-framework/pie-lib/commit/1053f44cd10521bf5e3431ac071fb3f18e97f467))
67
+ - **graphing:** revert to previous disabled colors PD-5510 ([e50a991](https://github.com/pie-framework/pie-lib/commit/e50a991aaa20f134d338a3f27d6d46d68db02a57))
68
+
69
+ # [5.2.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.2...@pie-lib/render-ui@5.2.0-next.4) (2026-02-26)
70
+
71
+ **Note:** Version bump only for package @pie-lib/render-ui
72
+
73
+ # [5.2.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.2.0-next.1...@pie-lib/render-ui@5.2.0-next.2) (2026-02-25)
74
+
75
+ ### Bug Fixes
76
+
77
+ - **deps:** update [@pie-lib](https://github.com/pie-lib) dependencies to published versions ([134fbdc](https://github.com/pie-framework/pie-lib/commit/134fbdc90c6a15f89a736340578d70fb80a983b3))
78
+
79
+ # [5.1.0-next.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.1.0-next.2...@pie-lib/render-ui@5.1.0-next.4) (2026-01-27)
80
+
81
+ **Note:** Version bump only for package @pie-lib/render-ui
82
+
83
+ # [5.1.0-next.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@5.1.0-next.1...@pie-lib/render-ui@5.1.0-next.2) (2026-01-26)
84
+
85
+ ### Bug Fixes
86
+
87
+ - removed slate-html-serializer from markup, and fixed extracss rules functionality ([1ac30a3](https://github.com/pie-framework/pie-lib/commit/1ac30a362202b9c063920642382cce8234b9de85))
88
+
89
+ # [5.1.0-next.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.35.2...@pie-lib/render-ui@5.1.0-next.1) (2026-01-26)
90
+
91
+ ### Bug Fixes
92
+
93
+ - remove exports and publish ([#2068](https://github.com/pie-framework/pie-lib/issues/2068)) ([60a96cd](https://github.com/pie-framework/pie-lib/commit/60a96cde0ec65f6b1cac0ae329aa33a0abc50d05))
94
+ - **render-ui:** handle invalid values for fontSizeFactor PD-5412 ([39b13c0](https://github.com/pie-framework/pie-lib/commit/39b13c0583f3f83575e4c32ed2873eecfd4903cd))
95
+ - add back muiButton ([b65ddc0](https://github.com/pie-framework/pie-lib/commit/b65ddc06cbb83dda5cc3c04ee60afffb793f1e10))
96
+ - add default props uiLayout, add props for previewLayout ([933e5f7](https://github.com/pie-framework/pie-lib/commit/933e5f71f1f2fff99c57ee5132f9f23ee85c3f28))
97
+ - Add MutationObserver to PreviewPrompt for prompt, rationale & TI math rendering ([d77ef3c](https://github.com/pie-framework/pie-lib/commit/d77ef3c15c6928f3a7dae627e6c49380cef01745))
98
+ - fix some popper components, fix some math toolbar color ([ed1df55](https://github.com/pie-framework/pie-lib/commit/ed1df558e272686a712767e347df49434790f334))
99
+ - label positioning in input render-ui ([8012817](https://github.com/pie-framework/pie-lib/commit/80128173dc596181de296633e9413bba8b79db81))
100
+ - remove carets from [@pie-lib](https://github.com/pie-lib) dependencies and configure lerna to use exact versions ([c9cd800](https://github.com/pie-framework/pie-lib/commit/c9cd800844abca09e7acf1fd35b2ddf51a6d86df))
101
+ - remove carret, point to specific libs version ([09939a5](https://github.com/pie-framework/pie-lib/commit/09939a5aca19d7dda03d62c93d4d524f98dd69da))
102
+ - simplify math render logic ([de11ebe](https://github.com/pie-framework/pie-lib/commit/de11ebe7f2faeb9dce6215673a90b79e86cbc590))
103
+ - update graphing components - styling and correctness handling PD-5258 ([7f1d3ba](https://github.com/pie-framework/pie-lib/commit/7f1d3bade7271c8f95bb9a67352fc9a52888ffda))
104
+ - use fixed lib deps ([de7c64d](https://github.com/pie-framework/pie-lib/commit/de7c64d14f13259fe44d47405e4421baef21e24e))
105
+
106
+ ### Features
107
+
108
+ - add MuiButton style overrides for consistent theming ([8fc184e](https://github.com/pie-framework/pie-lib/commit/8fc184e0eca3425cc76f1f76d8f1f24eb56c0779))
109
+ - bump react and react-dom ([01dc19e](https://github.com/pie-framework/pie-lib/commit/01dc19e88bbc8d372c561d1511df1a82937d45af))
110
+ - PD-5258 wip Material-UI migration ([25e60f3](https://github.com/pie-framework/pie-lib/commit/25e60f32602bfd7bfc8b4f9d2dcc3a3cd664e72b))
111
+ - sync latest changes from dev ([c936e9c](https://github.com/pie-framework/pie-lib/commit/c936e9c7f9e095e7d9b9805ac2bf72bd271e05f1))
112
+
113
+ # [5.0.0-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.35.3-next.0...@pie-lib/render-ui@5.0.0-next.0) (2026-01-19)
114
+
115
+ **Note:** Version bump only for package @pie-lib/render-ui
116
+
117
+ ## [4.35.3-next.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.49.0-mui-update.0...@pie-lib/render-ui@4.35.3-next.0) (2026-01-19)
118
+
119
+ ### Bug Fixes
120
+
121
+ - **render-ui:** change unneeded colors overwriting in theme provider PD-5274 ([dbfaed5](https://github.com/pie-framework/pie-lib/commit/dbfaed50feed9c059b14c9835468159858446af1))
122
+ - **render-ui:** handle vertical striping only for tables with th first col PD-5211 ([d32502e](https://github.com/pie-framework/pie-lib/commit/d32502e496fc9a19a6444e537587017c91e87724))
123
+ - bump config-ui PD-5265 ([77d0c78](https://github.com/pie-framework/pie-lib/commit/77d0c78cacfa57e93ed17e7a7f1257f4a9cf6ab3))
124
+
125
+ ## [4.35.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.35.1...@pie-lib/render-ui@4.35.2) (2025-11-27)
126
+
127
+ ### Bug Fixes
128
+
129
+ - **render-ui:** change unneeded colors overwriting in theme provider PD-5274 ([dbfaed5](https://github.com/pie-framework/pie-lib/commit/dbfaed50feed9c059b14c9835468159858446af1))
130
+ - **render-ui:** handle vertical striping only for tables with th first col PD-5211 ([d32502e](https://github.com/pie-framework/pie-lib/commit/d32502e496fc9a19a6444e537587017c91e87724))
131
+
132
+ ## [4.35.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.31.2...@pie-lib/render-ui@4.35.1) (2025-10-22)
133
+
134
+ ### Bug Fixes
135
+
136
+ - bump config-ui PD-5265 ([77d0c78](https://github.com/pie-framework/pie-lib/commit/77d0c78cacfa57e93ed17e7a7f1257f4a9cf6ab3))
137
+
138
+ # [4.35.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.34.0...@pie-lib/render-ui@4.35.0) (2025-10-16)
139
+
140
+ **Note:** Version bump only for package @pie-lib/render-ui
141
+
142
+ # [4.34.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.31.0...@pie-lib/render-ui@4.34.0) (2025-10-16)
143
+
144
+ **Note:** Version bump only for package @pie-lib/render-ui
145
+
146
+ # [4.33.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.31.0...@pie-lib/render-ui@4.33.0) (2025-10-16)
147
+
148
+ **Note:** Version bump only for package @pie-lib/render-ui
149
+
150
+ # [4.32.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.31.0...@pie-lib/render-ui@4.32.0) (2025-10-16)
151
+
152
+ **Note:** Version bump only for package @pie-lib/render-ui
153
+
154
+ ## [4.31.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.31.1...@pie-lib/render-ui@4.31.2) (2025-10-14)
155
+
156
+ **Note:** Version bump only for package @pie-lib/render-ui
157
+
158
+ ## [4.31.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.31.0...@pie-lib/render-ui@4.31.1) (2025-10-09)
159
+
160
+ **Note:** Version bump only for package @pie-lib/render-ui
161
+
162
+ # [4.31.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.31.0) (2025-09-25)
163
+
164
+ ### Bug Fixes
165
+
166
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
167
+
168
+ ### Features
169
+
170
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
171
+
172
+ # [4.30.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.29.0...@pie-lib/render-ui@4.30.0) (2025-09-18)
173
+
174
+ **Note:** Version bump only for package @pie-lib/render-ui
175
+
176
+ # [4.29.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.28.0...@pie-lib/render-ui@4.29.0) (2025-09-18)
177
+
178
+ **Note:** Version bump only for package @pie-lib/render-ui
179
+
180
+ # [4.28.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.28.0) (2025-09-18)
181
+
182
+ ### Bug Fixes
183
+
184
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
185
+
186
+ ### Features
187
+
188
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
189
+
190
+ # [4.27.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.26.0...@pie-lib/render-ui@4.27.0) (2025-09-17)
191
+
192
+ **Note:** Version bump only for package @pie-lib/render-ui
193
+
194
+ # [4.26.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.25.0...@pie-lib/render-ui@4.26.0) (2025-09-17)
195
+
196
+ **Note:** Version bump only for package @pie-lib/render-ui
197
+
198
+ # [4.25.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.24.1...@pie-lib/render-ui@4.25.0) (2025-09-17)
199
+
200
+ **Note:** Version bump only for package @pie-lib/render-ui
201
+
202
+ ## [4.24.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.24.1) (2025-08-11)
203
+
204
+ ### Bug Fixes
205
+
206
+ - fixed pie-lib/icons import [PD-5126](<[dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f)>)
207
+
208
+ ### Features
209
+
210
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
211
+
212
+ # [4.24.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.24.0) (2025-08-07)
213
+
214
+ ### Features
215
+
216
+ - split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
217
+
218
+ # [4.23.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.23.0) (2025-07-31)
219
+
220
+ **Note:** Version bump only for package @pie-lib/render-ui
221
+
222
+ # [4.22.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.22.0) (2025-07-31)
223
+
224
+ **Note:** Version bump only for package @pie-lib/render-ui
225
+
226
+ # [4.21.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.21.0) (2025-07-31)
227
+
228
+ **Note:** Version bump only for package @pie-lib/render-ui
229
+
230
+ # [4.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.20.0) (2025-07-31)
231
+
232
+ **Note:** Version bump only for package @pie-lib/render-ui
233
+
234
+ # [4.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.19.0) (2025-07-31)
235
+
236
+ **Note:** Version bump only for package @pie-lib/render-ui
237
+
238
+ # [4.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.18.0) (2025-07-31)
239
+
240
+ **Note:** Version bump only for package @pie-lib/render-ui
241
+
242
+ # [4.20.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.20.0) (2025-07-31)
243
+
244
+ **Note:** Version bump only for package @pie-lib/render-ui
245
+
246
+ # [4.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.19.0) (2025-07-31)
247
+
248
+ **Note:** Version bump only for package @pie-lib/render-ui
249
+
250
+ # [4.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.18.0) (2025-07-31)
251
+
252
+ **Note:** Version bump only for package @pie-lib/render-ui
253
+
254
+ # [4.19.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.19.0) (2025-07-31)
255
+
256
+ **Note:** Version bump only for package @pie-lib/render-ui
257
+
258
+ # [4.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.18.0) (2025-07-31)
259
+
260
+ **Note:** Version bump only for package @pie-lib/render-ui
261
+
262
+ # [4.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.17.0) (2025-07-31)
263
+
264
+ **Note:** Version bump only for package @pie-lib/render-ui
265
+
266
+ # [4.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.17.0) (2025-07-31)
267
+
268
+ **Note:** Version bump only for package @pie-lib/render-ui
269
+
270
+ # [4.18.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.18.0) (2025-07-31)
271
+
272
+ **Note:** Version bump only for package @pie-lib/render-ui
273
+
274
+ # [4.17.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.17.0) (2025-07-31)
275
+
276
+ **Note:** Version bump only for package @pie-lib/render-ui
277
+
278
+ # [4.16.0-beta.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.8) (2025-07-25)
279
+
280
+ **Note:** Version bump only for package @pie-lib/render-ui
281
+
282
+ # [4.16.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.7) (2025-07-25)
283
+
284
+ **Note:** Version bump only for package @pie-lib/render-ui
285
+
286
+ # [4.16.0-beta.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.7) (2025-07-25)
287
+
288
+ **Note:** Version bump only for package @pie-lib/render-ui
289
+
290
+ # [4.16.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.6) (2025-07-25)
291
+
292
+ **Note:** Version bump only for package @pie-lib/render-ui
293
+
294
+ # [4.16.0-beta.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.6) (2025-07-25)
295
+
296
+ **Note:** Version bump only for package @pie-lib/render-ui
297
+
298
+ # [4.16.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.5) (2025-07-25)
299
+
300
+ **Note:** Version bump only for package @pie-lib/render-ui
301
+
302
+ # [4.16.0-beta.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.5) (2025-07-25)
303
+
304
+ **Note:** Version bump only for package @pie-lib/render-ui
305
+
306
+ # [4.16.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.4) (2025-07-25)
307
+
308
+ **Note:** Version bump only for package @pie-lib/render-ui
309
+
310
+ # [4.16.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.3) (2025-07-25)
311
+
312
+ **Note:** Version bump only for package @pie-lib/render-ui
313
+
314
+ # [4.16.0-beta.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.4) (2025-07-23)
315
+
316
+ **Note:** Version bump only for package @pie-lib/render-ui
317
+
318
+ # [4.16.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.3) (2025-07-23)
319
+
320
+ **Note:** Version bump only for package @pie-lib/render-ui
321
+
322
+ # [4.16.0-beta.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.3) (2025-07-20)
323
+
324
+ **Note:** Version bump only for package @pie-lib/render-ui
325
+
326
+ # [4.16.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.2) (2025-07-20)
327
+
328
+ **Note:** Version bump only for package @pie-lib/render-ui
329
+
330
+ # [4.16.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.1) (2025-07-20)
331
+
332
+ **Note:** Version bump only for package @pie-lib/render-ui
333
+
334
+ # [4.16.0-beta.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.2) (2025-07-20)
335
+
336
+ **Note:** Version bump only for package @pie-lib/render-ui
337
+
338
+ # [4.16.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.1) (2025-07-20)
339
+
340
+ **Note:** Version bump only for package @pie-lib/render-ui
341
+
342
+ # [4.16.0-beta.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.1) (2025-07-20)
343
+
344
+ **Note:** Version bump only for package @pie-lib/render-ui
345
+
346
+ # [4.16.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.0) (2025-07-20)
347
+
348
+ **Note:** Version bump only for package @pie-lib/render-ui
349
+
350
+ # [4.17.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.17.0-beta.0) (2025-07-15)
351
+
352
+ **Note:** Version bump only for package @pie-lib/render-ui
353
+
354
+ # [4.16.0-beta.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.9...@pie-lib/render-ui@4.16.0-beta.0) (2025-07-15)
355
+
356
+ **Note:** Version bump only for package @pie-lib/render-ui
357
+
358
+ ## [4.15.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.8...@pie-lib/render-ui@4.15.9) (2023-10-03)
359
+
360
+ ### Bug Fixes
361
+
362
+ - revert to pie-lib/math-rendering that what working ([25660ea](https://github.com/pie-framework/pie-lib/commit/25660ea6595e800a71c5494bd3bb9eecd3609a5a))
363
+
364
+ ## [4.15.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.7...@pie-lib/render-ui@4.15.8) (2023-10-01)
365
+
366
+ **Note:** Version bump only for package @pie-lib/render-ui
367
+
368
+ ## [4.15.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.6...@pie-lib/render-ui@4.15.7) (2023-09-27)
369
+
370
+ **Note:** Version bump only for package @pie-lib/render-ui
371
+
372
+ ## [4.15.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.5...@pie-lib/render-ui@4.15.6) (2023-09-27)
373
+
374
+ **Note:** Version bump only for package @pie-lib/render-ui
375
+
376
+ ## [4.15.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.4...@pie-lib/render-ui@4.15.5) (2023-09-25)
377
+
378
+ **Note:** Version bump only for package @pie-lib/render-ui
379
+
380
+ ## [4.15.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.3...@pie-lib/render-ui@4.15.4) (2023-09-20)
381
+
382
+ **Note:** Version bump only for package @pie-lib/render-ui
383
+
384
+ ## [4.15.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.2...@pie-lib/render-ui@4.15.3) (2023-09-20)
385
+
386
+ **Note:** Version bump only for package @pie-lib/render-ui
387
+
388
+ ## [4.15.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.1...@pie-lib/render-ui@4.15.2) (2023-09-14)
389
+
390
+ **Note:** Version bump only for package @pie-lib/render-ui
391
+
392
+ ## [4.15.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.15.0...@pie-lib/render-ui@4.15.1) (2023-08-21)
393
+
394
+ ### Bug Fixes
395
+
396
+ - **render-ui:** DNA-17953 - avoid fontSize to fave initial value, avoid margins fot p elements ([3bdf0cf](https://github.com/pie-framework/pie-lib/commit/3bdf0cfa0ff343444b387b4840e904d76b27b41a))
397
+
398
+ # [4.15.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.29...@pie-lib/render-ui@4.15.0) (2023-08-15)
399
+
400
+ ### Features
401
+
402
+ - **text-select:** adjust colors and alignment of the color ([a51ba55](https://github.com/pie-framework/pie-lib/commit/a51ba5547f6e1559915d6ea967d406923831b561))
403
+ - **text-select:** PD-1163 create wrapper component ([b41db39](https://github.com/pie-framework/pie-lib/commit/b41db39ade332d19dca70a06d54acf51b5888c69))
404
+ - **text-select:** PD-1163 updates to tokens in text select ([2535c91](https://github.com/pie-framework/pie-lib/commit/2535c911f378f4cf41c8471bfa1898b996ffacee))
405
+
406
+ ## [4.14.29](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.28...@pie-lib/render-ui@4.14.29) (2023-07-24)
407
+
408
+ ### Bug Fixes
409
+
410
+ - **render-ui:** answer choices answered rendered in a smaller font-size ([e7503e0](https://github.com/pie-framework/pie-lib/commit/e7503e029ed6872098646e8787e124f2d6a8a018))
411
+
412
+ ## [4.14.28](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.27...@pie-lib/render-ui@4.14.28) (2023-06-24)
413
+
414
+ **Note:** Version bump only for package @pie-lib/render-ui
415
+
416
+ ## [4.14.27](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.26...@pie-lib/render-ui@4.14.27) (2023-06-13)
417
+
418
+ **Note:** Version bump only for package @pie-lib/render-ui
419
+
420
+ ## [4.14.26](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.25...@pie-lib/render-ui@4.14.26) (2023-06-12)
421
+
422
+ **Note:** Version bump only for package @pie-lib/render-ui
423
+
424
+ ## [4.14.25](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.24...@pie-lib/render-ui@4.14.25) (2023-06-05)
425
+
426
+ ### Bug Fixes
427
+
428
+ - **render-ui:** set font size to inherit to avoid the overwriting in some websites ([3c43288](https://github.com/pie-framework/pie-lib/commit/3c43288dc348a5712492edfac7525cb49536785d))
429
+
430
+ ## [4.14.24](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.23...@pie-lib/render-ui@4.14.24) (2023-05-12)
431
+
432
+ ### Bug Fixes
433
+
434
+ - **graphing:** add new style for missing objects - PD-1026 ([4dba6c2](https://github.com/pie-framework/pie-lib/commit/4dba6c2dcafbf9f250f1379672cba63e5c805b10))
435
+
436
+ ## [4.14.23](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.22...@pie-lib/render-ui@4.14.23) (2023-05-01)
437
+
438
+ ### Bug Fixes
439
+
440
+ - **multiple-choice:** fix vertical allignment within choice labels PD-2720 ([7307ca7](https://github.com/pie-framework/pie-lib/commit/7307ca7738c7f0fc76b635b3b8571c168d4bb8fb))
441
+
442
+ ## [4.14.22](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.21...@pie-lib/render-ui@4.14.22) (2023-04-25)
443
+
444
+ ### Bug Fixes
445
+
446
+ - **render-ui:** revert Carla's changes for PD-2720 because they're causing PD-2762 ([f96e689](https://github.com/pie-framework/pie-lib/commit/f96e689755368f2c31d8b0233fcd440eb685eb52))
447
+
448
+ ## [4.14.21](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.20...@pie-lib/render-ui@4.14.21) (2023-04-19)
449
+
450
+ ### Bug Fixes
451
+
452
+ - **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
453
+
454
+ ## [4.14.20](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.19...@pie-lib/render-ui@4.14.20) (2023-04-07)
455
+
456
+ ### Bug Fixes
457
+
458
+ - **multiple-choice:** fix labels alignment ([0be602e](https://github.com/pie-framework/pie-lib/commit/0be602eb32abfb4ba5d1cee455924240d392506d))
459
+
460
+ ## [4.14.19](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.18...@pie-lib/render-ui@4.14.19) (2023-04-03)
461
+
462
+ ### Bug Fixes
463
+
464
+ - **render-ui:** remove margin right from input ([4f07e4e](https://github.com/pie-framework/pie-lib/commit/4f07e4eadd70e98be2c1278f36f9a5a6eddbcf0c))
465
+
466
+ ## [4.14.18](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.17...@pie-lib/render-ui@4.14.18) (2023-03-27)
467
+
468
+ ### Bug Fixes
469
+
470
+ - **render-ui:** add additional style for legend tag-PD-2711 ([639a4d5](https://github.com/pie-framework/pie-lib/commit/639a4d589938209a8542c511a5d6a5a138c802af))
471
+
472
+ ## [4.14.17](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.16...@pie-lib/render-ui@4.14.17) (2023-03-20)
473
+
474
+ **Note:** Version bump only for package @pie-lib/render-ui
475
+
476
+ ## [4.14.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.15...@pie-lib/render-ui@4.14.16) (2023-03-13)
477
+
478
+ ### Bug Fixes
479
+
480
+ - **multiple-choice:** fix style for choice labels ([a16fcf0](https://github.com/pie-framework/pie-lib/commit/a16fcf072ce45f929bf0f1e4dbe9eadd00f19230))
481
+
482
+ ## [4.14.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.13...@pie-lib/render-ui@4.14.15) (2023-02-28)
483
+
484
+ ### Bug Fixes
485
+
486
+ - version bump ([d9280a9](https://github.com/pie-framework/pie-lib/commit/d9280a9aeddab459b6d84ecdbeb62814e1eee965))
487
+
488
+ ## [4.14.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.12...@pie-lib/render-ui@4.14.13) (2023-02-28)
489
+
490
+ **Note:** Version bump only for package @pie-lib/render-ui
491
+
492
+ ## [4.14.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.10...@pie-lib/render-ui@4.14.12) (2023-01-31)
493
+
494
+ **Note:** Version bump only for package @pie-lib/render-ui
495
+
496
+ ## [4.14.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.9...@pie-lib/render-ui@4.14.10) (2023-01-31)
497
+
498
+ **Note:** Version bump only for package @pie-lib/render-ui
499
+
500
+ ## [4.14.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.8...@pie-lib/render-ui@4.14.9) (2023-01-31)
501
+
502
+ **Note:** Version bump only for package @pie-lib/render-ui
503
+
504
+ ## [4.14.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.7...@pie-lib/render-ui@4.14.8) (2023-01-31)
505
+
506
+ **Note:** Version bump only for package @pie-lib/render-ui
507
+
508
+ ## [4.14.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.4...@pie-lib/render-ui@4.14.7) (2023-01-31)
509
+
510
+ **Note:** Version bump only for package @pie-lib/render-ui
511
+
512
+ ## [4.14.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.2...@pie-lib/render-ui@4.14.4) (2023-01-31)
513
+
514
+ **Note:** Version bump only for package @pie-lib/render-ui
515
+
516
+ ## [4.14.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.14.0...@pie-lib/render-ui@4.14.2) (2023-01-31)
517
+
518
+ **Note:** Version bump only for package @pie-lib/render-ui
519
+
520
+ # [4.14.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.7...@pie-lib/render-ui@4.14.0) (2023-01-31)
521
+
522
+ ### Features
523
+
524
+ - **multiple-choice:** add ARIA attributes ([4ab6b85](https://github.com/pie-framework/pie-lib/commit/4ab6b85d5827ea76d4095a71c482f5255671a1df))
525
+
526
+ ## [4.13.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.6...@pie-lib/render-ui@4.13.7) (2022-11-23)
527
+
528
+ **Note:** Version bump only for package @pie-lib/render-ui
529
+
530
+ ## [4.13.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.5...@pie-lib/render-ui@4.13.6) (2022-09-28)
531
+
532
+ ### Bug Fixes
533
+
534
+ - update comment ([5374bb3](https://github.com/pie-framework/pie-lib/commit/5374bb30db1c9e399885a99c76a419cd558acc65))
535
+ - **render-ui:** add parent div to image tag PD-1802 ([153db34](https://github.com/pie-framework/pie-lib/commit/153db34a317810fa49953286299b3fda1506be94))
536
+ - **render-ui:** fix image alignment in preview-prompt PD-1802 ([27390c1](https://github.com/pie-framework/pie-lib/commit/27390c1a6ab7b72b980f3b3f0f59a39674a9c307))
537
+
538
+ ## [4.13.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.4...@pie-lib/render-ui@4.13.5) (2022-09-14)
539
+
540
+ ### Bug Fixes
541
+
542
+ - revert PD-1802 work because it is causing big issues PD-2037 ([6579140](https://github.com/pie-framework/pie-lib/commit/657914060cd741cf8be7c76fa890b0655a8d3783))
543
+
544
+ ## [4.13.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.3...@pie-lib/render-ui@4.13.4) (2022-08-29)
545
+
546
+ **Note:** Version bump only for package @pie-lib/render-ui
547
+
548
+ ## [4.13.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.2...@pie-lib/render-ui@4.13.3) (2022-08-15)
549
+
550
+ ### Bug Fixes
551
+
552
+ - PD-1802 set style only to img parent ([d113b4e](https://github.com/pie-framework/pie-lib/commit/d113b4e48978c7619b4d9d4cfbf4996f400068e7))
553
+
554
+ ## [4.13.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.1...@pie-lib/render-ui@4.13.2) (2022-08-08)
555
+
556
+ ### Bug Fixes
557
+
558
+ - reverted changes for PD-1802 since it's causing PD-1937 ([b02fecb](https://github.com/pie-framework/pie-lib/commit/b02fecb54d8e243c34b864e4e5d3378899cb56d7))
559
+
560
+ ## [4.13.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.13.0...@pie-lib/render-ui@4.13.1) (2022-07-18)
561
+
562
+ **Note:** Version bump only for package @pie-lib/render-ui
563
+
564
+ # [4.13.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.9...@pie-lib/render-ui@4.13.0) (2022-07-18)
565
+
566
+ ### Features
567
+
568
+ - **editable-html, render-ui:** wrap up PD-1802 ([e10babf](https://github.com/pie-framework/pie-lib/commit/e10babf2e80aed67c856e9e021e37072e3df33fb))
569
+
570
+ ## [4.12.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.8...@pie-lib/render-ui@4.12.9) (2022-06-13)
571
+
572
+ **Note:** Version bump only for package @pie-lib/render-ui
573
+
574
+ ## [4.12.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.7...@pie-lib/render-ui@4.12.8) (2022-05-30)
575
+
576
+ **Note:** Version bump only for package @pie-lib/render-ui
577
+
578
+ ## [4.12.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.6...@pie-lib/render-ui@4.12.7) (2022-05-24)
579
+
580
+ **Note:** Version bump only for package @pie-lib/render-ui
581
+
582
+ ## [4.12.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.5...@pie-lib/render-ui@4.12.6) (2022-04-28)
583
+
584
+ **Note:** Version bump only for package @pie-lib/render-ui
585
+
586
+ ## [4.12.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.4...@pie-lib/render-ui@4.12.5) (2022-03-21)
587
+
588
+ **Note:** Version bump only for package @pie-lib/render-ui
589
+
590
+ ## [4.12.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.3...@pie-lib/render-ui@4.12.4) (2021-12-13)
591
+
592
+ **Note:** Version bump only for package @pie-lib/render-ui
593
+
594
+ ## [4.12.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.2...@pie-lib/render-ui@4.12.3) (2021-11-29)
595
+
596
+ **Note:** Version bump only for package @pie-lib/render-ui
597
+
598
+ ## [4.12.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.1...@pie-lib/render-ui@4.12.2) (2021-09-08)
599
+
600
+ **Note:** Version bump only for package @pie-lib/render-ui
601
+
602
+ ## [4.12.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.12.0...@pie-lib/render-ui@4.12.1) (2021-09-08)
603
+
604
+ **Note:** Version bump only for package @pie-lib/render-ui
605
+
606
+ # [4.12.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.9...@pie-lib/render-ui@4.12.0) (2021-08-30)
607
+
608
+ ### Features
609
+
610
+ - **preview-prompt:** add defaultClassName prop for static classname for pie-print ([7ca55ba](https://github.com/pie-framework/pie-lib/commit/7ca55ba))
611
+
612
+ ## [4.11.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.8...@pie-lib/render-ui@4.11.9) (2021-08-04)
613
+
614
+ ### Bug Fixes
615
+
616
+ - **render-ui:** text should serve as selector for multiple-choice questions PD-1227 ([133549b](https://github.com/pie-framework/pie-lib/commit/133549b))
617
+
618
+ ## [4.11.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.7...@pie-lib/render-ui@4.11.8) (2021-07-23)
619
+
620
+ ### Bug Fixes
621
+
622
+ - **editable-html:** add refs for editors, fix propTypes warnings for PD-1230 ([c6e3a2a](https://github.com/pie-framework/pie-lib/commit/c6e3a2a))
623
+
624
+ ## [4.11.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.5...@pie-lib/render-ui@4.11.7) (2021-06-25)
625
+
626
+ **Note:** Version bump only for package @pie-lib/render-ui
627
+
628
+ ## [4.11.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.4...@pie-lib/render-ui@4.11.5) (2021-03-01)
629
+
630
+ **Note:** Version bump only for package @pie-lib/render-ui
631
+
632
+ ## [4.11.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.3...@pie-lib/render-ui@4.11.4) (2021-03-01)
633
+
634
+ ### Bug Fixes
635
+
636
+ - **render-ui:** create function that parses html in order to fix PD-771 ([6bf9c5d](https://github.com/pie-framework/pie-lib/commit/6bf9c5d))
637
+ - **render-ui:** render math for collapsible to fix PD-772 ([f0ef384](https://github.com/pie-framework/pie-lib/commit/f0ef384))
638
+
639
+ ## [4.11.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.2...@pie-lib/render-ui@4.11.3) (2021-02-15)
640
+
641
+ **Note:** Version bump only for package @pie-lib/render-ui
642
+
643
+ ## [4.11.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.11.0...@pie-lib/render-ui@4.11.2) (2021-02-15)
644
+
645
+ **Note:** Version bump only for package @pie-lib/render-ui
646
+
647
+ # [4.11.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.10.4...@pie-lib/render-ui@4.11.0) (2021-02-15)
648
+
649
+ ### Features
650
+
651
+ - **render-ui:** add secondary background color ([c9cc0a8](https://github.com/pie-framework/pie-lib/commit/c9cc0a8))
652
+
653
+ ## [4.10.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.10.3...@pie-lib/render-ui@4.10.4) (2021-02-01)
654
+
655
+ **Note:** Version bump only for package @pie-lib/render-ui
656
+
657
+ ## [4.10.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.10.2...@pie-lib/render-ui@4.10.3) (2021-01-28)
658
+
659
+ ### Bug Fixes
660
+
661
+ - **render-ui:** make sure prompt replace has a value ([093fef7](https://github.com/pie-framework/pie-lib/commit/093fef7))
662
+
663
+ ## [4.10.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.10.1...@pie-lib/render-ui@4.10.2) (2021-01-28)
664
+
665
+ **Note:** Version bump only for package @pie-lib/render-ui
666
+
667
+ ## [4.10.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.10.0...@pie-lib/render-ui@4.10.1) (2021-01-25)
668
+
669
+ **Note:** Version bump only for package @pie-lib/render-ui
670
+
671
+ # [4.10.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.9.4...@pie-lib/render-ui@4.10.0) (2021-01-11)
672
+
673
+ ### Features
674
+
675
+ - **render-ui:** add readable component for pie tagging ([5b76d67](https://github.com/pie-framework/pie-lib/commit/5b76d67))
676
+ - **render-ui:** pie-purpose wrapper component added - PD-579 ([308f553](https://github.com/pie-framework/pie-lib/commit/308f553))
677
+
678
+ ## [4.9.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.9.3...@pie-lib/render-ui@4.9.4) (2020-10-29)
679
+
680
+ ### Bug Fixes
681
+
682
+ - Authored table borders are not visible in preview PD-342 ([cb86c55](https://github.com/pie-framework/pie-lib/commit/cb86c55))
683
+ - formatting ([754bb75](https://github.com/pie-framework/pie-lib/commit/754bb75))
684
+ - Modified code for suggested changes and addes snapshots PD-342 ([fbaa88e](https://github.com/pie-framework/pie-lib/commit/fbaa88e))
685
+ - Modified code for suggested changes and addes snapshots PD-342 ([dd43627](https://github.com/pie-framework/pie-lib/commit/dd43627))
686
+ - Modified code for suggested changes and addes snapshots PD-342 ([d9b76db](https://github.com/pie-framework/pie-lib/commit/d9b76db))
687
+ - removed console log that are added in test file PD-342 ([2c9d2e5](https://github.com/pie-framework/pie-lib/commit/2c9d2e5))
688
+ - snapshot test ([a86e5e8](https://github.com/pie-framework/pie-lib/commit/a86e5e8))
689
+ - typo ([0cb17c9](https://github.com/pie-framework/pie-lib/commit/0cb17c9))
690
+
691
+ ## [4.9.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.9.2...@pie-lib/render-ui@4.9.3) (2020-10-26)
692
+
693
+ **Note:** Version bump only for package @pie-lib/render-ui
694
+
695
+ ## [4.9.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.9.1...@pie-lib/render-ui@4.9.2) (2020-10-26)
696
+
697
+ **Note:** Version bump only for package @pie-lib/render-ui
698
+
699
+ ## [4.9.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.9.0...@pie-lib/render-ui@4.9.1) (2020-10-19)
700
+
701
+ **Note:** Version bump only for package @pie-lib/render-ui
702
+
703
+ # [4.9.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.8.4...@pie-lib/render-ui@4.9.0) (2020-09-25)
704
+
705
+ ### Features
706
+
707
+ - add light/dark variations to primary/secondary ([97d1ac6](https://github.com/pie-framework/pie-lib/commit/97d1ac6))
708
+
709
+ ## [4.8.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.8.3...@pie-lib/render-ui@4.8.4) (2020-09-18)
710
+
711
+ **Note:** Version bump only for package @pie-lib/render-ui
712
+
713
+ ## [4.8.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.8.2...@pie-lib/render-ui@4.8.3) (2020-09-11)
714
+
715
+ ### Bug Fixes
716
+
717
+ - **color:** retain background ([077e6ce](https://github.com/pie-framework/pie-lib/commit/077e6ce))
718
+
719
+ ## [4.8.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.8.1...@pie-lib/render-ui@4.8.2) (2020-08-21)
720
+
721
+ ### Bug Fixes
722
+
723
+ - rm pie-background for now ([5fd024a](https://github.com/pie-framework/pie-lib/commit/5fd024a))
724
+
725
+ ## [4.8.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.8.0...@pie-lib/render-ui@4.8.1) (2020-08-11)
726
+
727
+ **Note:** Version bump only for package @pie-lib/render-ui
728
+
729
+ # [4.8.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.16...@pie-lib/render-ui@4.8.0) (2020-06-05)
730
+
731
+ ### Features
732
+
733
+ - add color custom properties PD-308 ([8d7bc2b](https://github.com/pie-framework/pie-lib/commit/8d7bc2b))
734
+
735
+ ## [4.7.16](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.15...@pie-lib/render-ui@4.7.16) (2020-04-27)
736
+
737
+ ### Bug Fixes
738
+
739
+ - PD-54: Small font in Input Container. ([0a32d3a](https://github.com/pie-framework/pie-lib/commit/0a32d3a))
740
+
741
+ ## [4.7.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.14...@pie-lib/render-ui@4.7.15) (2020-04-14)
742
+
743
+ **Note:** Version bump only for package @pie-lib/render-ui
744
+
745
+ ## [4.7.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.13...@pie-lib/render-ui@4.7.14) (2020-04-08)
746
+
747
+ **Note:** Version bump only for package @pie-lib/render-ui
748
+
749
+ ## [4.7.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.12...@pie-lib/render-ui@4.7.13) (2020-03-31)
750
+
751
+ **Note:** Version bump only for package @pie-lib/render-ui
752
+
753
+ ## [4.7.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.11...@pie-lib/render-ui@4.7.12) (2020-03-31)
754
+
755
+ **Note:** Version bump only for package @pie-lib/render-ui
756
+
757
+ ## [4.7.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.10...@pie-lib/render-ui@4.7.11) (2020-03-31)
758
+
759
+ **Note:** Version bump only for package @pie-lib/render-ui
760
+
761
+ ## [4.7.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.9...@pie-lib/render-ui@4.7.10) (2020-03-30)
762
+
763
+ **Note:** Version bump only for package @pie-lib/render-ui
764
+
765
+ ## [4.7.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.8...@pie-lib/render-ui@4.7.9) (2020-03-30)
766
+
767
+ **Note:** Version bump only for package @pie-lib/render-ui
768
+
769
+ ## [4.7.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.7...@pie-lib/render-ui@4.7.8) (2020-03-30)
770
+
771
+ **Note:** Version bump only for package @pie-lib/render-ui
772
+
773
+ ## [4.7.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.6...@pie-lib/render-ui@4.7.7) (2020-03-30)
774
+
775
+ **Note:** Version bump only for package @pie-lib/render-ui
776
+
777
+ ## [4.7.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.5...@pie-lib/render-ui@4.7.6) (2020-03-30)
778
+
779
+ **Note:** Version bump only for package @pie-lib/render-ui
780
+
781
+ ## [4.7.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.4...@pie-lib/render-ui@4.7.5) (2020-03-30)
782
+
783
+ **Note:** Version bump only for package @pie-lib/render-ui
784
+
785
+ ## [4.7.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.3...@pie-lib/render-ui@4.7.4) (2020-03-30)
786
+
787
+ ### Bug Fixes
788
+
789
+ - add module prop to package.json ([494ace5](https://github.com/pie-framework/pie-lib/commit/494ace5))
790
+
791
+ ## [4.7.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.2...@pie-lib/render-ui@4.7.3) (2020-03-29)
792
+
793
+ **Note:** Version bump only for package @pie-lib/render-ui
794
+
795
+ ## [4.7.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.1...@pie-lib/render-ui@4.7.2) (2020-03-29)
796
+
797
+ **Note:** Version bump only for package @pie-lib/render-ui
798
+
799
+ ## [4.7.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.7.0...@pie-lib/render-ui@4.7.1) (2020-03-23)
800
+
801
+ ### Bug Fixes
802
+
803
+ - proper export of InputContainer ([cd5d597](https://github.com/pie-framework/pie-lib/commit/cd5d597))
804
+
805
+ # [4.7.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.6.3...@pie-lib/render-ui@4.7.0) (2020-03-23)
806
+
807
+ ### Features
808
+
809
+ - **es6:** updated index file and yarn ([2e04449](https://github.com/pie-framework/pie-lib/commit/2e04449))
810
+ - **es6:** updated index file to update package ([646f225](https://github.com/pie-framework/pie-lib/commit/646f225))
811
+
812
+ ## [4.6.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.6.2...@pie-lib/render-ui@4.6.3) (2020-03-18)
813
+
814
+ ### Bug Fixes
815
+
816
+ - es6 export syntax ([8a02dda](https://github.com/pie-framework/pie-lib/commit/8a02dda))
817
+ - ignore **mocks** in src ([c107bf8](https://github.com/pie-framework/pie-lib/commit/c107bf8))
818
+
819
+ ## [4.6.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.6.1...@pie-lib/render-ui@4.6.2) (2020-03-18)
820
+
821
+ ### Bug Fixes
822
+
823
+ - ignore **tests** in src ([710b483](https://github.com/pie-framework/pie-lib/commit/710b483))
824
+
825
+ ## [4.6.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.6.0...@pie-lib/render-ui@4.6.1) (2020-03-18)
826
+
827
+ ### Bug Fixes
828
+
829
+ - add src to pkg ([f37d16e](https://github.com/pie-framework/pie-lib/commit/f37d16e))
830
+
831
+ # [4.6.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.9...@pie-lib/render-ui@4.6.0) (2020-03-18)
832
+
833
+ ### Features
834
+
835
+ - add module entry point ([59b0d09](https://github.com/pie-framework/pie-lib/commit/59b0d09))
836
+
837
+ ## [4.5.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.8...@pie-lib/render-ui@4.5.9) (2020-03-18)
838
+
839
+ **Note:** Version bump only for package @pie-lib/render-ui
840
+
841
+ ## [4.5.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.7...@pie-lib/render-ui@4.5.8) (2020-03-06)
842
+
843
+ **Note:** Version bump only for package @pie-lib/render-ui
844
+
845
+ ## [4.5.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.6...@pie-lib/render-ui@4.5.7) (2020-02-25)
846
+
847
+ ### Bug Fixes
848
+
849
+ - add react-dom to peer deps ([1fb5a05](https://github.com/pie-framework/pie-lib/commit/1fb5a05))
850
+
851
+ ## [4.5.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.5...@pie-lib/render-ui@4.5.6) (2020-02-20)
852
+
853
+ ### Bug Fixes
854
+
855
+ - missing dependency prop-types ([cfff0e9](https://github.com/pie-framework/pie-lib/commit/cfff0e9))
856
+
857
+ ## [4.5.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.4...@pie-lib/render-ui@4.5.5) (2020-02-20)
858
+
859
+ **Note:** Version bump only for package @pie-lib/render-ui
860
+
861
+ ## [4.5.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.3...@pie-lib/render-ui@4.5.4) (2020-02-11)
862
+
863
+ **Note:** Version bump only for package @pie-lib/render-ui
864
+
865
+ ## [4.5.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.2...@pie-lib/render-ui@4.5.3) (2019-12-18)
866
+
867
+ **Note:** Version bump only for package @pie-lib/render-ui
868
+
869
+ ## [4.5.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.1...@pie-lib/render-ui@4.5.2) (2019-12-13)
870
+
871
+ **Note:** Version bump only for package @pie-lib/render-ui
872
+
873
+ ## [4.5.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.5.0...@pie-lib/render-ui@4.5.1) (2019-12-13)
874
+
875
+ **Note:** Version bump only for package @pie-lib/render-ui
876
+
877
+ # [4.5.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.4.5...@pie-lib/render-ui@4.5.0) (2019-12-12)
878
+
879
+ ### Features
880
+
881
+ - add HtmlAndMath from @pie-lib/math-rendering ([05121b3](https://github.com/pie-framework/pie-lib/commit/05121b3))
882
+
883
+ ## [4.4.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.4.4...@pie-lib/render-ui@4.4.5) (2019-08-21)
884
+
885
+ **Note:** Version bump only for package @pie-lib/render-ui
886
+
887
+ ## [4.4.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.4.3...@pie-lib/render-ui@4.4.4) (2019-07-08)
888
+
889
+ **Note:** Version bump only for package @pie-lib/render-ui
890
+
891
+ ## [4.4.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.4.2...@pie-lib/render-ui@4.4.3) (2019-07-05)
892
+
893
+ **Note:** Version bump only for package @pie-lib/render-ui
894
+
895
+ ## [4.4.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.4.1...@pie-lib/render-ui@4.4.2) (2019-07-02)
896
+
897
+ **Note:** Version bump only for package @pie-lib/render-ui
898
+
899
+ ## [4.4.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.4.0...@pie-lib/render-ui@4.4.1) (2019-06-17)
900
+
901
+ **Note:** Version bump only for package @pie-lib/render-ui
902
+
903
+ # [4.4.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.14...@pie-lib/render-ui@4.4.0) (2019-06-12)
904
+
905
+ ### Features
906
+
907
+ - version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
908
+
909
+ ## [4.3.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.13...@pie-lib/render-ui@4.3.14) (2019-06-05)
910
+
911
+ **Note:** Version bump only for package @pie-lib/render-ui
912
+
913
+ ## [4.3.13](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.12...@pie-lib/render-ui@4.3.13) (2019-05-15)
914
+
915
+ **Note:** Version bump only for package @pie-lib/render-ui
916
+
917
+ ## [4.3.12](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.11...@pie-lib/render-ui@4.3.12) (2019-05-15)
918
+
919
+ ### Bug Fixes
920
+
921
+ - Added className property on Collapsible wrapper. ([4c5f39b](https://github.com/pie-framework/pie-lib/commit/4c5f39b))
922
+
923
+ ## [4.3.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.10...@pie-lib/render-ui@4.3.11) (2019-05-14)
924
+
925
+ **Note:** Version bump only for package @pie-lib/render-ui
926
+
927
+ ## [4.3.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.9...@pie-lib/render-ui@4.3.10) (2019-05-02)
928
+
929
+ **Note:** Version bump only for package @pie-lib/render-ui
930
+
931
+ ## [4.3.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.8...@pie-lib/render-ui@4.3.9) (2019-04-17)
932
+
933
+ ### Bug Fixes
934
+
935
+ - **render-ui:** Added PreviewLayout to render-ui. ([6522faf](https://github.com/pie-framework/pie-lib/commit/6522faf))
936
+
937
+ ## [4.3.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.7...@pie-lib/render-ui@4.3.8) (2019-03-15)
938
+
939
+ ### Bug Fixes
940
+
941
+ - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
942
+
943
+ ## [4.3.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.6...@pie-lib/render-ui@4.3.7) (2019-03-14)
944
+
945
+ **Note:** Version bump only for package @pie-lib/render-ui
946
+
947
+ ## [4.3.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.5...@pie-lib/render-ui@4.3.6) (2019-03-14)
948
+
949
+ **Note:** Version bump only for package @pie-lib/render-ui
950
+
951
+ ## [4.3.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.4...@pie-lib/render-ui@4.3.5) (2019-03-14)
952
+
953
+ **Note:** Version bump only for package @pie-lib/render-ui
954
+
955
+ ## [4.3.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.3...@pie-lib/render-ui@4.3.4) (2019-03-13)
956
+
957
+ **Note:** Version bump only for package @pie-lib/render-ui
958
+
959
+ ## [4.3.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.2...@pie-lib/render-ui@4.3.3) (2019-03-13)
960
+
961
+ **Note:** Version bump only for package @pie-lib/render-ui
962
+
963
+ ## [4.3.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.1...@pie-lib/render-ui@4.3.2) (2019-03-13)
964
+
965
+ **Note:** Version bump only for package @pie-lib/render-ui
966
+
967
+ ## [4.3.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.3.0...@pie-lib/render-ui@4.3.1) (2019-01-30)
968
+
969
+ **Note:** Version bump only for package @pie-lib/render-ui
970
+
971
+ # [4.3.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.2.5...@pie-lib/render-ui@4.3.0) (2019-01-30)
972
+
973
+ ### Features
974
+
975
+ - libs version bump ([8effd43](https://github.com/pie-framework/pie-lib/commit/8effd43))
976
+
977
+ <a name="4.2.5"></a>
978
+
979
+ ## [4.2.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.2.4...@pie-lib/render-ui@4.2.5) (2018-09-13)
980
+
981
+ **Note:** Version bump only for package @pie-lib/render-ui
982
+
983
+ <a name="4.2.4"></a>
984
+
985
+ ## [4.2.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.2.3...@pie-lib/render-ui@4.2.4) (2018-09-12)
986
+
987
+ ### Bug Fixes
988
+
989
+ - githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
990
+ - rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
991
+
992
+ <a name="4.2.3"></a>
993
+
994
+ ## [4.2.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.2.1...@pie-lib/render-ui@4.2.3) (2018-09-12)
995
+
996
+ **Note:** Version bump only for package @pie-lib/render-ui
997
+
998
+ <a name="4.2.2"></a>
999
+
1000
+ ## [4.2.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.2.1...@pie-lib/render-ui@4.2.2) (2018-09-12)
1001
+
1002
+ **Note:** Version bump only for package @pie-lib/render-ui
1003
+
1004
+ <a name="4.2.1"></a>
1005
+
1006
+ ## [4.2.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@4.1.0...@pie-lib/render-ui@4.2.1) (2018-08-01)
1007
+
1008
+ ### Bug Fixes
1009
+
1010
+ - **render-ui:** add named export for withUndoReset ([97203a2](https://github.com/pie-framework/pie-lib/commit/97203a2))
1011
+
1012
+ <a name="4.1.0"></a>
1013
+
1014
+ # [4.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@3.0.0...@pie-lib/render-ui@4.1.0) (2018-07-31)
1015
+
1016
+ ### Features
1017
+
1018
+ - **render-ui:** added undo-reset HoC support for undo-reset functionality ([383ad4d](https://github.com/pie-framework/pie-lib/commit/383ad4d))
1019
+
1020
+ <a name="2.1.0"></a>
1021
+
1022
+ # [2.1.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.11...@pie-lib/render-ui@2.1.0) (2018-05-16)
1023
+
1024
+ ### Features
1025
+
1026
+ - upgrade material-ui -> [@material-ui](https://github.com/material-ui)/core@^1.0.0-rc.1 ([017ef63](https://github.com/pie-framework/pie-lib/commit/017ef63))
1027
+
1028
+ <a name="2.0.11"></a>
1029
+
1030
+ ## [2.0.11](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.10...@pie-lib/render-ui@2.0.11) (2018-05-09)
1031
+
1032
+ ### Bug Fixes
1033
+
1034
+ - **lint:** automatic lint fixes ([7c9a2a4](https://github.com/pie-framework/pie-lib/commit/7c9a2a4))
1035
+ - **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
1036
+
1037
+ <a name="2.0.10"></a>
1038
+
1039
+ ## [2.0.10](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.9...@pie-lib/render-ui@2.0.10) (2018-04-30)
1040
+
1041
+ ### Bug Fixes
1042
+
1043
+ - **dependencies:** set material-ui version to ^1.0.0-beta.44 ([6fd66bc](https://github.com/pie-framework/pie-lib/commit/6fd66bc))
1044
+
1045
+ <a name="2.0.9"></a>
1046
+
1047
+ ## [2.0.9](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.8...@pie-lib/render-ui@2.0.9) (2018-04-30)
1048
+
1049
+ ### Bug Fixes
1050
+
1051
+ - **dependencies:** lock material-ui to 1.0.0-beta.44 ([60df8e6](https://github.com/pie-framework/pie-lib/commit/60df8e6))
1052
+
1053
+ <a name="2.0.8"></a>
1054
+
1055
+ ## [2.0.8](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.7...@pie-lib/render-ui@2.0.8) (2018-04-30)
1056
+
1057
+ ### Bug Fixes
1058
+
1059
+ - **dependencies:** lock material-ui to 1.0.0-beta.43 ([2a3e087](https://github.com/pie-framework/pie-lib/commit/2a3e087))
1060
+ - **dependencies:** upgrade material-ui ([b94b50e](https://github.com/pie-framework/pie-lib/commit/b94b50e))
1061
+
1062
+ <a name="2.0.7"></a>
1063
+
1064
+ ## [2.0.7](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.6...@pie-lib/render-ui@2.0.7) (2018-04-24)
1065
+
1066
+ ### Bug Fixes
1067
+
1068
+ - **dependencies:** version bump ([3f6766b](https://github.com/pie-framework/pie-lib/commit/3f6766b))
1069
+
1070
+ <a name="2.0.6"></a>
1071
+
1072
+ ## [2.0.6](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.5...@pie-lib/render-ui@2.0.6) (2018-04-20)
1073
+
1074
+ ### Bug Fixes
1075
+
1076
+ - **build:** remove jsx from path name ([a6dd641](https://github.com/pie-framework/pie-lib/commit/a6dd641))
1077
+
1078
+ <a name="2.0.5"></a>
1079
+
1080
+ ## [2.0.5](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.4...@pie-lib/render-ui@2.0.5) (2018-04-20)
1081
+
1082
+ ### Bug Fixes
1083
+
1084
+ - **test:** normalize tests ([b86b3d9](https://github.com/pie-framework/pie-lib/commit/b86b3d9))
1085
+
1086
+ <a name="2.0.4"></a>
1087
+
1088
+ ## [2.0.4](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.3...@pie-lib/render-ui@2.0.4) (2018-04-19)
1089
+
1090
+ **Note:** Version bump only for package @pie-lib/render-ui
1091
+
1092
+ <a name="2.0.3"></a>
1093
+
1094
+ ## [2.0.3](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.2...@pie-lib/render-ui@2.0.3) (2018-04-19)
1095
+
1096
+ **Note:** Version bump only for package @pie-lib/render-ui
1097
+
1098
+ <a name="2.0.2"></a>
1099
+
1100
+ ## [2.0.2](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.1...@pie-lib/render-ui@2.0.2) (2018-04-19)
1101
+
1102
+ **Note:** Version bump only for package @pie-lib/render-ui
1103
+
1104
+ <a name="2.0.1"></a>
1105
+
1106
+ ## [2.0.1](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@2.0.0...@pie-lib/render-ui@2.0.1) (2018-04-19)
1107
+
1108
+ **Note:** Version bump only for package @pie-lib/render-ui
1109
+
1110
+ <a name="1.0.0"></a>
1111
+
1112
+ # [1.0.0](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@0.1.15...@pie-lib/render-ui@1.0.0) (2018-04-16)
1113
+
1114
+ ### Bug Fixes
1115
+
1116
+ - **dependencies:** bump react version ([0169b4a](https://github.com/pie-framework/pie-lib/commit/0169b4a))
1117
+
1118
+ ### BREAKING CHANGES
1119
+
1120
+ - **dependencies:** requires react@^16.3.1
1121
+
1122
+ <a name="0.1.15"></a>
1123
+
1124
+ ## [0.1.15](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@0.1.14...@pie-lib/render-ui@0.1.15) (2018-04-02)
1125
+
1126
+ **Note:** Version bump only for package @pie-lib/render-ui
1127
+
1128
+ <a name="0.1.14"></a>
1129
+
1130
+ ## [0.1.14](https://github.com/pie-framework/pie-lib/compare/@pie-lib/render-ui@0.1.13...@pie-lib/render-ui@0.1.14) (2018-03-28)
1131
+
1132
+ **Note:** Version bump only for package @pie-lib/render-ui
1133
+
1134
+ <a name="0.1.13"></a>
1135
+
1136
+ ## 0.1.13 (2018-03-06)
1137
+
1138
+ **Note:** Version bump only for package @pie-lib/render-ui
1139
+
1140
+ <a name="0.1.12"></a>
1141
+
1142
+ ## 0.1.12 (2018-03-06)
1143
+
1144
+ **Note:** Version bump only for package @pie-lib/render-ui