vite-plugin-millennium-skin 1.1.4 → 1.1.6
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/index.js +7 -5
- package/package.json +1 -1
- package/src/ts/aliasModules.ts +2 -0
package/dist/index.js
CHANGED
|
@@ -105,6 +105,8 @@ export const cache = window.opener.SP_REACT.cache;
|
|
|
105
105
|
export const cloneElement = window.opener.SP_REACT.cloneElement;
|
|
106
106
|
export const createContext = window.opener.SP_REACT.createContext;
|
|
107
107
|
export const createElement = window.opener.SP_REACT.createElement;
|
|
108
|
+
export const jsxs = window.opener.SP_REACT.createElement;
|
|
109
|
+
export const jsx = window.opener.SP_REACT.createElement;
|
|
108
110
|
export const createRef = window.opener.SP_REACT.createRef;
|
|
109
111
|
export const forwardRef = window.opener.SP_REACT.forwardRef;
|
|
110
112
|
export const isValidElement = window.opener.SP_REACT.isValidElement;
|
|
@@ -159,7 +161,7 @@ export const createRoot = window.opener.SP_REACTDOM.createRoot;
|
|
|
159
161
|
`,
|
|
160
162
|
id: "virtual:react-dom"
|
|
161
163
|
}
|
|
162
|
-
],
|
|
164
|
+
], j = {
|
|
163
165
|
type: "auto",
|
|
164
166
|
git: {
|
|
165
167
|
major: { autoCommit: !1 },
|
|
@@ -185,7 +187,7 @@ export const createRoot = window.opener.SP_REACTDOM.createRoot;
|
|
|
185
187
|
alpha: { autoCommit: !1 },
|
|
186
188
|
snapshot: { autoCommit: !1 }
|
|
187
189
|
}
|
|
188
|
-
},
|
|
190
|
+
}, N = j, T = O();
|
|
189
191
|
async function k(o = !1) {
|
|
190
192
|
if (o) {
|
|
191
193
|
const r = await v.prompt([
|
|
@@ -289,7 +291,7 @@ function oe() {
|
|
|
289
291
|
async configResolved(n) {
|
|
290
292
|
u = n, d = n.logger;
|
|
291
293
|
const a = u.root, i = m(a, "package.json");
|
|
292
|
-
t.version === void 0 && (t.version =
|
|
294
|
+
t.version === void 0 && (t.version = N);
|
|
293
295
|
try {
|
|
294
296
|
const c = JSON.parse(
|
|
295
297
|
await R.readFile(i, {
|
|
@@ -516,8 +518,8 @@ export {
|
|
|
516
518
|
q as MenuSteam,
|
|
517
519
|
Y as MenuView,
|
|
518
520
|
H as Root,
|
|
519
|
-
|
|
520
|
-
|
|
521
|
+
j as __AUTO__,
|
|
522
|
+
N as __DEFAULT__,
|
|
521
523
|
V as __PACKAGE__,
|
|
522
524
|
oe as default,
|
|
523
525
|
se as defineConfig,
|
package/package.json
CHANGED
package/src/ts/aliasModules.ts
CHANGED
|
@@ -17,6 +17,8 @@ export const cache = window.opener.SP_REACT.cache;
|
|
|
17
17
|
export const cloneElement = window.opener.SP_REACT.cloneElement;
|
|
18
18
|
export const createContext = window.opener.SP_REACT.createContext;
|
|
19
19
|
export const createElement = window.opener.SP_REACT.createElement;
|
|
20
|
+
export const jsxs = window.opener.SP_REACT.createElement;
|
|
21
|
+
export const jsx = window.opener.SP_REACT.createElement;
|
|
20
22
|
export const createRef = window.opener.SP_REACT.createRef;
|
|
21
23
|
export const forwardRef = window.opener.SP_REACT.forwardRef;
|
|
22
24
|
export const isValidElement = window.opener.SP_REACT.isValidElement;
|