@nuraly/runtime 0.1.5 → 0.1.7
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/components/ui/components/runtime/MicroApp/MicroApp.ts +143 -5
- package/dist/{CodeEditor-G6E8PUI7.js → CodeEditor-YsOapSut.js} +22 -22
- package/dist/{SmartAttributeHandler-C9vS-cHW.js → SmartAttributeHandler-C4EliaG0.js} +1 -1
- package/dist/{cssMode-B7NVlrDV.js → cssMode-CqMQ6Xsa.js} +1 -1
- package/dist/{freemarker2-DS_7G9b8.js → freemarker2-Bfqhwyij.js} +1 -1
- package/dist/{handlebars-BDyyLkzw.js → handlebars-DCgKNBmn.js} +1 -1
- package/dist/{html-DphGFjig.js → html-C6wR7sMB.js} +1 -1
- package/dist/{htmlMode-4zNnSWFo.js → htmlMode-KglxyZXm.js} +1 -1
- package/dist/{javascript-CC1jWyQy.js → javascript-D1L5MTmg.js} +1 -1
- package/dist/{jsonMode-Bfzb6wZf.js → jsonMode-B3rqxD-b.js} +1 -1
- package/dist/{liquid-lTBpqagR.js → liquid-D_pDYIs1.js} +1 -1
- package/dist/{mdx-DX66Bp07.js → mdx-CKsJ3cF4.js} +1 -1
- package/dist/{micro-app-entry-DDsAWUJh.js → micro-app-entry-xdTX5-ut.js} +2290 -2208
- package/dist/micro-app.bundle.js +1 -1
- package/dist/micro-app.js +133 -5
- package/dist/{python-BGUhyO4G.js → python-zPpZYwLF.js} +1 -1
- package/dist/{razor-DEVWQFSa.js → razor-B_fCUeGX.js} +1 -1
- package/dist/{tsMode-CYFi80Jf.js → tsMode-DEiq8fQ0.js} +1 -1
- package/dist/{typescript-B1xIbH_T.js → typescript-DrlYcCUn.js} +1 -1
- package/dist/{xml-DmdvyqrE.js → xml-BzP9D0eZ.js} +1 -1
- package/dist/{yaml-LGNo48fy.js → yaml-CT7GOvXu.js} +1 -1
- package/package.json +1 -1
- package/vite.config.ts +4 -0
|
@@ -85,6 +85,18 @@ export class MicroApp extends LitElement {
|
|
|
85
85
|
override willUpdate(changedProperties: Map<string, any>): void {
|
|
86
86
|
super.willUpdate(changedProperties);
|
|
87
87
|
|
|
88
|
+
console.log('[MicroApp DEBUG] willUpdate called', {
|
|
89
|
+
changedProperties: Array.from(changedProperties.keys()),
|
|
90
|
+
uuid: this.uuid,
|
|
91
|
+
page_uuid: this.page_uuid,
|
|
92
|
+
useIsolatedContext: this.useIsolatedContext,
|
|
93
|
+
hasStoreContext: !!this.storeContext,
|
|
94
|
+
appComponentsLength: this.appComponents?.length,
|
|
95
|
+
appPagesLength: this.appPages?.length,
|
|
96
|
+
componentsLength: this.components.length,
|
|
97
|
+
componentsToRenderLength: this.componentsToRender.length
|
|
98
|
+
});
|
|
99
|
+
|
|
88
100
|
// Handle isolated context initialization when pre-loaded data is provided
|
|
89
101
|
if (this.useIsolatedContext) {
|
|
90
102
|
// Check if appComponents or appPages were just set
|
|
@@ -93,8 +105,16 @@ export class MicroApp extends LitElement {
|
|
|
93
105
|
(changedProperties.has("appPages") && this.appPages)
|
|
94
106
|
);
|
|
95
107
|
|
|
108
|
+
console.log('[MicroApp DEBUG] Isolated context check', {
|
|
109
|
+
dataJustProvided,
|
|
110
|
+
hasAppComponents: !!this.appComponents,
|
|
111
|
+
hasAppPages: !!this.appPages,
|
|
112
|
+
hasStoreContext: !!this.storeContext
|
|
113
|
+
});
|
|
114
|
+
|
|
96
115
|
// Initialize isolated context if data was just provided and not initialized yet
|
|
97
116
|
if (dataJustProvided && !this.storeContext) {
|
|
117
|
+
console.log('[MicroApp DEBUG] Calling initializeIsolatedContext from willUpdate');
|
|
98
118
|
this.initializeIsolatedContext();
|
|
99
119
|
return;
|
|
100
120
|
}
|
|
@@ -114,15 +134,39 @@ export class MicroApp extends LitElement {
|
|
|
114
134
|
* Updates componentsToRender based on the current selection.
|
|
115
135
|
*/
|
|
116
136
|
private updateComponentsToRender(): void {
|
|
137
|
+
console.log('[MicroApp DEBUG] 📝 updateComponentsToRender called', {
|
|
138
|
+
componentToRenderUUID: this.componentToRenderUUID,
|
|
139
|
+
componentsLength: this.components.length
|
|
140
|
+
});
|
|
117
141
|
|
|
118
142
|
this.componentsToRender = this.componentToRenderUUID
|
|
119
143
|
? this.components.filter((component) => component.uuid === this.componentToRenderUUID)
|
|
120
144
|
: this.components;
|
|
145
|
+
|
|
146
|
+
console.log('[MicroApp DEBUG] componentsToRender updated', {
|
|
147
|
+
componentsToRenderLength: this.componentsToRender.length,
|
|
148
|
+
componentsToRender: this.componentsToRender.map(c => ({
|
|
149
|
+
uuid: c.uuid,
|
|
150
|
+
type: c.component_type
|
|
151
|
+
}))
|
|
152
|
+
});
|
|
121
153
|
}
|
|
122
154
|
|
|
123
155
|
override connectedCallback(): void {
|
|
124
156
|
super.connectedCallback();
|
|
125
157
|
|
|
158
|
+
console.log('[MicroApp DEBUG] 🔌 connectedCallback called', {
|
|
159
|
+
uuid: this.uuid,
|
|
160
|
+
page_uuid: this.page_uuid,
|
|
161
|
+
useIsolatedContext: this.useIsolatedContext,
|
|
162
|
+
hasAppComponents: !!this.appComponents,
|
|
163
|
+
appComponentsLength: this.appComponents?.length,
|
|
164
|
+
hasAppPages: !!this.appPages,
|
|
165
|
+
appPagesLength: this.appPages?.length,
|
|
166
|
+
mode: this.mode,
|
|
167
|
+
prod: this.prod
|
|
168
|
+
});
|
|
169
|
+
|
|
126
170
|
// Initialize toast container singleton (ensures it exists globally)
|
|
127
171
|
ToastContainer.getInstance();
|
|
128
172
|
|
|
@@ -131,10 +175,14 @@ export class MicroApp extends LitElement {
|
|
|
131
175
|
// Only initialize now if we have pre-loaded data
|
|
132
176
|
// Otherwise, wait for properties to be set (handled in updated())
|
|
133
177
|
if (this.appComponents || this.appPages) {
|
|
178
|
+
console.log('[MicroApp DEBUG] Calling initializeIsolatedContext from connectedCallback (has pre-loaded data)');
|
|
134
179
|
this.initializeIsolatedContext();
|
|
180
|
+
} else {
|
|
181
|
+
console.log('[MicroApp DEBUG] Skipping initializeIsolatedContext in connectedCallback (no pre-loaded data yet)');
|
|
135
182
|
}
|
|
136
183
|
} else {
|
|
137
184
|
// Legacy mode
|
|
185
|
+
console.log('[MicroApp DEBUG] Using legacy mode (useIsolatedContext=false)');
|
|
138
186
|
this.setupSubscriptions();
|
|
139
187
|
if(!ExecuteInstance.Vars.currentPlatform){
|
|
140
188
|
ExecuteInstance.VarsProxy.currentPlatform = getInitPlatform()
|
|
@@ -299,8 +347,16 @@ export class MicroApp extends LitElement {
|
|
|
299
347
|
*/
|
|
300
348
|
private async initializeIsolatedContext(): Promise<void> {
|
|
301
349
|
try {
|
|
350
|
+
console.log('[MicroApp DEBUG] 🚀 Starting initializeIsolatedContext', {
|
|
351
|
+
uuid: this.uuid,
|
|
352
|
+
page_uuid: this.page_uuid,
|
|
353
|
+
appComponents: this.appComponents?.length,
|
|
354
|
+
appPages: this.appPages?.length
|
|
355
|
+
});
|
|
356
|
+
|
|
302
357
|
// Generate unique micro-app instance ID using proper UUID
|
|
303
358
|
this.microAppId = `${this.uuid}_${uuidv4()}`;
|
|
359
|
+
console.log('[MicroApp DEBUG] Generated microAppId:', this.microAppId);
|
|
304
360
|
|
|
305
361
|
// 1. Create store context with optional pre-loaded data
|
|
306
362
|
this.storeContext = new MicroAppStoreContext(
|
|
@@ -309,42 +365,69 @@ export class MicroApp extends LitElement {
|
|
|
309
365
|
this.appComponents,
|
|
310
366
|
this.appPages
|
|
311
367
|
);
|
|
368
|
+
console.log('[MicroApp DEBUG] ✅ StoreContext created');
|
|
312
369
|
|
|
313
370
|
// 2. Create runtime context
|
|
314
371
|
this.runtimeContext = new MicroAppRuntimeContext(this.storeContext);
|
|
372
|
+
console.log('[MicroApp DEBUG] ✅ RuntimeContext created');
|
|
315
373
|
|
|
316
374
|
// 3. Create page manager
|
|
317
375
|
this.pageManager = new MicroAppPageManager(this.storeContext);
|
|
318
376
|
// Store page manager reference in store context for handler access
|
|
319
377
|
this.storeContext.setPageManager(this.pageManager);
|
|
378
|
+
console.log('[MicroApp DEBUG] ✅ PageManager created');
|
|
320
379
|
|
|
321
380
|
// 4. Get message bus
|
|
322
381
|
this.messageBus = MicroAppMessageBus.getInstance();
|
|
382
|
+
console.log('[MicroApp DEBUG] ✅ MessageBus obtained');
|
|
323
383
|
|
|
324
384
|
// 6. Subscribe to messages
|
|
325
385
|
this.messageUnsubscribe = this.messageBus.subscribe(this.microAppId, (message) => {
|
|
326
386
|
this.handleMessage(message);
|
|
327
387
|
});
|
|
388
|
+
console.log('[MicroApp DEBUG] ✅ Subscribed to messages');
|
|
328
389
|
|
|
329
390
|
// 7. Load application data
|
|
330
391
|
await this.storeContext.loadApplication();
|
|
392
|
+
const loadedComponents = this.storeContext.getComponents();
|
|
393
|
+
console.log('[MicroApp DEBUG] ✅ Application data loaded', {
|
|
394
|
+
componentsCount: loadedComponents.length,
|
|
395
|
+
components: loadedComponents.map(c => ({ uuid: c.uuid, type: c.component_type, root: c.root }))
|
|
396
|
+
});
|
|
331
397
|
|
|
332
398
|
// 8. Load pages
|
|
333
399
|
await this.pageManager.loadPages();
|
|
400
|
+
const loadedPages = this.storeContext.getPages();
|
|
401
|
+
console.log('[MicroApp DEBUG] ✅ Pages loaded', {
|
|
402
|
+
pagesCount: loadedPages.length,
|
|
403
|
+
pages: loadedPages.map(p => ({ uuid: p.uuid, name: p.name }))
|
|
404
|
+
});
|
|
334
405
|
|
|
335
406
|
// 9. Register components in runtime
|
|
336
407
|
this.runtimeContext.registerComponents();
|
|
408
|
+
console.log('[MicroApp DEBUG] ✅ Components registered in runtime');
|
|
337
409
|
|
|
338
410
|
// 9.5. Sync components to global store so Container can find children
|
|
339
411
|
// This is needed because Container.ts looks up children in the global $components store
|
|
340
412
|
const componentsWithChildren = this.storeContext.getComponents();
|
|
341
413
|
$components.setKey(this.uuid, componentsWithChildren);
|
|
414
|
+
console.log('[MicroApp DEBUG] ✅ Components synced to global store', {
|
|
415
|
+
key: this.uuid,
|
|
416
|
+
count: componentsWithChildren.length
|
|
417
|
+
});
|
|
342
418
|
|
|
343
419
|
// 10. Setup subscriptions to isolated stores
|
|
344
420
|
this.setupIsolatedSubscriptions();
|
|
421
|
+
console.log('[MicroApp DEBUG] ✅ Subscriptions setup');
|
|
345
422
|
|
|
346
423
|
// 11. Update component list
|
|
347
424
|
this.refreshIsolatedComponents();
|
|
425
|
+
console.log('[MicroApp DEBUG] ✅ Components refreshed', {
|
|
426
|
+
componentsLength: this.components.length,
|
|
427
|
+
componentsToRenderLength: this.componentsToRender.length,
|
|
428
|
+
components: this.components.map(c => ({ uuid: c.uuid, type: c.component_type })),
|
|
429
|
+
componentsToRender: this.componentsToRender.map(c => ({ uuid: c.uuid, type: c.component_type }))
|
|
430
|
+
});
|
|
348
431
|
|
|
349
432
|
// 12. Set platform if not already set
|
|
350
433
|
if (!this.runtimeContext.getVar('currentPlatform')) {
|
|
@@ -353,8 +436,11 @@ export class MicroApp extends LitElement {
|
|
|
353
436
|
|
|
354
437
|
EditorInstance.setEditorMode(this.prod);
|
|
355
438
|
|
|
439
|
+
console.log('[MicroApp DEBUG] 🎉 initializeIsolatedContext completed successfully');
|
|
440
|
+
|
|
356
441
|
} catch (error) {
|
|
357
|
-
console.error(`[MicroApp] Failed to initialize isolated context:`, error);
|
|
442
|
+
console.error(`[MicroApp DEBUG] ❌ Failed to initialize isolated context:`, error);
|
|
443
|
+
console.error('[MicroApp DEBUG] Error stack:', error instanceof Error ? error.stack : 'No stack');
|
|
358
444
|
}
|
|
359
445
|
}
|
|
360
446
|
|
|
@@ -413,11 +499,32 @@ export class MicroApp extends LitElement {
|
|
|
413
499
|
* Refresh components from isolated store
|
|
414
500
|
*/
|
|
415
501
|
private refreshIsolatedComponents(): void {
|
|
416
|
-
|
|
502
|
+
console.log('[MicroApp DEBUG] 🔄 refreshIsolatedComponents called', {
|
|
503
|
+
hasStoreContext: !!this.storeContext,
|
|
504
|
+
hasPageManager: !!this.pageManager,
|
|
505
|
+
page_uuid: this.page_uuid
|
|
506
|
+
});
|
|
507
|
+
|
|
508
|
+
if (!this.storeContext || !this.pageManager) {
|
|
509
|
+
console.log('[MicroApp DEBUG] ⚠️ refreshIsolatedComponents early return - missing context');
|
|
510
|
+
return;
|
|
511
|
+
}
|
|
417
512
|
|
|
418
513
|
const allComponents = this.storeContext.getComponents();
|
|
419
514
|
const currentPage = this.pageManager.getCurrentPage();
|
|
420
515
|
|
|
516
|
+
console.log('[MicroApp DEBUG] Components and page info', {
|
|
517
|
+
allComponentsCount: allComponents.length,
|
|
518
|
+
allComponents: allComponents.map(c => ({
|
|
519
|
+
uuid: c.uuid,
|
|
520
|
+
type: c.component_type,
|
|
521
|
+
root: c.root,
|
|
522
|
+
pageId: c.pageId
|
|
523
|
+
})),
|
|
524
|
+
currentPage: currentPage ? { uuid: currentPage.uuid, name: currentPage.name } : null,
|
|
525
|
+
page_uuid: this.page_uuid
|
|
526
|
+
});
|
|
527
|
+
|
|
421
528
|
// Filter components by page if page_uuid is specified
|
|
422
529
|
this.components = this.page_uuid
|
|
423
530
|
? allComponents.filter((component) => component.pageId === this.page_uuid && component.root === true)
|
|
@@ -425,6 +532,16 @@ export class MicroApp extends LitElement {
|
|
|
425
532
|
? allComponents.filter((component) => component.pageId === currentPage.uuid && component.root === true)
|
|
426
533
|
: allComponents.filter((component) => component.root === true);
|
|
427
534
|
|
|
535
|
+
console.log('[MicroApp DEBUG] Filtered components', {
|
|
536
|
+
filterMode: this.page_uuid ? 'by page_uuid' : (currentPage ? 'by currentPage' : 'all root'),
|
|
537
|
+
componentsCount: this.components.length,
|
|
538
|
+
components: this.components.map(c => ({
|
|
539
|
+
uuid: c.uuid,
|
|
540
|
+
type: c.component_type,
|
|
541
|
+
root: c.root
|
|
542
|
+
}))
|
|
543
|
+
});
|
|
544
|
+
|
|
428
545
|
this.updateComponentsToRender();
|
|
429
546
|
}
|
|
430
547
|
|
|
@@ -470,11 +587,32 @@ export class MicroApp extends LitElement {
|
|
|
470
587
|
}
|
|
471
588
|
|
|
472
589
|
override render() {
|
|
473
|
-
|
|
590
|
+
console.log('[MicroApp DEBUG] 🎨 render() called', {
|
|
591
|
+
uuid: this.uuid,
|
|
592
|
+
hasUuid: !!this.uuid,
|
|
593
|
+
componentsToRenderLength: this.componentsToRender.length,
|
|
594
|
+
componentsToRender: this.componentsToRender.map(c => ({
|
|
595
|
+
uuid: c.uuid,
|
|
596
|
+
type: c.component_type,
|
|
597
|
+
root: c.root,
|
|
598
|
+
pageId: c.pageId
|
|
599
|
+
})),
|
|
600
|
+
willReturnNothing: !this.uuid || !this.componentsToRender.length,
|
|
601
|
+
isPreviewMode: this.isPreviewMode()
|
|
602
|
+
});
|
|
474
603
|
|
|
604
|
+
if (!this.uuid || !this.componentsToRender.length) {
|
|
605
|
+
console.log('[MicroApp DEBUG] ⚠️ render() returning nothing because:', {
|
|
606
|
+
noUuid: !this.uuid,
|
|
607
|
+
noComponentsToRender: !this.componentsToRender.length
|
|
608
|
+
});
|
|
609
|
+
return nothing;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
console.log('[MicroApp DEBUG] ✅ render() will render components');
|
|
475
613
|
return html`
|
|
476
|
-
<div
|
|
477
|
-
|
|
614
|
+
<div
|
|
615
|
+
|
|
478
616
|
style=${styleMap({
|
|
479
617
|
"height": "100%",
|
|
480
618
|
})}>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as sz, n as x1, h as oz, a as rz, k as az, K as lz, t as cz } from "./micro-app-entry-
|
|
1
|
+
import { i as sz, n as x1, h as oz, a as rz, k as az, K as lz, t as cz } from "./micro-app-entry-xdTX5-ut.js";
|
|
2
2
|
function Lo(o, e = 0) {
|
|
3
3
|
return o[o.length - (1 + e)];
|
|
4
4
|
}
|
|
@@ -73104,37 +73104,37 @@ Se({
|
|
|
73104
73104
|
id: "freemarker2",
|
|
73105
73105
|
extensions: [".ftl", ".ftlh", ".ftlx"],
|
|
73106
73106
|
aliases: ["FreeMarker2", "Apache FreeMarker2"],
|
|
73107
|
-
loader: () => import("./freemarker2-
|
|
73107
|
+
loader: () => import("./freemarker2-Bfqhwyij.js").then((o) => o.TagAutoInterpolationDollar)
|
|
73108
73108
|
});
|
|
73109
73109
|
Se({
|
|
73110
73110
|
id: "freemarker2.tag-angle.interpolation-dollar",
|
|
73111
73111
|
aliases: ["FreeMarker2 (Angle/Dollar)", "Apache FreeMarker2 (Angle/Dollar)"],
|
|
73112
|
-
loader: () => import("./freemarker2-
|
|
73112
|
+
loader: () => import("./freemarker2-Bfqhwyij.js").then((o) => o.TagAngleInterpolationDollar)
|
|
73113
73113
|
});
|
|
73114
73114
|
Se({
|
|
73115
73115
|
id: "freemarker2.tag-bracket.interpolation-dollar",
|
|
73116
73116
|
aliases: ["FreeMarker2 (Bracket/Dollar)", "Apache FreeMarker2 (Bracket/Dollar)"],
|
|
73117
|
-
loader: () => import("./freemarker2-
|
|
73117
|
+
loader: () => import("./freemarker2-Bfqhwyij.js").then((o) => o.TagBracketInterpolationDollar)
|
|
73118
73118
|
});
|
|
73119
73119
|
Se({
|
|
73120
73120
|
id: "freemarker2.tag-angle.interpolation-bracket",
|
|
73121
73121
|
aliases: ["FreeMarker2 (Angle/Bracket)", "Apache FreeMarker2 (Angle/Bracket)"],
|
|
73122
|
-
loader: () => import("./freemarker2-
|
|
73122
|
+
loader: () => import("./freemarker2-Bfqhwyij.js").then((o) => o.TagAngleInterpolationBracket)
|
|
73123
73123
|
});
|
|
73124
73124
|
Se({
|
|
73125
73125
|
id: "freemarker2.tag-bracket.interpolation-bracket",
|
|
73126
73126
|
aliases: ["FreeMarker2 (Bracket/Bracket)", "Apache FreeMarker2 (Bracket/Bracket)"],
|
|
73127
|
-
loader: () => import("./freemarker2-
|
|
73127
|
+
loader: () => import("./freemarker2-Bfqhwyij.js").then((o) => o.TagBracketInterpolationBracket)
|
|
73128
73128
|
});
|
|
73129
73129
|
Se({
|
|
73130
73130
|
id: "freemarker2.tag-auto.interpolation-dollar",
|
|
73131
73131
|
aliases: ["FreeMarker2 (Auto/Dollar)", "Apache FreeMarker2 (Auto/Dollar)"],
|
|
73132
|
-
loader: () => import("./freemarker2-
|
|
73132
|
+
loader: () => import("./freemarker2-Bfqhwyij.js").then((o) => o.TagAutoInterpolationDollar)
|
|
73133
73133
|
});
|
|
73134
73134
|
Se({
|
|
73135
73135
|
id: "freemarker2.tag-auto.interpolation-bracket",
|
|
73136
73136
|
aliases: ["FreeMarker2 (Auto/Bracket)", "Apache FreeMarker2 (Auto/Bracket)"],
|
|
73137
|
-
loader: () => import("./freemarker2-
|
|
73137
|
+
loader: () => import("./freemarker2-Bfqhwyij.js").then((o) => o.TagAutoInterpolationBracket)
|
|
73138
73138
|
});
|
|
73139
73139
|
/*!-----------------------------------------------------------------------------
|
|
73140
73140
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73172,7 +73172,7 @@ Se({
|
|
|
73172
73172
|
extensions: [".handlebars", ".hbs"],
|
|
73173
73173
|
aliases: ["Handlebars", "handlebars", "hbs"],
|
|
73174
73174
|
mimetypes: ["text/x-handlebars-template"],
|
|
73175
|
-
loader: () => import("./handlebars-
|
|
73175
|
+
loader: () => import("./handlebars-DCgKNBmn.js")
|
|
73176
73176
|
});
|
|
73177
73177
|
/*!-----------------------------------------------------------------------------
|
|
73178
73178
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73197,7 +73197,7 @@ Se({
|
|
|
73197
73197
|
extensions: [".html", ".htm", ".shtml", ".xhtml", ".mdoc", ".jsp", ".asp", ".aspx", ".jshtm"],
|
|
73198
73198
|
aliases: ["HTML", "htm", "html", "xhtml"],
|
|
73199
73199
|
mimetypes: ["text/html", "text/x-jshtm", "text/template", "text/ng-template"],
|
|
73200
|
-
loader: () => import("./html-
|
|
73200
|
+
loader: () => import("./html-C6wR7sMB.js")
|
|
73201
73201
|
});
|
|
73202
73202
|
/*!-----------------------------------------------------------------------------
|
|
73203
73203
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73238,7 +73238,7 @@ Se({
|
|
|
73238
73238
|
filenames: ["jakefile"],
|
|
73239
73239
|
aliases: ["JavaScript", "javascript", "js"],
|
|
73240
73240
|
mimetypes: ["text/javascript"],
|
|
73241
|
-
loader: () => import("./javascript-
|
|
73241
|
+
loader: () => import("./javascript-D1L5MTmg.js")
|
|
73242
73242
|
});
|
|
73243
73243
|
/*!-----------------------------------------------------------------------------
|
|
73244
73244
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73313,7 +73313,7 @@ Se({
|
|
|
73313
73313
|
extensions: [".liquid", ".html.liquid"],
|
|
73314
73314
|
aliases: ["Liquid", "liquid"],
|
|
73315
73315
|
mimetypes: ["application/liquid"],
|
|
73316
|
-
loader: () => import("./liquid-
|
|
73316
|
+
loader: () => import("./liquid-D_pDYIs1.js")
|
|
73317
73317
|
});
|
|
73318
73318
|
/*!-----------------------------------------------------------------------------
|
|
73319
73319
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73349,7 +73349,7 @@ Se({
|
|
|
73349
73349
|
id: "mdx",
|
|
73350
73350
|
extensions: [".mdx"],
|
|
73351
73351
|
aliases: ["MDX", "mdx"],
|
|
73352
|
-
loader: () => import("./mdx-
|
|
73352
|
+
loader: () => import("./mdx-CKsJ3cF4.js")
|
|
73353
73353
|
});
|
|
73354
73354
|
/*!-----------------------------------------------------------------------------
|
|
73355
73355
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73544,7 +73544,7 @@ Se({
|
|
|
73544
73544
|
extensions: [".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi"],
|
|
73545
73545
|
aliases: ["Python", "py"],
|
|
73546
73546
|
firstLine: "^#!/.*\\bpython[0-9.-]*\\b",
|
|
73547
|
-
loader: () => import("./python-
|
|
73547
|
+
loader: () => import("./python-zPpZYwLF.js")
|
|
73548
73548
|
});
|
|
73549
73549
|
/*!-----------------------------------------------------------------------------
|
|
73550
73550
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73581,7 +73581,7 @@ Se({
|
|
|
73581
73581
|
extensions: [".cshtml"],
|
|
73582
73582
|
aliases: ["Razor", "razor"],
|
|
73583
73583
|
mimetypes: ["text/x-cshtml"],
|
|
73584
|
-
loader: () => import("./razor-
|
|
73584
|
+
loader: () => import("./razor-B_fCUeGX.js")
|
|
73585
73585
|
});
|
|
73586
73586
|
/*!-----------------------------------------------------------------------------
|
|
73587
73587
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73833,7 +73833,7 @@ Se({
|
|
|
73833
73833
|
extensions: [".ts", ".tsx", ".cts", ".mts"],
|
|
73834
73834
|
aliases: ["TypeScript", "ts", "typescript"],
|
|
73835
73835
|
mimetypes: ["text/typescript"],
|
|
73836
|
-
loader: () => import("./typescript-
|
|
73836
|
+
loader: () => import("./typescript-DrlYcCUn.js")
|
|
73837
73837
|
});
|
|
73838
73838
|
/*!-----------------------------------------------------------------------------
|
|
73839
73839
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73889,7 +73889,7 @@ Se({
|
|
|
73889
73889
|
firstLine: "(\\<\\?xml.*)|(\\<svg)|(\\<\\!doctype\\s+svg)",
|
|
73890
73890
|
aliases: ["XML", "xml"],
|
|
73891
73891
|
mimetypes: ["text/xml", "application/xml", "application/xaml+xml", "application/xml-dtd"],
|
|
73892
|
-
loader: () => import("./xml-
|
|
73892
|
+
loader: () => import("./xml-BzP9D0eZ.js")
|
|
73893
73893
|
});
|
|
73894
73894
|
/*!-----------------------------------------------------------------------------
|
|
73895
73895
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73902,7 +73902,7 @@ Se({
|
|
|
73902
73902
|
extensions: [".yaml", ".yml"],
|
|
73903
73903
|
aliases: ["YAML", "yaml", "YML", "yml"],
|
|
73904
73904
|
mimetypes: ["application/x-yaml", "text/x-yaml"],
|
|
73905
|
-
loader: () => import("./yaml-
|
|
73905
|
+
loader: () => import("./yaml-CT7GOvXu.js")
|
|
73906
73906
|
});
|
|
73907
73907
|
/*!-----------------------------------------------------------------------------
|
|
73908
73908
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -73997,7 +73997,7 @@ var zB = class {
|
|
|
73997
73997
|
}, l6 = new zB("css", UB, QB), c6 = new zB("scss", UB, QB), d6 = new zB("less", UB, QB);
|
|
73998
73998
|
jm.languages.css = { cssDefaults: l6, lessDefaults: d6, scssDefaults: c6 };
|
|
73999
73999
|
function GB() {
|
|
74000
|
-
return import("./cssMode-
|
|
74000
|
+
return import("./cssMode-CqMQ6Xsa.js");
|
|
74001
74001
|
}
|
|
74002
74002
|
jm.languages.onLanguage("less", () => {
|
|
74003
74003
|
GB().then((o) => o.setupMode(d6));
|
|
@@ -74092,7 +74092,7 @@ QS.languages.html = {
|
|
|
74092
74092
|
registerHTMLLanguageService: YS
|
|
74093
74093
|
};
|
|
74094
74094
|
function rhe() {
|
|
74095
|
-
return import("./htmlMode-
|
|
74095
|
+
return import("./htmlMode-KglxyZXm.js");
|
|
74096
74096
|
}
|
|
74097
74097
|
function YS(o, e = GS, t = jS(o)) {
|
|
74098
74098
|
const i = new the(o, e, t);
|
|
@@ -74169,7 +74169,7 @@ var ghe = class {
|
|
|
74169
74169
|
}, f6 = new ghe("json", fhe, mhe);
|
|
74170
74170
|
Jb.languages.json = { jsonDefaults: f6 };
|
|
74171
74171
|
function phe() {
|
|
74172
|
-
return import("./jsonMode-
|
|
74172
|
+
return import("./jsonMode-B3rqxD-b.js");
|
|
74173
74173
|
}
|
|
74174
74174
|
Jb.languages.register({
|
|
74175
74175
|
id: "json",
|
|
@@ -74332,7 +74332,7 @@ Am.languages.typescript = {
|
|
|
74332
74332
|
getJavaScriptWorker: Dhe
|
|
74333
74333
|
};
|
|
74334
74334
|
function KS() {
|
|
74335
|
-
return import("./tsMode-
|
|
74335
|
+
return import("./tsMode-DEiq8fQ0.js");
|
|
74336
74336
|
}
|
|
74337
74337
|
Am.languages.onLanguage("typescript", () => KS().then((o) => o.setupTypeScript(w6)));
|
|
74338
74338
|
Am.languages.onLanguage("javascript", () => KS().then((o) => o.setupJavaScript(S6)));
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as b, n, r as p, h as v, k as h, s as C, t as y, D as m } from "./micro-app-entry-
|
|
1
|
+
import { i as b, n, r as p, h as v, k as h, s as C, t as y, D as m } from "./micro-app-entry-xdTX5-ut.js";
|
|
2
2
|
var g = Object.defineProperty, S = Object.getOwnPropertyDescriptor, l = (e, t, i, a) => {
|
|
3
3
|
for (var o = a > 1 ? void 0 : a ? S(t, i) : t, u = e.length - 1, d; u >= 0; u--)
|
|
4
4
|
(d = e[u]) && (o = (a ? d(t, i, o) : d(o)) || o);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as Se } from "./CodeEditor-
|
|
1
|
+
import { m as Se } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as f } from "./CodeEditor-
|
|
1
|
+
import { m as f } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./CodeEditor-
|
|
1
|
+
import { m as l } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./CodeEditor-
|
|
1
|
+
import { m as s } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as Xe } from "./CodeEditor-
|
|
1
|
+
import { m as Xe } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { conf as t, language as e } from "./typescript-
|
|
1
|
+
import { conf as t, language as e } from "./typescript-DrlYcCUn.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as Ye } from "./CodeEditor-
|
|
1
|
+
import { m as Ye } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./CodeEditor-
|
|
1
|
+
import { m as l } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./CodeEditor-
|
|
1
|
+
import { m as s } from "./CodeEditor-YsOapSut.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.45.0(5e5af013f8d295555a7210df0d5f2cea0bf5dd56)
|