@pie-element/math-templated 3.0.1-next.2 → 3.0.1-next.4
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 +6 -2
- package/module/element.js +6 -2
- package/module/manifest.json +2 -2
- package/module/print.js +6 -2
- 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@2.0.
|
|
2
|
-
import {_dll_pie_lib__pie_toolbox_config_ui, _dll_pie_lib__pie_toolbox_math_toolbar, _dll_pie_lib__pie_toolbox_editable_html} from "../../../@pie-lib/pie-toolbox-module@5.0.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash} from "../../../@pie-lib/pie-toolbox-math-rendering-module@2.0.5/module/index.js";
|
|
2
|
+
import {_dll_pie_lib__pie_toolbox_config_ui, _dll_pie_lib__pie_toolbox_math_toolbar, _dll_pie_lib__pie_toolbox_editable_html} from "../../../@pie-lib/pie-toolbox-module@5.0.4/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;
|
|
@@ -50050,6 +50050,7 @@ getDefaultExportFromCjs(SerializedMmlVisitor);
|
|
|
50050
50050
|
};
|
|
50051
50051
|
var renderContentWithMathJax = function renderContentWithMathJax(executeOn) {
|
|
50052
50052
|
executeOn = executeOn || document.body;
|
|
50053
|
+
if (!(executeOn instanceof HTMLElement)) return;
|
|
50053
50054
|
fixMathElements(executeOn);
|
|
50054
50055
|
adjustMathMLStyle(executeOn);
|
|
50055
50056
|
var mathJaxInstance = getGlobal().instance;
|
|
@@ -50076,6 +50077,9 @@ getDefaultExportFromCjs(SerializedMmlVisitor);
|
|
|
50076
50077
|
}
|
|
50077
50078
|
};
|
|
50078
50079
|
var initializeMathJax = function initializeMathJax(callback) {
|
|
50080
|
+
if (window.mathjaxLoadedP) {
|
|
50081
|
+
return;
|
|
50082
|
+
}
|
|
50079
50083
|
var texConfig = {
|
|
50080
50084
|
macros: {
|
|
50081
50085
|
parallelogram: "\\lower.2em{\\Huge\\unicode{x25B1}}",
|
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_lib__pie_toolbox_math_rendering_accessible, _dll_pie_framework__mathquill} from "../../../@pie-lib/pie-toolbox-math-rendering-module@2.0.
|
|
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@5.0.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_pie_lib__pie_toolbox_math_rendering_accessible, _dll_pie_framework__mathquill} from "../../../@pie-lib/pie-toolbox-math-rendering-module@2.0.5/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@5.0.4/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;
|
|
@@ -28940,6 +28940,7 @@ getDefaultExportFromCjs(SerializedMmlVisitor);
|
|
|
28940
28940
|
};
|
|
28941
28941
|
var renderContentWithMathJax = function renderContentWithMathJax(executeOn) {
|
|
28942
28942
|
executeOn = executeOn || document.body;
|
|
28943
|
+
if (!(executeOn instanceof HTMLElement)) return;
|
|
28943
28944
|
fixMathElements(executeOn);
|
|
28944
28945
|
adjustMathMLStyle(executeOn);
|
|
28945
28946
|
var mathJaxInstance = getGlobal().instance;
|
|
@@ -28966,6 +28967,9 @@ getDefaultExportFromCjs(SerializedMmlVisitor);
|
|
|
28966
28967
|
}
|
|
28967
28968
|
};
|
|
28968
28969
|
var initializeMathJax = function initializeMathJax(callback) {
|
|
28970
|
+
if (window.mathjaxLoadedP) {
|
|
28971
|
+
return;
|
|
28972
|
+
}
|
|
28969
28973
|
var texConfig = {
|
|
28970
28974
|
macros: {
|
|
28971
28975
|
parallelogram: "\\lower.2em{\\Huge\\unicode{x25B1}}",
|
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_lib__pie_toolbox_math_rendering_accessible, _dll_pie_framework__mathquill} from "../../../@pie-lib/pie-toolbox-math-rendering-module@2.0.
|
|
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@5.0.
|
|
1
|
+
import {_dll_react, _dll_prop_types, _dll_classnames, _dll_react_dom, _dll_debug, _dll_lodash, _dll_react_dom_server, _dll_pie_lib__pie_toolbox_math_rendering_accessible, _dll_pie_framework__mathquill} from "../../../@pie-lib/pie-toolbox-math-rendering-module@2.0.5/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@5.0.4/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;
|
|
@@ -28903,6 +28903,7 @@ getDefaultExportFromCjs(SerializedMmlVisitor);
|
|
|
28903
28903
|
};
|
|
28904
28904
|
var renderContentWithMathJax = function renderContentWithMathJax(executeOn) {
|
|
28905
28905
|
executeOn = executeOn || document.body;
|
|
28906
|
+
if (!(executeOn instanceof HTMLElement)) return;
|
|
28906
28907
|
fixMathElements(executeOn);
|
|
28907
28908
|
adjustMathMLStyle(executeOn);
|
|
28908
28909
|
var mathJaxInstance = getGlobal().instance;
|
|
@@ -28929,6 +28930,9 @@ getDefaultExportFromCjs(SerializedMmlVisitor);
|
|
|
28929
28930
|
}
|
|
28930
28931
|
};
|
|
28931
28932
|
var initializeMathJax = function initializeMathJax(callback) {
|
|
28933
|
+
if (window.mathjaxLoadedP) {
|
|
28934
|
+
return;
|
|
28935
|
+
}
|
|
28932
28936
|
var texConfig = {
|
|
28933
28937
|
macros: {
|
|
28934
28938
|
parallelogram: "\\lower.2em{\\Huge\\unicode{x25B1}}",
|
package/package.json
CHANGED
|
@@ -4,19 +4,19 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "3.0.1-next.
|
|
7
|
+
"version": "3.0.1-next.4+fe8329644",
|
|
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.0.
|
|
12
|
+
"@pie-lib/pie-toolbox": "2.0.7",
|
|
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": "fe83296445f9785e67c9643642221b28b4485921",
|
|
20
20
|
"scripts": {
|
|
21
21
|
"postpublish": "../../scripts/postpublish"
|
|
22
22
|
},
|