@dxs-ts/eveli-ide 0.0.207 → 0.0.208
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/build/{cssMode-D6Sv0I89.js → cssMode-Dc2LDI6c.js} +1 -1
- package/build/eveli-fetch/FetchProvider.d.ts +5 -2
- package/build/{freemarker2-CXZCKn9A.js → freemarker2-CE5oHRkd.js} +1 -1
- package/build/{handlebars-Dd8sS6vH.js → handlebars-Det10JQh.js} +1 -1
- package/build/{html-C9LJnZq3.js → html-CBIK6J-I.js} +1 -1
- package/build/{htmlMode-C74QWOCK.js → htmlMode-C83xRpIW.js} +1 -1
- package/build/{index-DLsD1kCt.js → index-DjYS5A_M.js} +35 -33
- package/build/index.js +1 -1
- package/build/{javascript-Cur7Wp2F.js → javascript-u-Flu-Eg.js} +1 -1
- package/build/{jsonMode-Bv0QJvuc.js → jsonMode-BvQp0yvH.js} +1 -1
- package/build/{liquid-DL6hTWVk.js → liquid-DccFis0C.js} +1 -1
- package/build/{mdx-Ba3RkDQ5.js → mdx-BsCpuRBv.js} +1 -1
- package/build/{python-DaZLze6t.js → python-DotQ8nHV.js} +1 -1
- package/build/{razor-Ddj29YBw.js → razor-WQY6_Jp6.js} +1 -1
- package/build/{tsMode-Cp5eqU6j.js → tsMode-BgWKyciV.js} +1 -1
- package/build/{typescript-Bp4wIxHI.js → typescript-D1wljP5A.js} +1 -1
- package/build/{xml-Dwwst-Al.js → xml-BFOzzhr6.js} +1 -1
- package/build/{yaml-B8E91j1x.js → yaml-ojy1AMQ0.js} +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as et } from "./index-
|
|
1
|
+
import { m as et } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
import { HookProps, HookByPath } from './fetch-api';
|
|
3
3
|
import { RootFileFetch } from './createFileFetch';
|
|
4
|
+
export type FetchOverrides = Partial<Record<keyof HookByPath, (parentFetch: typeof window.fetch) => typeof window.fetch>>;
|
|
4
5
|
export interface FetchContextType {
|
|
5
6
|
contextPath: string;
|
|
6
7
|
state: RootFileFetch;
|
|
8
|
+
overrides: FetchOverrides | undefined;
|
|
7
9
|
setContextPath: (newContextPath: string) => void;
|
|
8
10
|
}
|
|
9
11
|
export declare const FetchContext: React.Context<FetchContextType>;
|
|
@@ -11,6 +13,7 @@ export declare const FetchProvider: React.FC<{
|
|
|
11
13
|
children: React.ReactNode;
|
|
12
14
|
tree: RootFileFetch;
|
|
13
15
|
initContextPath: string;
|
|
16
|
+
overrides?: FetchOverrides;
|
|
14
17
|
}>;
|
|
15
18
|
export declare class FetchParams<TFetchPath extends keyof HookByPath, TPath extends HookByPath[TFetchPath]['path'], TMethod extends HookByPath[TFetchPath]['method'], TParams extends HookByPath[TFetchPath]['params']> {
|
|
16
19
|
contextPath: string;
|
|
@@ -20,7 +23,7 @@ export declare class FetchParams<TFetchPath extends keyof HookByPath, TPath exte
|
|
|
20
23
|
constructor(contextPath: string, path: TPath, method: TMethod, fetch: typeof window.fetch);
|
|
21
24
|
url: (type: TParams) => string;
|
|
22
25
|
}
|
|
23
|
-
export declare function useRouteParams<TFetchPath extends keyof HookByPath, TPath extends HookByPath[TFetchPath]['path'], TMethod extends HookByPath[TFetchPath]['method'], TParams extends HookByPath[TFetchPath]['params']>(path: TPath, method: any): FetchParams<TFetchPath, TPath, TMethod, TParams>;
|
|
24
|
-
export declare function useNativeRouteParams<TFetchPath extends keyof HookByPath, TPath extends HookByPath[TFetchPath]['path'], TMethod extends HookByPath[TFetchPath]['method'], TParams extends HookByPath[TFetchPath]['params']>(path: TPath, method: any): Omit<FetchParams<TFetchPath, TPath, TMethod, TParams>, 'fetch'>;
|
|
26
|
+
export declare function useRouteParams<TFetchPath extends keyof HookByPath, TPath extends HookByPath[TFetchPath]['path'], TMethod extends HookByPath[TFetchPath]['method'], TParams extends HookByPath[TFetchPath]['params']>(path: TPath, method: any, id: TFetchPath): FetchParams<TFetchPath, TPath, TMethod, TParams>;
|
|
27
|
+
export declare function useNativeRouteParams<TFetchPath extends keyof HookByPath, TPath extends HookByPath[TFetchPath]['path'], TMethod extends HookByPath[TFetchPath]['method'], TParams extends HookByPath[TFetchPath]['params']>(path: TPath, method: any, id: TFetchPath): Omit<FetchParams<TFetchPath, TPath, TMethod, TParams>, 'fetch'>;
|
|
25
28
|
export declare function useFetchConfig(): FetchContextType;
|
|
26
29
|
export declare function useFetch<TPathId extends keyof HookByPath>(id: TPathId, props: HookProps<HookByPath[TPathId]['hook']['proxy']>): ReturnType<HookByPath[TPathId]['hook']['proxy']>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as f } from "./index-
|
|
1
|
+
import { m as f } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as lt } from "./index-
|
|
1
|
+
import { m as lt } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1920,9 +1920,9 @@ const ISi = {
|
|
|
1920
1920
|
"feedback.search.filter.category": "Filter by category",
|
|
1921
1921
|
"feedback.search.filter.subCategory": "Filter by sub-category",
|
|
1922
1922
|
"feedback.filter.selectNone": "None"
|
|
1923
|
-
}, DSi = { en: ISi, fi: NSi, sv: ASi }, ffe = fe.createContext({}), hBr = ({ children: i, tree: e, initContextPath: t }) => {
|
|
1924
|
-
const [
|
|
1925
|
-
return /* @__PURE__ */ x(ffe.Provider, { value:
|
|
1923
|
+
}, DSi = { en: ISi, fi: NSi, sv: ASi }, ffe = fe.createContext({}), hBr = ({ children: i, tree: e, initContextPath: t, overrides: r }) => {
|
|
1924
|
+
const [o, a] = fe.useState(e), [c, d] = fe.useState(t), f = fe.useMemo(() => ({ state: o, contextPath: c, setContextPath: d, overrides: r }), [d, o, c, r]);
|
|
1925
|
+
return /* @__PURE__ */ x(ffe.Provider, { value: f, children: i });
|
|
1926
1926
|
};
|
|
1927
1927
|
class gTn {
|
|
1928
1928
|
constructor(e, t, r, o) {
|
|
@@ -1933,13 +1933,15 @@ class gTn {
|
|
|
1933
1933
|
this.contextPath = e, this.path = t, this.method = r, this.fetch = o;
|
|
1934
1934
|
}
|
|
1935
1935
|
}
|
|
1936
|
-
function RSi(i, e) {
|
|
1937
|
-
const
|
|
1938
|
-
|
|
1936
|
+
function RSi(i, e, t) {
|
|
1937
|
+
const r = fe.useContext(ffe), o = r.overrides && r.overrides[t];
|
|
1938
|
+
o && console.log(`fetch ${t} has override`);
|
|
1939
|
+
const a = r.state.fetch(), c = o ? o(a) : a;
|
|
1940
|
+
return new gTn(r.contextPath, i, e, c);
|
|
1939
1941
|
}
|
|
1940
|
-
function OSi(i, e) {
|
|
1941
|
-
const
|
|
1942
|
-
return new gTn(
|
|
1942
|
+
function OSi(i, e, t) {
|
|
1943
|
+
const r = fe.useContext(ffe), o = window.fetch;
|
|
1944
|
+
return new gTn(r.contextPath, i, e, o);
|
|
1943
1945
|
}
|
|
1944
1946
|
function MSi() {
|
|
1945
1947
|
return fe.useContext(ffe);
|
|
@@ -1970,8 +1972,8 @@ class FSi {
|
|
|
1970
1972
|
Dn(this, "_original");
|
|
1971
1973
|
Dn(this, "_options", {});
|
|
1972
1974
|
Dn(this, "proxy", (e) => this._original(e));
|
|
1973
|
-
Dn(this, "useParams", () => RSi(this._options.path, this._options.method));
|
|
1974
|
-
Dn(this, "useNativeParams", () => OSi(this._options.path, this._options.method));
|
|
1975
|
+
Dn(this, "useParams", () => RSi(this._options.path, this._options.method, this._id));
|
|
1976
|
+
Dn(this, "useNativeParams", () => OSi(this._options.path, this._options.method, this._id));
|
|
1975
1977
|
Dn(this, "update", (e) => (this._options = e, this));
|
|
1976
1978
|
this._id = e, this._original = t, this._options = {};
|
|
1977
1979
|
}
|
|
@@ -135110,37 +135112,37 @@ Br({
|
|
|
135110
135112
|
id: "freemarker2",
|
|
135111
135113
|
extensions: [".ftl", ".ftlh", ".ftlx"],
|
|
135112
135114
|
aliases: ["FreeMarker2", "Apache FreeMarker2"],
|
|
135113
|
-
loader: () => import("./freemarker2-
|
|
135115
|
+
loader: () => import("./freemarker2-CE5oHRkd.js").then((i) => i.TagAutoInterpolationDollar)
|
|
135114
135116
|
});
|
|
135115
135117
|
Br({
|
|
135116
135118
|
id: "freemarker2.tag-angle.interpolation-dollar",
|
|
135117
135119
|
aliases: ["FreeMarker2 (Angle/Dollar)", "Apache FreeMarker2 (Angle/Dollar)"],
|
|
135118
|
-
loader: () => import("./freemarker2-
|
|
135120
|
+
loader: () => import("./freemarker2-CE5oHRkd.js").then((i) => i.TagAngleInterpolationDollar)
|
|
135119
135121
|
});
|
|
135120
135122
|
Br({
|
|
135121
135123
|
id: "freemarker2.tag-bracket.interpolation-dollar",
|
|
135122
135124
|
aliases: ["FreeMarker2 (Bracket/Dollar)", "Apache FreeMarker2 (Bracket/Dollar)"],
|
|
135123
|
-
loader: () => import("./freemarker2-
|
|
135125
|
+
loader: () => import("./freemarker2-CE5oHRkd.js").then((i) => i.TagBracketInterpolationDollar)
|
|
135124
135126
|
});
|
|
135125
135127
|
Br({
|
|
135126
135128
|
id: "freemarker2.tag-angle.interpolation-bracket",
|
|
135127
135129
|
aliases: ["FreeMarker2 (Angle/Bracket)", "Apache FreeMarker2 (Angle/Bracket)"],
|
|
135128
|
-
loader: () => import("./freemarker2-
|
|
135130
|
+
loader: () => import("./freemarker2-CE5oHRkd.js").then((i) => i.TagAngleInterpolationBracket)
|
|
135129
135131
|
});
|
|
135130
135132
|
Br({
|
|
135131
135133
|
id: "freemarker2.tag-bracket.interpolation-bracket",
|
|
135132
135134
|
aliases: ["FreeMarker2 (Bracket/Bracket)", "Apache FreeMarker2 (Bracket/Bracket)"],
|
|
135133
|
-
loader: () => import("./freemarker2-
|
|
135135
|
+
loader: () => import("./freemarker2-CE5oHRkd.js").then((i) => i.TagBracketInterpolationBracket)
|
|
135134
135136
|
});
|
|
135135
135137
|
Br({
|
|
135136
135138
|
id: "freemarker2.tag-auto.interpolation-dollar",
|
|
135137
135139
|
aliases: ["FreeMarker2 (Auto/Dollar)", "Apache FreeMarker2 (Auto/Dollar)"],
|
|
135138
|
-
loader: () => import("./freemarker2-
|
|
135140
|
+
loader: () => import("./freemarker2-CE5oHRkd.js").then((i) => i.TagAutoInterpolationDollar)
|
|
135139
135141
|
});
|
|
135140
135142
|
Br({
|
|
135141
135143
|
id: "freemarker2.tag-auto.interpolation-bracket",
|
|
135142
135144
|
aliases: ["FreeMarker2 (Auto/Bracket)", "Apache FreeMarker2 (Auto/Bracket)"],
|
|
135143
|
-
loader: () => import("./freemarker2-
|
|
135145
|
+
loader: () => import("./freemarker2-CE5oHRkd.js").then((i) => i.TagAutoInterpolationBracket)
|
|
135144
135146
|
});
|
|
135145
135147
|
/*!-----------------------------------------------------------------------------
|
|
135146
135148
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135178,7 +135180,7 @@ Br({
|
|
|
135178
135180
|
extensions: [".handlebars", ".hbs"],
|
|
135179
135181
|
aliases: ["Handlebars", "handlebars", "hbs"],
|
|
135180
135182
|
mimetypes: ["text/x-handlebars-template"],
|
|
135181
|
-
loader: () => import("./handlebars-
|
|
135183
|
+
loader: () => import("./handlebars-Det10JQh.js")
|
|
135182
135184
|
});
|
|
135183
135185
|
/*!-----------------------------------------------------------------------------
|
|
135184
135186
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135203,7 +135205,7 @@ Br({
|
|
|
135203
135205
|
extensions: [".html", ".htm", ".shtml", ".xhtml", ".mdoc", ".jsp", ".asp", ".aspx", ".jshtm"],
|
|
135204
135206
|
aliases: ["HTML", "htm", "html", "xhtml"],
|
|
135205
135207
|
mimetypes: ["text/html", "text/x-jshtm", "text/template", "text/ng-template"],
|
|
135206
|
-
loader: () => import("./html-
|
|
135208
|
+
loader: () => import("./html-CBIK6J-I.js")
|
|
135207
135209
|
});
|
|
135208
135210
|
/*!-----------------------------------------------------------------------------
|
|
135209
135211
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135244,7 +135246,7 @@ Br({
|
|
|
135244
135246
|
filenames: ["jakefile"],
|
|
135245
135247
|
aliases: ["JavaScript", "javascript", "js"],
|
|
135246
135248
|
mimetypes: ["text/javascript"],
|
|
135247
|
-
loader: () => import("./javascript-
|
|
135249
|
+
loader: () => import("./javascript-u-Flu-Eg.js")
|
|
135248
135250
|
});
|
|
135249
135251
|
/*!-----------------------------------------------------------------------------
|
|
135250
135252
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135319,7 +135321,7 @@ Br({
|
|
|
135319
135321
|
extensions: [".liquid", ".html.liquid"],
|
|
135320
135322
|
aliases: ["Liquid", "liquid"],
|
|
135321
135323
|
mimetypes: ["application/liquid"],
|
|
135322
|
-
loader: () => import("./liquid-
|
|
135324
|
+
loader: () => import("./liquid-DccFis0C.js")
|
|
135323
135325
|
});
|
|
135324
135326
|
/*!-----------------------------------------------------------------------------
|
|
135325
135327
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135355,7 +135357,7 @@ Br({
|
|
|
135355
135357
|
id: "mdx",
|
|
135356
135358
|
extensions: [".mdx"],
|
|
135357
135359
|
aliases: ["MDX", "mdx"],
|
|
135358
|
-
loader: () => import("./mdx-
|
|
135360
|
+
loader: () => import("./mdx-BsCpuRBv.js")
|
|
135359
135361
|
});
|
|
135360
135362
|
/*!-----------------------------------------------------------------------------
|
|
135361
135363
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135550,7 +135552,7 @@ Br({
|
|
|
135550
135552
|
extensions: [".py", ".rpy", ".pyw", ".cpy", ".gyp", ".gypi"],
|
|
135551
135553
|
aliases: ["Python", "py"],
|
|
135552
135554
|
firstLine: "^#!/.*\\bpython[0-9.-]*\\b",
|
|
135553
|
-
loader: () => import("./python-
|
|
135555
|
+
loader: () => import("./python-DotQ8nHV.js")
|
|
135554
135556
|
});
|
|
135555
135557
|
/*!-----------------------------------------------------------------------------
|
|
135556
135558
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135587,7 +135589,7 @@ Br({
|
|
|
135587
135589
|
extensions: [".cshtml"],
|
|
135588
135590
|
aliases: ["Razor", "razor"],
|
|
135589
135591
|
mimetypes: ["text/x-cshtml"],
|
|
135590
|
-
loader: () => import("./razor-
|
|
135592
|
+
loader: () => import("./razor-WQY6_Jp6.js")
|
|
135591
135593
|
});
|
|
135592
135594
|
/*!-----------------------------------------------------------------------------
|
|
135593
135595
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135839,7 +135841,7 @@ Br({
|
|
|
135839
135841
|
extensions: [".ts", ".tsx", ".cts", ".mts"],
|
|
135840
135842
|
aliases: ["TypeScript", "ts", "typescript"],
|
|
135841
135843
|
mimetypes: ["text/typescript"],
|
|
135842
|
-
loader: () => import("./typescript-
|
|
135844
|
+
loader: () => import("./typescript-D1wljP5A.js")
|
|
135843
135845
|
});
|
|
135844
135846
|
/*!-----------------------------------------------------------------------------
|
|
135845
135847
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135907,7 +135909,7 @@ Br({
|
|
|
135907
135909
|
firstLine: "(\\<\\?xml.*)|(\\<svg)|(\\<\\!doctype\\s+svg)",
|
|
135908
135910
|
aliases: ["XML", "xml"],
|
|
135909
135911
|
mimetypes: ["text/xml", "application/xml", "application/xaml+xml", "application/xml-dtd"],
|
|
135910
|
-
loader: () => import("./xml-
|
|
135912
|
+
loader: () => import("./xml-BFOzzhr6.js")
|
|
135911
135913
|
});
|
|
135912
135914
|
/*!-----------------------------------------------------------------------------
|
|
135913
135915
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -135920,7 +135922,7 @@ Br({
|
|
|
135920
135922
|
extensions: [".yaml", ".yml"],
|
|
135921
135923
|
aliases: ["YAML", "yaml", "YML", "yml"],
|
|
135922
135924
|
mimetypes: ["application/x-yaml", "text/x-yaml"],
|
|
135923
|
-
loader: () => import("./yaml-
|
|
135925
|
+
loader: () => import("./yaml-ojy1AMQ0.js")
|
|
135924
135926
|
});
|
|
135925
135927
|
/*!-----------------------------------------------------------------------------
|
|
135926
135928
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
@@ -136023,7 +136025,7 @@ var d0t = class {
|
|
|
136023
136025
|
);
|
|
136024
136026
|
vQ.languages.css = { cssDefaults: AMn, lessDefaults: RMn, scssDefaults: DMn };
|
|
136025
136027
|
function g0t() {
|
|
136026
|
-
return import("./cssMode-
|
|
136028
|
+
return import("./cssMode-Dc2LDI6c.js");
|
|
136027
136029
|
}
|
|
136028
136030
|
vQ.languages.onLanguage("less", () => {
|
|
136029
136031
|
g0t().then((i) => i.setupMode(RMn));
|
|
@@ -136129,7 +136131,7 @@ H3e.languages.html = {
|
|
|
136129
136131
|
registerHTMLLanguageService: _3e
|
|
136130
136132
|
};
|
|
136131
136133
|
function nKi() {
|
|
136132
|
-
return import("./htmlMode-
|
|
136134
|
+
return import("./htmlMode-C83xRpIW.js");
|
|
136133
136135
|
}
|
|
136134
136136
|
function _3e(i, e = j3e, t = W3e(i)) {
|
|
136135
136137
|
const r = new qXi(i, e, t);
|
|
@@ -136206,7 +136208,7 @@ var cKi = class {
|
|
|
136206
136208
|
), hKi = () => HMn().then((i) => i.getWorker());
|
|
136207
136209
|
qfe.languages.json = { jsonDefaults: FMn, getWorker: hKi };
|
|
136208
136210
|
function HMn() {
|
|
136209
|
-
return import("./jsonMode-
|
|
136211
|
+
return import("./jsonMode-BvQp0yvH.js");
|
|
136210
136212
|
}
|
|
136211
136213
|
qfe.languages.register({
|
|
136212
136214
|
id: "json",
|
|
@@ -136370,7 +136372,7 @@ Tq.languages.typescript = {
|
|
|
136370
136372
|
getJavaScriptWorker: SKi
|
|
136371
136373
|
};
|
|
136372
136374
|
function B3e() {
|
|
136373
|
-
return import("./tsMode-
|
|
136375
|
+
return import("./tsMode-BgWKyciV.js");
|
|
136374
136376
|
}
|
|
136375
136377
|
Tq.languages.onLanguage("typescript", () => B3e().then((i) => i.setupTypeScript(UMn)));
|
|
136376
136378
|
Tq.languages.onLanguage("javascript", () => B3e().then((i) => i.setupJavaScript(ZMn)));
|
|
@@ -224226,7 +224228,7 @@ function ykr(i) {
|
|
|
224226
224228
|
});
|
|
224227
224229
|
return { tenantConfig: o, pending: a };
|
|
224228
224230
|
}
|
|
224229
|
-
const I2n = { tag: "eveli-ide-0.0.
|
|
224231
|
+
const I2n = { tag: "eveli-ide-0.0.208", built: "11/04/2025" }, wHn = Os("worker/rest/api/version.GET")({
|
|
224230
224232
|
hook: vkr
|
|
224231
224233
|
});
|
|
224232
224234
|
function vkr(i) {
|
package/build/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { J as s, K as i, j as l, i as o, E as r, n as t, o as v, d as n, b as E, c, x as m, y as T, q as S, h as C, k as L, g as k, f as p, w as u, p as I, u as P, v as b, s as d, z as x, F as A, Z as g, I as h, C as f, H as R, Q as D, U as F, M as y, N as B, P as O, R as H, _ as M, S as _, T as K, W as N, Y as Q, e as U, a as W, l as Z, A as j, B as q, r as w, L as z, D as G, G as J, V, O as X, X as Y } from "./index-
|
|
1
|
+
import { J as s, K as i, j as l, i as o, E as r, n as t, o as v, d as n, b as E, c, x as m, y as T, q as S, h as C, k as L, g as k, f as p, w as u, p as I, u as P, v as b, s as d, z as x, F as A, Z as g, I as h, C as f, H as R, Q as D, U as F, M as y, N as B, P as O, R as H, _ as M, S as _, T as K, W as N, Y as Q, e as U, a as W, l as Z, A as j, B as q, r as w, L as z, D as G, G as J, V, O as X, X as Y } from "./index-DjYS5A_M.js";
|
|
2
2
|
export {
|
|
3
3
|
s as ConfigContext,
|
|
4
4
|
i as ConfigContextProvider,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { conf as t, language as e } from "./typescript-
|
|
1
|
+
import { conf as t, language as e } from "./typescript-D1wljP5A.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as Et } from "./index-
|
|
1
|
+
import { m as Et } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as o } from "./index-
|
|
1
|
+
import { m as o } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m } from "./index-
|
|
1
|
+
import { m } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as O, m as I } from "./index-
|
|
1
|
+
import { t as O, m as I } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as s } from "./index-
|
|
1
|
+
import { m as s } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as r } from "./index-
|
|
1
|
+
import { m as r } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { m as l } from "./index-
|
|
1
|
+
import { m as l } from "./index-DjYS5A_M.js";
|
|
2
2
|
/*!-----------------------------------------------------------------------------
|
|
3
3
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
4
4
|
* Version: 0.52.2(404545bded1df6ffa41ea0af4e8ddb219018c6c1)
|