@pie-element/math-templated 3.7.3-next.24 → 3.7.3-next.28
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 +9 -4
- package/module/controller.js +18 -2
- package/module/element.js +9 -4
- package/module/manifest.json +2 -2
- package/module/print.js +9 -4
- package/package.json +3 -3
package/configure/package.json
CHANGED
package/controller/package.json
CHANGED
package/module/configure.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash} from "../../../@pie-lib/pie-toolbox-math-rendering-module@5.
|
|
2
|
-
import {_dll_pie_lib__pie_toolbox_config_ui, _dll_pie_lib__pie_toolbox_math_toolbar, _dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_editable_html} from "../../../@pie-lib/pie-toolbox-module@8.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash} from "../../../@pie-lib/pie-toolbox-math-rendering-module@5.2.0/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_config_ui, _dll_pie_lib__pie_toolbox_math_toolbar, _dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_editable_html} from "../../../@pie-lib/pie-toolbox-module@8.2.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) {
|
|
5
5
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
|
|
@@ -16443,7 +16443,7 @@ var _interopRequireDefault$q = interopRequireDefault.exports;
|
|
|
16443
16443
|
Object.defineProperty(color$1, "__esModule", {
|
|
16444
16444
|
value: true
|
|
16445
16445
|
});
|
|
16446
|
-
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.tertiaryLight = color$1.tertiary = 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.focusUncheckedBorder = color$1.focusUnchecked = color$1.focusCheckedBorder = color$1.focusChecked = 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;
|
|
16446
|
+
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.tertiaryLight = color$1.tertiary = 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.focusUncheckedBorder = color$1.focusUnchecked = color$1.focusCheckedBorder = color$1.focusChecked = color$1.fadedPrimary = 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;
|
|
16447
16447
|
var _green = _interopRequireDefault$q(green$1);
|
|
16448
16448
|
var _orange = _interopRequireDefault$q(orange$1);
|
|
16449
16449
|
var _pink = _interopRequireDefault$q(pink$1);
|
|
@@ -16481,7 +16481,8 @@ var defaults$1 = {
|
|
|
16481
16481
|
FOCUS_CHECKED: '#BBDEFB',
|
|
16482
16482
|
FOCUS_CHECKED_BORDER: '#1565C0',
|
|
16483
16483
|
FOCUS_UNCHECKED: '#E0E0E0',
|
|
16484
|
-
FOCUS_UNCHECKED_BORDER: '#757575'
|
|
16484
|
+
FOCUS_UNCHECKED_BORDER: '#757575',
|
|
16485
|
+
FADED_PRIMARY: '#DCDAFB'
|
|
16485
16486
|
};
|
|
16486
16487
|
color$1.defaults = defaults$1;
|
|
16487
16488
|
Object.freeze(defaults$1);
|
|
@@ -16558,6 +16559,10 @@ var primaryText = function primaryText() {
|
|
|
16558
16559
|
return pv('primary-text', 'text', defaults$1.TEXT);
|
|
16559
16560
|
};
|
|
16560
16561
|
color$1.primaryText = primaryText;
|
|
16562
|
+
var fadedPrimary = function fadedPrimary() {
|
|
16563
|
+
return pv('faded-primary', defaults$1.FADED_PRIMARY);
|
|
16564
|
+
};
|
|
16565
|
+
color$1.fadedPrimary = fadedPrimary;
|
|
16561
16566
|
var secondary = function secondary() {
|
|
16562
16567
|
return pv('secondary', defaults$1.SECONDARY);
|
|
16563
16568
|
};
|
package/module/controller.js
CHANGED
|
@@ -3815,8 +3815,16 @@ var _default = {
|
|
|
3815
3815
|
},
|
|
3816
3816
|
charting: {
|
|
3817
3817
|
addCategory: 'Add category',
|
|
3818
|
+
actions: 'Actions',
|
|
3819
|
+
add: 'Add',
|
|
3820
|
+
"delete": 'Delete',
|
|
3818
3821
|
newLabel: 'New label',
|
|
3819
|
-
reachedLimit_other: "There can't be more than {{count}} categories."
|
|
3822
|
+
reachedLimit_other: "There can't be more than {{count}} categories.",
|
|
3823
|
+
keyLegend: {
|
|
3824
|
+
incorrectAnswer: 'Student incorrect answer',
|
|
3825
|
+
correctAnswer: 'Student correct answer',
|
|
3826
|
+
correctKeyAnswer: 'Answer key correct'
|
|
3827
|
+
}
|
|
3820
3828
|
},
|
|
3821
3829
|
graphing: {
|
|
3822
3830
|
point: 'Point',
|
|
@@ -3912,8 +3920,16 @@ var _default = {
|
|
|
3912
3920
|
},
|
|
3913
3921
|
charting: {
|
|
3914
3922
|
addCategory: 'Añadir categoría',
|
|
3923
|
+
actions: 'Acciones',
|
|
3924
|
+
add: 'Añadir',
|
|
3925
|
+
"delete": 'Eliminar',
|
|
3915
3926
|
newLabel: 'Nueva etiqueta',
|
|
3916
|
-
reachedLimit_other: 'No puede haber más de {{count}} categorías.'
|
|
3927
|
+
reachedLimit_other: 'No puede haber más de {{count}} categorías.',
|
|
3928
|
+
keyLegend: {
|
|
3929
|
+
incorrectAnswer: 'Respuesta incorrecta del estudiante',
|
|
3930
|
+
correctAnswer: 'Respuesta correcta del estudiante',
|
|
3931
|
+
correctKeyAnswer: 'Clave de respuesta correcta'
|
|
3932
|
+
}
|
|
3917
3933
|
},
|
|
3918
3934
|
graphing: {
|
|
3919
3935
|
point: 'Punto',
|
package/module/element.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_pie_framework__mathquill, _dll_pie_lib__pie_toolbox_math_rendering} from "../../../@pie-lib/pie-toolbox-math-rendering-module@5.
|
|
2
|
-
import {_dll_pie_lib__pie_toolbox_math_input, _dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_correct_answer_toggle} from "../../../@pie-lib/pie-toolbox-module@8.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_pie_framework__mathquill, _dll_pie_lib__pie_toolbox_math_rendering} from "../../../@pie-lib/pie-toolbox-math-rendering-module@5.2.0/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_math_input, _dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_correct_answer_toggle} from "../../../@pie-lib/pie-toolbox-module@8.2.0/module/index.js";
|
|
3
3
|
function _mergeNamespaces(n, m) {
|
|
4
4
|
m.forEach(function (e) {
|
|
5
5
|
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
@@ -108602,7 +108602,7 @@ var _interopRequireDefault$35 = interopRequireDefault.exports;
|
|
|
108602
108602
|
Object.defineProperty(color$1, "__esModule", {
|
|
108603
108603
|
value: true
|
|
108604
108604
|
});
|
|
108605
|
-
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.tertiaryLight = color$1.tertiary = 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.focusUncheckedBorder = color$1.focusUnchecked = color$1.focusCheckedBorder = color$1.focusChecked = 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;
|
|
108605
|
+
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.tertiaryLight = color$1.tertiary = 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.focusUncheckedBorder = color$1.focusUnchecked = color$1.focusCheckedBorder = color$1.focusChecked = color$1.fadedPrimary = 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;
|
|
108606
108606
|
var _green = _interopRequireDefault$35(green$1);
|
|
108607
108607
|
var _orange = _interopRequireDefault$35(orange$1);
|
|
108608
108608
|
var _pink = _interopRequireDefault$35(pink$1);
|
|
@@ -108640,7 +108640,8 @@ var defaults = {
|
|
|
108640
108640
|
FOCUS_CHECKED: '#BBDEFB',
|
|
108641
108641
|
FOCUS_CHECKED_BORDER: '#1565C0',
|
|
108642
108642
|
FOCUS_UNCHECKED: '#E0E0E0',
|
|
108643
|
-
FOCUS_UNCHECKED_BORDER: '#757575'
|
|
108643
|
+
FOCUS_UNCHECKED_BORDER: '#757575',
|
|
108644
|
+
FADED_PRIMARY: '#DCDAFB'
|
|
108644
108645
|
};
|
|
108645
108646
|
color$1.defaults = defaults;
|
|
108646
108647
|
Object.freeze(defaults);
|
|
@@ -108717,6 +108718,10 @@ var primaryText = function primaryText() {
|
|
|
108717
108718
|
return pv('primary-text', 'text', defaults.TEXT);
|
|
108718
108719
|
};
|
|
108719
108720
|
color$1.primaryText = primaryText;
|
|
108721
|
+
var fadedPrimary = function fadedPrimary() {
|
|
108722
|
+
return pv('faded-primary', defaults.FADED_PRIMARY);
|
|
108723
|
+
};
|
|
108724
|
+
color$1.fadedPrimary = fadedPrimary;
|
|
108720
108725
|
var secondary = function secondary() {
|
|
108721
108726
|
return pv('secondary', defaults.SECONDARY);
|
|
108722
108727
|
};
|
package/module/manifest.json
CHANGED
package/module/print.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_pie_framework__mathquill, _dll_pie_lib__pie_toolbox_math_rendering} from "../../../@pie-lib/pie-toolbox-math-rendering-module@5.
|
|
2
|
-
import {_dll_pie_lib__pie_toolbox_math_input, _dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_correct_answer_toggle} from "../../../@pie-lib/pie-toolbox-module@8.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_pie_framework__mathquill, _dll_pie_lib__pie_toolbox_math_rendering} from "../../../@pie-lib/pie-toolbox-math-rendering-module@5.2.0/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_math_input, _dll_pie_lib__pie_toolbox_render_ui, _dll_pie_lib__pie_toolbox_correct_answer_toggle} from "../../../@pie-lib/pie-toolbox-module@8.2.0/module/index.js";
|
|
3
3
|
function _mergeNamespaces(n, m) {
|
|
4
4
|
m.forEach(function (e) {
|
|
5
5
|
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
|
|
@@ -108565,7 +108565,7 @@ var _interopRequireDefault$35 = interopRequireDefault.exports;
|
|
|
108565
108565
|
Object.defineProperty(color$1, "__esModule", {
|
|
108566
108566
|
value: true
|
|
108567
108567
|
});
|
|
108568
|
-
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.tertiaryLight = color$1.tertiary = 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.focusUncheckedBorder = color$1.focusUnchecked = color$1.focusCheckedBorder = color$1.focusChecked = 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;
|
|
108568
|
+
color$1.white = color$1.v = color$1.transparent = color$1.text = color$1.tertiaryLight = color$1.tertiary = 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.focusUncheckedBorder = color$1.focusUnchecked = color$1.focusCheckedBorder = color$1.focusChecked = color$1.fadedPrimary = 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;
|
|
108569
108569
|
var _green = _interopRequireDefault$35(green$1);
|
|
108570
108570
|
var _orange = _interopRequireDefault$35(orange$1);
|
|
108571
108571
|
var _pink = _interopRequireDefault$35(pink$1);
|
|
@@ -108603,7 +108603,8 @@ var defaults = {
|
|
|
108603
108603
|
FOCUS_CHECKED: '#BBDEFB',
|
|
108604
108604
|
FOCUS_CHECKED_BORDER: '#1565C0',
|
|
108605
108605
|
FOCUS_UNCHECKED: '#E0E0E0',
|
|
108606
|
-
FOCUS_UNCHECKED_BORDER: '#757575'
|
|
108606
|
+
FOCUS_UNCHECKED_BORDER: '#757575',
|
|
108607
|
+
FADED_PRIMARY: '#DCDAFB'
|
|
108607
108608
|
};
|
|
108608
108609
|
color$1.defaults = defaults;
|
|
108609
108610
|
Object.freeze(defaults);
|
|
@@ -108680,6 +108681,10 @@ var primaryText = function primaryText() {
|
|
|
108680
108681
|
return pv('primary-text', 'text', defaults.TEXT);
|
|
108681
108682
|
};
|
|
108682
108683
|
color$1.primaryText = primaryText;
|
|
108684
|
+
var fadedPrimary = function fadedPrimary() {
|
|
108685
|
+
return pv('faded-primary', defaults.FADED_PRIMARY);
|
|
108686
|
+
};
|
|
108687
|
+
color$1.fadedPrimary = fadedPrimary;
|
|
108683
108688
|
var secondary = function secondary() {
|
|
108684
108689
|
return pv('secondary', defaults.SECONDARY);
|
|
108685
108690
|
};
|
package/package.json
CHANGED
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "3.7.3-next.
|
|
7
|
+
"version": "3.7.3-next.28+a54c512ca",
|
|
8
8
|
"description": "",
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@material-ui/core": "^3.9.2",
|
|
11
11
|
"@pie-framework/pie-player-events": "^0.1.0",
|
|
12
|
-
"@pie-lib/pie-toolbox": "2.
|
|
12
|
+
"@pie-lib/pie-toolbox": "2.21.0",
|
|
13
13
|
"prop-types": "^15.6.1",
|
|
14
14
|
"react": "^16.8.1",
|
|
15
15
|
"react-dom": "^16.8.1"
|
|
16
16
|
},
|
|
17
17
|
"author": "",
|
|
18
18
|
"license": "ISC",
|
|
19
|
-
"gitHead": "
|
|
19
|
+
"gitHead": "a54c512ca8eb1da72fefd36f49571ee09d79821b",
|
|
20
20
|
"scripts": {
|
|
21
21
|
"postpublish": "../../scripts/postpublish"
|
|
22
22
|
},
|