@pie-element/ebsr 7.0.22 → 7.0.24-next.2

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 (144) hide show
  1. package/CHANGELOG.md +0 -16
  2. package/configure/CHANGELOG.md +0 -16
  3. package/configure/lib/main.js +6 -4
  4. package/configure/lib/main.js.map +1 -1
  5. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
  6. package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +1793 -0
  7. package/{LICENSE.md → configure/node_modules/@pie-element/multiple-choice/LICENSE.md} +0 -0
  8. package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
  9. package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
  10. package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
  11. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
  12. package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +1334 -0
  13. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +104 -0
  14. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
  15. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +198 -0
  16. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
  17. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +599 -0
  18. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
  19. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
  20. package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
  21. package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +20 -0
  22. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
  23. package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +768 -0
  24. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +18 -0
  25. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
  26. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +305 -0
  27. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
  28. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +36 -0
  29. package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
  30. package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
  31. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +353 -0
  32. package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +277 -0
  33. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
  34. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +52 -0
  35. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
  36. package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
  37. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +338 -0
  38. package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +274 -0
  39. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +298 -0
  40. package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
  41. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +157 -0
  42. package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
  43. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
  44. package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
  45. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +151 -0
  46. package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
  47. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +97 -0
  48. package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
  49. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +254 -0
  50. package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
  51. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
  52. package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
  53. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +35 -0
  54. package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
  55. package/configure/node_modules/@pie-element/multiple-choice/module/configure.js +843 -0
  56. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/controller.js +17304 -17374
  57. package/configure/node_modules/@pie-element/multiple-choice/module/demo.js +77 -0
  58. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/element.js +42 -171
  59. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/index.html +1 -1
  60. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/manifest.json +4 -4
  61. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print-demo.js +46 -46
  62. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.html +1 -1
  63. package/{module → configure/node_modules/@pie-element/multiple-choice/module}/print.js +70 -259
  64. package/configure/node_modules/@pie-element/multiple-choice/package.json +34 -0
  65. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.json +672 -0
  66. package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.md +427 -0
  67. package/configure/node_modules/@pie-lib/math-rendering/LICENSE.md +5 -0
  68. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js +30 -0
  69. package/configure/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
  70. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +316 -0
  71. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
  72. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
  73. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
  74. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +123 -0
  75. package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
  76. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js +103 -0
  77. package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
  78. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js +275 -0
  79. package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
  80. package/configure/node_modules/@pie-lib/math-rendering/package.json +19 -0
  81. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.html +872 -0
  82. package/configure/node_modules/@pie-lib/math-rendering/playground/demo.js +108 -0
  83. package/configure/node_modules/@pie-lib/math-rendering/playground/main.html +156 -0
  84. package/configure/node_modules/@pie-lib/math-rendering/playground/main.js +16 -0
  85. package/configure/node_modules/@pie-lib/math-rendering/playground/webpack.config.js +29 -0
  86. package/configure/node_modules/@pie-lib/math-rendering/src/index.js +4 -0
  87. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +215 -0
  88. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
  89. package/configure/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
  90. package/configure/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
  91. package/configure/node_modules/@pie-lib/math-rendering/src/render-math.js +234 -0
  92. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.json +937 -0
  93. package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.md +602 -0
  94. package/configure/node_modules/@pie-lib/render-ui/LICENSE.md +5 -0
  95. package/configure/node_modules/@pie-lib/render-ui/README.md +33 -0
  96. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +146 -0
  97. package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
  98. package/configure/node_modules/@pie-lib/render-ui/lib/color.js +134 -0
  99. package/configure/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
  100. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js +160 -0
  101. package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
  102. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js +24 -0
  103. package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
  104. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js +102 -0
  105. package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
  106. package/configure/node_modules/@pie-lib/render-ui/lib/index.js +104 -0
  107. package/configure/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
  108. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
  109. package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
  110. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js +133 -0
  111. package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
  112. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +162 -0
  113. package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
  114. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
  115. package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
  116. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
  117. package/configure/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
  118. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js +160 -0
  119. package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
  120. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +206 -0
  121. package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
  122. package/configure/node_modules/@pie-lib/render-ui/package.json +30 -0
  123. package/configure/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +68 -0
  124. package/configure/node_modules/@pie-lib/render-ui/src/color.js +48 -0
  125. package/configure/node_modules/@pie-lib/render-ui/src/feedback.jsx +100 -0
  126. package/configure/node_modules/@pie-lib/render-ui/src/has-text.js +14 -0
  127. package/configure/node_modules/@pie-lib/render-ui/src/html-and-math.js +40 -0
  128. package/configure/node_modules/@pie-lib/render-ui/src/index.js +27 -0
  129. package/configure/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
  130. package/configure/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +77 -0
  131. package/configure/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +90 -0
  132. package/configure/node_modules/@pie-lib/render-ui/src/purpose.jsx +19 -0
  133. package/configure/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
  134. package/configure/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
  135. package/configure/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +118 -0
  136. package/configure/package.json +3 -3
  137. package/configure/src/__tests__/index.test.js +4 -2
  138. package/configure/src/main.jsx +8 -3
  139. package/controller/lib/index.js +79 -3
  140. package/controller/lib/index.js.map +1 -1
  141. package/controller/src/index.js +55 -0
  142. package/package.json +3 -3
  143. package/module/configure.js +0 -472
  144. package/module/demo.js +0 -77
@@ -0,0 +1,602 @@
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
+ ## [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)
7
+
8
+ **Note:** Version bump only for package @pie-lib/render-ui
9
+
10
+
11
+
12
+
13
+
14
+ ## [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)
15
+
16
+ **Note:** Version bump only for package @pie-lib/render-ui
17
+
18
+
19
+
20
+
21
+
22
+ ## [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)
23
+
24
+ **Note:** Version bump only for package @pie-lib/render-ui
25
+
26
+
27
+
28
+
29
+
30
+ ## [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)
31
+
32
+ **Note:** Version bump only for package @pie-lib/render-ui
33
+
34
+
35
+
36
+
37
+
38
+ ## [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)
39
+
40
+ **Note:** Version bump only for package @pie-lib/render-ui
41
+
42
+
43
+
44
+
45
+
46
+ ## [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)
47
+
48
+ **Note:** Version bump only for package @pie-lib/render-ui
49
+
50
+
51
+
52
+
53
+
54
+ # [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)
55
+
56
+
57
+ ### Features
58
+
59
+ * **preview-prompt:** add defaultClassName prop for static classname for pie-print ([7ca55ba](https://github.com/pie-framework/pie-lib/commit/7ca55ba))
60
+
61
+
62
+
63
+
64
+
65
+ ## [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)
66
+
67
+
68
+ ### Bug Fixes
69
+
70
+ * **render-ui:** text should serve as selector for multiple-choice questions PD-1227 ([133549b](https://github.com/pie-framework/pie-lib/commit/133549b))
71
+
72
+
73
+
74
+
75
+
76
+ ## [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)
77
+
78
+ ### Bug Fixes
79
+
80
+ - **editable-html:** add refs for editors, fix propTypes warnings for PD-1230 ([c6e3a2a](https://github.com/pie-framework/pie-lib/commit/c6e3a2a))
81
+
82
+ ## [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)
83
+
84
+ **Note:** Version bump only for package @pie-lib/render-ui
85
+
86
+ ## [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)
87
+
88
+ **Note:** Version bump only for package @pie-lib/render-ui
89
+
90
+ ## [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)
91
+
92
+ ### Bug Fixes
93
+
94
+ - **render-ui:** create function that parses html in order to fix PD-771 ([6bf9c5d](https://github.com/pie-framework/pie-lib/commit/6bf9c5d))
95
+ - **render-ui:** render math for collapsible to fix PD-772 ([f0ef384](https://github.com/pie-framework/pie-lib/commit/f0ef384))
96
+
97
+ ## [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)
98
+
99
+ **Note:** Version bump only for package @pie-lib/render-ui
100
+
101
+ ## [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)
102
+
103
+ **Note:** Version bump only for package @pie-lib/render-ui
104
+
105
+ # [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)
106
+
107
+ ### Features
108
+
109
+ - **render-ui:** add secondary background color ([c9cc0a8](https://github.com/pie-framework/pie-lib/commit/c9cc0a8))
110
+
111
+ ## [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)
112
+
113
+ **Note:** Version bump only for package @pie-lib/render-ui
114
+
115
+ ## [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)
116
+
117
+ ### Bug Fixes
118
+
119
+ - **render-ui:** make sure prompt replace has a value ([093fef7](https://github.com/pie-framework/pie-lib/commit/093fef7))
120
+
121
+ ## [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)
122
+
123
+ **Note:** Version bump only for package @pie-lib/render-ui
124
+
125
+ ## [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)
126
+
127
+ **Note:** Version bump only for package @pie-lib/render-ui
128
+
129
+ # [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)
130
+
131
+ ### Features
132
+
133
+ - **render-ui:** add readable component for pie tagging ([5b76d67](https://github.com/pie-framework/pie-lib/commit/5b76d67))
134
+ - **render-ui:** pie-purpose wrapper component added - PD-579 ([308f553](https://github.com/pie-framework/pie-lib/commit/308f553))
135
+
136
+ ## [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)
137
+
138
+ ### Bug Fixes
139
+
140
+ - Authored table borders are not visible in preview PD-342 ([cb86c55](https://github.com/pie-framework/pie-lib/commit/cb86c55))
141
+ - formatting ([754bb75](https://github.com/pie-framework/pie-lib/commit/754bb75))
142
+ - Modified code for suggested changes and addes snapshots PD-342 ([fbaa88e](https://github.com/pie-framework/pie-lib/commit/fbaa88e))
143
+ - Modified code for suggested changes and addes snapshots PD-342 ([dd43627](https://github.com/pie-framework/pie-lib/commit/dd43627))
144
+ - Modified code for suggested changes and addes snapshots PD-342 ([d9b76db](https://github.com/pie-framework/pie-lib/commit/d9b76db))
145
+ - removed console log that are added in test file PD-342 ([2c9d2e5](https://github.com/pie-framework/pie-lib/commit/2c9d2e5))
146
+ - snapshot test ([a86e5e8](https://github.com/pie-framework/pie-lib/commit/a86e5e8))
147
+ - typo ([0cb17c9](https://github.com/pie-framework/pie-lib/commit/0cb17c9))
148
+
149
+ ## [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)
150
+
151
+ **Note:** Version bump only for package @pie-lib/render-ui
152
+
153
+ ## [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)
154
+
155
+ **Note:** Version bump only for package @pie-lib/render-ui
156
+
157
+ ## [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)
158
+
159
+ **Note:** Version bump only for package @pie-lib/render-ui
160
+
161
+ # [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)
162
+
163
+ ### Features
164
+
165
+ - add light/dark variations to primary/secondary ([97d1ac6](https://github.com/pie-framework/pie-lib/commit/97d1ac6))
166
+
167
+ ## [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)
168
+
169
+ **Note:** Version bump only for package @pie-lib/render-ui
170
+
171
+ ## [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)
172
+
173
+ ### Bug Fixes
174
+
175
+ - **color:** retain background ([077e6ce](https://github.com/pie-framework/pie-lib/commit/077e6ce))
176
+
177
+ ## [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)
178
+
179
+ ### Bug Fixes
180
+
181
+ - rm pie-background for now ([5fd024a](https://github.com/pie-framework/pie-lib/commit/5fd024a))
182
+
183
+ ## [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)
184
+
185
+ **Note:** Version bump only for package @pie-lib/render-ui
186
+
187
+ # [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)
188
+
189
+ ### Features
190
+
191
+ - add color custom properties PD-308 ([8d7bc2b](https://github.com/pie-framework/pie-lib/commit/8d7bc2b))
192
+
193
+ ## [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)
194
+
195
+ ### Bug Fixes
196
+
197
+ - PD-54: Small font in Input Container. ([0a32d3a](https://github.com/pie-framework/pie-lib/commit/0a32d3a))
198
+
199
+ ## [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)
200
+
201
+ **Note:** Version bump only for package @pie-lib/render-ui
202
+
203
+ ## [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)
204
+
205
+ **Note:** Version bump only for package @pie-lib/render-ui
206
+
207
+ ## [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)
208
+
209
+ **Note:** Version bump only for package @pie-lib/render-ui
210
+
211
+ ## [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)
212
+
213
+ **Note:** Version bump only for package @pie-lib/render-ui
214
+
215
+ ## [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)
216
+
217
+ **Note:** Version bump only for package @pie-lib/render-ui
218
+
219
+ ## [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)
220
+
221
+ **Note:** Version bump only for package @pie-lib/render-ui
222
+
223
+ ## [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)
224
+
225
+ **Note:** Version bump only for package @pie-lib/render-ui
226
+
227
+ ## [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)
228
+
229
+ **Note:** Version bump only for package @pie-lib/render-ui
230
+
231
+ ## [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)
232
+
233
+ **Note:** Version bump only for package @pie-lib/render-ui
234
+
235
+ ## [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)
236
+
237
+ **Note:** Version bump only for package @pie-lib/render-ui
238
+
239
+ ## [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)
240
+
241
+ **Note:** Version bump only for package @pie-lib/render-ui
242
+
243
+ ## [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)
244
+
245
+ ### Bug Fixes
246
+
247
+ - add module prop to package.json ([494ace5](https://github.com/pie-framework/pie-lib/commit/494ace5))
248
+
249
+ ## [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)
250
+
251
+ **Note:** Version bump only for package @pie-lib/render-ui
252
+
253
+ ## [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)
254
+
255
+ **Note:** Version bump only for package @pie-lib/render-ui
256
+
257
+ ## [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)
258
+
259
+ ### Bug Fixes
260
+
261
+ - proper export of InputContainer ([cd5d597](https://github.com/pie-framework/pie-lib/commit/cd5d597))
262
+
263
+ # [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)
264
+
265
+ ### Features
266
+
267
+ - **es6:** updated index file and yarn ([2e04449](https://github.com/pie-framework/pie-lib/commit/2e04449))
268
+ - **es6:** updated index file to update package ([646f225](https://github.com/pie-framework/pie-lib/commit/646f225))
269
+
270
+ ## [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)
271
+
272
+ ### Bug Fixes
273
+
274
+ - es6 export syntax ([8a02dda](https://github.com/pie-framework/pie-lib/commit/8a02dda))
275
+ - ignore **mocks** in src ([c107bf8](https://github.com/pie-framework/pie-lib/commit/c107bf8))
276
+
277
+ ## [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)
278
+
279
+ ### Bug Fixes
280
+
281
+ - ignore **tests** in src ([710b483](https://github.com/pie-framework/pie-lib/commit/710b483))
282
+
283
+ ## [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)
284
+
285
+ ### Bug Fixes
286
+
287
+ - add src to pkg ([f37d16e](https://github.com/pie-framework/pie-lib/commit/f37d16e))
288
+
289
+ # [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)
290
+
291
+ ### Features
292
+
293
+ - add module entry point ([59b0d09](https://github.com/pie-framework/pie-lib/commit/59b0d09))
294
+
295
+ ## [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)
296
+
297
+ **Note:** Version bump only for package @pie-lib/render-ui
298
+
299
+ ## [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)
300
+
301
+ **Note:** Version bump only for package @pie-lib/render-ui
302
+
303
+ ## [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)
304
+
305
+ ### Bug Fixes
306
+
307
+ - add react-dom to peer deps ([1fb5a05](https://github.com/pie-framework/pie-lib/commit/1fb5a05))
308
+
309
+ ## [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)
310
+
311
+ ### Bug Fixes
312
+
313
+ - missing dependency prop-types ([cfff0e9](https://github.com/pie-framework/pie-lib/commit/cfff0e9))
314
+
315
+ ## [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)
316
+
317
+ **Note:** Version bump only for package @pie-lib/render-ui
318
+
319
+ ## [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)
320
+
321
+ **Note:** Version bump only for package @pie-lib/render-ui
322
+
323
+ ## [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)
324
+
325
+ **Note:** Version bump only for package @pie-lib/render-ui
326
+
327
+ ## [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)
328
+
329
+ **Note:** Version bump only for package @pie-lib/render-ui
330
+
331
+ ## [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)
332
+
333
+ **Note:** Version bump only for package @pie-lib/render-ui
334
+
335
+ # [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)
336
+
337
+ ### Features
338
+
339
+ - add HtmlAndMath from @pie-lib/math-rendering ([05121b3](https://github.com/pie-framework/pie-lib/commit/05121b3))
340
+
341
+ ## [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)
342
+
343
+ **Note:** Version bump only for package @pie-lib/render-ui
344
+
345
+ ## [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)
346
+
347
+ **Note:** Version bump only for package @pie-lib/render-ui
348
+
349
+ ## [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)
350
+
351
+ **Note:** Version bump only for package @pie-lib/render-ui
352
+
353
+ ## [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)
354
+
355
+ **Note:** Version bump only for package @pie-lib/render-ui
356
+
357
+ ## [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)
358
+
359
+ **Note:** Version bump only for package @pie-lib/render-ui
360
+
361
+ # [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)
362
+
363
+ ### Features
364
+
365
+ - version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
366
+
367
+ ## [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)
368
+
369
+ **Note:** Version bump only for package @pie-lib/render-ui
370
+
371
+ ## [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)
372
+
373
+ **Note:** Version bump only for package @pie-lib/render-ui
374
+
375
+ ## [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)
376
+
377
+ ### Bug Fixes
378
+
379
+ - Added className property on Collapsible wrapper. ([4c5f39b](https://github.com/pie-framework/pie-lib/commit/4c5f39b))
380
+
381
+ ## [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)
382
+
383
+ **Note:** Version bump only for package @pie-lib/render-ui
384
+
385
+ ## [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)
386
+
387
+ **Note:** Version bump only for package @pie-lib/render-ui
388
+
389
+ ## [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)
390
+
391
+ ### Bug Fixes
392
+
393
+ - **render-ui:** Added PreviewLayout to render-ui. ([6522faf](https://github.com/pie-framework/pie-lib/commit/6522faf))
394
+
395
+ ## [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)
396
+
397
+ ### Bug Fixes
398
+
399
+ - rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
400
+
401
+ ## [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)
402
+
403
+ **Note:** Version bump only for package @pie-lib/render-ui
404
+
405
+ ## [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)
406
+
407
+ **Note:** Version bump only for package @pie-lib/render-ui
408
+
409
+ ## [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)
410
+
411
+ **Note:** Version bump only for package @pie-lib/render-ui
412
+
413
+ ## [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)
414
+
415
+ **Note:** Version bump only for package @pie-lib/render-ui
416
+
417
+ ## [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)
418
+
419
+ **Note:** Version bump only for package @pie-lib/render-ui
420
+
421
+ ## [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)
422
+
423
+ **Note:** Version bump only for package @pie-lib/render-ui
424
+
425
+ ## [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)
426
+
427
+ **Note:** Version bump only for package @pie-lib/render-ui
428
+
429
+ # [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)
430
+
431
+ ### Features
432
+
433
+ - libs version bump ([8effd43](https://github.com/pie-framework/pie-lib/commit/8effd43))
434
+
435
+ <a name="4.2.5"></a>
436
+
437
+ ## [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)
438
+
439
+ **Note:** Version bump only for package @pie-lib/render-ui
440
+
441
+ <a name="4.2.4"></a>
442
+
443
+ ## [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)
444
+
445
+ ### Bug Fixes
446
+
447
+ - githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
448
+ - rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
449
+
450
+ <a name="4.2.3"></a>
451
+
452
+ ## [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)
453
+
454
+ **Note:** Version bump only for package @pie-lib/render-ui
455
+
456
+ <a name="4.2.2"></a>
457
+
458
+ ## [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)
459
+
460
+ **Note:** Version bump only for package @pie-lib/render-ui
461
+
462
+ <a name="4.2.1"></a>
463
+
464
+ ## [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)
465
+
466
+ ### Bug Fixes
467
+
468
+ - **render-ui:** add named export for withUndoReset ([97203a2](https://github.com/pie-framework/pie-lib/commit/97203a2))
469
+
470
+ <a name="4.1.0"></a>
471
+
472
+ # [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)
473
+
474
+ ### Features
475
+
476
+ - **render-ui:** added undo-reset HoC support for undo-reset functionality ([383ad4d](https://github.com/pie-framework/pie-lib/commit/383ad4d))
477
+
478
+ <a name="2.1.0"></a>
479
+
480
+ # [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)
481
+
482
+ ### Features
483
+
484
+ - 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))
485
+
486
+ <a name="2.0.11"></a>
487
+
488
+ ## [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)
489
+
490
+ ### Bug Fixes
491
+
492
+ - **lint:** automatic lint fixes ([7c9a2a4](https://github.com/pie-framework/pie-lib/commit/7c9a2a4))
493
+ - **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
494
+
495
+ <a name="2.0.10"></a>
496
+
497
+ ## [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)
498
+
499
+ ### Bug Fixes
500
+
501
+ - **dependencies:** set material-ui version to ^1.0.0-beta.44 ([6fd66bc](https://github.com/pie-framework/pie-lib/commit/6fd66bc))
502
+
503
+ <a name="2.0.9"></a>
504
+
505
+ ## [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)
506
+
507
+ ### Bug Fixes
508
+
509
+ - **dependencies:** lock material-ui to 1.0.0-beta.44 ([60df8e6](https://github.com/pie-framework/pie-lib/commit/60df8e6))
510
+
511
+ <a name="2.0.8"></a>
512
+
513
+ ## [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)
514
+
515
+ ### Bug Fixes
516
+
517
+ - **dependencies:** lock material-ui to 1.0.0-beta.43 ([2a3e087](https://github.com/pie-framework/pie-lib/commit/2a3e087))
518
+ - **dependencies:** upgrade material-ui ([b94b50e](https://github.com/pie-framework/pie-lib/commit/b94b50e))
519
+
520
+ <a name="2.0.7"></a>
521
+
522
+ ## [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)
523
+
524
+ ### Bug Fixes
525
+
526
+ - **dependencies:** version bump ([3f6766b](https://github.com/pie-framework/pie-lib/commit/3f6766b))
527
+
528
+ <a name="2.0.6"></a>
529
+
530
+ ## [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)
531
+
532
+ ### Bug Fixes
533
+
534
+ - **build:** remove jsx from path name ([a6dd641](https://github.com/pie-framework/pie-lib/commit/a6dd641))
535
+
536
+ <a name="2.0.5"></a>
537
+
538
+ ## [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)
539
+
540
+ ### Bug Fixes
541
+
542
+ - **test:** normalize tests ([b86b3d9](https://github.com/pie-framework/pie-lib/commit/b86b3d9))
543
+
544
+ <a name="2.0.4"></a>
545
+
546
+ ## [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)
547
+
548
+ **Note:** Version bump only for package @pie-lib/render-ui
549
+
550
+ <a name="2.0.3"></a>
551
+
552
+ ## [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)
553
+
554
+ **Note:** Version bump only for package @pie-lib/render-ui
555
+
556
+ <a name="2.0.2"></a>
557
+
558
+ ## [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)
559
+
560
+ **Note:** Version bump only for package @pie-lib/render-ui
561
+
562
+ <a name="2.0.1"></a>
563
+
564
+ ## [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)
565
+
566
+ **Note:** Version bump only for package @pie-lib/render-ui
567
+
568
+ <a name="1.0.0"></a>
569
+
570
+ # [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)
571
+
572
+ ### Bug Fixes
573
+
574
+ - **dependencies:** bump react version ([0169b4a](https://github.com/pie-framework/pie-lib/commit/0169b4a))
575
+
576
+ ### BREAKING CHANGES
577
+
578
+ - **dependencies:** requires react@^16.3.1
579
+
580
+ <a name="0.1.15"></a>
581
+
582
+ ## [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)
583
+
584
+ **Note:** Version bump only for package @pie-lib/render-ui
585
+
586
+ <a name="0.1.14"></a>
587
+
588
+ ## [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)
589
+
590
+ **Note:** Version bump only for package @pie-lib/render-ui
591
+
592
+ <a name="0.1.13"></a>
593
+
594
+ ## 0.1.13 (2018-03-06)
595
+
596
+ **Note:** Version bump only for package @pie-lib/render-ui
597
+
598
+ <a name="0.1.12"></a>
599
+
600
+ ## 0.1.12 (2018-03-06)
601
+
602
+ **Note:** Version bump only for package @pie-lib/render-ui
@@ -0,0 +1,5 @@
1
+ Copyright 2019 CoreSpring Inc
2
+
3
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
4
+
5
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
@@ -0,0 +1,33 @@
1
+ # @pie-lib/render-ui
2
+
3
+ Some shared ui components for player rendering that are so small that they don't warrant their own package..
4
+
5
+ ## install
6
+
7
+ ```
8
+ npm install
9
+ ```
10
+
11
+ ## demo
12
+
13
+ ```
14
+ cd demo
15
+ ../node_modules/.bin/webpack-dev-server --hot --inline
16
+ ```
17
+
18
+ go to http://localhost:8080
19
+
20
+ # colors
21
+
22
+ This package contains a color module that defines the css custom properties that all pie elements should use. It loosely follows the material design naming scheme with a few additions.
23
+
24
+ | name | description | fallback |
25
+ | ---------------------- | --------------------------------------- | ------------------ |
26
+ | `--pie-text` | the color of the text | defaults.TEXT |
27
+ | `--pie-primary` | the primary fill color | defaults.PRIMARY |
28
+ | `--pie-primary-text` | the color of primary text | `--pie-text` |
29
+ | `--pie-secondary` | the secondary fill color | defaults.SECONDARY |
30
+ | `--pie-secondary-text` | the color of secondary text | `--pie-text` |
31
+ | `--pie-correct` | the fill color for correct ui widgets | defaults.CORRECT |
32
+ | `--pie-incorrect` | the fill color for incorrect ui widgets | defaults.INCORRECT |
33
+ | `--pie-disabled` | the disabled color | defaults.DISABLED |