online-editor 1.1.5 → 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/README.md +21 -21
- package/dist/assets/{vue.worker-DtzzcGaq.js → vue.worker-C1MzxUdf.js} +2 -2
- package/dist/{freemarker2-DMTH_Bm7.cjs → freemarker2-DsYe8k5-.cjs} +1 -1
- package/dist/{freemarker2-BlMmxT2e.js → freemarker2-DszU2bA1.js} +1 -1
- package/dist/{handlebars-B517X_hu.cjs → handlebars-COLHtLJT.cjs} +1 -1
- package/dist/{handlebars-CI9DQnJG.js → handlebars-WX94gfLX.js} +1 -1
- package/dist/{html-BhYXo-_p.cjs → html-CBPOk05s.cjs} +1 -1
- package/dist/{html-JF-EqQ4M.js → html-DHgh0g7D.js} +1 -1
- package/dist/{index-BUPGkG6Y.js → index-E1gNwZLj.js} +34 -34
- package/dist/{index-CU_mybDa.cjs → index-F7SAPusl.cjs} +14 -14
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/{index3-BrR2MsWR.cjs → index3-BFtPjF5H.cjs} +1 -1
- package/dist/{index3-BjHuRRQt.js → index3-Cn7FBnO5.js} +1 -1
- package/dist/{javascript-BhCfH9b5.cjs → javascript-BsWLQY8Z.cjs} +1 -1
- package/dist/{javascript-4Yt78Toh.js → javascript-ioMF8Dkp.js} +1 -1
- package/dist/{liquid-BTSOF7i8.js → liquid-BBbMd4JG.js} +1 -1
- package/dist/{liquid-e9E2miKe.cjs → liquid-DDX4PrSr.cjs} +1 -1
- package/dist/{mdx-B3vuQoAI.cjs → mdx-BNDFBYsO.cjs} +1 -1
- package/dist/{mdx-BWmI4F8k.js → mdx-CHbDfA3p.js} +1 -1
- package/dist/{python-Cv-7DOvw.js → python-CVnR7Ltb.js} +1 -1
- package/dist/{python-O7awkI_q.cjs → python-DLy6ChqZ.cjs} +1 -1
- package/dist/{razor-Ct9K8MTg.cjs → razor-B6sH4CAL.cjs} +1 -1
- package/dist/{razor-BpNmfGnE.js → razor-CCvJNUlJ.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/{typescript-DKs2bwB5.js → typescript-B0UXnZ7c.js} +1 -1
- package/dist/{typescript-BnDIZEYt.cjs → typescript-U7TSVy2-.cjs} +1 -1
- package/dist/{xml-C7veY5Uq.js → xml-BFQfw8us.js} +1 -1
- package/dist/{xml-CNPswzzD.cjs → xml-BZcM7kWR.cjs} +1 -1
- package/dist/{yaml-6alRJeah.cjs → yaml-BvBVH6vj.cjs} +1 -1
- package/dist/{yaml-BxmSYHV9.js → yaml-DtoCLBgj.js} +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -115,27 +115,27 @@ createApp(App).mount('#app');`,
|
|
|
115
115
|
| `document` | `string` | - | 文档链接地址 |
|
|
116
116
|
| `github` | `string` | - | GitHub 地址 |
|
|
117
117
|
|
|
118
|
-
## 📣 事件
|
|
119
|
-
|
|
120
|
-
| 事件名 | 参数 | 说明 |
|
|
121
|
-
|------|------|------|
|
|
122
|
-
| `code-change` | `EditorExportFile[]` | 编辑器内容变化时触发,实时导出全部文件代码 |
|
|
123
|
-
|
|
124
|
-
```vue
|
|
125
|
-
<script setup lang="ts">
|
|
126
|
-
import OnlineEditor, { type EditorExportFile } from 'online-editor';
|
|
127
|
-
import 'online-editor/style.css';
|
|
128
|
-
|
|
129
|
-
const handleCodeChange = (files: EditorExportFile[]) => {
|
|
130
|
-
console.log(files);
|
|
131
|
-
};
|
|
132
|
-
</script>
|
|
133
|
-
|
|
134
|
-
<template>
|
|
135
|
-
<OnlineEditor @code-change="handleCodeChange" />
|
|
136
|
-
</template>
|
|
137
|
-
```
|
|
138
|
-
|
|
118
|
+
## 📣 事件
|
|
119
|
+
|
|
120
|
+
| 事件名 | 参数 | 说明 |
|
|
121
|
+
|------|------|------|
|
|
122
|
+
| `code-change` | `EditorExportFile[]` | 编辑器内容变化时触发,实时导出全部文件代码 |
|
|
123
|
+
|
|
124
|
+
```vue
|
|
125
|
+
<script setup lang="ts">
|
|
126
|
+
import OnlineEditor, { type EditorExportFile } from 'online-editor';
|
|
127
|
+
import 'online-editor/style.css';
|
|
128
|
+
|
|
129
|
+
const handleCodeChange = (files: EditorExportFile[]) => {
|
|
130
|
+
console.log(files);
|
|
131
|
+
};
|
|
132
|
+
</script>
|
|
133
|
+
|
|
134
|
+
<template>
|
|
135
|
+
<OnlineEditor @code-change="handleCodeChange" />
|
|
136
|
+
</template>
|
|
137
|
+
```
|
|
138
|
+
|
|
139
139
|
### AppType 类型
|
|
140
140
|
|
|
141
141
|
```typescript
|
|
@@ -121811,7 +121811,7 @@ self.onmessage = async (e) => {
|
|
|
121811
121811
|
e.data.tsLocale && (bl = e.data.tsLocale), [Ru, Of] = await Promise.all([
|
|
121812
121812
|
NY(e.data.tsVersion),
|
|
121813
121813
|
bl && LY(
|
|
121814
|
-
`https://
|
|
121814
|
+
`https://fastly.jsdelivr.net/npm/typescript@${e.data.tsVersion}/lib/${bl}/diagnosticMessages.generated.json`
|
|
121815
121815
|
)
|
|
121816
121816
|
]), self.postMessage("inited");
|
|
121817
121817
|
return;
|
|
@@ -121842,7 +121842,7 @@ self.onmessage = async (e) => {
|
|
|
121842
121842
|
async function NY(e) {
|
|
121843
121843
|
const t = globalThis.module;
|
|
121844
121844
|
globalThis.module = { exports: {} };
|
|
121845
|
-
const n = `https://
|
|
121845
|
+
const n = `https://fastly.jsdelivr.net/npm/typescript@${e}/lib/typescript.js`, i = await (await fetch(n)).text();
|
|
121846
121846
|
(0, eval)(i);
|
|
121847
121847
|
const r = globalThis.module.exports;
|
|
121848
121848
|
return globalThis.module = t, r;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const f=require("./index-F7SAPusl.cjs");/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
3
|
* Version: 0.41.0(38e1e3d097f84e336c311d071a9ffb5191d4ffd1)
|
|
4
4
|
* Released under the MIT license
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as f } from "./index-
|
|
1
|
+
import { m as f } from "./index-E1gNwZLj.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.41.0(38e1e3d097f84e336c311d071a9ffb5191d4ffd1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const l=require("./index-F7SAPusl.cjs");/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
3
|
* Version: 0.41.0(38e1e3d097f84e336c311d071a9ffb5191d4ffd1)
|
|
4
4
|
* Released under the MIT license
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-E1gNwZLj.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.41.0(38e1e3d097f84e336c311d071a9ffb5191d4ffd1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("./index-F7SAPusl.cjs");/*!-----------------------------------------------------------------------------
|
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
3
|
* Version: 0.41.0(38e1e3d097f84e336c311d071a9ffb5191d4ffd1)
|
|
4
4
|
* Released under the MIT license
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-E1gNwZLj.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.41.0(38e1e3d097f84e336c311d071a9ffb5191d4ffd1)
|
|
@@ -160870,10 +160870,10 @@ function rUr(a) {
|
|
|
160870
160870
|
}
|
|
160871
160871
|
const Wat = [
|
|
160872
160872
|
"https://esm.sh/svelte@5.46.4/compiler",
|
|
160873
|
-
"https://
|
|
160873
|
+
"https://fastly.jsdelivr.net/npm/svelte@5.46.4/compiler/index.mjs",
|
|
160874
160874
|
"https://unpkg.com/svelte@5.46.4/compiler/index.mjs",
|
|
160875
160875
|
"https://esm.sh/svelte@4/compiler",
|
|
160876
|
-
"https://
|
|
160876
|
+
"https://fastly.jsdelivr.net/npm/svelte@4/compiler/index.mjs",
|
|
160877
160877
|
"https://unpkg.com/svelte@4/compiler/index.mjs"
|
|
160878
160878
|
], nUr = BEt(
|
|
160879
160879
|
Wat[0],
|
|
@@ -261999,7 +261999,7 @@ Using plugins:`), vt.forEach(function(zt) {
|
|
|
261999
261999
|
var REt = xCe.exports;
|
|
262000
262000
|
const Gat = [
|
|
262001
262001
|
"https://esm.sh/babel-preset-solid@1.8.6",
|
|
262002
|
-
"https://
|
|
262002
|
+
"https://fastly.jsdelivr.net/npm/babel-preset-solid@1.8.6/+esm",
|
|
262003
262003
|
"https://unpkg.com/babel-preset-solid@1.8.6?module"
|
|
262004
262004
|
], aUr = BEt(Gat[0], Gat.slice(1));
|
|
262005
262005
|
let qat = !1, t4 = null;
|
|
@@ -338423,37 +338423,37 @@ Zn({
|
|
|
338423
338423
|
id: "freemarker2",
|
|
338424
338424
|
extensions: [".ftl", ".ftlh", ".ftlx"],
|
|
338425
338425
|
aliases: ["FreeMarker2", "Apache FreeMarker2"],
|
|
338426
|
-
loader: () => import("./freemarker2-
|
|
338426
|
+
loader: () => import("./freemarker2-DszU2bA1.js").then((a) => a.TagAutoInterpolationDollar)
|
|
338427
338427
|
});
|
|
338428
338428
|
Zn({
|
|
338429
338429
|
id: "freemarker2.tag-angle.interpolation-dollar",
|
|
338430
338430
|
aliases: ["FreeMarker2 (Angle/Dollar)", "Apache FreeMarker2 (Angle/Dollar)"],
|
|
338431
|
-
loader: () => import("./freemarker2-
|
|
338431
|
+
loader: () => import("./freemarker2-DszU2bA1.js").then((a) => a.TagAngleInterpolationDollar)
|
|
338432
338432
|
});
|
|
338433
338433
|
Zn({
|
|
338434
338434
|
id: "freemarker2.tag-bracket.interpolation-dollar",
|
|
338435
338435
|
aliases: ["FreeMarker2 (Bracket/Dollar)", "Apache FreeMarker2 (Bracket/Dollar)"],
|
|
338436
|
-
loader: () => import("./freemarker2-
|
|
338436
|
+
loader: () => import("./freemarker2-DszU2bA1.js").then((a) => a.TagBracketInterpolationDollar)
|
|
338437
338437
|
});
|
|
338438
338438
|
Zn({
|
|
338439
338439
|
id: "freemarker2.tag-angle.interpolation-bracket",
|
|
338440
338440
|
aliases: ["FreeMarker2 (Angle/Bracket)", "Apache FreeMarker2 (Angle/Bracket)"],
|
|
338441
|
-
loader: () => import("./freemarker2-
|
|
338441
|
+
loader: () => import("./freemarker2-DszU2bA1.js").then((a) => a.TagAngleInterpolationBracket)
|
|
338442
338442
|
});
|
|
338443
338443
|
Zn({
|
|
338444
338444
|
id: "freemarker2.tag-bracket.interpolation-bracket",
|
|
338445
338445
|
aliases: ["FreeMarker2 (Bracket/Bracket)", "Apache FreeMarker2 (Bracket/Bracket)"],
|
|
338446
|
-
loader: () => import("./freemarker2-
|
|
338446
|
+
loader: () => import("./freemarker2-DszU2bA1.js").then((a) => a.TagBracketInterpolationBracket)
|
|
338447
338447
|
});
|
|
338448
338448
|
Zn({
|
|
338449
338449
|
id: "freemarker2.tag-auto.interpolation-dollar",
|
|
338450
338450
|
aliases: ["FreeMarker2 (Auto/Dollar)", "Apache FreeMarker2 (Auto/Dollar)"],
|
|
338451
|
-
loader: () => import("./freemarker2-
|
|
338451
|
+
loader: () => import("./freemarker2-DszU2bA1.js").then((a) => a.TagAutoInterpolationDollar)
|
|
338452
338452
|
});
|
|
338453
338453
|
Zn({
|
|
338454
338454
|
id: "freemarker2.tag-auto.interpolation-bracket",
|
|
338455
338455
|
aliases: ["FreeMarker2 (Auto/Bracket)", "Apache FreeMarker2 (Auto/Bracket)"],
|
|
338456
|
-
loader: () => import("./freemarker2-
|
|
338456
|
+
loader: () => import("./freemarker2-DszU2bA1.js").then((a) => a.TagAutoInterpolationBracket)
|
|
338457
338457
|
});
|
|
338458
338458
|
/*!-----------------------------------------------------------------------------
|
|
338459
338459
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338491,7 +338491,7 @@ Zn({
|
|
|
338491
338491
|
extensions: [".handlebars", ".hbs"],
|
|
338492
338492
|
aliases: ["Handlebars", "handlebars", "hbs"],
|
|
338493
338493
|
mimetypes: ["text/x-handlebars-template"],
|
|
338494
|
-
loader: () => import("./handlebars-
|
|
338494
|
+
loader: () => import("./handlebars-WX94gfLX.js")
|
|
338495
338495
|
});
|
|
338496
338496
|
/*!-----------------------------------------------------------------------------
|
|
338497
338497
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338516,7 +338516,7 @@ Zn({
|
|
|
338516
338516
|
extensions: [".html", ".htm", ".shtml", ".xhtml", ".mdoc", ".jsp", ".asp", ".aspx", ".jshtm"],
|
|
338517
338517
|
aliases: ["HTML", "htm", "html", "xhtml"],
|
|
338518
338518
|
mimetypes: ["text/html", "text/x-jshtm", "text/template", "text/ng-template"],
|
|
338519
|
-
loader: () => import("./html-
|
|
338519
|
+
loader: () => import("./html-DHgh0g7D.js")
|
|
338520
338520
|
});
|
|
338521
338521
|
/*!-----------------------------------------------------------------------------
|
|
338522
338522
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338557,7 +338557,7 @@ Zn({
|
|
|
338557
338557
|
filenames: ["jakefile"],
|
|
338558
338558
|
aliases: ["JavaScript", "javascript", "js"],
|
|
338559
338559
|
mimetypes: ["text/javascript"],
|
|
338560
|
-
loader: () => import("./javascript-
|
|
338560
|
+
loader: () => import("./javascript-ioMF8Dkp.js")
|
|
338561
338561
|
});
|
|
338562
338562
|
/*!-----------------------------------------------------------------------------
|
|
338563
338563
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338632,7 +338632,7 @@ Zn({
|
|
|
338632
338632
|
extensions: [".liquid", ".html.liquid"],
|
|
338633
338633
|
aliases: ["Liquid", "liquid"],
|
|
338634
338634
|
mimetypes: ["application/liquid"],
|
|
338635
|
-
loader: () => import("./liquid-
|
|
338635
|
+
loader: () => import("./liquid-BBbMd4JG.js")
|
|
338636
338636
|
});
|
|
338637
338637
|
/*!-----------------------------------------------------------------------------
|
|
338638
338638
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338668,7 +338668,7 @@ Zn({
|
|
|
338668
338668
|
id: "mdx",
|
|
338669
338669
|
extensions: [".mdx"],
|
|
338670
338670
|
aliases: ["MDX", "mdx"],
|
|
338671
|
-
loader: () => import("./mdx-
|
|
338671
|
+
loader: () => import("./mdx-CHbDfA3p.js")
|
|
338672
338672
|
});
|
|
338673
338673
|
/*!-----------------------------------------------------------------------------
|
|
338674
338674
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338863,7 +338863,7 @@ Zn({
|
|
|
338863
338863
|
extensions: [".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi"],
|
|
338864
338864
|
aliases: ["Python", "py"],
|
|
338865
338865
|
firstLine: "^#!/.*\\bpython[0-9.-]*\\b",
|
|
338866
|
-
loader: () => import("./python-
|
|
338866
|
+
loader: () => import("./python-CVnR7Ltb.js")
|
|
338867
338867
|
});
|
|
338868
338868
|
/*!-----------------------------------------------------------------------------
|
|
338869
338869
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -338900,7 +338900,7 @@ Zn({
|
|
|
338900
338900
|
extensions: [".cshtml"],
|
|
338901
338901
|
aliases: ["Razor", "razor"],
|
|
338902
338902
|
mimetypes: ["text/x-cshtml"],
|
|
338903
|
-
loader: () => import("./razor-
|
|
338903
|
+
loader: () => import("./razor-CCvJNUlJ.js")
|
|
338904
338904
|
});
|
|
338905
338905
|
/*!-----------------------------------------------------------------------------
|
|
338906
338906
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -339152,7 +339152,7 @@ Zn({
|
|
|
339152
339152
|
extensions: [".ts", ".tsx", ".cts", ".mts"],
|
|
339153
339153
|
aliases: ["TypeScript", "ts", "typescript"],
|
|
339154
339154
|
mimetypes: ["text/typescript"],
|
|
339155
|
-
loader: () => import("./typescript-
|
|
339155
|
+
loader: () => import("./typescript-B0UXnZ7c.js")
|
|
339156
339156
|
});
|
|
339157
339157
|
/*!-----------------------------------------------------------------------------
|
|
339158
339158
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -339208,7 +339208,7 @@ Zn({
|
|
|
339208
339208
|
firstLine: "(\\<\\?xml.*)|(\\<svg)|(\\<\\!doctype\\s+svg)",
|
|
339209
339209
|
aliases: ["XML", "xml"],
|
|
339210
339210
|
mimetypes: ["text/xml", "application/xml", "application/xaml+xml", "application/xml-dtd"],
|
|
339211
|
-
loader: () => import("./xml-
|
|
339211
|
+
loader: () => import("./xml-BFQfw8us.js")
|
|
339212
339212
|
});
|
|
339213
339213
|
/*!-----------------------------------------------------------------------------
|
|
339214
339214
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -339221,7 +339221,7 @@ Zn({
|
|
|
339221
339221
|
extensions: [".yaml", ".yml"],
|
|
339222
339222
|
aliases: ["YAML", "yaml", "YML", "yml"],
|
|
339223
339223
|
mimetypes: ["application/x-yaml", "text/x-yaml"],
|
|
339224
|
-
loader: () => import("./yaml-
|
|
339224
|
+
loader: () => import("./yaml-DtoCLBgj.js")
|
|
339225
339225
|
});
|
|
339226
339226
|
/*!-----------------------------------------------------------------------------
|
|
339227
339227
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -383384,7 +383384,7 @@ function pm(a, e, t) {
|
|
|
383384
383384
|
}
|
|
383385
383385
|
function gFn(a) {
|
|
383386
383386
|
return new Worker(
|
|
383387
|
-
"" + new URL("assets/vue.worker-
|
|
383387
|
+
"" + new URL("assets/vue.worker-C1MzxUdf.js", import.meta.url).href,
|
|
383388
383388
|
{
|
|
383389
383389
|
type: "module",
|
|
383390
383390
|
name: a == null ? void 0 : a.name
|
|
@@ -383564,39 +383564,39 @@ async function DFn(a) {
|
|
|
383564
383564
|
await Promise.all([
|
|
383565
383565
|
Vg(
|
|
383566
383566
|
"file:///node_modules/@types/react/index.d.ts",
|
|
383567
|
-
`https://
|
|
383567
|
+
`https://fastly.jsdelivr.net/npm/@types/react@${a}/index.d.ts`
|
|
383568
383568
|
),
|
|
383569
383569
|
Vg(
|
|
383570
383570
|
"file:///node_modules/@types/react/jsx-runtime.d.ts",
|
|
383571
|
-
`https://
|
|
383571
|
+
`https://fastly.jsdelivr.net/npm/@types/react@${a}/jsx-runtime.d.ts`
|
|
383572
383572
|
),
|
|
383573
383573
|
Vg(
|
|
383574
383574
|
"file:///node_modules/@types/react/jsx-dev-runtime.d.ts",
|
|
383575
|
-
`https://
|
|
383575
|
+
`https://fastly.jsdelivr.net/npm/@types/react@${a}/jsx-dev-runtime.d.ts`
|
|
383576
383576
|
),
|
|
383577
383577
|
Vg(
|
|
383578
383578
|
"file:///node_modules/@types/react-dom/index.d.ts",
|
|
383579
|
-
`https://
|
|
383579
|
+
`https://fastly.jsdelivr.net/npm/@types/react-dom@${a}/index.d.ts`
|
|
383580
383580
|
),
|
|
383581
383581
|
Vg(
|
|
383582
383582
|
"file:///node_modules/@types/react-dom/client.d.ts",
|
|
383583
|
-
`https://
|
|
383583
|
+
`https://fastly.jsdelivr.net/npm/@types/react-dom@${a}/client.d.ts`
|
|
383584
383584
|
),
|
|
383585
383585
|
Vg(
|
|
383586
383586
|
"file:///node_modules/@types/scheduler/index.d.ts",
|
|
383587
|
-
"https://
|
|
383587
|
+
"https://fastly.jsdelivr.net/npm/@types/scheduler/index.d.ts"
|
|
383588
383588
|
),
|
|
383589
383589
|
Vg(
|
|
383590
383590
|
"file:///node_modules/@types/scheduler/tracing.d.ts",
|
|
383591
|
-
"https://
|
|
383591
|
+
"https://fastly.jsdelivr.net/npm/@types/scheduler/tracing.d.ts"
|
|
383592
383592
|
),
|
|
383593
383593
|
Vg(
|
|
383594
383594
|
"file:///node_modules/@types/prop-types/index.d.ts",
|
|
383595
|
-
"https://
|
|
383595
|
+
"https://fastly.jsdelivr.net/npm/@types/prop-types/index.d.ts"
|
|
383596
383596
|
),
|
|
383597
383597
|
Vg(
|
|
383598
383598
|
"file:///node_modules/csstype/index.d.ts",
|
|
383599
|
-
"https://
|
|
383599
|
+
"https://fastly.jsdelivr.net/npm/csstype/index.d.ts"
|
|
383600
383600
|
)
|
|
383601
383601
|
]), tB.size > 0 && (k4 = a);
|
|
383602
383602
|
})().finally(() => {
|
|
@@ -383622,10 +383622,10 @@ async function vFn(a) {
|
|
|
383622
383622
|
await Promise.all([
|
|
383623
383623
|
Vg(
|
|
383624
383624
|
"file:///node_modules/csstype/index.d.ts",
|
|
383625
|
-
"https://
|
|
383625
|
+
"https://fastly.jsdelivr.net/npm/csstype/index.d.ts"
|
|
383626
383626
|
),
|
|
383627
383627
|
...s.map((l) => {
|
|
383628
|
-
const c = l.startsWith("/") ? l : `/${l}`, A = `file:///node_modules/${e}${c}`, f = `https://
|
|
383628
|
+
const c = l.startsWith("/") ? l : `/${l}`, A = `file:///node_modules/${e}${c}`, f = `https://fastly.jsdelivr.net/npm/${e}@${a}${c}`;
|
|
383629
383629
|
return Vg(A, f);
|
|
383630
383630
|
})
|
|
383631
383631
|
]), (tB.has("file:///node_modules/solid-js/types/jsx.d.ts") || s.length > 0) && (w1e = !0);
|
|
@@ -383897,7 +383897,7 @@ function $Fn(a) {
|
|
|
383897
383897
|
noSuggestionDiagnostics: !0
|
|
383898
383898
|
});
|
|
383899
383899
|
}
|
|
383900
|
-
const FFn = async (a, e) => (await import("./index3-
|
|
383900
|
+
const FFn = async (a, e) => (await import("./index3-Cn7FBnO5.js")).loadGrammars(a, e), IFn = {
|
|
383901
383901
|
inherit: !0,
|
|
383902
383902
|
base: "vs-dark",
|
|
383903
383903
|
colors: {
|
|
@@ -384475,7 +384475,7 @@ const FFn = async (a, e) => (await import("./index3-BjHuRRQt.js")).loadGrammars(
|
|
|
384475
384475
|
])
|
|
384476
384476
|
]));
|
|
384477
384477
|
}
|
|
384478
|
-
}), h0t = /* @__PURE__ */ jp(NFn, [["__scopeId", "data-v-
|
|
384478
|
+
}), h0t = /* @__PURE__ */ jp(NFn, [["__scopeId", "data-v-dbb700e2"]]), TFn = { class: "loading-container" }, QFn = { class: "loading-text" }, PFn = /* @__PURE__ */ Ec({
|
|
384479
384479
|
__name: "index",
|
|
384480
384480
|
setup(a) {
|
|
384481
384481
|
const e = Va("资源加载中");
|