@pie-element/explicit-constructed-response 6.19.7-next.17 → 6.19.7-next.23
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/configure/package.json +1 -1
- package/controller/package.json +1 -1
- package/module/configure.js +1 -1
- package/module/element.js +32 -5
- package/module/manifest.json +1 -1
- package/module/print.js +32 -5
- package/package.json +3 -3
package/configure/package.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@material-ui/core": "^3.9.2",
|
|
9
9
|
"@material-ui/icons": "^3.0.1",
|
|
10
10
|
"@pie-framework/pie-configure-events": "^1.3.0",
|
|
11
|
-
"@pie-lib/pie-toolbox": "1.
|
|
11
|
+
"@pie-lib/pie-toolbox": "1.27.0",
|
|
12
12
|
"classnames": "^2.2.6",
|
|
13
13
|
"debug": "^3.1.0",
|
|
14
14
|
"lodash": "^4.17.15",
|
package/controller/package.json
CHANGED
package/module/configure.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_lodash, _dll_debug} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.19.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_lodash, _dll_debug} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.19.2/module/index.js";
|
|
2
2
|
import {_dll_pie_lib__pie_toolbox_editable_html, _dll_pie_lib__pie_toolbox_config_ui} from "../../../@pie-lib/pie-toolbox-module@4.12.0/module/index.js";
|
|
3
3
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
4
4
|
function getDefaultExportFromCjs(x) {
|
package/module/element.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_react_dom, _dll_classnames, _dll_pie_lib__pie_toolbox_math_rendering_accessible} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.19.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_react_dom, _dll_classnames, _dll_pie_lib__pie_toolbox_math_rendering_accessible} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.19.2/module/index.js";
|
|
2
2
|
import {_dll_pie_lib__pie_toolbox_correct_answer_toggle, _dll_pie_lib__pie_toolbox_render_ui} from "../../../@pie-lib/pie-toolbox-module@4.12.0/module/index.js";
|
|
3
3
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
4
4
|
function getDefaultExportFromCjs(x) {
|
|
@@ -117244,7 +117244,7 @@ var _interopRequireDefault$B = interopRequireDefault.exports;
|
|
|
117244
117244
|
Object.defineProperty(color$1, "__esModule", {
|
|
117245
117245
|
value: true
|
|
117246
117246
|
});
|
|
117247
|
-
color$1.white = color$1.v = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missingWithIcon = color$1.missing = color$1.incorrectWithIcon = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctWithIcon = color$1.correctSecondary = color$1.correct = color$1.black = color$1.background = void 0;
|
|
117247
|
+
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missingWithIcon = color$1.missing = color$1.incorrectWithIcon = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctWithIcon = color$1.correctSecondary = color$1.correct = color$1.borderLight = color$1.borderDark = color$1.border = color$1.black = color$1.backgroundDark = color$1.background = void 0;
|
|
117248
117248
|
var _green = _interopRequireDefault$B(green$1);
|
|
117249
117249
|
var _orange = _interopRequireDefault$B(orange$1);
|
|
117250
117250
|
var _pink = _interopRequireDefault$B(pink$1);
|
|
@@ -117269,9 +117269,14 @@ var defaults = {
|
|
|
117269
117269
|
SECONDARY_LIGHT: _pink["default"][200],
|
|
117270
117270
|
SECONDARY_DARK: _pink["default"][900],
|
|
117271
117271
|
BACKGROUND: 'rgba(255,255,255,0)',
|
|
117272
|
+
BACKGROUND_DARK: '#ECEDF1',
|
|
117272
117273
|
SECONDARY_BACKGROUND: 'rgba(241,241,241,1)',
|
|
117274
|
+
BORDER: '#9A9A9A',
|
|
117275
|
+
BORDER_LIGHT: '#D1D1D1',
|
|
117276
|
+
BORDER_DARK: '#646464',
|
|
117273
117277
|
BLACK: '#000000',
|
|
117274
|
-
WHITE: '#ffffff'
|
|
117278
|
+
WHITE: '#ffffff',
|
|
117279
|
+
TRANSPARENT: 'transparent'
|
|
117275
117280
|
};
|
|
117276
117281
|
color$1.defaults = defaults;
|
|
117277
117282
|
Object.freeze(defaults);
|
|
@@ -117368,10 +117373,26 @@ var background = function background() {
|
|
|
117368
117373
|
return pv('background', defaults.BACKGROUND);
|
|
117369
117374
|
};
|
|
117370
117375
|
color$1.background = background;
|
|
117376
|
+
var backgroundDark = function backgroundDark() {
|
|
117377
|
+
return pv('background-dark', defaults.BACKGROUND_DARK);
|
|
117378
|
+
};
|
|
117379
|
+
color$1.backgroundDark = backgroundDark;
|
|
117371
117380
|
var secondaryBackground = function secondaryBackground() {
|
|
117372
117381
|
return pv('secondary-background', defaults.SECONDARY_BACKGROUND);
|
|
117373
117382
|
};
|
|
117374
117383
|
color$1.secondaryBackground = secondaryBackground;
|
|
117384
|
+
var border = function border() {
|
|
117385
|
+
return pv('border', defaults.BORDER);
|
|
117386
|
+
};
|
|
117387
|
+
color$1.border = border;
|
|
117388
|
+
var borderLight = function borderLight() {
|
|
117389
|
+
return pv('border-light', defaults.BORDER_LIGHT);
|
|
117390
|
+
};
|
|
117391
|
+
color$1.borderLight = borderLight;
|
|
117392
|
+
var borderDark = function borderDark() {
|
|
117393
|
+
return pv('border-dark', defaults.BORDER_DARK);
|
|
117394
|
+
};
|
|
117395
|
+
color$1.borderDark = borderDark;
|
|
117375
117396
|
var black = function black() {
|
|
117376
117397
|
return pv('black', defaults.BLACK);
|
|
117377
117398
|
};
|
|
@@ -117380,6 +117401,10 @@ var white = function white() {
|
|
|
117380
117401
|
return pv('white', defaults.WHITE);
|
|
117381
117402
|
};
|
|
117382
117403
|
color$1.white = white;
|
|
117404
|
+
var transparent = function transparent() {
|
|
117405
|
+
return defaults.TRANSPARENT;
|
|
117406
|
+
};
|
|
117407
|
+
color$1.transparent = transparent;
|
|
117383
117408
|
const require$$9$g = _dll_react;
|
|
117384
117409
|
const require$$11$7 = _dll_classnames;
|
|
117385
117410
|
const require$$12$7 = _dll_prop_types;
|
|
@@ -122103,7 +122128,8 @@ const require$$13 = _dll_react_dom;
|
|
|
122103
122128
|
fontSize: 'inherit',
|
|
122104
122129
|
whiteSpace: 'pre-wrap',
|
|
122105
122130
|
maxWidth: '374px',
|
|
122106
|
-
pointerEvents: 'none'
|
|
122131
|
+
pointerEvents: 'none',
|
|
122132
|
+
borderRadius: '3px'
|
|
122107
122133
|
},
|
|
122108
122134
|
chipLabel: {
|
|
122109
122135
|
whiteSpace: 'pre-wrap',
|
|
@@ -122353,7 +122379,8 @@ const require$$16 = _dll_classnames;
|
|
|
122353
122379
|
minHeight: '32px',
|
|
122354
122380
|
height: 'auto',
|
|
122355
122381
|
maxWidth: '374px',
|
|
122356
|
-
position: 'relative'
|
|
122382
|
+
position: 'relative',
|
|
122383
|
+
borderRadius: '3px'
|
|
122357
122384
|
},
|
|
122358
122385
|
chipLabel: {
|
|
122359
122386
|
whiteSpace: 'pre-wrap',
|
package/module/manifest.json
CHANGED
package/module/print.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_react_dom, _dll_classnames, _dll_pie_lib__pie_toolbox_math_rendering_accessible} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.19.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_react_dom, _dll_classnames, _dll_pie_lib__pie_toolbox_math_rendering_accessible} from "../../../@pie-lib/pie-toolbox-math-rendering-module@1.19.2/module/index.js";
|
|
2
2
|
import {_dll_pie_lib__pie_toolbox_correct_answer_toggle, _dll_pie_lib__pie_toolbox_render_ui} from "../../../@pie-lib/pie-toolbox-module@4.12.0/module/index.js";
|
|
3
3
|
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
|
|
4
4
|
function getDefaultExportFromCjs(x) {
|
|
@@ -117207,7 +117207,7 @@ var _interopRequireDefault$B = interopRequireDefault.exports;
|
|
|
117207
117207
|
Object.defineProperty(color$1, "__esModule", {
|
|
117208
117208
|
value: true
|
|
117209
117209
|
});
|
|
117210
|
-
color$1.white = color$1.v = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missingWithIcon = color$1.missing = color$1.incorrectWithIcon = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctWithIcon = color$1.correctSecondary = color$1.correct = color$1.black = color$1.background = void 0;
|
|
117210
|
+
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.secondaryText = color$1.secondaryLight = color$1.secondaryDark = color$1.secondaryBackground = color$1.secondary = color$1.primaryText = color$1.primaryLight = color$1.primaryDark = color$1.primary = color$1.missingWithIcon = color$1.missing = color$1.incorrectWithIcon = color$1.incorrectSecondary = color$1.incorrect = color$1.disabledSecondary = color$1.disabled = color$1.defaults = color$1.correctWithIcon = color$1.correctSecondary = color$1.correct = color$1.borderLight = color$1.borderDark = color$1.border = color$1.black = color$1.backgroundDark = color$1.background = void 0;
|
|
117211
117211
|
var _green = _interopRequireDefault$B(green$1);
|
|
117212
117212
|
var _orange = _interopRequireDefault$B(orange$1);
|
|
117213
117213
|
var _pink = _interopRequireDefault$B(pink$1);
|
|
@@ -117232,9 +117232,14 @@ var defaults = {
|
|
|
117232
117232
|
SECONDARY_LIGHT: _pink["default"][200],
|
|
117233
117233
|
SECONDARY_DARK: _pink["default"][900],
|
|
117234
117234
|
BACKGROUND: 'rgba(255,255,255,0)',
|
|
117235
|
+
BACKGROUND_DARK: '#ECEDF1',
|
|
117235
117236
|
SECONDARY_BACKGROUND: 'rgba(241,241,241,1)',
|
|
117237
|
+
BORDER: '#9A9A9A',
|
|
117238
|
+
BORDER_LIGHT: '#D1D1D1',
|
|
117239
|
+
BORDER_DARK: '#646464',
|
|
117236
117240
|
BLACK: '#000000',
|
|
117237
|
-
WHITE: '#ffffff'
|
|
117241
|
+
WHITE: '#ffffff',
|
|
117242
|
+
TRANSPARENT: 'transparent'
|
|
117238
117243
|
};
|
|
117239
117244
|
color$1.defaults = defaults;
|
|
117240
117245
|
Object.freeze(defaults);
|
|
@@ -117331,10 +117336,26 @@ var background = function background() {
|
|
|
117331
117336
|
return pv('background', defaults.BACKGROUND);
|
|
117332
117337
|
};
|
|
117333
117338
|
color$1.background = background;
|
|
117339
|
+
var backgroundDark = function backgroundDark() {
|
|
117340
|
+
return pv('background-dark', defaults.BACKGROUND_DARK);
|
|
117341
|
+
};
|
|
117342
|
+
color$1.backgroundDark = backgroundDark;
|
|
117334
117343
|
var secondaryBackground = function secondaryBackground() {
|
|
117335
117344
|
return pv('secondary-background', defaults.SECONDARY_BACKGROUND);
|
|
117336
117345
|
};
|
|
117337
117346
|
color$1.secondaryBackground = secondaryBackground;
|
|
117347
|
+
var border = function border() {
|
|
117348
|
+
return pv('border', defaults.BORDER);
|
|
117349
|
+
};
|
|
117350
|
+
color$1.border = border;
|
|
117351
|
+
var borderLight = function borderLight() {
|
|
117352
|
+
return pv('border-light', defaults.BORDER_LIGHT);
|
|
117353
|
+
};
|
|
117354
|
+
color$1.borderLight = borderLight;
|
|
117355
|
+
var borderDark = function borderDark() {
|
|
117356
|
+
return pv('border-dark', defaults.BORDER_DARK);
|
|
117357
|
+
};
|
|
117358
|
+
color$1.borderDark = borderDark;
|
|
117338
117359
|
var black = function black() {
|
|
117339
117360
|
return pv('black', defaults.BLACK);
|
|
117340
117361
|
};
|
|
@@ -117343,6 +117364,10 @@ var white = function white() {
|
|
|
117343
117364
|
return pv('white', defaults.WHITE);
|
|
117344
117365
|
};
|
|
117345
117366
|
color$1.white = white;
|
|
117367
|
+
var transparent = function transparent() {
|
|
117368
|
+
return defaults.TRANSPARENT;
|
|
117369
|
+
};
|
|
117370
|
+
color$1.transparent = transparent;
|
|
117346
117371
|
const require$$9$g = _dll_react;
|
|
117347
117372
|
const require$$11$7 = _dll_classnames;
|
|
117348
117373
|
const require$$12$7 = _dll_prop_types;
|
|
@@ -122066,7 +122091,8 @@ const require$$13 = _dll_react_dom;
|
|
|
122066
122091
|
fontSize: 'inherit',
|
|
122067
122092
|
whiteSpace: 'pre-wrap',
|
|
122068
122093
|
maxWidth: '374px',
|
|
122069
|
-
pointerEvents: 'none'
|
|
122094
|
+
pointerEvents: 'none',
|
|
122095
|
+
borderRadius: '3px'
|
|
122070
122096
|
},
|
|
122071
122097
|
chipLabel: {
|
|
122072
122098
|
whiteSpace: 'pre-wrap',
|
|
@@ -122316,7 +122342,8 @@ const require$$16 = _dll_classnames;
|
|
|
122316
122342
|
minHeight: '32px',
|
|
122317
122343
|
height: 'auto',
|
|
122318
122344
|
maxWidth: '374px',
|
|
122319
|
-
position: 'relative'
|
|
122345
|
+
position: 'relative',
|
|
122346
|
+
borderRadius: '3px'
|
|
122320
122347
|
},
|
|
122321
122348
|
chipLabel: {
|
|
122322
122349
|
whiteSpace: 'pre-wrap',
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "6.19.7-next.
|
|
7
|
+
"version": "6.19.7-next.23+db711e0b4",
|
|
8
8
|
"description": "",
|
|
9
9
|
"scripts": {
|
|
10
10
|
"postpublish": "../../scripts/postpublish"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@material-ui/core": "^3.9.2",
|
|
14
14
|
"@pie-framework/pie-player-events": "^0.1.0",
|
|
15
|
-
"@pie-lib/pie-toolbox": "1.
|
|
15
|
+
"@pie-lib/pie-toolbox": "1.27.0",
|
|
16
16
|
"classnames": "^2.2.5",
|
|
17
17
|
"lodash": "^4.17.10",
|
|
18
18
|
"prop-types": "^15.6.1",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"author": "",
|
|
23
23
|
"license": "ISC",
|
|
24
|
-
"gitHead": "
|
|
24
|
+
"gitHead": "db711e0b4a808cdcd58faafbfe1fb49343abb89c",
|
|
25
25
|
"main": "lib/index.js",
|
|
26
26
|
"module": "src/index.js",
|
|
27
27
|
"exports": {
|