@scalar/api-client 2.1.32 → 2.1.34

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.
Files changed (78) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/dist/components/CodeInput/CodeInput.vue.js +2 -2
  3. package/dist/components/ScalarHotkey.vue.d.ts +5 -6
  4. package/dist/components/ScalarHotkey.vue.d.ts.map +1 -1
  5. package/dist/components/ScalarHotkey.vue.js +9 -18
  6. package/dist/components/Sidebar/SidebarButton.vue.d.ts +4 -0
  7. package/dist/components/Sidebar/SidebarButton.vue.d.ts.map +1 -1
  8. package/dist/components/Sidebar/SidebarButton.vue.js +19 -17
  9. package/dist/index.d.ts +1 -1
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +8 -8
  12. package/dist/layouts/App/ApiClientApp.vue.d.ts.map +1 -1
  13. package/dist/layouts/App/ApiClientApp.vue.js +35 -29
  14. package/dist/layouts/App/create-api-client-app.d.ts +257 -45
  15. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  16. package/dist/layouts/App/create-api-client-app.js +10 -10
  17. package/dist/layouts/App/hotkeys.js +1 -1
  18. package/dist/layouts/Modal/create-api-client-modal.d.ts +514 -90
  19. package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
  20. package/dist/layouts/Modal/create-api-client-modal.js +24 -22
  21. package/dist/layouts/Web/ApiClientWeb.vue.d.ts.map +1 -1
  22. package/dist/layouts/Web/ApiClientWeb.vue.js +33 -27
  23. package/dist/layouts/Web/create-api-client-web.d.ts +258 -46
  24. package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
  25. package/dist/layouts/Web/create-api-client-web.js +9 -9
  26. package/dist/libs/create-client.d.ts +280 -50
  27. package/dist/libs/create-client.d.ts.map +1 -1
  28. package/dist/libs/create-client.js +25 -24
  29. package/dist/libs/hot-keys.d.ts +1 -1
  30. package/dist/libs/local-storage.d.ts +2 -2
  31. package/dist/libs/local-storage.d.ts.map +1 -1
  32. package/dist/libs/send-request.d.ts +2 -1
  33. package/dist/libs/send-request.d.ts.map +1 -1
  34. package/dist/libs/send-request.js +98 -97
  35. package/dist/router.d.ts +5 -5
  36. package/dist/router.d.ts.map +1 -1
  37. package/dist/router.js +32 -32
  38. package/dist/store/collections.d.ts +14 -4
  39. package/dist/store/collections.d.ts.map +1 -1
  40. package/dist/store/events.d.ts +1 -1
  41. package/dist/store/import-spec.d.ts +16 -31
  42. package/dist/store/import-spec.d.ts.map +1 -1
  43. package/dist/store/import-spec.js +43 -56
  44. package/dist/store/requests.d.ts +14 -14
  45. package/dist/store/store.d.ts +514 -90
  46. package/dist/store/store.d.ts.map +1 -1
  47. package/dist/store/store.js +43 -43
  48. package/dist/store/workspace.d.ts +10 -10
  49. package/dist/store/workspace.d.ts.map +1 -1
  50. package/dist/style.css +1 -1
  51. package/dist/views/Cookies/Cookies.vue.d.ts +5 -1
  52. package/dist/views/Cookies/Cookies.vue.d.ts.map +1 -1
  53. package/dist/views/Cookies/Cookies.vue2.js +64 -55
  54. package/dist/views/Environment/Environment.vue.d.ts +5 -1
  55. package/dist/views/Environment/Environment.vue.d.ts.map +1 -1
  56. package/dist/views/Environment/Environment.vue2.js +75 -66
  57. package/dist/views/Request/Request.vue.d.ts.map +1 -1
  58. package/dist/views/Request/Request.vue.js +1 -1
  59. package/dist/views/Request/Request.vue2.js +98 -91
  60. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts +2 -0
  61. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts.map +1 -1
  62. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.js +2 -2
  63. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue2.js +104 -111
  64. package/dist/views/Request/RequestSection/RequestAuth/RequestExampleAuth.vue.d.ts +5 -1
  65. package/dist/views/Request/RequestSection/RequestAuth/RequestExampleAuth.vue.d.ts.map +1 -1
  66. package/dist/views/Request/RequestSection/RequestAuth/RequestExampleAuth.vue.js +37 -34
  67. package/dist/views/Request/RequestSection/RequestSection.vue.d.ts +5 -1
  68. package/dist/views/Request/RequestSection/RequestSection.vue.d.ts.map +1 -1
  69. package/dist/views/Request/RequestSection/RequestSection.vue.js +43 -37
  70. package/dist/views/Request/RequestSidebar.vue.d.ts.map +1 -1
  71. package/dist/views/Request/RequestSidebar.vue.js +4 -4
  72. package/dist/views/Request/RequestSidebar.vue2.js +43 -42
  73. package/dist/views/Request/ResponseSection/ResponseEmpty.vue.d.ts.map +1 -1
  74. package/dist/views/Request/ResponseSection/ResponseEmpty.vue.js +1 -1
  75. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +27 -26
  76. package/dist/views/Settings/SettingsGeneral.vue.js +3 -3
  77. package/dist/views/Settings/SettingsGeneralMode.vue.js +3 -3
  78. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @scalar/api-client
2
2
 
3
+ ## 2.1.34
4
+
5
+ ### Patch Changes
6
+
7
+ - 5995f57: feat: prepare references for the client auth
8
+ - 4c1536d: style: updates active setting option ui state
9
+ - d7a6c55: fix: updates scalar hotkey component
10
+ - d7a6c55: fix: contrains event action to route
11
+ - 2456afa: fix: remove theme selection as it was breaking on external sites
12
+ - 69bda25: feat: synced up client auth with references
13
+ - Updated dependencies [7323370]
14
+ - Updated dependencies [d7a6c55]
15
+ - Updated dependencies [2456afa]
16
+ - Updated dependencies [69bda25]
17
+ - @scalar/openapi-parser@0.8.8
18
+ - @scalar/oas-utils@0.2.61
19
+ - @scalar/themes@0.9.42
20
+ - @scalar/components@0.12.60
21
+ - @scalar/use-codemirror@0.11.27
22
+
23
+ ## 2.1.33
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [7700c50]
28
+ - @scalar/components@0.12.59
29
+ - @scalar/use-codemirror@0.11.26
30
+
3
31
  ## 2.1.32
4
32
 
5
33
  ### Patch Changes
@@ -2,7 +2,7 @@ import o from "./CodeInput.vue2.js";
2
2
  /* empty css */
3
3
  /* empty css */
4
4
  import t from "../../_virtual/_plugin-vue_export-helper.js";
5
- const _ = /* @__PURE__ */ t(o, [["__scopeId", "data-v-9121d6e5"]]);
5
+ const f = /* @__PURE__ */ t(o, [["__scopeId", "data-v-37f39e63"]]);
6
6
  export {
7
- _ as default
7
+ f as default
8
8
  };
@@ -1,11 +1,10 @@
1
+ import type { HotKeyModifiers } from '@scalar/oas-utils/entities';
1
2
  declare const _default: import("vue").DefineComponent<{
2
3
  hotkey: string;
3
- }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
4
- hotkeyPressed: (key: string) => any;
5
- }, string, import("vue").PublicProps, Readonly<{
4
+ modifier?: HotKeyModifiers;
5
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
6
6
  hotkey: string;
7
- }> & Readonly<{
8
- onHotkeyPressed?: ((key: string) => any) | undefined;
9
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
7
+ modifier?: HotKeyModifiers;
8
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
10
9
  export default _default;
11
10
  //# sourceMappingURL=ScalarHotkey.vue.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ScalarHotkey.vue.d.ts","sourceRoot":"","sources":["../../src/components/ScalarHotkey.vue"],"names":[],"mappings":";YAoDU,MAAM;;;;YAAN,MAAM;;;;AAgFhB,wBAOG"}
1
+ {"version":3,"file":"ScalarHotkey.vue.d.ts","sourceRoot":"","sources":["../../src/components/ScalarHotkey.vue"],"names":[],"mappings":"AA2BA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAA;;YAOvD,MAAM;eACH,eAAe;;YADlB,MAAM;eACH,eAAe;;AA4D5B,wBAMG"}
@@ -1,25 +1,16 @@
1
- import { defineComponent as l, computed as t, openBlock as d, createElementBlock as y, mergeProps as k, toDisplayString as u } from "vue";
2
- import { isMacOS as r } from "@scalar/use-tooltip";
3
- import { useMagicKeys as f, whenever as v } from "@vueuse/core";
4
- import { keyMap as h } from "../hooks/useKeyMap.js";
5
- const P = /* @__PURE__ */ l({
1
+ import { defineComponent as a, computed as t, openBlock as d, createElementBlock as m, mergeProps as s, toDisplayString as c } from "vue";
2
+ import { isMacOS as p } from "@scalar/use-tooltip";
3
+ const y = /* @__PURE__ */ a({
6
4
  __name: "ScalarHotkey",
7
5
  props: {
8
- hotkey: {}
6
+ hotkey: {},
7
+ modifier: {}
9
8
  },
10
- emits: ["hotkeyPressed"],
11
- setup(n, { emit: a }) {
12
- const o = n, i = a, p = t(() => r() ? "⌘" : "⌃"), s = t(() => h().get(o.hotkey)), c = t(() => `${p.value} ${o.hotkey}`), m = f({
13
- passive: !1,
14
- onEventFired(e) {
15
- !r() && e.ctrlKey && e.key === s.value && (e.preventDefault(), e.stopPropagation());
16
- }
17
- });
18
- return v(m[`${r() ? "meta" : "control"}_${o.hotkey}`], () => {
19
- i("hotkeyPressed", s.value || "");
20
- }), (e, b) => (d(), y("div", k(e.$attrs, { class: "bg-b-1 border-b-3 inline-block overflow-hidden rounded border-1/2 text-xxs rounded-b px-1 font-medium uppercase" }), u(c.value), 17));
9
+ setup(i) {
10
+ const e = i, o = t(() => e.modifier || "meta"), n = t(() => `${o.value === "meta" ? p() ? "⌘" : "^" : o.value} ${e.hotkey}`);
11
+ return (r, l) => (d(), m("div", s(r.$attrs, { class: "border-b-3 inline-block overflow-hidden rounded border-1/2 text-xxs rounded-b px-1 font-medium uppercase" }), c(n.value), 17));
21
12
  }
22
13
  });
23
14
  export {
24
- P as default
15
+ y as default
25
16
  };
@@ -3,8 +3,12 @@ declare function __VLS_template(): {
3
3
  };
4
4
  declare const __VLS_component: import("vue").DefineComponent<{
5
5
  click: () => void;
6
+ hotkey?: string;
7
+ isApp?: boolean;
6
8
  }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
7
9
  click: () => void;
10
+ hotkey?: string;
11
+ isApp?: boolean;
8
12
  }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
9
13
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
10
14
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"SidebarButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Sidebar/SidebarButton.vue"],"names":[],"mappings":"AA8CA,iBAAS,cAAc;mBAwFI,GAAG;EAiB7B;AACD,QAAA,MAAM,eAAe;WAvHZ,MAAM,IAAI;;WAAV,MAAM,IAAI;iGA6HjB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AAOxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACpC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
1
+ {"version":3,"file":"SidebarButton.vue.d.ts","sourceRoot":"","sources":["../../../src/components/Sidebar/SidebarButton.vue"],"names":[],"mappings":"AAkDA,iBAAS,cAAc;mBA4EI,GAAG;EAiB7B;AACD,QAAA,MAAM,eAAe;WA7GZ,MAAM,IAAI;aACR,MAAM;YACP,OAAO;;WAFR,MAAM,IAAI;aACR,MAAM;YACP,OAAO;iGAiHf,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAAvG,wBAAwG;AAOxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACpC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
@@ -1,33 +1,35 @@
1
- import { defineComponent as c, openBlock as n, createBlock as a, unref as i, withCtx as l, renderSlot as s, createVNode as p } from "vue";
2
- import d from "../ScalarHotkey.vue.js";
3
- import { ScalarButton as u } from "@scalar/components";
4
- const b = /* @__PURE__ */ c({
1
+ import { defineComponent as a, openBlock as t, createBlock as o, unref as i, withCtx as c, renderSlot as p, createCommentVNode as s } from "vue";
2
+ import u from "../ScalarHotkey.vue.js";
3
+ import { ScalarButton as d } from "@scalar/components";
4
+ const f = /* @__PURE__ */ a({
5
5
  __name: "SidebarButton",
6
6
  props: {
7
- click: { type: Function }
7
+ click: { type: Function },
8
+ hotkey: {},
9
+ isApp: { type: Boolean }
8
10
  },
9
- setup(e) {
10
- const o = e, t = () => {
11
- o.click();
11
+ setup(r) {
12
+ const n = r, l = () => {
13
+ n.click();
12
14
  };
13
- return (r, m) => (n(), a(i(u), {
15
+ return (e, m) => (t(), o(i(d), {
14
16
  class: "bg-b-1 text-c-1 hover:bg-b-2 group relative w-auto md:w-full border-1/2 px-2 py-1 md:p-1.5 h-auto",
15
17
  icon: "Plus",
16
18
  variant: "outlined",
17
- onClick: t
19
+ onClick: l
18
20
  }, {
19
- default: l(() => [
20
- s(r.$slots, "title"),
21
- p(d, {
21
+ default: c(() => [
22
+ p(e.$slots, "title"),
23
+ e.hotkey && !e.isApp ? (t(), o(u, {
24
+ key: 0,
22
25
  class: "hidden md:block absolute right-2 group-hover:opacity-80 text-c-2 add-item-hotkey",
23
- hotkey: "K",
24
- onHotkeyPressed: t
25
- })
26
+ hotkey: e.hotkey
27
+ }, null, 8, ["hotkey"])) : s("", !0)
26
28
  ]),
27
29
  _: 3
28
30
  }));
29
31
  }
30
32
  });
31
33
  export {
32
- b as default
34
+ f as default
33
35
  };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  export * from './layouts/Modal/index.js';
2
2
  export * from './layouts/App/index.js';
3
3
  export { useWorkspace } from './store/store.js';
4
- export { createModalRouter, createWebHashRouter, router } from './router.js';
4
+ export { createModalRouter, createWebHashRouter, createWebHistoryRouter, } from './router.js';
5
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAE7B,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AAC5C,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAA;AAC/B,cAAc,eAAe,CAAA;AAE7B,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AAC5C,OAAO,EACL,iBAAiB,EACjB,mBAAmB,EACnB,sBAAsB,GACvB,MAAM,UAAU,CAAA"}
package/dist/index.js CHANGED
@@ -1,18 +1,18 @@
1
1
  import { useWorkspace as o } from "./store/store.js";
2
- import { createModalRouter as a, createWebHashRouter as i, router as l } from "./router.js";
3
- import { default as c } from "./layouts/App/ApiClientApp.vue.js";
2
+ import { createModalRouter as a, createWebHashRouter as i, createWebHistoryRouter as l } from "./router.js";
3
+ import { default as f } from "./layouts/App/ApiClientApp.vue.js";
4
4
  /* empty css */
5
5
  import { default as A } from "./layouts/Modal/ApiClientModal.vue.js";
6
- import { createApiClientModal as n, createApiClientModalSync as u } from "./layouts/Modal/create-api-client-modal.js";
7
- import { createApiClientApp as s } from "./layouts/App/create-api-client-app.js";
6
+ import { createApiClientModal as n, createApiClientModalSync as s } from "./layouts/Modal/create-api-client-modal.js";
7
+ import { createApiClientApp as x } from "./layouts/App/create-api-client-app.js";
8
8
  export {
9
- c as ApiClientApp,
9
+ f as ApiClientApp,
10
10
  A as ApiClientModal,
11
- s as createApiClientApp,
11
+ x as createApiClientApp,
12
12
  n as createApiClientModal,
13
- u as createApiClientModalSync,
13
+ s as createApiClientModalSync,
14
14
  a as createModalRouter,
15
15
  i as createWebHashRouter,
16
- l as router,
16
+ l as createWebHistoryRouter,
17
17
  o as useWorkspace
18
18
  };
@@ -1 +1 @@
1
- {"version":3,"file":"ApiClientApp.vue.d.ts","sourceRoot":"","sources":["../../../src/layouts/App/ApiClientApp.vue"],"names":[],"mappings":";;cA8R8B,MAAM;aAAO,MAAM;;;;cAAnB,MAAM;aAAO,MAAM;;;AANjD,wBAQG"}
1
+ {"version":3,"file":"ApiClientApp.vue.d.ts","sourceRoot":"","sources":["../../../src/layouts/App/ApiClientApp.vue"],"names":[],"mappings":";;cAgU8B,MAAM;aAAO,MAAM;;;;cAAnB,MAAM;aAAO,MAAM;;;AANjD,wBAQG"}
@@ -1,52 +1,58 @@
1
- import { defineComponent as v, ref as w, onBeforeMount as T, onMounted as _, onBeforeUnmount as k, computed as y, openBlock as t, createElementBlock as h, Fragment as N, createElementVNode as S, createVNode as n, unref as r, createBlock as a, withCtx as c, KeepAlive as E, resolveDynamicComponent as K, createCommentVNode as b } from "vue";
2
- import C from "../../components/TopNav/TopNav.vue.js";
3
- import H from "./MainLayout.vue.js";
1
+ import { defineComponent as v, ref as T, onBeforeMount as _, onMounted as y, onBeforeUnmount as h, computed as k, openBlock as n, createElementBlock as K, Fragment as C, createElementVNode as N, createVNode as a, unref as r, createBlock as m, withCtx as p, KeepAlive as S, resolveDynamicComponent as E, createCommentVNode as H } from "vue";
2
+ import b from "../../components/TopNav/TopNav.vue.js";
3
+ import D from "./MainLayout.vue.js";
4
4
  import { addScalarClassesToHeadless as A } from "@scalar/components";
5
5
  import { getThemeStyles as B } from "@scalar/themes";
6
- import { ScalarToasts as D } from "@scalar/use-toasts";
7
- import { RouterView as L } from "vue-router";
8
- import { APP_HOTKEYS as M } from "./hotkeys.js";
6
+ import { ScalarToasts as L } from "@scalar/use-toasts";
7
+ import { RouterView as M } from "vue-router";
8
+ import { APP_HOTKEYS as P } from "./hotkeys.js";
9
9
  import { useDarkModeState as V } from "../../hooks/useDarkModeState.js";
10
10
  import { DEFAULT_HOTKEYS as W, handleHotKeyDown as g } from "../../libs/hot-keys.js";
11
11
  import { useWorkspace as x } from "../../store/store.js";
12
- const F = ["innerHTML"], X = /* @__PURE__ */ v({
12
+ const F = ["innerHTML"], Z = /* @__PURE__ */ v({
13
13
  __name: "ApiClientApp",
14
14
  emits: ["newTab"],
15
15
  setup(O) {
16
- const i = { ...W, ...M }, m = w(null), p = (o) => {
17
- m.value = o;
16
+ const d = { ...W, ...P }, l = T(null), u = (e) => {
17
+ l.value = e;
18
18
  };
19
19
  V();
20
- const e = x(), { events: u } = e;
21
- T(() => A());
22
- const s = (o) => g(o, u.hotKeys, { hotKeys: i });
23
- _(() => window.addEventListener("keydown", s)), k(() => window.removeEventListener("keydown", s));
24
- const d = y(
25
- () => e.activeWorkspace.value && `<style>${B(e.activeWorkspace.value.themeId)}</style>`
20
+ const o = x(), { events: t } = o;
21
+ _(() => A());
22
+ const s = (e) => g(e, t.hotKeys, { hotKeys: d }), c = (e) => {
23
+ e && e.openCommandPalette && (e.openCommandPalette.preventDefault(), t.commandPalette.emit());
24
+ };
25
+ y(() => {
26
+ window.addEventListener("keydown", s), t.hotKeys.on(c);
27
+ }), h(() => {
28
+ window.removeEventListener("keydown", s), t.hotKeys.off(c);
29
+ });
30
+ const f = k(
31
+ () => o.activeWorkspace.value && `<style>${B(o.activeWorkspace.value.themeId)}</style>`
26
32
  );
27
- return (o, P) => {
28
- var l;
29
- return t(), h(N, null, [
30
- S("div", { innerHTML: d.value }, null, 8, F),
31
- n(C, { openNewTab: m.value }, null, 8, ["openNewTab"]),
32
- (l = r(e).activeWorkspace.value) != null && l.uid ? (t(), a(H, { key: 0 }, {
33
- default: c(() => [
34
- n(r(L), { onNewTab: p }, {
35
- default: c(({ Component: f }) => [
36
- (t(), a(E, null, [
37
- (t(), a(K(f)))
33
+ return (e, U) => {
34
+ var i;
35
+ return n(), K(C, null, [
36
+ N("div", { innerHTML: f.value }, null, 8, F),
37
+ a(b, { openNewTab: l.value }, null, 8, ["openNewTab"]),
38
+ (i = r(o).activeWorkspace.value) != null && i.uid ? (n(), m(D, { key: 0 }, {
39
+ default: p(() => [
40
+ a(r(M), { onNewTab: u }, {
41
+ default: p(({ Component: w }) => [
42
+ (n(), m(S, null, [
43
+ (n(), m(E(w)))
38
44
  ], 1024))
39
45
  ]),
40
46
  _: 1
41
47
  })
42
48
  ]),
43
49
  _: 1
44
- })) : b("", !0),
45
- n(r(D))
50
+ })) : H("", !0),
51
+ a(r(L))
46
52
  ], 64);
47
53
  };
48
54
  }
49
55
  });
50
56
  export {
51
- X as default
57
+ Z as default
52
58
  };