@pie-element/math-inline 10.0.1 → 11.0.3-esm.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/configure/package.json +7 -7
- package/controller/package.json +3 -3
- package/esm/configure.css +847 -0
- package/esm/configure.js +1769 -0
- package/esm/configure.js.map +1 -0
- package/esm/controller.css +847 -0
- package/esm/controller.js +79 -131
- package/esm/controller.js.map +1 -1
- package/esm/element.css +847 -0
- package/esm/element.js +1476 -0
- package/esm/element.js.map +1 -0
- package/esm/print.css +847 -0
- package/esm/print.js +1288 -0
- package/esm/print.js.map +1 -0
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/module/configure.js +1 -0
- package/module/controller.js +4320 -0
- package/module/demo.js +66 -0
- package/module/element.js +1 -0
- package/module/index.html +21 -0
- package/module/manifest.json +14 -0
- package/module/print-demo.js +104 -0
- package/module/print.html +18 -0
- package/module/print.js +1 -0
- package/package.json +23 -8
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
6
|
"repository": "pie-framework/pie-elements",
|
|
7
|
-
"version": "
|
|
7
|
+
"version": "11.0.3-esm.0",
|
|
8
8
|
"main": "lib/index.js",
|
|
9
9
|
"description": "",
|
|
10
10
|
"scripts": {
|
|
@@ -14,12 +14,12 @@
|
|
|
14
14
|
"@material-ui/core": "^3.9.2",
|
|
15
15
|
"@pie-framework/mathquill": "^1.1.3",
|
|
16
16
|
"@pie-framework/pie-player-events": "^0.1.0",
|
|
17
|
-
"@pie-lib/correct-answer-toggle": "^2.22.
|
|
18
|
-
"@pie-lib/math-input": "^6.28.
|
|
19
|
-
"@pie-lib/math-rendering": "^3.19.
|
|
20
|
-
"@pie-lib/math-toolbar": "^1.28.
|
|
21
|
-
"@pie-lib/render-ui": "^4.32.
|
|
22
|
-
"@pie-lib/translator": "^2.20.
|
|
17
|
+
"@pie-lib/correct-answer-toggle": "^2.22.3",
|
|
18
|
+
"@pie-lib/math-input": "^6.28.3",
|
|
19
|
+
"@pie-lib/math-rendering": "^3.19.2",
|
|
20
|
+
"@pie-lib/math-toolbar": "^1.28.3",
|
|
21
|
+
"@pie-lib/render-ui": "^4.32.3",
|
|
22
|
+
"@pie-lib/translator": "^2.20.2",
|
|
23
23
|
"classnames": "^2.2.5",
|
|
24
24
|
"debug": "^4.1.1",
|
|
25
25
|
"lodash": "^4.17.10",
|
|
@@ -29,13 +29,28 @@
|
|
|
29
29
|
},
|
|
30
30
|
"author": "",
|
|
31
31
|
"license": "ISC",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "1d4137d72ff1889c3a9601a77c94b197971063f7",
|
|
33
33
|
"module": "src/index.js",
|
|
34
34
|
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"import": "./esm/element.js",
|
|
37
|
+
"require": "./lib/index.js",
|
|
38
|
+
"default": "./esm/element.js"
|
|
39
|
+
},
|
|
40
|
+
"./configure": {
|
|
41
|
+
"import": "./esm/configure.js",
|
|
42
|
+
"require": "./configure/lib/index.js",
|
|
43
|
+
"default": "./esm/configure.js"
|
|
44
|
+
},
|
|
35
45
|
"./controller": {
|
|
36
46
|
"import": "./esm/controller.js",
|
|
37
47
|
"require": "./controller/lib/index.js",
|
|
38
48
|
"default": "./esm/controller.js"
|
|
49
|
+
},
|
|
50
|
+
"./print": {
|
|
51
|
+
"import": "./esm/print.js",
|
|
52
|
+
"require": "./lib/print.js",
|
|
53
|
+
"default": "./esm/print.js"
|
|
39
54
|
}
|
|
40
55
|
}
|
|
41
56
|
}
|