@pie-element/multiple-choice 8.4.2-next.0 → 8.4.2-next.12
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/module/configure.js +4 -3
- package/module/element.js +4 -3
- package/module/manifest.json +5 -1
- package/module/print.js +4 -3
- package/package.json +2 -2
package/module/configure.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_react_dom, _dll_classnames,
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_react_dom, _dll_classnames, _dll_lodash, _dll_debug} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.0.8/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_editable_html, _dll_pie_lib__pie_toolbox_config_ui, _dll_pie_lib__pie_toolbox_render_ui} from "../../../@pie-lib/pie-toolbox-module@4.0.0/module/index.js";
|
|
2
3
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
3
4
|
function getDefaultExportFromCjs(x) {
|
|
4
5
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
@@ -10165,6 +10166,7 @@ const generateValidationMessage = config => {
|
|
|
10165
10166
|
};
|
|
10166
10167
|
const React$1 = _dll_react;
|
|
10167
10168
|
const PropTypes = _dll_prop_types;
|
|
10169
|
+
const {merge: merge} = _dll_lodash;
|
|
10168
10170
|
const {EditableHtml: EditableHtml} = _dll_pie_lib__pie_toolbox_editable_html;
|
|
10169
10171
|
const {AlertDialog: AlertDialog} = _dll_pie_lib__pie_toolbox_config_ui;
|
|
10170
10172
|
const {InputContainer: InputContainer} = _dll_pie_lib__pie_toolbox_config_ui;
|
|
@@ -10173,7 +10175,6 @@ const {settings: settings} = _dll_pie_lib__pie_toolbox_config_ui;
|
|
|
10173
10175
|
const {layout: layout} = _dll_pie_lib__pie_toolbox_config_ui;
|
|
10174
10176
|
const {choiceUtils: utils$1} = _dll_pie_lib__pie_toolbox_config_ui;
|
|
10175
10177
|
const {color: color} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
10176
|
-
const {merge: merge} = _dll_lodash;
|
|
10177
10178
|
const _jsxFileName = "/home/circleci/repo/packages/multiple-choice/configure/src/main.jsx";
|
|
10178
10179
|
function _optionalChain$1(ops) {
|
|
10179
10180
|
let lastAccessLHS = undefined;
|
|
@@ -10925,8 +10926,8 @@ var sensibleDefaults = {
|
|
|
10925
10926
|
const React = _dll_react;
|
|
10926
10927
|
const ReactDOM = _dll_react_dom;
|
|
10927
10928
|
const debug = _dll_debug;
|
|
10928
|
-
const {choiceUtils: utils} = _dll_pie_lib__pie_toolbox_config_ui;
|
|
10929
10929
|
const {defaults: defaults} = _dll_lodash;
|
|
10930
|
+
const {choiceUtils: utils} = _dll_pie_lib__pie_toolbox_config_ui;
|
|
10930
10931
|
function _optionalChain(ops) {
|
|
10931
10932
|
let lastAccessLHS = undefined;
|
|
10932
10933
|
let value = ops[0];
|
package/module/element.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom,
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_lodash, _dll_debug, _dll_pie_lib__pie_toolbox_math_rendering} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.0.8/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_correct_answer_toggle} from "../../../@pie-lib/pie-toolbox-module@4.0.0/module/index.js";
|
|
2
3
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
3
4
|
function getDefaultExportFromCjs(x) {
|
|
4
5
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
@@ -8874,10 +8875,10 @@ Radio$2.default = _default;
|
|
|
8874
8875
|
var Radio = getDefaultExportFromCjs(Radio$3);
|
|
8875
8876
|
const React$4 = _dll_react;
|
|
8876
8877
|
const PropTypes$3 = _dll_prop_types;
|
|
8878
|
+
const classNames$2 = _dll_classnames;
|
|
8877
8879
|
const {Feedback: Feedback} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
8878
8880
|
const {color: color$1} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
8879
8881
|
const {PreviewPrompt: PreviewPrompt$1} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
8880
|
-
const classNames$2 = _dll_classnames;
|
|
8881
8882
|
const _jsxFileName$3 = "/home/circleci/repo/packages/multiple-choice/src/choice-input.jsx";
|
|
8882
8883
|
const CLASS_NAME = 'multiple-choice-component';
|
|
8883
8884
|
const styleSheet = theme => ({
|
|
@@ -9264,8 +9265,8 @@ var StyledChoice = styles$b.withStyles(theme => ({
|
|
|
9264
9265
|
}))(Choice);
|
|
9265
9266
|
const React$2 = _dll_react;
|
|
9266
9267
|
const PropTypes$1 = _dll_prop_types;
|
|
9267
|
-
const {CorrectAnswerToggle: CorrectAnswerToggle} = _dll_pie_lib__pie_toolbox_correct_answer_toggle;
|
|
9268
9268
|
const classNames = _dll_classnames;
|
|
9269
|
+
const {CorrectAnswerToggle: CorrectAnswerToggle} = _dll_pie_lib__pie_toolbox_correct_answer_toggle;
|
|
9269
9270
|
const {color: color} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
9270
9271
|
const {Collapsible: Collapsible} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
9271
9272
|
const {PreviewPrompt: PreviewPrompt} = _dll_pie_lib__pie_toolbox_render_ui;
|
package/module/manifest.json
CHANGED
|
@@ -2,9 +2,13 @@
|
|
|
2
2
|
"name": "@pie-element/multiple-choice",
|
|
3
3
|
"version": "8.4.1",
|
|
4
4
|
"modules": [
|
|
5
|
+
{
|
|
6
|
+
"name": "@pie-lib/pie-toolbox-math-rendering-module",
|
|
7
|
+
"version": "1.0.8"
|
|
8
|
+
},
|
|
5
9
|
{
|
|
6
10
|
"name": "@pie-lib/pie-toolbox-module",
|
|
7
|
-
"version": "
|
|
11
|
+
"version": "4.0.0"
|
|
8
12
|
}
|
|
9
13
|
]
|
|
10
14
|
}
|
package/module/print.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom,
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_lodash, _dll_pie_lib__pie_toolbox_math_rendering, _dll_debug} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.0.8/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_correct_answer_toggle} from "../../../@pie-lib/pie-toolbox-module@4.0.0/module/index.js";
|
|
2
3
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
3
4
|
function getDefaultExportFromCjs(x) {
|
|
4
5
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
@@ -8874,10 +8875,10 @@ Radio$2.default = _default;
|
|
|
8874
8875
|
var Radio = getDefaultExportFromCjs(Radio$3);
|
|
8875
8876
|
const React$4 = _dll_react;
|
|
8876
8877
|
const PropTypes$3 = _dll_prop_types;
|
|
8878
|
+
const classNames$2 = _dll_classnames;
|
|
8877
8879
|
const {Feedback: Feedback} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
8878
8880
|
const {color: color$1} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
8879
8881
|
const {PreviewPrompt: PreviewPrompt$1} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
8880
|
-
const classNames$2 = _dll_classnames;
|
|
8881
8882
|
const _jsxFileName$3 = "/home/circleci/repo/packages/multiple-choice/src/choice-input.jsx";
|
|
8882
8883
|
const CLASS_NAME = 'multiple-choice-component';
|
|
8883
8884
|
const styleSheet = theme => ({
|
|
@@ -9264,8 +9265,8 @@ var StyledChoice = styles$b.withStyles(theme => ({
|
|
|
9264
9265
|
}))(Choice);
|
|
9265
9266
|
const React$2 = _dll_react;
|
|
9266
9267
|
const PropTypes$1 = _dll_prop_types;
|
|
9267
|
-
const {CorrectAnswerToggle: CorrectAnswerToggle} = _dll_pie_lib__pie_toolbox_correct_answer_toggle;
|
|
9268
9268
|
const classNames = _dll_classnames;
|
|
9269
|
+
const {CorrectAnswerToggle: CorrectAnswerToggle} = _dll_pie_lib__pie_toolbox_correct_answer_toggle;
|
|
9269
9270
|
const {color: color} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
9270
9271
|
const {Collapsible: Collapsible} = _dll_pie_lib__pie_toolbox_render_ui;
|
|
9271
9272
|
const {PreviewPrompt: PreviewPrompt} = _dll_pie_lib__pie_toolbox_render_ui;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-element/multiple-choice",
|
|
3
3
|
"repository": "pie-framework/pie-elements",
|
|
4
|
-
"version": "8.4.2-next.
|
|
4
|
+
"version": "8.4.2-next.12+e62dbb87e",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"react-test-renderer": "^16.3.2",
|
|
19
19
|
"react-transition-group": "^2.3.1"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "e62dbb87e08405c6a456e60dc800c1067696ec39",
|
|
22
22
|
"scripts": {
|
|
23
23
|
"postpublish": "../../scripts/postpublish"
|
|
24
24
|
},
|