@pie-element/math-inline 12.1.1-next.18 → 12.1.1-next.20
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/dist/browser/author/index.js +42 -21
- package/dist/browser/author/index.js.map +1 -1
- package/dist/browser/delivery/index.js +1 -1
- package/dist/browser/{dist-D8taXDhz.js → dist--1is1n1O.js} +2008 -2006
- package/dist/browser/dist--1is1n1O.js.map +1 -0
- package/dist/browser/{main-AjqUtC75.js → main-m39H1gPw.js} +2 -2
- package/dist/browser/{main-AjqUtC75.js.map → main-m39H1gPw.js.map} +1 -1
- package/dist/browser/print/index.js +2 -2
- package/dist/index.iife.js +30 -30
- package/module/math-inline.css +2 -0
- package/module/print.js +25283 -0
- package/module/print.js.map +1 -0
- package/package.json +14 -9
- package/print.js +2 -0
- package/dist/browser/dist-D8taXDhz.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pie-element/math-inline",
|
|
3
|
-
"version": "12.1.1-next.
|
|
3
|
+
"version": "12.1.1-next.20",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,15 +12,15 @@
|
|
|
12
12
|
"@emotion/style": "^0.8.0",
|
|
13
13
|
"@mui/icons-material": "^7.3.4",
|
|
14
14
|
"@mui/material": "^7.3.4",
|
|
15
|
-
"@pie-lib/correct-answer-toggle": "4.0.3-next.
|
|
16
|
-
"@pie-lib/math-input": "8.1.1-next.
|
|
17
|
-
"@pie-lib/math-toolbar": "3.0.3-next.
|
|
18
|
-
"@pie-lib/render-ui": "6.
|
|
15
|
+
"@pie-lib/correct-answer-toggle": "4.0.3-next.40",
|
|
16
|
+
"@pie-lib/math-input": "8.1.1-next.5",
|
|
17
|
+
"@pie-lib/math-toolbar": "3.0.3-next.40",
|
|
18
|
+
"@pie-lib/render-ui": "6.2.0-next.40",
|
|
19
19
|
"@pie-lib/translator": "4.0.3-next.2",
|
|
20
20
|
"debug": "^4.1.1",
|
|
21
21
|
"prop-types": "^15.8.1",
|
|
22
|
-
"@pie-lib/config-ui": "13.0.4-next.
|
|
23
|
-
"@pie-lib/editable-html-tip-tap": "2.1.2-next.
|
|
22
|
+
"@pie-lib/config-ui": "13.0.4-next.34",
|
|
23
|
+
"@pie-lib/editable-html-tip-tap": "2.1.2-next.34",
|
|
24
24
|
"clsx": "^2.1.1",
|
|
25
25
|
"@pie-element/shared-lodash": "0.1.1-next.1",
|
|
26
26
|
"@pie-element/shared-configure-events": "0.1.0",
|
|
@@ -73,6 +73,10 @@
|
|
|
73
73
|
"types": "./dist/print/index.d.ts",
|
|
74
74
|
"default": "./dist/print/index.js"
|
|
75
75
|
},
|
|
76
|
+
"./print.js": {
|
|
77
|
+
"types": "./dist/print/index.d.ts",
|
|
78
|
+
"default": "./dist/print/index.js"
|
|
79
|
+
},
|
|
76
80
|
"./browser/print": {
|
|
77
81
|
"default": "./dist/browser/print/index.js"
|
|
78
82
|
},
|
|
@@ -88,7 +92,8 @@
|
|
|
88
92
|
"configure.js",
|
|
89
93
|
"controller.js",
|
|
90
94
|
"dist",
|
|
91
|
-
"module"
|
|
95
|
+
"module",
|
|
96
|
+
"print.js"
|
|
92
97
|
],
|
|
93
98
|
"sideEffects": false,
|
|
94
99
|
"devDependencies": {
|
|
@@ -99,7 +104,7 @@
|
|
|
99
104
|
"@types/react-dom": "^18.2.0"
|
|
100
105
|
},
|
|
101
106
|
"scripts": {
|
|
102
|
-
"build": "bun x vite build && bun x vite build --config ../../../tools/vite/element-browser.config.ts && bun x vite build --config vite.config.iife.ts && bun x tsc --emitDeclarationOnly",
|
|
107
|
+
"build": "bun x vite build && bun x vite build --config ../../../tools/vite/element-browser.config.ts && bun x vite build --config ../../../tools/vite/element-legacy-print.config.ts && bun x vite build --config vite.config.iife.ts && bun x tsc --emitDeclarationOnly",
|
|
103
108
|
"dev": "bun x vite",
|
|
104
109
|
"demo": "bun x vite --mode demo",
|
|
105
110
|
"test": "bun x vitest run"
|
package/print.js
ADDED