@scalar/api-client 2.22.2 → 2.22.3
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 +21 -0
- package/dist/style.css +1 -1
- package/dist/v2/blocks/request-block/helpers/get-default-headers.d.ts.map +1 -1
- package/dist/v2/blocks/request-block/helpers/get-default-headers.js +9 -9
- package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue.js +2 -2
- package/dist/v2/blocks/scalar-address-bar-block/components/AddressBar.vue2.js +100 -91
- package/dist/v2/blocks/scalar-address-bar-block/components/AddressBarHistory.vue.d.ts +2 -0
- package/dist/v2/blocks/scalar-address-bar-block/components/AddressBarHistory.vue.d.ts.map +1 -1
- package/dist/v2/blocks/scalar-address-bar-block/components/AddressBarHistory.vue.js +2 -2
- package/dist/v2/blocks/scalar-address-bar-block/components/AddressBarHistory.vue2.js +43 -37
- package/dist/v2/components/layout/ValueEmitter.vue.d.ts +6 -2
- package/dist/v2/components/layout/ValueEmitter.vue.d.ts.map +1 -1
- package/dist/v2/components/layout/ValueEmitter.vue.js +10 -10
- package/dist/v2/components/server/ServerDropdown.vue.d.ts +2 -0
- package/dist/v2/components/server/ServerDropdown.vue.d.ts.map +1 -1
- package/dist/v2/components/server/ServerDropdown.vue.js +48 -42
- package/dist/v2/features/app/App.vue.d.ts.map +1 -1
- package/dist/v2/features/app/App.vue.js +48 -46
- package/dist/v2/features/app/app-state.d.ts +23 -12
- package/dist/v2/features/app/app-state.d.ts.map +1 -1
- package/dist/v2/features/app/app-state.js +194 -163
- package/dist/v2/features/app/helpers/routes.d.ts +1 -1
- package/dist/v2/features/app/helpers/routes.d.ts.map +1 -1
- package/dist/v2/features/app/helpers/routes.js +7 -7
- package/dist/v2/features/operation/Operation.vue.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/package.json +10 -10
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { defineComponent as y, computed as
|
|
2
|
-
import { ScalarPopover as B, ScalarButton as
|
|
3
|
-
import { ScalarIconPlus as V, ScalarIconPencilSimple as
|
|
1
|
+
import { defineComponent as y, computed as m, createBlock as f, openBlock as o, unref as n, withCtx as u, createVNode as l, createElementBlock as d, Fragment as v, createElementVNode as s, createTextVNode as U, toDisplayString as C, createCommentVNode as w, renderList as h } from "vue";
|
|
2
|
+
import { ScalarPopover as B, ScalarButton as $, ScalarFloatingBackdrop as N } from "@scalar/components";
|
|
3
|
+
import { ScalarIconPlus as V, ScalarIconPencilSimple as z } from "@scalar/icons";
|
|
4
|
+
import D from "../layout/ValueEmitter.vue.js";
|
|
4
5
|
import I from "./ServerDropdownItem.vue.js";
|
|
5
|
-
const P = ["onClick"],
|
|
6
|
+
const P = ["onClick"], q = { class: "flex items-center justify-center" }, A = /* @__PURE__ */ y({
|
|
6
7
|
__name: "ServerDropdown",
|
|
7
8
|
props: {
|
|
8
9
|
servers: {},
|
|
@@ -10,64 +11,69 @@ const P = ["onClick"], $ = { class: "flex items-center justify-center" }, W = /*
|
|
|
10
11
|
target: {},
|
|
11
12
|
layout: {}
|
|
12
13
|
},
|
|
13
|
-
emits: ["update:selectedServer", "update:variable", "update:servers"],
|
|
14
|
-
setup(
|
|
15
|
-
const
|
|
16
|
-
() =>
|
|
17
|
-
id:
|
|
18
|
-
label:
|
|
14
|
+
emits: ["update:selectedServer", "update:variable", "update:servers", "update:open"],
|
|
15
|
+
setup(t, { emit: x }) {
|
|
16
|
+
const a = x, S = m(
|
|
17
|
+
() => t.servers.map((i) => ({
|
|
18
|
+
id: i.url,
|
|
19
|
+
label: i.url ?? "Unknown server"
|
|
19
20
|
}))
|
|
20
|
-
),
|
|
21
|
-
return (
|
|
21
|
+
), b = m(() => t.server?.url?.endsWith("/") ? t.server.url.slice(0, -1) : t.server?.url || "");
|
|
22
|
+
return (i, e) => (o(), f(n(B), {
|
|
22
23
|
class: "max-h-[inherit] p-0 text-base",
|
|
23
24
|
focus: "",
|
|
24
25
|
offset: 0,
|
|
25
|
-
placement: "bottom
|
|
26
|
+
placement: "bottom",
|
|
26
27
|
resize: "",
|
|
27
|
-
target:
|
|
28
|
-
teleport: `#${
|
|
28
|
+
target: t.target,
|
|
29
|
+
teleport: `#${t.target}`
|
|
29
30
|
}, {
|
|
30
|
-
popover:
|
|
31
|
+
popover: u(({ close: p }) => [
|
|
31
32
|
s("div", {
|
|
32
|
-
class: "custom-scroll flex max-h-[inherit] flex-col gap-1
|
|
33
|
-
onClick:
|
|
33
|
+
class: "custom-scroll flex max-h-[inherit] flex-col gap-1 p-1",
|
|
34
|
+
onClick: p
|
|
34
35
|
}, [
|
|
35
|
-
(
|
|
36
|
-
key:
|
|
37
|
-
server:
|
|
38
|
-
serverOption:
|
|
36
|
+
(o(!0), d(v, null, h(S.value, (r, g) => (o(), f(I, {
|
|
37
|
+
key: r.id,
|
|
38
|
+
server: t.server,
|
|
39
|
+
serverOption: r,
|
|
39
40
|
type: "request",
|
|
40
|
-
"onUpdate:selectedServer": (
|
|
41
|
-
"onUpdate:variable": (
|
|
41
|
+
"onUpdate:selectedServer": (c) => a("update:selectedServer", { url: r.id }),
|
|
42
|
+
"onUpdate:variable": (c, k) => a("update:variable", { index: g, key: c, value: k })
|
|
42
43
|
}, null, 8, ["server", "serverOption", "onUpdate:selectedServer", "onUpdate:variable"]))), 128)),
|
|
43
|
-
|
|
44
|
+
t.layout !== "modal" ? (o(), d("button", {
|
|
44
45
|
key: 0,
|
|
45
46
|
class: "text-xxs hover:bg-b-2 flex cursor-pointer items-center gap-1.5 rounded p-1.75",
|
|
46
47
|
type: "button",
|
|
47
|
-
onClick:
|
|
48
|
+
onClick: e[0] || (e[0] = (r) => a("update:servers"))
|
|
48
49
|
}, [
|
|
49
|
-
s("div",
|
|
50
|
-
n(
|
|
50
|
+
s("div", q, [
|
|
51
|
+
l(n(z), { class: "size-4" })
|
|
51
52
|
]),
|
|
52
|
-
|
|
53
|
+
e[5] || (e[5] = s("span", null, "Update Servers", -1))
|
|
53
54
|
])) : w("", !0)
|
|
54
55
|
], 8, P)
|
|
55
56
|
]),
|
|
56
|
-
backdrop:
|
|
57
|
-
|
|
57
|
+
backdrop: u(({ open: p }) => [
|
|
58
|
+
l(D, {
|
|
59
|
+
value: p,
|
|
60
|
+
onChange: e[1] || (e[1] = (r) => a("update:open", r)),
|
|
61
|
+
onUnmount: e[2] || (e[2] = (r) => a("update:open", !1))
|
|
62
|
+
}, null, 8, ["value"]),
|
|
63
|
+
l(n(N), { class: "inset-x-px rounded-none rounded-b-lg" })
|
|
58
64
|
]),
|
|
59
|
-
default:
|
|
60
|
-
n(
|
|
61
|
-
class: "
|
|
65
|
+
default: u(() => [
|
|
66
|
+
l(n($), {
|
|
67
|
+
class: "hover:bg-b-2 font-code text-c-2 ml-0.75 h-auto gap-0.75 rounded border px-1.5 text-base whitespace-nowrap",
|
|
62
68
|
variant: "ghost"
|
|
63
69
|
}, {
|
|
64
|
-
default:
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
], 64)) : (
|
|
69
|
-
|
|
70
|
-
n(
|
|
70
|
+
default: u(() => [
|
|
71
|
+
t.server ? (o(), d(v, { key: 0 }, [
|
|
72
|
+
e[3] || (e[3] = s("span", { class: "sr-only" }, "Server:", -1)),
|
|
73
|
+
U(" " + C(b.value), 1)
|
|
74
|
+
], 64)) : (o(), d(v, { key: 1 }, [
|
|
75
|
+
e[4] || (e[4] = s("span", { class: "sr-only" }, "Add Server", -1)),
|
|
76
|
+
l(n(V), { class: "size-3" })
|
|
71
77
|
], 64))
|
|
72
78
|
]),
|
|
73
79
|
_: 1
|
|
@@ -78,5 +84,5 @@ const P = ["onClick"], $ = { class: "flex items-center justify-center" }, W = /*
|
|
|
78
84
|
}
|
|
79
85
|
});
|
|
80
86
|
export {
|
|
81
|
-
|
|
87
|
+
A as default
|
|
82
88
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/App.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"App.vue.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/App.vue"],"names":[],"mappings":"AAwOA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAA;AAGxD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAA;AAErD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,oDAAoD,CAAA;AAC7F,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,aAAa,CAAA;AAM3C;;;;GAIG;;YAGO,OAAO,CAAC,YAAY,EAAE,OAAO,CAAC;cAC5B,YAAY,EAAE;iBACX,MAAM,QAAQ;4BACH,MAAM,mBAAmB;;;;YAHzC,OAAO,CAAC,YAAY,EAAE,OAAO,CAAC;cAC5B,YAAY,EAAE;iBACX,MAAM,QAAQ;4BACH,MAAM,mBAAmB;;IAUjD;;;OAGG;4BACqB,EAAE;;AAnB5B,wBAsVC;AAOD,KAAK,eAAe,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAChC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as S, computed as m, createElementBlock as b, createBlock as l, unref as t, openBlock as c, Fragment as W, createElementVNode as p, createVNode as n, withCtx as d, renderSlot as T, normalizeProps as h, guardReactiveProps as y } from "vue";
|
|
2
2
|
import { useModal as g, ScalarTeleportRoot as C } from "@scalar/components";
|
|
3
3
|
import { getThemeStyles as B } from "@scalar/themes";
|
|
4
4
|
import { ScalarToasts as x } from "@scalar/use-toasts";
|
|
5
5
|
import { extensions as E } from "@scalar/workspace-store/schemas/extensions";
|
|
6
6
|
import { RouterView as O } from "vue-router";
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import { useDocumentWatcher as
|
|
10
|
-
import
|
|
7
|
+
import A from "./components/CreateWorkspaceModal.vue.js";
|
|
8
|
+
import M from "./components/SplashScreen.vue.js";
|
|
9
|
+
import { useDocumentWatcher as U } from "./hooks/use-document-watcher.js";
|
|
10
|
+
import I from "../command-palette/TheCommandPalette.vue.js";
|
|
11
11
|
import { useColorMode as _ } from "../../hooks/use-color-mode.js";
|
|
12
12
|
import { useGlobalHotKeys as D } from "../../hooks/use-global-hot-keys.js";
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
const P = ["innerHTML"], F = { class: "flex min-h-0 flex-1" }, H = { class: "bg-b-1 flex-1" }, V = {}, re = /* @__PURE__ */
|
|
13
|
+
import L from "./components/AppSidebar.vue.js";
|
|
14
|
+
import N from "./components/DesktopTabs.vue.js";
|
|
15
|
+
import $ from "./components/WebTopNav.vue.js";
|
|
16
|
+
const P = ["innerHTML"], F = { class: "flex min-h-0 flex-1" }, H = { class: "bg-b-1 flex-1" }, V = {}, re = /* @__PURE__ */ S({
|
|
17
17
|
...V,
|
|
18
18
|
__name: "App",
|
|
19
19
|
props: {
|
|
@@ -22,27 +22,29 @@ const P = ["innerHTML"], F = { class: "flex min-h-0 flex-1" }, H = { class: "bg-
|
|
|
22
22
|
getAppState: { type: Function },
|
|
23
23
|
getCommandPaletteState: { type: Function }
|
|
24
24
|
},
|
|
25
|
-
setup(o, { expose:
|
|
26
|
-
|
|
27
|
-
openCreateWorkspace: () =>
|
|
25
|
+
setup(o, { expose: v }) {
|
|
26
|
+
v({
|
|
27
|
+
openCreateWorkspace: () => i.show()
|
|
28
28
|
});
|
|
29
|
-
const e = o.getAppState(),
|
|
30
|
-
typeof window < "u" && (window.dataDumpWorkspace = () => e.store.value, window.dumpAppState = () => e), _({ workspaceStore: e.store }), D(e.eventBus, o.layout),
|
|
29
|
+
const e = o.getAppState(), k = o.getCommandPaletteState();
|
|
30
|
+
typeof window < "u" && (window.dataDumpWorkspace = () => e.store.value, window.dumpAppState = () => e), _({ workspaceStore: e.store }), D(e.eventBus, o.layout), U({
|
|
31
31
|
documentName: () => e.store.value?.workspace[E.workspace.activeDocument],
|
|
32
32
|
store: e.store,
|
|
33
33
|
initialTimeout: 5e3
|
|
34
34
|
});
|
|
35
|
-
const
|
|
35
|
+
const w = m(() => {
|
|
36
36
|
if (e.store.value === null)
|
|
37
37
|
return "";
|
|
38
|
-
const
|
|
39
|
-
return
|
|
40
|
-
}),
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
38
|
+
const s = e.store.value.workspace["x-scalar-theme"];
|
|
39
|
+
return s ? `<style>${B(s)}</style>` : "";
|
|
40
|
+
}), u = (s) => {
|
|
41
|
+
if (!s)
|
|
42
|
+
return;
|
|
43
|
+
const a = e.workspace.workspaceList.value?.find(
|
|
44
|
+
(r) => r.id === s
|
|
45
|
+
);
|
|
46
|
+
a && e.workspace.navigateToWorkspace(a.namespace, a.slug);
|
|
47
|
+
}, i = g(), f = m(() => ({
|
|
46
48
|
documentSlug: e.activeEntities.documentSlug.value ?? "",
|
|
47
49
|
document: e.store.value?.workspace.activeDocument ?? null,
|
|
48
50
|
environment: e.environment.value,
|
|
@@ -56,25 +58,25 @@ const P = ["innerHTML"], F = { class: "flex min-h-0 flex-1" }, H = { class: "bg-
|
|
|
56
58
|
plugins: o.plugins,
|
|
57
59
|
securitySchemes: e.document.value?.components?.securitySchemes ?? {}
|
|
58
60
|
}));
|
|
59
|
-
return (
|
|
60
|
-
p("div", { innerHTML:
|
|
61
|
-
|
|
62
|
-
default:
|
|
63
|
-
|
|
64
|
-
o.layout === "desktop" ? (
|
|
61
|
+
return (s, a) => t(e).store.value !== null && t(e).workspace.activeWorkspace.value !== null && !t(e).loading.value ? (c(), b(W, { key: 0 }, [
|
|
62
|
+
p("div", { innerHTML: w.value }, null, 8, P),
|
|
63
|
+
n(t(C), null, {
|
|
64
|
+
default: d(() => [
|
|
65
|
+
n(t(x)),
|
|
66
|
+
o.layout === "desktop" ? (c(), l(N, {
|
|
65
67
|
key: 0,
|
|
66
68
|
activeTabIndex: t(e).tabs.activeTabIndex.value,
|
|
67
69
|
eventBus: t(e).eventBus,
|
|
68
70
|
tabs: t(e).tabs.state.value
|
|
69
|
-
}, null, 8, ["activeTabIndex", "eventBus", "tabs"])) : (
|
|
71
|
+
}, null, 8, ["activeTabIndex", "eventBus", "tabs"])) : (c(), l($, {
|
|
70
72
|
key: 1,
|
|
71
73
|
activeWorkspace: t(e).workspace.activeWorkspace.value,
|
|
72
74
|
workspaces: t(e).workspace.workspaceList.value,
|
|
73
|
-
"onCreate:workspace": a[0] || (a[0] = (r) => t(
|
|
74
|
-
"onSelect:workspace":
|
|
75
|
-
}, null, 8, ["activeWorkspace", "workspaces"
|
|
75
|
+
"onCreate:workspace": a[0] || (a[0] = (r) => t(i).show()),
|
|
76
|
+
"onSelect:workspace": u
|
|
77
|
+
}, null, 8, ["activeWorkspace", "workspaces"])),
|
|
76
78
|
p("main", F, [
|
|
77
|
-
|
|
79
|
+
n(L, {
|
|
78
80
|
isSidebarOpen: t(e).sidebar.isOpen.value,
|
|
79
81
|
"onUpdate:isSidebarOpen": a[1] || (a[1] = (r) => t(e).sidebar.isOpen.value = r),
|
|
80
82
|
activeWorkspace: t(e).workspace.activeWorkspace.value,
|
|
@@ -85,34 +87,34 @@ const P = ["innerHTML"], F = { class: "flex min-h-0 flex-1" }, H = { class: "bg-
|
|
|
85
87
|
sidebarWidth: t(e).sidebar.width.value,
|
|
86
88
|
store: t(e).store.value,
|
|
87
89
|
workspaces: t(e).workspace.workspaceList.value,
|
|
88
|
-
"onClick:workspace":
|
|
89
|
-
"onCreate:workspace": a[2] || (a[2] = (r) => t(
|
|
90
|
-
"onSelect:workspace":
|
|
90
|
+
"onClick:workspace": t(e).workspace.navigateToWorkspace,
|
|
91
|
+
"onCreate:workspace": a[2] || (a[2] = (r) => t(i).show()),
|
|
92
|
+
"onSelect:workspace": u,
|
|
91
93
|
onSelectItem: t(e).sidebar.handleSelectItem,
|
|
92
94
|
"onUpdate:sidebarWidth": t(e).sidebar.handleSidebarWidthUpdate
|
|
93
95
|
}, {
|
|
94
|
-
sidebarMenuActions:
|
|
95
|
-
|
|
96
|
+
sidebarMenuActions: d(() => [
|
|
97
|
+
T(s.$slots, "sidebar-menu-actions")
|
|
96
98
|
]),
|
|
97
99
|
_: 3
|
|
98
|
-
}, 8, ["isSidebarOpen", "activeWorkspace", "eventBus", "isWorkspaceOpen", "layout", "sidebarState", "sidebarWidth", "store", "workspaces", "
|
|
99
|
-
|
|
100
|
-
state: t(
|
|
100
|
+
}, 8, ["isSidebarOpen", "activeWorkspace", "eventBus", "isWorkspaceOpen", "layout", "sidebarState", "sidebarWidth", "store", "workspaces", "onClick:workspace", "onSelectItem", "onUpdate:sidebarWidth"]),
|
|
101
|
+
n(A, {
|
|
102
|
+
state: t(i),
|
|
101
103
|
"onCreate:workspace": a[3] || (a[3] = (r) => t(e).workspace.create(r))
|
|
102
104
|
}, null, 8, ["state"]),
|
|
103
|
-
|
|
105
|
+
n(I, {
|
|
104
106
|
eventBus: t(e).eventBus,
|
|
105
|
-
paletteState: t(
|
|
107
|
+
paletteState: t(k),
|
|
106
108
|
workspaceStore: t(e).store.value
|
|
107
109
|
}, null, 8, ["eventBus", "paletteState", "workspaceStore"]),
|
|
108
110
|
p("div", H, [
|
|
109
|
-
|
|
111
|
+
n(t(O), h(y(f.value)), null, 16)
|
|
110
112
|
])
|
|
111
113
|
])
|
|
112
114
|
]),
|
|
113
115
|
_: 3
|
|
114
116
|
})
|
|
115
|
-
], 64)) : (
|
|
117
|
+
], 64)) : (c(), l(M, { key: 1 }));
|
|
116
118
|
}
|
|
117
119
|
});
|
|
118
120
|
export {
|
|
@@ -8,18 +8,22 @@ import type { Tab } from '@scalar/workspace-store/schemas/extensions/workspace/x
|
|
|
8
8
|
import type { TraversedEntry } from '@scalar/workspace-store/schemas/navigation';
|
|
9
9
|
import { type ComputedRef, type Ref, type ShallowRef } from 'vue';
|
|
10
10
|
import type { RouteLocationNormalizedGeneric, Router } from 'vue-router';
|
|
11
|
+
type WorkspaceOption = ScalarListboxOption & {
|
|
12
|
+
teamUid: string;
|
|
13
|
+
namespace: string;
|
|
14
|
+
slug: string;
|
|
15
|
+
};
|
|
11
16
|
/**
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* whether the previous route path should be loaded via a query parameter.
|
|
17
|
+
* Navigates to the overview page of the specified workspace.
|
|
18
|
+
* Updates the route based on the given namespace and slug.
|
|
15
19
|
*
|
|
16
|
-
* @param
|
|
17
|
-
* @param
|
|
20
|
+
* @param namespace - The workspace namespace.
|
|
21
|
+
* @param slug - The unique workspace slug (identifier).
|
|
18
22
|
*/
|
|
19
|
-
declare const
|
|
23
|
+
declare const navigateToWorkspace: (namespace?: string, slug?: string) => Promise<void>;
|
|
20
24
|
/**
|
|
21
25
|
* Creates a new workspace with the provided name.
|
|
22
|
-
* - Generates a unique
|
|
26
|
+
* - Generates a unique slug for the workspace (sluggified from the name and guaranteed unique).
|
|
23
27
|
* - Adds a default blank document ("drafts") to the workspace.
|
|
24
28
|
* - Persists the workspace and navigates to it.
|
|
25
29
|
*
|
|
@@ -27,12 +31,18 @@ declare const setWorkspaceId: (id?: string) => Promise<void>;
|
|
|
27
31
|
* await createWorkspace({ name: 'My Awesome API' })
|
|
28
32
|
* // -> Navigates to /workspace/my-awesome-api (if available)
|
|
29
33
|
*/
|
|
30
|
-
declare const createWorkspace: ({
|
|
31
|
-
|
|
34
|
+
declare const createWorkspace: ({ key, name, }: {
|
|
35
|
+
key?: {
|
|
36
|
+
teamUid?: string;
|
|
37
|
+
namespace?: string;
|
|
38
|
+
slug: string;
|
|
39
|
+
};
|
|
32
40
|
name: string;
|
|
33
41
|
}) => Promise<{
|
|
34
|
-
|
|
42
|
+
slug: string;
|
|
35
43
|
name: string;
|
|
44
|
+
namespace: string;
|
|
45
|
+
teamUid: string;
|
|
36
46
|
} | undefined>;
|
|
37
47
|
declare const sidebarState: {
|
|
38
48
|
items: ComputedRef<TraversedEntry[]>;
|
|
@@ -110,9 +120,9 @@ export type AppState = {
|
|
|
110
120
|
};
|
|
111
121
|
workspace: {
|
|
112
122
|
create: typeof createWorkspace;
|
|
113
|
-
workspaceList: Ref<
|
|
123
|
+
workspaceList: Ref<WorkspaceOption[]>;
|
|
114
124
|
activeWorkspace: ShallowRef<ScalarListboxOption | null>;
|
|
115
|
-
|
|
125
|
+
navigateToWorkspace: typeof navigateToWorkspace;
|
|
116
126
|
isOpen: ComputedRef<boolean>;
|
|
117
127
|
};
|
|
118
128
|
eventBus: WorkspaceEventBus;
|
|
@@ -120,6 +130,7 @@ export type AppState = {
|
|
|
120
130
|
currentRoute: Ref<RouteLocationNormalizedGeneric | null>;
|
|
121
131
|
loading: Ref<boolean>;
|
|
122
132
|
activeEntities: {
|
|
133
|
+
namespace: Ref<string | undefined>;
|
|
123
134
|
workspaceSlug: Ref<string | undefined>;
|
|
124
135
|
documentSlug: Ref<string | undefined>;
|
|
125
136
|
path: Ref<string | undefined>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app-state.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/app-state.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAA;AAG7D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,mCAAmC,CAAA;AAGnE,OAAO,EAAE,KAAK,cAAc,EAAwB,MAAM,gCAAgC,CAAA;AAC1F,OAAO,EAEL,KAAK,iBAAiB,EAEvB,MAAM,gCAAgC,CAAA;AAKvC,OAAO,KAAK,EAAa,iBAAiB,EAAE,MAAM,iCAAiC,CAAA;AAEnF,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,2EAA2E,CAAA;AACnH,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,oEAAoE,CAAA;AAC7F,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAA;AAChF,OAAO,EAAE,KAAK,WAAW,EAAE,KAAK,GAAG,EAAE,KAAK,UAAU,EAAoC,MAAM,KAAK,CAAA;AACnG,OAAO,KAAK,EAAE,8BAA8B,EAAE,MAAM,EAAE,MAAM,YAAY,CAAA;
|
|
1
|
+
{"version":3,"file":"app-state.d.ts","sourceRoot":"","sources":["../../../../src/v2/features/app/app-state.ts"],"names":[],"mappings":"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"}
|