@pie-element/ebsr 10.7.3-next.9 → 12.0.1-esmbeta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +44 -0
- package/configure/CHANGELOG.md +16 -0
- package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.json +1972 -0
- package/configure/node_modules/@pie-element/multiple-choice/CHANGELOG.md +4186 -0
- package/configure/node_modules/@pie-element/multiple-choice/LICENSE.md +5 -0
- package/configure/node_modules/@pie-element/multiple-choice/PRINT.md +35 -0
- package/configure/node_modules/@pie-element/multiple-choice/README.md +56 -0
- package/configure/node_modules/@pie-element/multiple-choice/choice.png +0 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.json +1387 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/CHANGELOG.md +3332 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js +202 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/defaults.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js +248 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js +597 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/main.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/lib/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/configure/package.json +20 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.json +527 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/CHANGELOG.md +2297 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js +34 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/defaults.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js +346 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js +28 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/lib/utils.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/controller/package.json +15 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json +2993 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/config-schema.json.md +2217 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/config.js +8 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/generate.js +61 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/index.html +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/demo/session.js +7 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json +1332 -0
- package/configure/node_modules/@pie-element/multiple-choice/docs/pie-schema.json.md +1015 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/configure.css +847 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/configure.js +1218 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/configure.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/controller.css +847 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/controller.js +324 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/controller.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/element.css +847 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/element.js +3287 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/element.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/print.css +847 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/print.js +3017 -0
- package/configure/node_modules/@pie-element/multiple-choice/esm/print.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js +427 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice-input.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js +252 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js +174 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/feedback-tick.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/index.js +388 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/main.js +108 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/main.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js +469 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/multiple-choice.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/print.js +129 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/print.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js +48 -0
- package/configure/node_modules/@pie-element/multiple-choice/lib/session-updater.js.map +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/configure.js +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/controller.js +3472 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/demo.js +86 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/element.js +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/index.html +21 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/index.js +2 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/manifest.json +10 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/print-demo.js +124 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/print.html +18 -0
- package/configure/node_modules/@pie-element/multiple-choice/module/print.js +1 -0
- package/configure/node_modules/@pie-element/multiple-choice/package.json +53 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/CHANGELOG.md +898 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/NEXT.CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/esm/index.js +262 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/esm/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/expander.js +88 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/expander.js.map +1 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/index.js +181 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/styles.js +66 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/lib/styles.js.map +1 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/package.json +44 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/src/__tests__/index.test.jsx +99 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/src/expander.jsx +61 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/src/index.jsx +98 -0
- package/configure/node_modules/@pie-lib/correct-answer-toggle/src/styles.js +61 -0
- package/configure/node_modules/@pie-lib/icons/CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/icons/CHANGELOG.md +539 -0
- package/configure/node_modules/@pie-lib/icons/NEXT.CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/icons/esm/index.js +1153 -0
- package/configure/node_modules/@pie-lib/icons/esm/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/correct-icon.js +89 -0
- package/configure/node_modules/@pie-lib/icons/lib/correct-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/correct-response-icon.js +153 -0
- package/configure/node_modules/@pie-lib/icons/lib/correct-response-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/icon-base.js +206 -0
- package/configure/node_modules/@pie-lib/icons/lib/icon-base.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/icon-root.js +130 -0
- package/configure/node_modules/@pie-lib/icons/lib/icon-root.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/incorrect-icon.js +92 -0
- package/configure/node_modules/@pie-lib/icons/lib/incorrect-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/index.js +72 -0
- package/configure/node_modules/@pie-lib/icons/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/instructions-icon.js +229 -0
- package/configure/node_modules/@pie-lib/icons/lib/instructions-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/learn-more-icon.js +145 -0
- package/configure/node_modules/@pie-lib/icons/lib/learn-more-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/nothing-submitted-icon.js +183 -0
- package/configure/node_modules/@pie-lib/icons/lib/nothing-submitted-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/partially-correct-icon.js +82 -0
- package/configure/node_modules/@pie-lib/icons/lib/partially-correct-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/show-rationale-icon.js +206 -0
- package/configure/node_modules/@pie-lib/icons/lib/show-rationale-icon.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/lib/sized.js +41 -0
- package/configure/node_modules/@pie-lib/icons/lib/sized.js.map +1 -0
- package/configure/node_modules/@pie-lib/icons/package.json +35 -0
- package/configure/node_modules/@pie-lib/icons/src/__tests__/index.test.js +3 -0
- package/configure/node_modules/@pie-lib/icons/src/correct-icon.jsx +64 -0
- package/configure/node_modules/@pie-lib/icons/src/correct-response-icon.jsx +121 -0
- package/configure/node_modules/@pie-lib/icons/src/icon-base.jsx +158 -0
- package/configure/node_modules/@pie-lib/icons/src/icon-root.jsx +76 -0
- package/configure/node_modules/@pie-lib/icons/src/incorrect-icon.jsx +61 -0
- package/configure/node_modules/@pie-lib/icons/src/index.js +19 -0
- package/configure/node_modules/@pie-lib/icons/src/instructions-icon.jsx +189 -0
- package/configure/node_modules/@pie-lib/icons/src/learn-more-icon.jsx +107 -0
- package/configure/node_modules/@pie-lib/icons/src/nothing-submitted-icon.jsx +130 -0
- package/configure/node_modules/@pie-lib/icons/src/partially-correct-icon.jsx +49 -0
- package/configure/node_modules/@pie-lib/icons/src/show-rationale-icon.jsx +152 -0
- package/configure/node_modules/@pie-lib/icons/src/sized.jsx +25 -0
- package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/CHANGELOG.md +775 -0
- package/configure/node_modules/@pie-lib/math-rendering/NEXT.CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/esm/index.js +690 -0
- package/configure/node_modules/@pie-lib/math-rendering/esm/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/index.js +38 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mml-to-latex.js +15 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mml-to-latex.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js +296 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/chtml.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js +23 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js +109 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/mstack/mml.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js +95 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/normalization.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js +438 -0
- package/configure/node_modules/@pie-lib/math-rendering/lib/render-math.js.map +1 -0
- package/configure/node_modules/@pie-lib/math-rendering/package.json +28 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/__tests__/mml-to-latex.test.js +14 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/__tests__/normalization.test.js +50 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/__tests__/render-math.test.js +155 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/index.js +5 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/mml-to-latex.js +2 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/__tests__/__snapshots__/chtml.test.js.snap +9 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/__tests__/chtml.test.js +104 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/chtml.js +220 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/index.js +13 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/mstack/mml.js +24 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/normalization.js +69 -0
- package/configure/node_modules/@pie-lib/math-rendering/src/render-math.js +387 -0
- package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/render-ui/CHANGELOG.md +1026 -0
- package/configure/node_modules/@pie-lib/render-ui/NEXT.CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/render-ui/esm/index.js +1616 -0
- package/configure/node_modules/@pie-lib/render-ui/esm/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/append-css-rules.js +88 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/append-css-rules.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/assets/enableAudioAutoplayImage.js +9 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/assets/enableAudioAutoplayImage.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js +135 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/collapsible/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/color.js +344 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/color.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js +150 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/feedback.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/has-media.js +27 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/has-media.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js +28 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/has-text.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js +74 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/html-and-math.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/index.js +136 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js +60 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/input-container.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js +145 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-layout.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js +321 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/preview-prompt.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js +28 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/purpose.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/readable.js +28 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/readable.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js +151 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/response-indicators.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/ui-layout.js +122 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/ui-layout.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js +181 -0
- package/configure/node_modules/@pie-lib/render-ui/lib/withUndoReset.js.map +1 -0
- package/configure/node_modules/@pie-lib/render-ui/package.json +40 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/html-and-math.test.js.snap +11 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/preview-prompt.test.jsx.snap +37 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/purpose.test.jsx.snap +42 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/readable.test.jsx.snap +64 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/__snapshots__/response-indicators.test.jsx.snap +27 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/color.test.js +12 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/has-media.test.js +20 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/has-text.test.js +21 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/html-and-math.test.js +24 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/preview-prompt.test.jsx +56 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/purpose.test.jsx +47 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/readable.test.jsx +64 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/response-indicators.test.jsx +16 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/ui-layout.test.jsx +34 -0
- package/configure/node_modules/@pie-lib/render-ui/src/__tests__/withUndoReset.test.jsx +254 -0
- package/configure/node_modules/@pie-lib/render-ui/src/append-css-rules.js +51 -0
- package/configure/node_modules/@pie-lib/render-ui/src/assets/enableAudioAutoplayImage.js +1 -0
- package/configure/node_modules/@pie-lib/render-ui/src/collapsible/__tests__/__snapshots__/index.test.jsx.snap +18 -0
- package/configure/node_modules/@pie-lib/render-ui/src/collapsible/__tests__/index.test.jsx +13 -0
- package/configure/node_modules/@pie-lib/render-ui/src/collapsible/index.jsx +64 -0
- package/configure/node_modules/@pie-lib/render-ui/src/color.js +121 -0
- package/configure/node_modules/@pie-lib/render-ui/src/feedback.jsx +99 -0
- package/configure/node_modules/@pie-lib/render-ui/src/has-media.js +16 -0
- package/configure/node_modules/@pie-lib/render-ui/src/has-text.js +18 -0
- package/configure/node_modules/@pie-lib/render-ui/src/html-and-math.js +21 -0
- package/configure/node_modules/@pie-lib/render-ui/src/index.js +35 -0
- package/configure/node_modules/@pie-lib/render-ui/src/input-container.jsx +41 -0
- package/configure/node_modules/@pie-lib/render-ui/src/preview-layout.jsx +95 -0
- package/configure/node_modules/@pie-lib/render-ui/src/preview-prompt.jsx +254 -0
- package/configure/node_modules/@pie-lib/render-ui/src/purpose.jsx +17 -0
- package/configure/node_modules/@pie-lib/render-ui/src/readable.jsx +19 -0
- package/configure/node_modules/@pie-lib/render-ui/src/response-indicators.jsx +89 -0
- package/configure/node_modules/@pie-lib/render-ui/src/ui-layout.jsx +66 -0
- package/configure/node_modules/@pie-lib/render-ui/src/withUndoReset.jsx +116 -0
- package/configure/node_modules/@pie-lib/test-utils/CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/test-utils/CHANGELOG.md +410 -0
- package/configure/node_modules/@pie-lib/test-utils/NEXT.CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/test-utils/esm/index.js +39 -0
- package/configure/node_modules/@pie-lib/test-utils/esm/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/test-utils/lib/index.js +40 -0
- package/configure/node_modules/@pie-lib/test-utils/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/test-utils/package.json +25 -0
- package/configure/node_modules/@pie-lib/test-utils/src/__tests__/index.test.js +45 -0
- package/configure/node_modules/@pie-lib/test-utils/src/index.js +18 -0
- package/configure/node_modules/@pie-lib/translator/CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/translator/CHANGELOG.md +282 -0
- package/configure/node_modules/@pie-lib/translator/NEXT.CHANGELOG.json +1 -0
- package/configure/node_modules/@pie-lib/translator/esm/index.js +257 -0
- package/configure/node_modules/@pie-lib/translator/esm/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/translator/lib/en.js +102 -0
- package/configure/node_modules/@pie-lib/translator/lib/en.js.map +1 -0
- package/configure/node_modules/@pie-lib/translator/lib/es.js +102 -0
- package/configure/node_modules/@pie-lib/translator/lib/es.js.map +1 -0
- package/configure/node_modules/@pie-lib/translator/lib/index.js +69 -0
- package/configure/node_modules/@pie-lib/translator/lib/index.js.map +1 -0
- package/configure/node_modules/@pie-lib/translator/package.json +25 -0
- package/configure/node_modules/@pie-lib/translator/src/en.js +99 -0
- package/configure/node_modules/@pie-lib/translator/src/es.js +99 -0
- package/configure/node_modules/@pie-lib/translator/src/index.js +43 -0
- package/configure/package.json +3 -3
- package/controller/CHANGELOG.md +16 -0
- package/controller/package.json +3 -3
- package/esm/configure.js +38602 -0
- package/esm/configure.js.map +1 -0
- package/esm/controller.js +3358 -0
- package/esm/controller.js.map +1 -0
- package/esm/element.js +2203 -0
- package/esm/element.js.map +1 -0
- package/esm/package.json +4 -0
- package/esm/print.js +4090 -0
- package/esm/print.js.map +1 -0
- package/module/controller.js +4973 -2252
- package/module/element.js +1 -1
- package/module/index.html +1 -1
- package/module/manifest.json +1 -1
- package/module/print.html +1 -1
- package/module/print.js +1 -1
- package/package.json +24 -6
|
@@ -0,0 +1,1026 @@
|
|
|
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.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)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [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)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
# [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)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# [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)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
|
|
43
|
+
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
### Features
|
|
47
|
+
|
|
48
|
+
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
# [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)
|
|
55
|
+
|
|
56
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
# [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)
|
|
63
|
+
|
|
64
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
# [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)
|
|
71
|
+
|
|
72
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
## [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)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
### Bug Fixes
|
|
82
|
+
|
|
83
|
+
* fixed pie-lib/icons import [PD-5126] ([dcb506c](https://github.com/pie-framework/pie-lib/commit/dcb506c914a177f6d88bf73247a023bfe71dac1f))
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
### Features
|
|
87
|
+
|
|
88
|
+
* split pie-toolbox into multiple packages [PD-5126] ([7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2))
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
# [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)
|
|
95
|
+
|
|
96
|
+
### Features
|
|
97
|
+
|
|
98
|
+
- split pie-toolbox into multiple packages [PD-5126](<[7d55a25](https://github.com/pie-framework/pie-lib/commit/7d55a2552d084cd3d0d5c00dc77411b2ced2f5e2)>)
|
|
99
|
+
|
|
100
|
+
# [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)
|
|
101
|
+
|
|
102
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
103
|
+
|
|
104
|
+
# [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)
|
|
105
|
+
|
|
106
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
107
|
+
|
|
108
|
+
# [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)
|
|
109
|
+
|
|
110
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
111
|
+
|
|
112
|
+
# [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)
|
|
113
|
+
|
|
114
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
115
|
+
|
|
116
|
+
# [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)
|
|
117
|
+
|
|
118
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
119
|
+
|
|
120
|
+
# [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)
|
|
121
|
+
|
|
122
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
123
|
+
|
|
124
|
+
# [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)
|
|
125
|
+
|
|
126
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
127
|
+
|
|
128
|
+
# [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)
|
|
129
|
+
|
|
130
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
131
|
+
|
|
132
|
+
# [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)
|
|
133
|
+
|
|
134
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
135
|
+
|
|
136
|
+
# [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)
|
|
137
|
+
|
|
138
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
139
|
+
|
|
140
|
+
# [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)
|
|
141
|
+
|
|
142
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
143
|
+
|
|
144
|
+
# [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)
|
|
145
|
+
|
|
146
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
147
|
+
|
|
148
|
+
# [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)
|
|
149
|
+
|
|
150
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
151
|
+
|
|
152
|
+
# [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)
|
|
153
|
+
|
|
154
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
155
|
+
|
|
156
|
+
# [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)
|
|
157
|
+
|
|
158
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
159
|
+
|
|
160
|
+
# [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)
|
|
161
|
+
|
|
162
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
163
|
+
|
|
164
|
+
# [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)
|
|
165
|
+
|
|
166
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
167
|
+
|
|
168
|
+
# [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)
|
|
169
|
+
|
|
170
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
171
|
+
|
|
172
|
+
# [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)
|
|
173
|
+
|
|
174
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
175
|
+
|
|
176
|
+
# [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)
|
|
177
|
+
|
|
178
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
179
|
+
|
|
180
|
+
# [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)
|
|
181
|
+
|
|
182
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
183
|
+
|
|
184
|
+
# [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)
|
|
185
|
+
|
|
186
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
187
|
+
|
|
188
|
+
# [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)
|
|
189
|
+
|
|
190
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
191
|
+
|
|
192
|
+
# [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)
|
|
193
|
+
|
|
194
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
195
|
+
|
|
196
|
+
# [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)
|
|
197
|
+
|
|
198
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
199
|
+
|
|
200
|
+
# [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)
|
|
201
|
+
|
|
202
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
203
|
+
|
|
204
|
+
# [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)
|
|
205
|
+
|
|
206
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
207
|
+
|
|
208
|
+
# [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)
|
|
209
|
+
|
|
210
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
211
|
+
|
|
212
|
+
# [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)
|
|
213
|
+
|
|
214
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
215
|
+
|
|
216
|
+
# [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)
|
|
217
|
+
|
|
218
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
219
|
+
|
|
220
|
+
# [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)
|
|
221
|
+
|
|
222
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
223
|
+
|
|
224
|
+
# [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)
|
|
225
|
+
|
|
226
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
227
|
+
|
|
228
|
+
# [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)
|
|
229
|
+
|
|
230
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
231
|
+
|
|
232
|
+
# [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)
|
|
233
|
+
|
|
234
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
235
|
+
|
|
236
|
+
# [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)
|
|
237
|
+
|
|
238
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
239
|
+
|
|
240
|
+
## [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)
|
|
241
|
+
|
|
242
|
+
### Bug Fixes
|
|
243
|
+
|
|
244
|
+
- revert to pie-lib/math-rendering that what working ([25660ea](https://github.com/pie-framework/pie-lib/commit/25660ea6595e800a71c5494bd3bb9eecd3609a5a))
|
|
245
|
+
|
|
246
|
+
## [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)
|
|
247
|
+
|
|
248
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
249
|
+
|
|
250
|
+
## [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)
|
|
251
|
+
|
|
252
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
253
|
+
|
|
254
|
+
## [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)
|
|
255
|
+
|
|
256
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
257
|
+
|
|
258
|
+
## [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)
|
|
259
|
+
|
|
260
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
261
|
+
|
|
262
|
+
## [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)
|
|
263
|
+
|
|
264
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
265
|
+
|
|
266
|
+
## [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)
|
|
267
|
+
|
|
268
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
269
|
+
|
|
270
|
+
## [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)
|
|
271
|
+
|
|
272
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
273
|
+
|
|
274
|
+
## [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)
|
|
275
|
+
|
|
276
|
+
### Bug Fixes
|
|
277
|
+
|
|
278
|
+
- **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))
|
|
279
|
+
|
|
280
|
+
# [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)
|
|
281
|
+
|
|
282
|
+
### Features
|
|
283
|
+
|
|
284
|
+
- **text-select:** adjust colors and alignment of the color ([a51ba55](https://github.com/pie-framework/pie-lib/commit/a51ba5547f6e1559915d6ea967d406923831b561))
|
|
285
|
+
- **text-select:** PD-1163 create wrapper component ([b41db39](https://github.com/pie-framework/pie-lib/commit/b41db39ade332d19dca70a06d54acf51b5888c69))
|
|
286
|
+
- **text-select:** PD-1163 updates to tokens in text select ([2535c91](https://github.com/pie-framework/pie-lib/commit/2535c911f378f4cf41c8471bfa1898b996ffacee))
|
|
287
|
+
|
|
288
|
+
## [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)
|
|
289
|
+
|
|
290
|
+
### Bug Fixes
|
|
291
|
+
|
|
292
|
+
- **render-ui:** answer choices answered rendered in a smaller font-size ([e7503e0](https://github.com/pie-framework/pie-lib/commit/e7503e029ed6872098646e8787e124f2d6a8a018))
|
|
293
|
+
|
|
294
|
+
## [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)
|
|
295
|
+
|
|
296
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
297
|
+
|
|
298
|
+
## [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)
|
|
299
|
+
|
|
300
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
301
|
+
|
|
302
|
+
## [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)
|
|
303
|
+
|
|
304
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
305
|
+
|
|
306
|
+
## [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)
|
|
307
|
+
|
|
308
|
+
### Bug Fixes
|
|
309
|
+
|
|
310
|
+
- **render-ui:** set font size to inherit to avoid the overwriting in some websites ([3c43288](https://github.com/pie-framework/pie-lib/commit/3c43288dc348a5712492edfac7525cb49536785d))
|
|
311
|
+
|
|
312
|
+
## [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)
|
|
313
|
+
|
|
314
|
+
### Bug Fixes
|
|
315
|
+
|
|
316
|
+
- **graphing:** add new style for missing objects - PD-1026 ([4dba6c2](https://github.com/pie-framework/pie-lib/commit/4dba6c2dcafbf9f250f1379672cba63e5c805b10))
|
|
317
|
+
|
|
318
|
+
## [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)
|
|
319
|
+
|
|
320
|
+
### Bug Fixes
|
|
321
|
+
|
|
322
|
+
- **multiple-choice:** fix vertical allignment within choice labels PD-2720 ([7307ca7](https://github.com/pie-framework/pie-lib/commit/7307ca7738c7f0fc76b635b3b8571c168d4bb8fb))
|
|
323
|
+
|
|
324
|
+
## [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)
|
|
325
|
+
|
|
326
|
+
### Bug Fixes
|
|
327
|
+
|
|
328
|
+
- **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))
|
|
329
|
+
|
|
330
|
+
## [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)
|
|
331
|
+
|
|
332
|
+
### Bug Fixes
|
|
333
|
+
|
|
334
|
+
- **eslint:** fix eslint problems-PD-2732 ([9eb9976](https://github.com/pie-framework/pie-lib/commit/9eb9976749753da86e1057a07bd2cfc65bf64ae4))
|
|
335
|
+
|
|
336
|
+
## [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)
|
|
337
|
+
|
|
338
|
+
### Bug Fixes
|
|
339
|
+
|
|
340
|
+
- **multiple-choice:** fix labels alignment ([0be602e](https://github.com/pie-framework/pie-lib/commit/0be602eb32abfb4ba5d1cee455924240d392506d))
|
|
341
|
+
|
|
342
|
+
## [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)
|
|
343
|
+
|
|
344
|
+
### Bug Fixes
|
|
345
|
+
|
|
346
|
+
- **render-ui:** remove margin right from input ([4f07e4e](https://github.com/pie-framework/pie-lib/commit/4f07e4eadd70e98be2c1278f36f9a5a6eddbcf0c))
|
|
347
|
+
|
|
348
|
+
## [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)
|
|
349
|
+
|
|
350
|
+
### Bug Fixes
|
|
351
|
+
|
|
352
|
+
- **render-ui:** add additional style for legend tag-PD-2711 ([639a4d5](https://github.com/pie-framework/pie-lib/commit/639a4d589938209a8542c511a5d6a5a138c802af))
|
|
353
|
+
|
|
354
|
+
## [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)
|
|
355
|
+
|
|
356
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
357
|
+
|
|
358
|
+
## [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)
|
|
359
|
+
|
|
360
|
+
### Bug Fixes
|
|
361
|
+
|
|
362
|
+
- **multiple-choice:** fix style for choice labels ([a16fcf0](https://github.com/pie-framework/pie-lib/commit/a16fcf072ce45f929bf0f1e4dbe9eadd00f19230))
|
|
363
|
+
|
|
364
|
+
## [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)
|
|
365
|
+
|
|
366
|
+
### Bug Fixes
|
|
367
|
+
|
|
368
|
+
- version bump ([d9280a9](https://github.com/pie-framework/pie-lib/commit/d9280a9aeddab459b6d84ecdbeb62814e1eee965))
|
|
369
|
+
|
|
370
|
+
## [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)
|
|
371
|
+
|
|
372
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
373
|
+
|
|
374
|
+
## [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)
|
|
375
|
+
|
|
376
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
377
|
+
|
|
378
|
+
## [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)
|
|
379
|
+
|
|
380
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
381
|
+
|
|
382
|
+
## [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)
|
|
383
|
+
|
|
384
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
385
|
+
|
|
386
|
+
## [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)
|
|
387
|
+
|
|
388
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
389
|
+
|
|
390
|
+
## [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)
|
|
391
|
+
|
|
392
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
393
|
+
|
|
394
|
+
## [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)
|
|
395
|
+
|
|
396
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
397
|
+
|
|
398
|
+
## [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)
|
|
399
|
+
|
|
400
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
401
|
+
|
|
402
|
+
# [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)
|
|
403
|
+
|
|
404
|
+
### Features
|
|
405
|
+
|
|
406
|
+
- **multiple-choice:** add ARIA attributes ([4ab6b85](https://github.com/pie-framework/pie-lib/commit/4ab6b85d5827ea76d4095a71c482f5255671a1df))
|
|
407
|
+
|
|
408
|
+
## [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)
|
|
409
|
+
|
|
410
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
411
|
+
|
|
412
|
+
## [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)
|
|
413
|
+
|
|
414
|
+
### Bug Fixes
|
|
415
|
+
|
|
416
|
+
- update comment ([5374bb3](https://github.com/pie-framework/pie-lib/commit/5374bb30db1c9e399885a99c76a419cd558acc65))
|
|
417
|
+
- **render-ui:** add parent div to image tag PD-1802 ([153db34](https://github.com/pie-framework/pie-lib/commit/153db34a317810fa49953286299b3fda1506be94))
|
|
418
|
+
- **render-ui:** fix image alignment in preview-prompt PD-1802 ([27390c1](https://github.com/pie-framework/pie-lib/commit/27390c1a6ab7b72b980f3b3f0f59a39674a9c307))
|
|
419
|
+
|
|
420
|
+
## [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)
|
|
421
|
+
|
|
422
|
+
### Bug Fixes
|
|
423
|
+
|
|
424
|
+
- revert PD-1802 work because it is causing big issues PD-2037 ([6579140](https://github.com/pie-framework/pie-lib/commit/657914060cd741cf8be7c76fa890b0655a8d3783))
|
|
425
|
+
|
|
426
|
+
## [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)
|
|
427
|
+
|
|
428
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
429
|
+
|
|
430
|
+
## [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)
|
|
431
|
+
|
|
432
|
+
### Bug Fixes
|
|
433
|
+
|
|
434
|
+
- PD-1802 set style only to img parent ([d113b4e](https://github.com/pie-framework/pie-lib/commit/d113b4e48978c7619b4d9d4cfbf4996f400068e7))
|
|
435
|
+
|
|
436
|
+
## [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)
|
|
437
|
+
|
|
438
|
+
### Bug Fixes
|
|
439
|
+
|
|
440
|
+
- reverted changes for PD-1802 since it's causing PD-1937 ([b02fecb](https://github.com/pie-framework/pie-lib/commit/b02fecb54d8e243c34b864e4e5d3378899cb56d7))
|
|
441
|
+
|
|
442
|
+
## [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)
|
|
443
|
+
|
|
444
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
445
|
+
|
|
446
|
+
# [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)
|
|
447
|
+
|
|
448
|
+
### Features
|
|
449
|
+
|
|
450
|
+
- **editable-html, render-ui:** wrap up PD-1802 ([e10babf](https://github.com/pie-framework/pie-lib/commit/e10babf2e80aed67c856e9e021e37072e3df33fb))
|
|
451
|
+
|
|
452
|
+
## [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)
|
|
453
|
+
|
|
454
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
455
|
+
|
|
456
|
+
## [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)
|
|
457
|
+
|
|
458
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
459
|
+
|
|
460
|
+
## [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)
|
|
461
|
+
|
|
462
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
463
|
+
|
|
464
|
+
## [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)
|
|
465
|
+
|
|
466
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
467
|
+
|
|
468
|
+
## [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)
|
|
469
|
+
|
|
470
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
471
|
+
|
|
472
|
+
## [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)
|
|
473
|
+
|
|
474
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
475
|
+
|
|
476
|
+
## [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)
|
|
477
|
+
|
|
478
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
479
|
+
|
|
480
|
+
## [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)
|
|
481
|
+
|
|
482
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
483
|
+
|
|
484
|
+
## [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)
|
|
485
|
+
|
|
486
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
487
|
+
|
|
488
|
+
# [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)
|
|
489
|
+
|
|
490
|
+
### Features
|
|
491
|
+
|
|
492
|
+
- **preview-prompt:** add defaultClassName prop for static classname for pie-print ([7ca55ba](https://github.com/pie-framework/pie-lib/commit/7ca55ba))
|
|
493
|
+
|
|
494
|
+
## [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)
|
|
495
|
+
|
|
496
|
+
### Bug Fixes
|
|
497
|
+
|
|
498
|
+
- **render-ui:** text should serve as selector for multiple-choice questions PD-1227 ([133549b](https://github.com/pie-framework/pie-lib/commit/133549b))
|
|
499
|
+
|
|
500
|
+
## [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)
|
|
501
|
+
|
|
502
|
+
### Bug Fixes
|
|
503
|
+
|
|
504
|
+
- **editable-html:** add refs for editors, fix propTypes warnings for PD-1230 ([c6e3a2a](https://github.com/pie-framework/pie-lib/commit/c6e3a2a))
|
|
505
|
+
|
|
506
|
+
## [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)
|
|
507
|
+
|
|
508
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
509
|
+
|
|
510
|
+
## [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)
|
|
511
|
+
|
|
512
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
513
|
+
|
|
514
|
+
## [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)
|
|
515
|
+
|
|
516
|
+
### Bug Fixes
|
|
517
|
+
|
|
518
|
+
- **render-ui:** create function that parses html in order to fix PD-771 ([6bf9c5d](https://github.com/pie-framework/pie-lib/commit/6bf9c5d))
|
|
519
|
+
- **render-ui:** render math for collapsible to fix PD-772 ([f0ef384](https://github.com/pie-framework/pie-lib/commit/f0ef384))
|
|
520
|
+
|
|
521
|
+
## [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)
|
|
522
|
+
|
|
523
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
524
|
+
|
|
525
|
+
## [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)
|
|
526
|
+
|
|
527
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
528
|
+
|
|
529
|
+
# [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)
|
|
530
|
+
|
|
531
|
+
### Features
|
|
532
|
+
|
|
533
|
+
- **render-ui:** add secondary background color ([c9cc0a8](https://github.com/pie-framework/pie-lib/commit/c9cc0a8))
|
|
534
|
+
|
|
535
|
+
## [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)
|
|
536
|
+
|
|
537
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
538
|
+
|
|
539
|
+
## [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)
|
|
540
|
+
|
|
541
|
+
### Bug Fixes
|
|
542
|
+
|
|
543
|
+
- **render-ui:** make sure prompt replace has a value ([093fef7](https://github.com/pie-framework/pie-lib/commit/093fef7))
|
|
544
|
+
|
|
545
|
+
## [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)
|
|
546
|
+
|
|
547
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
548
|
+
|
|
549
|
+
## [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)
|
|
550
|
+
|
|
551
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
552
|
+
|
|
553
|
+
# [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)
|
|
554
|
+
|
|
555
|
+
### Features
|
|
556
|
+
|
|
557
|
+
- **render-ui:** add readable component for pie tagging ([5b76d67](https://github.com/pie-framework/pie-lib/commit/5b76d67))
|
|
558
|
+
- **render-ui:** pie-purpose wrapper component added - PD-579 ([308f553](https://github.com/pie-framework/pie-lib/commit/308f553))
|
|
559
|
+
|
|
560
|
+
## [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)
|
|
561
|
+
|
|
562
|
+
### Bug Fixes
|
|
563
|
+
|
|
564
|
+
- Authored table borders are not visible in preview PD-342 ([cb86c55](https://github.com/pie-framework/pie-lib/commit/cb86c55))
|
|
565
|
+
- formatting ([754bb75](https://github.com/pie-framework/pie-lib/commit/754bb75))
|
|
566
|
+
- Modified code for suggested changes and addes snapshots PD-342 ([fbaa88e](https://github.com/pie-framework/pie-lib/commit/fbaa88e))
|
|
567
|
+
- Modified code for suggested changes and addes snapshots PD-342 ([dd43627](https://github.com/pie-framework/pie-lib/commit/dd43627))
|
|
568
|
+
- Modified code for suggested changes and addes snapshots PD-342 ([d9b76db](https://github.com/pie-framework/pie-lib/commit/d9b76db))
|
|
569
|
+
- removed console log that are added in test file PD-342 ([2c9d2e5](https://github.com/pie-framework/pie-lib/commit/2c9d2e5))
|
|
570
|
+
- snapshot test ([a86e5e8](https://github.com/pie-framework/pie-lib/commit/a86e5e8))
|
|
571
|
+
- typo ([0cb17c9](https://github.com/pie-framework/pie-lib/commit/0cb17c9))
|
|
572
|
+
|
|
573
|
+
## [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)
|
|
574
|
+
|
|
575
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
576
|
+
|
|
577
|
+
## [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)
|
|
578
|
+
|
|
579
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
580
|
+
|
|
581
|
+
## [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)
|
|
582
|
+
|
|
583
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
584
|
+
|
|
585
|
+
# [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)
|
|
586
|
+
|
|
587
|
+
### Features
|
|
588
|
+
|
|
589
|
+
- add light/dark variations to primary/secondary ([97d1ac6](https://github.com/pie-framework/pie-lib/commit/97d1ac6))
|
|
590
|
+
|
|
591
|
+
## [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)
|
|
592
|
+
|
|
593
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
594
|
+
|
|
595
|
+
## [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)
|
|
596
|
+
|
|
597
|
+
### Bug Fixes
|
|
598
|
+
|
|
599
|
+
- **color:** retain background ([077e6ce](https://github.com/pie-framework/pie-lib/commit/077e6ce))
|
|
600
|
+
|
|
601
|
+
## [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)
|
|
602
|
+
|
|
603
|
+
### Bug Fixes
|
|
604
|
+
|
|
605
|
+
- rm pie-background for now ([5fd024a](https://github.com/pie-framework/pie-lib/commit/5fd024a))
|
|
606
|
+
|
|
607
|
+
## [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)
|
|
608
|
+
|
|
609
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
610
|
+
|
|
611
|
+
# [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)
|
|
612
|
+
|
|
613
|
+
### Features
|
|
614
|
+
|
|
615
|
+
- add color custom properties PD-308 ([8d7bc2b](https://github.com/pie-framework/pie-lib/commit/8d7bc2b))
|
|
616
|
+
|
|
617
|
+
## [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)
|
|
618
|
+
|
|
619
|
+
### Bug Fixes
|
|
620
|
+
|
|
621
|
+
- PD-54: Small font in Input Container. ([0a32d3a](https://github.com/pie-framework/pie-lib/commit/0a32d3a))
|
|
622
|
+
|
|
623
|
+
## [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)
|
|
624
|
+
|
|
625
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
626
|
+
|
|
627
|
+
## [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)
|
|
628
|
+
|
|
629
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
630
|
+
|
|
631
|
+
## [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)
|
|
632
|
+
|
|
633
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
634
|
+
|
|
635
|
+
## [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)
|
|
636
|
+
|
|
637
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
638
|
+
|
|
639
|
+
## [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)
|
|
640
|
+
|
|
641
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
642
|
+
|
|
643
|
+
## [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)
|
|
644
|
+
|
|
645
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
646
|
+
|
|
647
|
+
## [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)
|
|
648
|
+
|
|
649
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
650
|
+
|
|
651
|
+
## [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)
|
|
652
|
+
|
|
653
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
654
|
+
|
|
655
|
+
## [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)
|
|
656
|
+
|
|
657
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
658
|
+
|
|
659
|
+
## [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)
|
|
660
|
+
|
|
661
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
662
|
+
|
|
663
|
+
## [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)
|
|
664
|
+
|
|
665
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
666
|
+
|
|
667
|
+
## [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)
|
|
668
|
+
|
|
669
|
+
### Bug Fixes
|
|
670
|
+
|
|
671
|
+
- add module prop to package.json ([494ace5](https://github.com/pie-framework/pie-lib/commit/494ace5))
|
|
672
|
+
|
|
673
|
+
## [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)
|
|
674
|
+
|
|
675
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
676
|
+
|
|
677
|
+
## [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)
|
|
678
|
+
|
|
679
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
680
|
+
|
|
681
|
+
## [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)
|
|
682
|
+
|
|
683
|
+
### Bug Fixes
|
|
684
|
+
|
|
685
|
+
- proper export of InputContainer ([cd5d597](https://github.com/pie-framework/pie-lib/commit/cd5d597))
|
|
686
|
+
|
|
687
|
+
# [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)
|
|
688
|
+
|
|
689
|
+
### Features
|
|
690
|
+
|
|
691
|
+
- **es6:** updated index file and yarn ([2e04449](https://github.com/pie-framework/pie-lib/commit/2e04449))
|
|
692
|
+
- **es6:** updated index file to update package ([646f225](https://github.com/pie-framework/pie-lib/commit/646f225))
|
|
693
|
+
|
|
694
|
+
## [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)
|
|
695
|
+
|
|
696
|
+
### Bug Fixes
|
|
697
|
+
|
|
698
|
+
- es6 export syntax ([8a02dda](https://github.com/pie-framework/pie-lib/commit/8a02dda))
|
|
699
|
+
- ignore **mocks** in src ([c107bf8](https://github.com/pie-framework/pie-lib/commit/c107bf8))
|
|
700
|
+
|
|
701
|
+
## [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)
|
|
702
|
+
|
|
703
|
+
### Bug Fixes
|
|
704
|
+
|
|
705
|
+
- ignore **tests** in src ([710b483](https://github.com/pie-framework/pie-lib/commit/710b483))
|
|
706
|
+
|
|
707
|
+
## [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)
|
|
708
|
+
|
|
709
|
+
### Bug Fixes
|
|
710
|
+
|
|
711
|
+
- add src to pkg ([f37d16e](https://github.com/pie-framework/pie-lib/commit/f37d16e))
|
|
712
|
+
|
|
713
|
+
# [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)
|
|
714
|
+
|
|
715
|
+
### Features
|
|
716
|
+
|
|
717
|
+
- add module entry point ([59b0d09](https://github.com/pie-framework/pie-lib/commit/59b0d09))
|
|
718
|
+
|
|
719
|
+
## [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)
|
|
720
|
+
|
|
721
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
722
|
+
|
|
723
|
+
## [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)
|
|
724
|
+
|
|
725
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
726
|
+
|
|
727
|
+
## [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)
|
|
728
|
+
|
|
729
|
+
### Bug Fixes
|
|
730
|
+
|
|
731
|
+
- add react-dom to peer deps ([1fb5a05](https://github.com/pie-framework/pie-lib/commit/1fb5a05))
|
|
732
|
+
|
|
733
|
+
## [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)
|
|
734
|
+
|
|
735
|
+
### Bug Fixes
|
|
736
|
+
|
|
737
|
+
- missing dependency prop-types ([cfff0e9](https://github.com/pie-framework/pie-lib/commit/cfff0e9))
|
|
738
|
+
|
|
739
|
+
## [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)
|
|
740
|
+
|
|
741
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
742
|
+
|
|
743
|
+
## [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)
|
|
744
|
+
|
|
745
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
746
|
+
|
|
747
|
+
## [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)
|
|
748
|
+
|
|
749
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
750
|
+
|
|
751
|
+
## [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)
|
|
752
|
+
|
|
753
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
754
|
+
|
|
755
|
+
## [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)
|
|
756
|
+
|
|
757
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
758
|
+
|
|
759
|
+
# [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)
|
|
760
|
+
|
|
761
|
+
### Features
|
|
762
|
+
|
|
763
|
+
- add HtmlAndMath from @pie-lib/math-rendering ([05121b3](https://github.com/pie-framework/pie-lib/commit/05121b3))
|
|
764
|
+
|
|
765
|
+
## [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)
|
|
766
|
+
|
|
767
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
768
|
+
|
|
769
|
+
## [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)
|
|
770
|
+
|
|
771
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
772
|
+
|
|
773
|
+
## [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)
|
|
774
|
+
|
|
775
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
776
|
+
|
|
777
|
+
## [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)
|
|
778
|
+
|
|
779
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
780
|
+
|
|
781
|
+
## [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)
|
|
782
|
+
|
|
783
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
784
|
+
|
|
785
|
+
# [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)
|
|
786
|
+
|
|
787
|
+
### Features
|
|
788
|
+
|
|
789
|
+
- version bumps ([23eb54f](https://github.com/pie-framework/pie-lib/commit/23eb54f))
|
|
790
|
+
|
|
791
|
+
## [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)
|
|
792
|
+
|
|
793
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
794
|
+
|
|
795
|
+
## [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)
|
|
796
|
+
|
|
797
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
798
|
+
|
|
799
|
+
## [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)
|
|
800
|
+
|
|
801
|
+
### Bug Fixes
|
|
802
|
+
|
|
803
|
+
- Added className property on Collapsible wrapper. ([4c5f39b](https://github.com/pie-framework/pie-lib/commit/4c5f39b))
|
|
804
|
+
|
|
805
|
+
## [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)
|
|
806
|
+
|
|
807
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
808
|
+
|
|
809
|
+
## [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)
|
|
810
|
+
|
|
811
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
812
|
+
|
|
813
|
+
## [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)
|
|
814
|
+
|
|
815
|
+
### Bug Fixes
|
|
816
|
+
|
|
817
|
+
- **render-ui:** Added PreviewLayout to render-ui. ([6522faf](https://github.com/pie-framework/pie-lib/commit/6522faf))
|
|
818
|
+
|
|
819
|
+
## [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)
|
|
820
|
+
|
|
821
|
+
### Bug Fixes
|
|
822
|
+
|
|
823
|
+
- rm child prepack in favour of root prepack ([381d8d6](https://github.com/pie-framework/pie-lib/commit/381d8d6))
|
|
824
|
+
|
|
825
|
+
## [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)
|
|
826
|
+
|
|
827
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
828
|
+
|
|
829
|
+
## [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)
|
|
830
|
+
|
|
831
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
832
|
+
|
|
833
|
+
## [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)
|
|
834
|
+
|
|
835
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
836
|
+
|
|
837
|
+
## [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)
|
|
838
|
+
|
|
839
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
840
|
+
|
|
841
|
+
## [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)
|
|
842
|
+
|
|
843
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
844
|
+
|
|
845
|
+
## [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)
|
|
846
|
+
|
|
847
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
848
|
+
|
|
849
|
+
## [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)
|
|
850
|
+
|
|
851
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
852
|
+
|
|
853
|
+
# [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)
|
|
854
|
+
|
|
855
|
+
### Features
|
|
856
|
+
|
|
857
|
+
- libs version bump ([8effd43](https://github.com/pie-framework/pie-lib/commit/8effd43))
|
|
858
|
+
|
|
859
|
+
<a name="4.2.5"></a>
|
|
860
|
+
|
|
861
|
+
## [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)
|
|
862
|
+
|
|
863
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
864
|
+
|
|
865
|
+
<a name="4.2.4"></a>
|
|
866
|
+
|
|
867
|
+
## [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)
|
|
868
|
+
|
|
869
|
+
### Bug Fixes
|
|
870
|
+
|
|
871
|
+
- githead ([3e485e0](https://github.com/pie-framework/pie-lib/commit/3e485e0))
|
|
872
|
+
- rm githead ([a1523aa](https://github.com/pie-framework/pie-lib/commit/a1523aa))
|
|
873
|
+
|
|
874
|
+
<a name="4.2.3"></a>
|
|
875
|
+
|
|
876
|
+
## [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)
|
|
877
|
+
|
|
878
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
879
|
+
|
|
880
|
+
<a name="4.2.2"></a>
|
|
881
|
+
|
|
882
|
+
## [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)
|
|
883
|
+
|
|
884
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
885
|
+
|
|
886
|
+
<a name="4.2.1"></a>
|
|
887
|
+
|
|
888
|
+
## [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)
|
|
889
|
+
|
|
890
|
+
### Bug Fixes
|
|
891
|
+
|
|
892
|
+
- **render-ui:** add named export for withUndoReset ([97203a2](https://github.com/pie-framework/pie-lib/commit/97203a2))
|
|
893
|
+
|
|
894
|
+
<a name="4.1.0"></a>
|
|
895
|
+
|
|
896
|
+
# [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)
|
|
897
|
+
|
|
898
|
+
### Features
|
|
899
|
+
|
|
900
|
+
- **render-ui:** added undo-reset HoC support for undo-reset functionality ([383ad4d](https://github.com/pie-framework/pie-lib/commit/383ad4d))
|
|
901
|
+
|
|
902
|
+
<a name="2.1.0"></a>
|
|
903
|
+
|
|
904
|
+
# [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)
|
|
905
|
+
|
|
906
|
+
### Features
|
|
907
|
+
|
|
908
|
+
- 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))
|
|
909
|
+
|
|
910
|
+
<a name="2.0.11"></a>
|
|
911
|
+
|
|
912
|
+
## [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)
|
|
913
|
+
|
|
914
|
+
### Bug Fixes
|
|
915
|
+
|
|
916
|
+
- **lint:** automatic lint fixes ([7c9a2a4](https://github.com/pie-framework/pie-lib/commit/7c9a2a4))
|
|
917
|
+
- **lint:** lint fixes ([f059583](https://github.com/pie-framework/pie-lib/commit/f059583))
|
|
918
|
+
|
|
919
|
+
<a name="2.0.10"></a>
|
|
920
|
+
|
|
921
|
+
## [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)
|
|
922
|
+
|
|
923
|
+
### Bug Fixes
|
|
924
|
+
|
|
925
|
+
- **dependencies:** set material-ui version to ^1.0.0-beta.44 ([6fd66bc](https://github.com/pie-framework/pie-lib/commit/6fd66bc))
|
|
926
|
+
|
|
927
|
+
<a name="2.0.9"></a>
|
|
928
|
+
|
|
929
|
+
## [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)
|
|
930
|
+
|
|
931
|
+
### Bug Fixes
|
|
932
|
+
|
|
933
|
+
- **dependencies:** lock material-ui to 1.0.0-beta.44 ([60df8e6](https://github.com/pie-framework/pie-lib/commit/60df8e6))
|
|
934
|
+
|
|
935
|
+
<a name="2.0.8"></a>
|
|
936
|
+
|
|
937
|
+
## [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)
|
|
938
|
+
|
|
939
|
+
### Bug Fixes
|
|
940
|
+
|
|
941
|
+
- **dependencies:** lock material-ui to 1.0.0-beta.43 ([2a3e087](https://github.com/pie-framework/pie-lib/commit/2a3e087))
|
|
942
|
+
- **dependencies:** upgrade material-ui ([b94b50e](https://github.com/pie-framework/pie-lib/commit/b94b50e))
|
|
943
|
+
|
|
944
|
+
<a name="2.0.7"></a>
|
|
945
|
+
|
|
946
|
+
## [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)
|
|
947
|
+
|
|
948
|
+
### Bug Fixes
|
|
949
|
+
|
|
950
|
+
- **dependencies:** version bump ([3f6766b](https://github.com/pie-framework/pie-lib/commit/3f6766b))
|
|
951
|
+
|
|
952
|
+
<a name="2.0.6"></a>
|
|
953
|
+
|
|
954
|
+
## [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)
|
|
955
|
+
|
|
956
|
+
### Bug Fixes
|
|
957
|
+
|
|
958
|
+
- **build:** remove jsx from path name ([a6dd641](https://github.com/pie-framework/pie-lib/commit/a6dd641))
|
|
959
|
+
|
|
960
|
+
<a name="2.0.5"></a>
|
|
961
|
+
|
|
962
|
+
## [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)
|
|
963
|
+
|
|
964
|
+
### Bug Fixes
|
|
965
|
+
|
|
966
|
+
- **test:** normalize tests ([b86b3d9](https://github.com/pie-framework/pie-lib/commit/b86b3d9))
|
|
967
|
+
|
|
968
|
+
<a name="2.0.4"></a>
|
|
969
|
+
|
|
970
|
+
## [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)
|
|
971
|
+
|
|
972
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
973
|
+
|
|
974
|
+
<a name="2.0.3"></a>
|
|
975
|
+
|
|
976
|
+
## [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)
|
|
977
|
+
|
|
978
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
979
|
+
|
|
980
|
+
<a name="2.0.2"></a>
|
|
981
|
+
|
|
982
|
+
## [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)
|
|
983
|
+
|
|
984
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
985
|
+
|
|
986
|
+
<a name="2.0.1"></a>
|
|
987
|
+
|
|
988
|
+
## [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)
|
|
989
|
+
|
|
990
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
991
|
+
|
|
992
|
+
<a name="1.0.0"></a>
|
|
993
|
+
|
|
994
|
+
# [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)
|
|
995
|
+
|
|
996
|
+
### Bug Fixes
|
|
997
|
+
|
|
998
|
+
- **dependencies:** bump react version ([0169b4a](https://github.com/pie-framework/pie-lib/commit/0169b4a))
|
|
999
|
+
|
|
1000
|
+
### BREAKING CHANGES
|
|
1001
|
+
|
|
1002
|
+
- **dependencies:** requires react@^16.3.1
|
|
1003
|
+
|
|
1004
|
+
<a name="0.1.15"></a>
|
|
1005
|
+
|
|
1006
|
+
## [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)
|
|
1007
|
+
|
|
1008
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
1009
|
+
|
|
1010
|
+
<a name="0.1.14"></a>
|
|
1011
|
+
|
|
1012
|
+
## [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)
|
|
1013
|
+
|
|
1014
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
1015
|
+
|
|
1016
|
+
<a name="0.1.13"></a>
|
|
1017
|
+
|
|
1018
|
+
## 0.1.13 (2018-03-06)
|
|
1019
|
+
|
|
1020
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|
|
1021
|
+
|
|
1022
|
+
<a name="0.1.12"></a>
|
|
1023
|
+
|
|
1024
|
+
## 0.1.12 (2018-03-06)
|
|
1025
|
+
|
|
1026
|
+
**Note:** Version bump only for package @pie-lib/render-ui
|