@pie-element/math-templated 5.0.2-esm.0 → 5.2.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 +25 -0
- package/configure/CHANGELOG.md +19 -0
- package/configure/package.json +5 -5
- package/controller/CHANGELOG.md +25 -0
- package/controller/lib/index.js +1 -1
- package/controller/lib/index.js.map +1 -1
- package/controller/package.json +3 -3
- package/module/configure.js +1 -1
- package/module/controller.js +40 -39
- package/module/element.js +1 -1
- package/module/index.html +1 -1
- package/module/manifest.json +5 -5
- package/module/print.html +1 -1
- package/module/print.js +1 -1
- package/package.json +9 -27
- package/esm/configure.css +0 -847
- package/esm/configure.js +0 -1342
- package/esm/configure.js.map +0 -1
- package/esm/controller.css +0 -847
- package/esm/controller.js +0 -335
- package/esm/controller.js.map +0 -1
- package/esm/element.css +0 -847
- package/esm/element.js +0 -900
- package/esm/element.js.map +0 -1
- package/esm/print.css +0 -847
- package/esm/print.js +0 -905
- package/esm/print.js.map +0 -1
package/package.json
CHANGED
|
@@ -4,48 +4,30 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "5.
|
|
7
|
+
"version": "5.2.0",
|
|
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/correct-answer-toggle": "^2.
|
|
13
|
-
"@pie-lib/mask-markup": "^1.
|
|
14
|
-
"@pie-lib/math-input": "^6.28.
|
|
15
|
-
"@pie-lib/math-rendering": "^3.19.
|
|
16
|
-
"@pie-lib/render-ui": "^4.
|
|
12
|
+
"@pie-lib/correct-answer-toggle": "^2.21.1",
|
|
13
|
+
"@pie-lib/mask-markup": "^1.29.1",
|
|
14
|
+
"@pie-lib/math-input": "^6.28.5",
|
|
15
|
+
"@pie-lib/math-rendering": "^3.19.4",
|
|
16
|
+
"@pie-lib/render-ui": "^4.31.1",
|
|
17
17
|
"prop-types": "^15.6.1",
|
|
18
18
|
"react": "^16.8.1",
|
|
19
19
|
"react-dom": "^16.8.1"
|
|
20
20
|
},
|
|
21
21
|
"author": "",
|
|
22
22
|
"license": "ISC",
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "edd2d8fc80a70863b9a71dab5fc2caed85175533",
|
|
24
24
|
"scripts": {
|
|
25
25
|
"postpublish": "../../scripts/postpublish"
|
|
26
26
|
},
|
|
27
27
|
"main": "lib/index.js",
|
|
28
28
|
"module": "src/index.js",
|
|
29
29
|
"exports": {
|
|
30
|
-
".":
|
|
31
|
-
|
|
32
|
-
"require": "./lib/index.js",
|
|
33
|
-
"default": "./esm/element.js"
|
|
34
|
-
},
|
|
35
|
-
"./configure": {
|
|
36
|
-
"import": "./esm/configure.js",
|
|
37
|
-
"require": "./configure/lib/index.js",
|
|
38
|
-
"default": "./esm/configure.js"
|
|
39
|
-
},
|
|
40
|
-
"./controller": {
|
|
41
|
-
"import": "./esm/controller.js",
|
|
42
|
-
"require": "./controller/lib/index.js",
|
|
43
|
-
"default": "./esm/controller.js"
|
|
44
|
-
},
|
|
45
|
-
"./print": {
|
|
46
|
-
"import": "./esm/print.js",
|
|
47
|
-
"require": "./lib/print.js",
|
|
48
|
-
"default": "./esm/print.js"
|
|
49
|
-
}
|
|
30
|
+
".": "./src/index.js",
|
|
31
|
+
"./print": "./src/print.js"
|
|
50
32
|
}
|
|
51
33
|
}
|