@absolutejs/absolute 0.19.0-beta.706 → 0.19.0-beta.707
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/angular/components/constants.js +78 -0
- package/dist/angular/components/core/streamingSlotRegistrar.js +58 -0
- package/dist/angular/components/core/streamingSlotRegistry.js +114 -0
- package/dist/angular/components/defer-slot-payload.js +6 -0
- package/dist/angular/components/defer-slot-templates.directive.js +44 -0
- package/dist/angular/components/defer-slot.component.js +149 -0
- package/dist/angular/components/image.component.js +202 -0
- package/dist/angular/components/index.js +4 -0
- package/dist/angular/components/stream-slot.component.js +103 -0
- package/dist/angular/index.js +7 -9
- package/dist/angular/index.js.map +4 -4
- package/dist/angular/server.js +7 -9
- package/dist/angular/server.js.map +4 -4
- package/dist/build.js +19 -26
- package/dist/build.js.map +4 -4
- package/dist/cli/index.js +197 -144
- package/dist/client/index.js +2 -4
- package/dist/client/index.js.map +2 -2
- package/dist/dev/client/constants.ts +26 -0
- package/dist/dev/client/cssUtils.ts +307 -0
- package/dist/dev/client/domDiff.ts +226 -0
- package/dist/dev/client/domState.ts +421 -0
- package/dist/dev/client/domTracker.ts +61 -0
- package/dist/dev/client/errorOverlay.ts +184 -0
- package/dist/dev/client/frameworkDetect.ts +63 -0
- package/dist/dev/client/handlers/angular.ts +572 -0
- package/dist/dev/client/handlers/angularRuntime.ts +226 -0
- package/dist/dev/client/handlers/html.ts +364 -0
- package/dist/dev/client/handlers/htmx.ts +278 -0
- package/dist/dev/client/handlers/react.ts +108 -0
- package/dist/dev/client/handlers/rebuild.ts +153 -0
- package/dist/dev/client/handlers/svelte.ts +334 -0
- package/dist/dev/client/handlers/vue.ts +292 -0
- package/dist/dev/client/headPatch.ts +233 -0
- package/dist/dev/client/hmrClient.ts +273 -0
- package/dist/dev/client/hmrState.ts +14 -0
- package/dist/dev/client/moduleVersions.ts +62 -0
- package/dist/dev/client/reactRefreshSetup.ts +32 -0
- package/dist/index.js +29 -33
- package/dist/index.js.map +5 -5
- package/dist/islands/index.js +6 -8
- package/dist/islands/index.js.map +4 -4
- package/dist/react/browser.js +7 -7
- package/dist/react/browser.js.map +2 -2
- package/dist/react/components/browser/index.js +101 -101
- package/dist/react/components/index.js +104 -104
- package/dist/react/components/index.js.map +2 -2
- package/dist/react/index.js +17 -19
- package/dist/react/index.js.map +4 -4
- package/dist/react/server.js +3 -3
- package/dist/react/server.js.map +3 -3
- package/dist/src/angular/components/constants.d.ts +75 -0
- package/dist/src/angular/components/defer-slot-templates.directive.d.ts +7 -0
- package/dist/src/angular/components/defer-slot.component.d.ts +5 -2
- package/dist/src/angular/components/image.component.d.ts +5 -2
- package/dist/src/angular/components/index.d.ts +4 -4
- package/dist/src/angular/components/stream-slot.component.d.ts +3 -0
- package/dist/src/constants.d.ts +1 -0
- package/dist/svelte/components/AwaitSlot.svelte +39 -0
- package/dist/svelte/components/AwaitSlot.svelte.d.ts +2 -0
- package/dist/svelte/components/Head.svelte +144 -0
- package/dist/svelte/components/Head.svelte.d.ts +2 -0
- package/dist/svelte/components/Image.svelte +164 -0
- package/dist/svelte/components/Image.svelte.d.ts +5 -0
- package/dist/svelte/components/Island.svelte +71 -0
- package/dist/svelte/components/Island.svelte.d.ts +5 -0
- package/dist/svelte/components/JsonLd.svelte +21 -0
- package/dist/svelte/components/JsonLd.svelte.d.ts +2 -0
- package/dist/svelte/components/StreamSlot.svelte +41 -0
- package/dist/svelte/components/StreamSlot.svelte.d.ts +2 -0
- package/dist/svelte/index.js +7 -9
- package/dist/svelte/index.js.map +4 -4
- package/dist/svelte/server.js +4 -4
- package/dist/svelte/server.js.map +3 -3
- package/dist/types/globals.d.ts +122 -0
- package/dist/vue/index.js +7 -9
- package/dist/vue/index.js.map +4 -4
- package/dist/vue/server.js +3 -3
- package/dist/vue/server.js.map +3 -3
- package/package.json +1 -1
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { DeferSlotComponent } from './defer-slot.component.js';
|
|
2
|
+
export { DeferErrorTemplateDirective, DeferFallbackTemplateDirective, DeferResolvedTemplateDirective } from './defer-slot-templates.directive.js';
|
|
3
|
+
export { ImageComponent } from './image.component.js';
|
|
4
|
+
export { StreamSlotComponent } from './stream-slot.component.js';
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, Input, NgZone, inject, signal } from '@angular/core';
|
|
2
|
+
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
+
import { isStreamingSlotCollectionActive, registerStreamingSlot, warnMissingStreamingSlotCollector } from './core/streamingSlotRegistrar.js';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
const isObjectRecord = (value) => Boolean(value) && typeof value === 'object';
|
|
6
|
+
const isHtmlPayload = (payload) => isObjectRecord(payload) && typeof payload.html === 'string';
|
|
7
|
+
const resolvePayloadHtml = (payload) => {
|
|
8
|
+
if (isHtmlPayload(payload)) {
|
|
9
|
+
return payload.html;
|
|
10
|
+
}
|
|
11
|
+
return typeof payload === 'string' ? payload : '';
|
|
12
|
+
};
|
|
13
|
+
export class StreamSlotComponent {
|
|
14
|
+
constructor() {
|
|
15
|
+
this.cdr = inject(ChangeDetectorRef);
|
|
16
|
+
this.sanitizer = inject(DomSanitizer);
|
|
17
|
+
this.zone = inject(NgZone);
|
|
18
|
+
this.slotConsumer = (payload) => {
|
|
19
|
+
this.zone.run(() => {
|
|
20
|
+
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(resolvePayloadHtml(payload)));
|
|
21
|
+
this.cdr.markForCheck();
|
|
22
|
+
});
|
|
23
|
+
return true;
|
|
24
|
+
};
|
|
25
|
+
this.fallbackHtml = '';
|
|
26
|
+
this.currentHtml = signal('', ...(ngDevMode ? [{ debugName: "currentHtml" }] : /* istanbul ignore next */ []));
|
|
27
|
+
}
|
|
28
|
+
ngOnInit() {
|
|
29
|
+
if (isStreamingSlotCollectionActive()) {
|
|
30
|
+
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
31
|
+
registerStreamingSlot({
|
|
32
|
+
errorHtml: this.errorHtml,
|
|
33
|
+
fallbackHtml: this.fallbackHtml,
|
|
34
|
+
id: this.id,
|
|
35
|
+
resolve: this.resolve,
|
|
36
|
+
timeoutMs: this.timeoutMs
|
|
37
|
+
});
|
|
38
|
+
return;
|
|
39
|
+
}
|
|
40
|
+
warnMissingStreamingSlotCollector('StreamSlot');
|
|
41
|
+
if (typeof window === 'undefined') {
|
|
42
|
+
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
43
|
+
return;
|
|
44
|
+
}
|
|
45
|
+
const consumers = (window.__ABS_SLOT_CONSUMERS__ =
|
|
46
|
+
window.__ABS_SLOT_CONSUMERS__ ?? {});
|
|
47
|
+
consumers[this.id] = this.slotConsumer;
|
|
48
|
+
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
49
|
+
const pendingPayload = window.__ABS_SLOT_PENDING__?.[this.id];
|
|
50
|
+
if (pendingPayload !== undefined) {
|
|
51
|
+
this.slotConsumer(pendingPayload);
|
|
52
|
+
delete window.__ABS_SLOT_PENDING__?.[this.id];
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
ngOnDestroy() {
|
|
56
|
+
if (typeof window === 'undefined')
|
|
57
|
+
return;
|
|
58
|
+
if (window.__ABS_SLOT_CONSUMERS__) {
|
|
59
|
+
delete window.__ABS_SLOT_CONSUMERS__[this.id];
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: StreamSlotComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
63
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.2.6", type: StreamSlotComponent, isStandalone: true, selector: "abs-stream-slot", inputs: { className: "className", errorHtml: "errorHtml", fallbackHtml: "fallbackHtml", id: "id", resolve: "resolve", timeoutMs: "timeoutMs" }, ngImport: i0, template: `
|
|
64
|
+
<div
|
|
65
|
+
[attr.id]="id"
|
|
66
|
+
[attr.class]="className"
|
|
67
|
+
data-absolute-raw-slot="true"
|
|
68
|
+
data-absolute-slot="true"
|
|
69
|
+
[innerHTML]="currentHtml()"
|
|
70
|
+
></div>
|
|
71
|
+
`, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
72
|
+
}
|
|
73
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.6", ngImport: i0, type: StreamSlotComponent, decorators: [{
|
|
74
|
+
type: Component,
|
|
75
|
+
args: [{
|
|
76
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
77
|
+
selector: 'abs-stream-slot',
|
|
78
|
+
standalone: true,
|
|
79
|
+
template: `
|
|
80
|
+
<div
|
|
81
|
+
[attr.id]="id"
|
|
82
|
+
[attr.class]="className"
|
|
83
|
+
data-absolute-raw-slot="true"
|
|
84
|
+
data-absolute-slot="true"
|
|
85
|
+
[innerHTML]="currentHtml()"
|
|
86
|
+
></div>
|
|
87
|
+
`
|
|
88
|
+
}]
|
|
89
|
+
}], propDecorators: { className: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}], errorHtml: [{
|
|
92
|
+
type: Input
|
|
93
|
+
}], fallbackHtml: [{
|
|
94
|
+
type: Input
|
|
95
|
+
}], id: [{
|
|
96
|
+
type: Input,
|
|
97
|
+
args: [{ required: true }]
|
|
98
|
+
}], resolve: [{
|
|
99
|
+
type: Input,
|
|
100
|
+
args: [{ required: true }]
|
|
101
|
+
}], timeoutMs: [{
|
|
102
|
+
type: Input
|
|
103
|
+
}] } });
|
package/dist/angular/index.js
CHANGED
|
@@ -79,7 +79,7 @@ var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
|
79
79
|
var __require = import.meta.require;
|
|
80
80
|
|
|
81
81
|
// src/constants.ts
|
|
82
|
-
var ANGULAR_INIT_TIMEOUT_MS = 500, ANSI_ESCAPE_LENGTH = 3, ASCII_SPACE = 32, BASE_36_RADIX = 36, BUN_BUILD_WARNING_SUPPRESSION = "wildcard sideEffects are not supported yet", BODY_SLICE_LENGTH = 2000, BYTES_PER_KILOBYTE = 1024, CLI_ARGS_OFFSET = 3, CSS_ERROR_RESOLVE_DELAY_MS = 50, CSS_MAX_CHECK_ATTEMPTS = 10, CSS_MAX_PARSE_TIMEOUT_MS = 500, CSS_SHEET_READY_TIMEOUT_MS = 100, DEFAULT_CHUNK_SIZE = 16384, DEFAULT_DEBOUNCE_MS = 15, DEFAULT_PORT = 3000, DEV_SERVER_RESTART_DEBOUNCE_MS = 100, DOM_UPDATE_DELAY_MS = 50, FILE_PROTOCOL_PREFIX_LENGTH = 7, FOCUS_ID_PREFIX_LENGTH = 3, FOCUS_IDX_PREFIX_LENGTH = 4, FOCUS_NAME_PREFIX_LENGTH = 5, HMR_UPDATE_TIMEOUT_MS = 2000, HOOK_SIGNATURE_LENGTH = 12, EXCLUDE_LAST_OFFSET = -1, HTTP_STATUS_OK = 200, HTTP_STATUS_BAD_REQUEST = 400, HTTP_STATUS_NOT_FOUND = 404, HOURS_IN_DAY = 24, HOURS_IN_HALF_DAY = 12, MAX_ERROR_LENGTH = 200, MAX_RECONNECT_ATTEMPTS = 60, MILLISECONDS_IN_A_SECOND = 1000, MINUTES_IN_AN_HOUR = 60, SECONDS_IN_A_MINUTE = 60, MILLISECONDS_IN_A_MINUTE, MILLISECONDS_IN_A_DAY, OVERLAY_FADE_DURATION_MS = 150, PING_INTERVAL_MS = 30000, RAF_BATCH_COUNT = 3, RANDOM_ID_END_INDEX = 11, REBUILD_BATCH_DELAY_MS = 10, REBUILD_RELOAD_DELAY_MS = 200, RECONNECT_INITIAL_DELAY_MS = 500, RECONNECT_POLL_INTERVAL_MS = 300, REACT_STREAM_SLOT_FAST_DELAY_MS = 5, REACT_STREAM_SLOT_SLOW_DELAY_MS = 20, SIGINT_EXIT_CODE = 130, SIGTERM_EXIT_CODE = 143, SVELTE_CSS_LOAD_TIMEOUT_MS = 500, TIME_PRECISION = 2, TWO_THIRDS, UNFOUND_INDEX = -1, WEBSOCKET_NORMAL_CLOSURE = 1000, WORKSPACE_COMMAND_ARGS_OFFSET = 3, WORKSPACE_FAILURE_LOG_PRINT_LIMIT = 30, WORKSPACE_FAILURE_RECENT_LOG_LIMIT = 60, WORKSPACE_READY_ATTEMPT_TIMEOUT_MS = 5000, WORKSPACE_READY_PROBE_INTERVAL_MS = 250, WORKSPACE_READY_TIMEOUT_MS = 30000, WORKSPACE_SHUTDOWN_TIMEOUT_MS = 1e4, WORKSPACE_TUI_DEFAULT_HEIGHT = 28, WORKSPACE_TUI_DEFAULT_WIDTH = 100, WORKSPACE_TUI_ESCAPE_SEQUENCE_TIMEOUT_MS = 30, WORKSPACE_TUI_FOOTER_LINE_COUNT = 3, WORKSPACE_TUI_MIN_LOG_HEIGHT = 3, WORKSPACE_TUI_MIN_SERVICE_NAME_WIDTH = 7, WORKSPACE_TUI_MIN_TARGET_WIDTH = 8, WORKSPACE_TUI_MIN_WRAP_WIDTH = 12, WORKSPACE_TUI_PROMPT_CURSOR_OFFSET = 3, WORKSPACE_TUI_RECENT_LOG_LIMIT = 40, WORKSPACE_TUI_RENDER_DEBOUNCE_MS = 16, WORKSPACE_TUI_STATUS_WIDTH = 10, WORKSPACE_TUI_TARGET_PADDING_WIDTH = 6, WORKSPACE_TUI_VISIBILITY_WIDTH = 8;
|
|
82
|
+
var ANGULAR_INIT_TIMEOUT_MS = 500, ANSI_ESCAPE_CODE = 27, ANSI_ESCAPE_LENGTH = 3, ASCII_SPACE = 32, BASE_36_RADIX = 36, BUN_BUILD_WARNING_SUPPRESSION = "wildcard sideEffects are not supported yet", BODY_SLICE_LENGTH = 2000, BYTES_PER_KILOBYTE = 1024, CLI_ARGS_OFFSET = 3, CSS_ERROR_RESOLVE_DELAY_MS = 50, CSS_MAX_CHECK_ATTEMPTS = 10, CSS_MAX_PARSE_TIMEOUT_MS = 500, CSS_SHEET_READY_TIMEOUT_MS = 100, DEFAULT_CHUNK_SIZE = 16384, DEFAULT_DEBOUNCE_MS = 15, DEFAULT_PORT = 3000, DEV_SERVER_RESTART_DEBOUNCE_MS = 100, DOM_UPDATE_DELAY_MS = 50, FILE_PROTOCOL_PREFIX_LENGTH = 7, FOCUS_ID_PREFIX_LENGTH = 3, FOCUS_IDX_PREFIX_LENGTH = 4, FOCUS_NAME_PREFIX_LENGTH = 5, HMR_UPDATE_TIMEOUT_MS = 2000, HOOK_SIGNATURE_LENGTH = 12, EXCLUDE_LAST_OFFSET = -1, HTTP_STATUS_OK = 200, HTTP_STATUS_BAD_REQUEST = 400, HTTP_STATUS_NOT_FOUND = 404, HOURS_IN_DAY = 24, HOURS_IN_HALF_DAY = 12, MAX_ERROR_LENGTH = 200, MAX_RECONNECT_ATTEMPTS = 60, MILLISECONDS_IN_A_SECOND = 1000, MINUTES_IN_AN_HOUR = 60, SECONDS_IN_A_MINUTE = 60, MILLISECONDS_IN_A_MINUTE, MILLISECONDS_IN_A_DAY, OVERLAY_FADE_DURATION_MS = 150, PING_INTERVAL_MS = 30000, RAF_BATCH_COUNT = 3, RANDOM_ID_END_INDEX = 11, REBUILD_BATCH_DELAY_MS = 10, REBUILD_RELOAD_DELAY_MS = 200, RECONNECT_INITIAL_DELAY_MS = 500, RECONNECT_POLL_INTERVAL_MS = 300, REACT_STREAM_SLOT_FAST_DELAY_MS = 5, REACT_STREAM_SLOT_SLOW_DELAY_MS = 20, SIGINT_EXIT_CODE = 130, SIGTERM_EXIT_CODE = 143, SVELTE_CSS_LOAD_TIMEOUT_MS = 500, TIME_PRECISION = 2, TWO_THIRDS, UNFOUND_INDEX = -1, WEBSOCKET_NORMAL_CLOSURE = 1000, WORKSPACE_COMMAND_ARGS_OFFSET = 3, WORKSPACE_FAILURE_LOG_PRINT_LIMIT = 30, WORKSPACE_FAILURE_RECENT_LOG_LIMIT = 60, WORKSPACE_READY_ATTEMPT_TIMEOUT_MS = 5000, WORKSPACE_READY_PROBE_INTERVAL_MS = 250, WORKSPACE_READY_TIMEOUT_MS = 30000, WORKSPACE_SHUTDOWN_TIMEOUT_MS = 1e4, WORKSPACE_TUI_DEFAULT_HEIGHT = 28, WORKSPACE_TUI_DEFAULT_WIDTH = 100, WORKSPACE_TUI_ESCAPE_SEQUENCE_TIMEOUT_MS = 30, WORKSPACE_TUI_FOOTER_LINE_COUNT = 3, WORKSPACE_TUI_MIN_LOG_HEIGHT = 3, WORKSPACE_TUI_MIN_SERVICE_NAME_WIDTH = 7, WORKSPACE_TUI_MIN_TARGET_WIDTH = 8, WORKSPACE_TUI_MIN_WRAP_WIDTH = 12, WORKSPACE_TUI_PROMPT_CURSOR_OFFSET = 3, WORKSPACE_TUI_RECENT_LOG_LIMIT = 40, WORKSPACE_TUI_RENDER_DEBOUNCE_MS = 16, WORKSPACE_TUI_STATUS_WIDTH = 10, WORKSPACE_TUI_TARGET_PADDING_WIDTH = 6, WORKSPACE_TUI_VISIBILITY_WIDTH = 8;
|
|
83
83
|
var init_constants = __esm(() => {
|
|
84
84
|
MILLISECONDS_IN_A_MINUTE = MILLISECONDS_IN_A_SECOND * SECONDS_IN_A_MINUTE;
|
|
85
85
|
MILLISECONDS_IN_A_DAY = MILLISECONDS_IN_A_SECOND * SECONDS_IN_A_MINUTE * MINUTES_IN_AN_HOUR * HOURS_IN_DAY;
|
|
@@ -302,9 +302,7 @@ var initDominoAdapter = (platformServer) => {
|
|
|
302
302
|
import(resolveAngularPackage("@angular/common")),
|
|
303
303
|
import(resolveAngularPackage("@angular/core"))
|
|
304
304
|
]);
|
|
305
|
-
if (
|
|
306
|
-
core.enableProdMode();
|
|
307
|
-
}
|
|
305
|
+
if (false) {}
|
|
308
306
|
initDominoAdapter(platformServer);
|
|
309
307
|
return {
|
|
310
308
|
APP_BASE_HREF: common.APP_BASE_HREF,
|
|
@@ -630,9 +628,9 @@ var renderAngularIslandToHtmlInternal = async (component, props, islandId) => {
|
|
|
630
628
|
}, renderAngularIslandToHtml2, renderReactIslandToHtml = (component, props) => import("react").then(({ createElement }) => import("react-dom/server").then(({ renderToStaticMarkup }) => renderToStaticMarkup(createElement(component, props)))), renderSvelteIslandToHtml = (component, props) => import("svelte/server").then(({ render }) => {
|
|
631
629
|
const { body } = render(component, { props });
|
|
632
630
|
return body;
|
|
633
|
-
}), renderVueIslandToHtml = (component, props) => import("vue").then(({ createSSRApp, h }) => {
|
|
631
|
+
}), renderVueIslandToHtml = (component, props) => import("vue").then(({ createSSRApp, h: createVueVNode }) => {
|
|
634
632
|
const app = createSSRApp({
|
|
635
|
-
render: () =>
|
|
633
|
+
render: () => createVueVNode(component, props)
|
|
636
634
|
});
|
|
637
635
|
return import("vue/server-renderer").then(({ renderToString }) => renderToString(app));
|
|
638
636
|
});
|
|
@@ -998,7 +996,7 @@ ${contents}` : contents, normalizePostcssModule = (mod) => {
|
|
|
998
996
|
const config = normalizePostcssModule(loaded);
|
|
999
997
|
const value = typeof config === "function" ? await config({
|
|
1000
998
|
cwd: process.cwd(),
|
|
1001
|
-
env: "
|
|
999
|
+
env: "development"
|
|
1002
1000
|
}) : config;
|
|
1003
1001
|
return normalizePostcssModule(value) ?? {};
|
|
1004
1002
|
}, normalizePostcssPlugins = (plugins) => {
|
|
@@ -13338,7 +13336,7 @@ var resolveNotFoundConventionPath = (framework) => getMap()[framework]?.defaults
|
|
|
13338
13336
|
var setConventions = (map) => {
|
|
13339
13337
|
Reflect.set(globalThis, CONVENTIONS_KEY, map);
|
|
13340
13338
|
};
|
|
13341
|
-
var isDev = () =>
|
|
13339
|
+
var isDev = () => true;
|
|
13342
13340
|
var buildErrorProps = (error) => {
|
|
13343
13341
|
const message = error instanceof Error ? error.message : String(error);
|
|
13344
13342
|
const stack = isDev() && error instanceof Error ? error.stack : undefined;
|
|
@@ -14211,5 +14209,5 @@ export {
|
|
|
14211
14209
|
Island
|
|
14212
14210
|
};
|
|
14213
14211
|
|
|
14214
|
-
//# debugId=
|
|
14212
|
+
//# debugId=B4AF018FA8EB4A5564756E2164756E21
|
|
14215
14213
|
//# sourceMappingURL=index.js.map
|