@scalar/api-client 2.5.27 → 2.5.28
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/CHANGELOG.md +19 -0
- package/dist/analytics.d.ts +69 -0
- package/dist/analytics.d.ts.map +1 -0
- package/dist/analytics.js +25 -0
- package/dist/components/DataTable/DataTableInput.vue.d.ts +1 -1
- package/dist/components/DataTable/DataTableInput.vue.d.ts.map +1 -1
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/components/Sidebar/SidebarButton.vue.js +4 -4
- package/dist/hooks/useClientConfig.d.ts +3 -0
- package/dist/hooks/useClientConfig.d.ts.map +1 -1
- package/dist/index.js +9 -8
- package/dist/layouts/App/create-api-client-app.d.ts +78 -45
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/App/create-api-client-app.js +23 -14
- package/dist/layouts/App/index.js +4 -3
- package/dist/layouts/Modal/create-api-client-modal.d.ts +90 -90
- package/dist/layouts/Web/create-api-client-web.d.ts +78 -45
- package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
- package/dist/layouts/Web/create-api-client-web.js +24 -15
- package/dist/layouts/Web/index.js +4 -3
- package/dist/libs/create-client.d.ts +45 -45
- package/dist/libs/hot-keys.d.ts +1 -1
- package/dist/store/collections.d.ts +4 -4
- package/dist/store/cookies.d.ts +4 -4
- package/dist/store/environment.d.ts +4 -4
- package/dist/store/request-example.d.ts +4 -4
- package/dist/store/requests.d.ts +4 -4
- package/dist/store/security-schemes.d.ts +16 -16
- package/dist/store/store.d.ts +45 -45
- package/dist/store/tags.d.ts +4 -4
- package/dist/store/workspace.d.ts +4 -4
- package/dist/style.css +1 -1
- package/dist/views/Request/RequestRoot.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestRoot.vue.js +2 -2
- package/dist/views/Request/RequestRoot.vue2.js +84 -78
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTableInput.vue.d.ts +1 -1
- package/dist/views/Request/RequestSection/RequestAuth/RequestAuthDataTableInput.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebarItemMenu.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebarItemMenu.vue.js +2 -2
- package/dist/views/Request/RequestSidebarItemMenu.vue2.js +27 -27
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @scalar/api-client
|
|
2
2
|
|
|
3
|
+
## 2.5.28
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c470c60: fix(components): update scalar menu button flex
|
|
8
|
+
- abe3842: Add analytic events to api-client + add telemetry option
|
|
9
|
+
- 5a7d388: fix(api-client): don't apply block layout on desktop
|
|
10
|
+
- Updated dependencies [c470c60]
|
|
11
|
+
- Updated dependencies [abe3842]
|
|
12
|
+
- @scalar/components@0.14.29
|
|
13
|
+
- @scalar/types@0.2.15
|
|
14
|
+
- @scalar/use-codemirror@0.12.30
|
|
15
|
+
- @scalar/oas-utils@0.4.24
|
|
16
|
+
- @scalar/openapi-parser@0.20.2
|
|
17
|
+
- @scalar/snippetz@0.4.9
|
|
18
|
+
- @scalar/themes@0.13.16
|
|
19
|
+
- @scalar/workspace-store@0.15.1
|
|
20
|
+
- @scalar/postman-to-openapi@0.3.27
|
|
21
|
+
|
|
3
22
|
## 2.5.27
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
/** Centralized method to control creation of analytics clients. */
|
|
2
|
+
export declare function createAnalyticsClient(): {
|
|
3
|
+
capture: <E extends "client-send-request" | "page-view">(event: E, ...[data]: import("zod").input<{
|
|
4
|
+
readonly 'page-view': import("zod").ZodObject<{
|
|
5
|
+
to: import("zod").ZodString;
|
|
6
|
+
from: import("zod").ZodString;
|
|
7
|
+
hostname: import("zod").ZodString;
|
|
8
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9
|
+
to: string;
|
|
10
|
+
from: string;
|
|
11
|
+
hostname: string;
|
|
12
|
+
}, {
|
|
13
|
+
to: string;
|
|
14
|
+
from: string;
|
|
15
|
+
hostname: string;
|
|
16
|
+
}>;
|
|
17
|
+
readonly 'client-send-request': import("zod").ZodUndefined;
|
|
18
|
+
}[E]> extends undefined ? [] : [import("zod").input<{
|
|
19
|
+
readonly 'page-view': import("zod").ZodObject<{
|
|
20
|
+
to: import("zod").ZodString;
|
|
21
|
+
from: import("zod").ZodString;
|
|
22
|
+
hostname: import("zod").ZodString;
|
|
23
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
24
|
+
to: string;
|
|
25
|
+
from: string;
|
|
26
|
+
hostname: string;
|
|
27
|
+
}, {
|
|
28
|
+
to: string;
|
|
29
|
+
from: string;
|
|
30
|
+
hostname: string;
|
|
31
|
+
}>;
|
|
32
|
+
readonly 'client-send-request': import("zod").ZodUndefined;
|
|
33
|
+
}[E]>]) => Promise<void>;
|
|
34
|
+
};
|
|
35
|
+
/** Gets the correct analytics client based on the layout. */
|
|
36
|
+
export declare function useAnalytics(): {
|
|
37
|
+
capture: <E extends "client-send-request" | "page-view">(event: E, ...[data]: import("zod").input<{
|
|
38
|
+
readonly 'page-view': import("zod").ZodObject<{
|
|
39
|
+
to: import("zod").ZodString;
|
|
40
|
+
from: import("zod").ZodString;
|
|
41
|
+
hostname: import("zod").ZodString;
|
|
42
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
43
|
+
to: string;
|
|
44
|
+
from: string;
|
|
45
|
+
hostname: string;
|
|
46
|
+
}, {
|
|
47
|
+
to: string;
|
|
48
|
+
from: string;
|
|
49
|
+
hostname: string;
|
|
50
|
+
}>;
|
|
51
|
+
readonly 'client-send-request': import("zod").ZodUndefined;
|
|
52
|
+
}[E]> extends undefined ? [] : [import("zod").input<{
|
|
53
|
+
readonly 'page-view': import("zod").ZodObject<{
|
|
54
|
+
to: import("zod").ZodString;
|
|
55
|
+
from: import("zod").ZodString;
|
|
56
|
+
hostname: import("zod").ZodString;
|
|
57
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
58
|
+
to: string;
|
|
59
|
+
from: string;
|
|
60
|
+
hostname: string;
|
|
61
|
+
}, {
|
|
62
|
+
to: string;
|
|
63
|
+
from: string;
|
|
64
|
+
hostname: string;
|
|
65
|
+
}>;
|
|
66
|
+
readonly 'client-send-request': import("zod").ZodUndefined;
|
|
67
|
+
}[E]>]) => Promise<void>;
|
|
68
|
+
} | undefined;
|
|
69
|
+
//# sourceMappingURL=analytics.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"analytics.d.ts","sourceRoot":"","sources":["../src/analytics.ts"],"names":[],"mappings":"AAOA,oEAAoE;AACpE,wBAAgB,qBAAqB;uEAQpC,GAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAHJ;AAED,6DAA6D;AAC7D,wBAAgB,YAAY;uEAA3B,GAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAiBJ"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { analyticsFactory as n } from "@scalar/analytics-client";
|
|
2
|
+
import { useClientConfig as o } from "./hooks/useClientConfig.js";
|
|
3
|
+
import { analytics as i } from "./layouts/Web/create-api-client-web.js";
|
|
4
|
+
import { analytics as a } from "./layouts/App/create-api-client-app.js";
|
|
5
|
+
import { useLayout as r } from "./hooks/useLayout.js";
|
|
6
|
+
function y() {
|
|
7
|
+
return n(
|
|
8
|
+
"https://api.scalar.com",
|
|
9
|
+
() => null
|
|
10
|
+
// There is no auth to return.
|
|
11
|
+
);
|
|
12
|
+
}
|
|
13
|
+
function f() {
|
|
14
|
+
const { layout: t } = r();
|
|
15
|
+
return o().value.telemetry ? {
|
|
16
|
+
desktop: a,
|
|
17
|
+
web: i,
|
|
18
|
+
modal: void 0
|
|
19
|
+
// There are currently no analytics for the modal layout.
|
|
20
|
+
}[t] : void 0;
|
|
21
|
+
}
|
|
22
|
+
export {
|
|
23
|
+
y as createAnalyticsClient,
|
|
24
|
+
f as useAnalytics
|
|
25
|
+
};
|
|
@@ -40,8 +40,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
|
|
|
40
40
|
onInputFocus?: (() => any) | undefined;
|
|
41
41
|
onInputBlur?: (() => any) | undefined;
|
|
42
42
|
}>, {
|
|
43
|
-
required: boolean;
|
|
44
43
|
readOnly: boolean;
|
|
44
|
+
required: boolean;
|
|
45
45
|
lineWrapping: boolean;
|
|
46
46
|
canAddCustomEnumValue: boolean;
|
|
47
47
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DataTableInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/DataTableInput.vue"],"names":[],"mappings":"AAsMA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAA;AACzE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAA;AAIrE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAC1D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAK/C,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACzB,sEAAsE;IACtE,cAAc,CAAC,EAAE,YAAY,GAAG,SAAS,CAAA;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,0EAA0E;IAC1E,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;IACf,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,WAAW,CAAA;IACxB,YAAY,EAAE,WAAW,EAAE,CAAA;IAC3B,SAAS,EAAE,SAAS,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAChC,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAC;AA0SJ,QAAA,IAAI,OAAO,IAAU,EAAuB,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACvF,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAiC7C,QAAA,MAAM,eAAe;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"DataTableInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/DataTable/DataTableInput.vue"],"names":[],"mappings":"AAsMA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAA;AACzE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sCAAsC,CAAA;AAIrE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAA;AAC1D,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAK/C,KAAK,WAAW,GAAG;IACf,EAAE,CAAC,EAAE,MAAM,CAAA;IACX,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACzB,sEAAsE;IACtE,cAAc,CAAC,EAAE,YAAY,GAAG,SAAS,CAAA;IACzC,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,UAAU,EAAE,MAAM,GAAG,MAAM,CAAA;IAC3B,0EAA0E;IAC1E,qBAAqB,CAAC,EAAE,OAAO,CAAA;IAC/B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,IAAI,CAAC,EAAE,MAAM,EAAE,CAAA;IACf,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,GAAG,CAAC,EAAE,MAAM,CAAA;IACZ,WAAW,EAAE,WAAW,CAAA;IACxB,YAAY,EAAE,WAAW,EAAE,CAAA;IAC3B,SAAS,EAAE,SAAS,CAAA;IACpB,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAChC,YAAY,CAAC,EAAE,OAAO,CAAA;CACvB,CAAC;AA0SJ,QAAA,IAAI,OAAO,IAAU,EAAuB,QAAQ,IAAW,EAAE,QAAQ,IAAY,CAAE;AACvF,KAAK,WAAW,GAAG,EAAE,GACnB;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,OAAO,KAAK,GAAG,CAAA;CAAE,GAC5C;IAAE,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,GAC7C;IAAE,IAAI,CAAC,EAAE,CAAC,KAAK,EAAE,OAAO,QAAQ,KAAK,GAAG,CAAA;CAAE,CAAC;AAiC7C,QAAA,MAAM,eAAe;;;;;;;;;;;cAxVN,OAAO;cAJP,OAAO;kBAYH,OAAO;2BATE,OAAO;6EAiWjC,CAAC;wBACkB,eAAe,CAAC,OAAO,eAAe,EAAE,WAAW,CAAC;AAAzE,wBAA0E;AAa1E,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -4,9 +4,9 @@ type __VLS_Props = {
|
|
|
4
4
|
isEditable?: boolean;
|
|
5
5
|
};
|
|
6
6
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
7
|
-
change: (value: "
|
|
7
|
+
change: (value: "head" | "delete" | "get" | "options" | "connect" | "patch" | "post" | "put" | "trace") => any;
|
|
8
8
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
9
|
-
onChange?: ((value: "
|
|
9
|
+
onChange?: ((value: "head" | "delete" | "get" | "options" | "connect" | "patch" | "post" | "put" | "trace") => any) | undefined;
|
|
10
10
|
}>, {
|
|
11
11
|
isEditable: boolean;
|
|
12
12
|
isSquare: boolean;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as u, createBlock as
|
|
1
|
+
import { defineComponent as u, createBlock as o, openBlock as r, unref as e, withCtx as i, renderSlot as p, createCommentVNode as s } from "vue";
|
|
2
2
|
import { ScalarButton as d, ScalarHotkey as k } from "@scalar/components";
|
|
3
3
|
import { useLayout as m } from "../../hooks/useLayout.js";
|
|
4
4
|
const g = /* @__PURE__ */ u({
|
|
@@ -11,7 +11,7 @@ const g = /* @__PURE__ */ u({
|
|
|
11
11
|
const l = a, { layout: n } = m(), c = () => {
|
|
12
12
|
l.click();
|
|
13
13
|
};
|
|
14
|
-
return (t, h) => (r(), e(
|
|
14
|
+
return (t, h) => (r(), o(e(d), {
|
|
15
15
|
class: "bg-b-1 text-c-1 hover:bg-b-2 group relative h-auto w-auto border px-2 py-1 md:w-full md:p-1.5",
|
|
16
16
|
icon: "Plus",
|
|
17
17
|
variant: "outlined",
|
|
@@ -19,9 +19,9 @@ const g = /* @__PURE__ */ u({
|
|
|
19
19
|
}, {
|
|
20
20
|
default: i(() => [
|
|
21
21
|
p(t.$slots, "title"),
|
|
22
|
-
t.hotkey &&
|
|
22
|
+
t.hotkey && e(n) === "desktop" ? (r(), o(e(k), {
|
|
23
23
|
key: 0,
|
|
24
|
-
class: "text-c-2 add-item-hotkey absolute right-2 hidden group-hover:opacity-80 md:
|
|
24
|
+
class: "text-c-2 add-item-hotkey absolute right-2 hidden group-hover:opacity-80 md:flex",
|
|
25
25
|
hotkey: t.hotkey
|
|
26
26
|
}, null, 8, ["hotkey"])) : s("", !0)
|
|
27
27
|
]),
|
|
@@ -8,6 +8,7 @@ export declare const useClientConfig: () => Ref<{
|
|
|
8
8
|
operationTitleSource: "path" | "summary";
|
|
9
9
|
theme: "alternate" | "default" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "laserwave" | "none";
|
|
10
10
|
persistAuth: boolean;
|
|
11
|
+
telemetry: boolean;
|
|
11
12
|
title?: string | undefined | undefined;
|
|
12
13
|
url?: string | undefined | undefined;
|
|
13
14
|
content?: string | Record<string, any> | ((...args: unknown[]) => Record<string, any>) | null | undefined;
|
|
@@ -55,6 +56,7 @@ export declare const useClientConfig: () => Ref<{
|
|
|
55
56
|
operationTitleSource: "path" | "summary";
|
|
56
57
|
theme: "alternate" | "default" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "laserwave" | "none";
|
|
57
58
|
persistAuth: boolean;
|
|
59
|
+
telemetry: boolean;
|
|
58
60
|
title?: string | undefined;
|
|
59
61
|
url?: string | undefined;
|
|
60
62
|
content?: string | Record<string, any> | ((...args: unknown[]) => Record<string, any>) | null | undefined;
|
|
@@ -102,6 +104,7 @@ export declare const useClientConfig: () => Ref<{
|
|
|
102
104
|
operationTitleSource: "path" | "summary";
|
|
103
105
|
theme: "alternate" | "default" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "laserwave" | "none";
|
|
104
106
|
persistAuth: boolean;
|
|
107
|
+
telemetry: boolean;
|
|
105
108
|
title?: string | undefined | undefined;
|
|
106
109
|
url?: string | undefined | undefined;
|
|
107
110
|
content?: string | Record<string, any> | ((...args: unknown[]) => Record<string, any>) | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"useClientConfig.d.ts","sourceRoot":"","sources":["../../src/hooks/useClientConfig.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"useClientConfig.d.ts","sourceRoot":"","sources":["../../src/hooks/useClientConfig.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,sBAAsB,EAAgC,MAAM,6BAA6B,CAAA;AACvG,OAAO,EAAE,KAAK,YAAY,EAAE,KAAK,GAAG,EAAe,MAAM,KAAK,CAAA;AAE9D,eAAO,MAAM,2BAA2B,EAAe,YAAY,CAAC,GAAG,CAAC,sBAAsB,CAAC,CAAC,CAAA;AAEhG,0DAA0D;AAC1D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;sCACiod,GAAI;gBAAuD,GAAG;;aAAyD,CAAC;6BAAiC,CAAC;qBAAyB,CAAC;yBAA+C,CAAC;qBAAgC,CAAC;;8BAA8F,CAAC;qBAAyB,CAAC;yBAA+C,CAAC;qBAAgC,CAAC;;;aAAoG,CAAC;2BAA+B,CAAC;;eAA8D,GAAI;8BAAqF,CAAC;;;eAAgH,GAAI;;;;;;;;;;;;+CAA/yD,GAAG;;;aAAsH,CAAC;WAAiC,CAAC;eAAqC,CAAC,mCAAmC,GAAG;YAAyE,CAAC;;;;;;;;sCAA6pB,GAAI;gBAAuD,GAAG;;aAAyD,CAAC;6BAAiC,CAAC;qBAAyB,CAAC;yBAA+C,CAAC;qBAAgC,CAAC;;8BAA8F,CAAC;qBAAyB,CAAC;yBAA+C,CAAC;qBAAgC,CAAC;;;aAAoG,CAAC;2BAA+B,CAAC;;eAA8D,GAAI;8BAAqF,CAAC;;;eAAgH,GAAI;;;;;;;;;;;;;;;;;;;;;;;;;;sCAAh2B,GAAI;gBAAuD,GAAG;;aAAyD,CAAC;6BAAiC,CAAC;qBAAyB,CAAC;yBAA+C,CAAC;qBAAgC,CAAC;;8BAA8F,CAAC;qBAAyB,CAAC;yBAA+C,CAAC;qBAAgC,CAAC;;;aAAoG,CAAC;2BAA+B,CAAC;;eAA8D,GAAI;8BAAqF,CAAC;;;eAAgH,GAAI;;;EADx4e,CAAA"}
|
package/dist/index.js
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
import "./style.css.js";
|
|
2
|
-
import { useWorkspace as
|
|
2
|
+
import { useWorkspace as a } from "./store/store.js";
|
|
3
3
|
import { createModalRouter as i, createWebHashRouter as l, createWebHistoryRouter as c } from "./router.js";
|
|
4
4
|
import { default as m } from "./layouts/App/ApiClientApp.vue.js";
|
|
5
5
|
import "./layouts/App/ApiClientApp.vue2.js";
|
|
6
|
-
import { default as
|
|
7
|
-
import { createApiClientModal as
|
|
8
|
-
import {
|
|
6
|
+
import { default as s } from "./layouts/Modal/ApiClientModal.vue.js";
|
|
7
|
+
import { createApiClientModal as d, createApiClientModalSync as u } from "./layouts/Modal/create-api-client-modal.js";
|
|
8
|
+
import { analytics as C, createApiClientApp as M } from "./layouts/App/create-api-client-app.js";
|
|
9
9
|
export {
|
|
10
10
|
m as ApiClientApp,
|
|
11
|
-
|
|
12
|
-
C as
|
|
13
|
-
|
|
11
|
+
s as ApiClientModal,
|
|
12
|
+
C as analytics,
|
|
13
|
+
M as createApiClientApp,
|
|
14
|
+
d as createApiClientModal,
|
|
14
15
|
u as createApiClientModalSync,
|
|
15
16
|
i as createModalRouter,
|
|
16
17
|
l as createWebHashRouter,
|
|
17
18
|
c as createWebHistoryRouter,
|
|
18
|
-
|
|
19
|
+
a as useWorkspace
|
|
19
20
|
};
|