@scalar/api-client 2.1.31 → 2.1.33
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/components/AddressBar/AddressBar.vue.d.ts.map +1 -1
- package/dist/components/AddressBar/AddressBar.vue.js +2 -2
- package/dist/components/AddressBar/AddressBar.vue2.js +3 -3
- package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +104 -92
- package/dist/components/CodeInput/codeVariableWidget.js +3 -3
- package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts.map +1 -1
- package/dist/components/CommandPalette/TheCommandPalette.vue.js +4 -4
- package/dist/components/CommandPalette/TheCommandPalette.vue2.js +110 -95
- package/dist/components/DataTable/DataTableCell.vue.d.ts.map +1 -1
- package/dist/components/DataTable/DataTableCell.vue.js +5 -5
- package/dist/components/SideNav/SideNav.vue.d.ts.map +1 -1
- package/dist/components/SideNav/SideNav.vue.js +1 -1
- package/dist/components/SideNav/SideNav.vue2.js +22 -22
- package/dist/components/ViewLayout/ViewLayout.vue.d.ts.map +1 -1
- package/dist/components/ViewLayout/ViewLayout.vue.js +4 -4
- package/dist/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/dist/layouts/App/ApiClientApp.vue.d.ts.map +1 -1
- package/dist/layouts/App/ApiClientApp.vue.js +37 -42
- package/dist/layouts/App/MainLayout.vue.d.ts +12 -0
- package/dist/layouts/App/MainLayout.vue.d.ts.map +1 -0
- package/dist/layouts/App/MainLayout.vue.js +18 -0
- package/dist/layouts/App/MainLayout.vue2.js +4 -0
- package/dist/layouts/App/create-api-client-app.d.ts +6 -5
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +12 -10
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/layouts/Web/ApiClientWeb.vue.d.ts.map +1 -1
- package/dist/layouts/Web/ApiClientWeb.vue.js +26 -31
- package/dist/layouts/Web/create-api-client-web.d.ts +6 -5
- package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +6 -5
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/create-client.js +21 -18
- package/dist/store/store.d.ts +28 -13
- package/dist/store/store.d.ts.map +1 -1
- package/dist/store/store.js +112 -108
- package/dist/store/workspace.d.ts +4 -4
- package/dist/style.css +1 -1
- package/dist/views/Environment/EnvironmentVariableDropdown.vue.d.ts +4 -1
- package/dist/views/Environment/EnvironmentVariableDropdown.vue.d.ts.map +1 -1
- package/dist/views/Environment/EnvironmentVariableDropdown.vue.js +61 -48
- package/dist/views/Request/RequestSection/RequestBody.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestBody.vue.js +5 -384
- package/dist/views/Request/RequestSection/RequestBody.vue2.js +384 -2
- package/dist/views/Request/RequestSection/RequestSection.vue.js +15 -15
- package/dist/views/Request/RequestSection/RequestTableTooltip.vue.js +1 -1
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Settings/SettingsGeneral.vue.d.ts.map +1 -1
- package/dist/views/Settings/SettingsGeneral.vue.js +90 -65
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @scalar/api-client
|
|
2
2
|
|
|
3
|
+
## 2.1.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [7700c50]
|
|
8
|
+
- @scalar/components@0.12.59
|
|
9
|
+
- @scalar/use-codemirror@0.11.26
|
|
10
|
+
|
|
11
|
+
## 2.1.32
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 4ccbb6b: feat: adds settings command to command palette
|
|
16
|
+
- 85a1815: fix: increases address bar loading background index
|
|
17
|
+
- a12857f: style: environment variable tooltip fixtures
|
|
18
|
+
- b500de2: fix: data table cell overflow issue
|
|
19
|
+
- 294fde8: feat: adds keyboard navigation within environment variable dropdown
|
|
20
|
+
- 0706bc4: fix(api-client): move sidenav to bottom on mobile
|
|
21
|
+
- 86a3a82: fix: API client always uses proxy.scalar.com
|
|
22
|
+
- 48afb7c: fix: removes stopped propagation on enter key in code input
|
|
23
|
+
|
|
3
24
|
## 2.1.31
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AddressBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AddressBar/AddressBar.vue"],"names":[],"mappings":";;;;;
|
|
1
|
+
{"version":3,"file":"AddressBar.vue.d.ts","sourceRoot":"","sources":["../../../src/components/AddressBar/AddressBar.vue"],"names":[],"mappings":";;;;;AAwvBA,wBAQG"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import o from "./AddressBar.vue2.js";
|
|
2
2
|
/* empty css */
|
|
3
3
|
import r from "../../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
-
const
|
|
4
|
+
const d = /* @__PURE__ */ r(o, [["__scopeId", "data-v-19d5c366"]]);
|
|
5
5
|
export {
|
|
6
|
-
|
|
6
|
+
d as default
|
|
7
7
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as H, ref as u, watch as L, onMounted as
|
|
1
|
+
import { defineComponent as H, ref as u, watch as L, onMounted as z, onBeforeUnmount as K, unref as o, openBlock as O, createElementBlock as A, createElementVNode as r, createVNode as n, withCtx as w, normalizeClass as C, normalizeStyle as N, createCommentVNode as T } from "vue";
|
|
2
2
|
import $ from "../CodeInput/CodeInput.vue.js";
|
|
3
3
|
import { Listbox as D } from "@headlessui/vue";
|
|
4
4
|
import { ScalarButton as P, ScalarIcon as Q } from "@scalar/components";
|
|
@@ -75,7 +75,7 @@ const ee = {
|
|
|
75
75
|
var l;
|
|
76
76
|
e != null && e.focusAddressBar && ((l = p.value) == null || l.focus());
|
|
77
77
|
}
|
|
78
|
-
return
|
|
78
|
+
return z(() => d.hotKeys.on(g)), K(() => d.hotKeys.off(g)), (e, l) => o(t) && o(_) ? (O(), A("div", ee, [
|
|
79
79
|
r("div", te, [
|
|
80
80
|
n(o(D), {
|
|
81
81
|
modelValue: c.value,
|
|
@@ -90,7 +90,7 @@ const ee = {
|
|
|
90
90
|
}, [
|
|
91
91
|
r("div", le, [
|
|
92
92
|
r("div", {
|
|
93
|
-
class: C(["bg-mix-transparent bg-mix-amount-90 absolute left-0 top-0 h-full w-full", M()]),
|
|
93
|
+
class: C(["bg-mix-transparent bg-mix-amount-90 absolute left-0 top-0 h-full w-full z-context", M()]),
|
|
94
94
|
style: N({ transform: `translate3d(-${a.value}%,0,0)` })
|
|
95
95
|
}, null, 6)
|
|
96
96
|
]),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CodeInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CodeInput/CodeInput.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"CodeInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CodeInput/CodeInput.vue"],"names":[],"mappings":"AAAA,OAiYO,EAGL,KAAK,kBAAkB,EAGxB,MAAM,wBAAwB,CAAA;;kBAcb,OAAO;gBACT,MAAM,GAAG,MAAM;YACnB,OAAO;iBACF,OAAO;kBACN,OAAO;WACd,OAAO;uBACK,OAAO;eACf,kBAAkB;wBACT,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI;wBACnB,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI;kBACzB,MAAM;eACT,OAAO;mBACH,OAAO;2BACC,OAAO;WACvB,MAAM,EAAE;WACR,MAAM;eACF,OAAO;oBACF,OAAO;iBACV,OAAO;;;;;;;;kBAlBN,OAAO;gBACT,MAAM,GAAG,MAAM;YACnB,OAAO;iBACF,OAAO;kBACN,OAAO;WACd,OAAO;uBACK,OAAO;eACf,kBAAkB;wBACT,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI;wBACnB,CAAC,CAAC,EAAE,MAAM,KAAK,IAAI;kBACzB,MAAM;eACT,OAAO;mBACH,OAAO;2BACC,OAAO;WACvB,MAAM,EAAE;WACR,MAAM;eACF,OAAO;oBACF,OAAO;iBACV,OAAO;;;;;;gBAfP,OAAO;iBAHN,OAAO;sBAMF,OAAO;kBAMX,OAAO;0BACC,OAAO;cAGnB,OAAO;mBACF,OAAO;;qBA6WG,GAAG;kBACN,GAAG;;AAlY9B,wBA2bC;AAcD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACpC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -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
|
|
5
|
+
const _ = /* @__PURE__ */ t(o, [["__scopeId", "data-v-9121d6e5"]]);
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
_ as default
|
|
8
8
|
};
|
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { useCodeMirror as
|
|
3
|
-
import { nanoid as
|
|
4
|
-
import
|
|
5
|
-
import { pillPlugin as
|
|
6
|
-
import
|
|
7
|
-
import { useWorkspace as
|
|
8
|
-
const
|
|
1
|
+
import { defineComponent as j, useAttrs as L, ref as u, toRef as r, watch as Q, computed as P, openBlock as a, createElementBlock as c, Fragment as z, createBlock as y, mergeProps as G, unref as d, withKeys as h, withModifiers as _, renderSlot as D, createCommentVNode as w } from "vue";
|
|
2
|
+
import { useCodeMirror as H, useDropdown as J, colorPicker as X } from "@scalar/use-codemirror";
|
|
3
|
+
import { nanoid as Y } from "nanoid";
|
|
4
|
+
import q from "../DataTable/DataTableInputSelect.vue.js";
|
|
5
|
+
import { pillPlugin as Z, backspaceCommand as ee } from "./codeVariableWidget.js";
|
|
6
|
+
import oe from "../../views/Environment/EnvironmentVariableDropdown.vue.js";
|
|
7
|
+
import { useWorkspace as le } from "../../store/store.js";
|
|
8
|
+
const te = ["id"], ne = {
|
|
9
9
|
key: 3,
|
|
10
10
|
class: "absolute centered-y right-7 text-orange text-xs"
|
|
11
|
-
},
|
|
11
|
+
}, re = {
|
|
12
12
|
key: 4,
|
|
13
13
|
class: "required absolute centered-y right-0 pt-px pr-2 text-xxs text-c-3 bg-b-1 shadow-[-8px_0_4px_var(--scalar-background-1)] opacity-100 duration-150 transition-opacity peer-has-[.cm-focused]:opacity-0 pointer-events-none"
|
|
14
|
-
},
|
|
14
|
+
}, ae = {
|
|
15
15
|
inheritAttrs: !1
|
|
16
|
-
},
|
|
17
|
-
...
|
|
16
|
+
}, me = /* @__PURE__ */ j({
|
|
17
|
+
...ae,
|
|
18
18
|
__name: "CodeInput",
|
|
19
19
|
props: {
|
|
20
20
|
colorPicker: { type: Boolean, default: !1 },
|
|
@@ -38,110 +38,122 @@ const Y = ["id"], Z = {
|
|
|
38
38
|
importCurl: { type: Boolean }
|
|
39
39
|
},
|
|
40
40
|
emits: ["submit", "update:modelValue", "curl"],
|
|
41
|
-
setup(
|
|
42
|
-
var
|
|
43
|
-
const
|
|
44
|
-
function
|
|
45
|
-
var
|
|
46
|
-
return
|
|
41
|
+
setup(E, { expose: R, emit: $ }) {
|
|
42
|
+
var x;
|
|
43
|
+
const o = E, i = $, v = L(), O = v.id || `id-${Y()}`, g = u(!1), f = u(!1), V = u(""), B = u({ left: 0, top: 0 }), p = u(null), { activeEnvVariables: k, isReadOnly: C, environments: K, router: M } = le();
|
|
44
|
+
function A(e) {
|
|
45
|
+
var l;
|
|
46
|
+
return e === o.modelValue ? null : o.importCurl && e.trim().toLowerCase().startsWith("curl") ? (i("curl", e), (l = n.value) == null || l.dispatch({
|
|
47
47
|
changes: {
|
|
48
48
|
from: 0,
|
|
49
|
-
to:
|
|
50
|
-
insert: String(
|
|
49
|
+
to: n.value.state.doc.length,
|
|
50
|
+
insert: String(o.modelValue)
|
|
51
51
|
}
|
|
52
|
-
}), null) :
|
|
52
|
+
}), null) : o.handleFieldChange ? o.handleFieldChange(e) : i("update:modelValue", e);
|
|
53
53
|
}
|
|
54
|
-
function
|
|
55
|
-
return
|
|
54
|
+
function I(e) {
|
|
55
|
+
return o.handleFieldSubmit ? o.handleFieldSubmit(e) : i("submit", e);
|
|
56
56
|
}
|
|
57
|
-
function
|
|
58
|
-
|
|
57
|
+
function N(e) {
|
|
58
|
+
g.value = !1, o.emitOnBlur && o.modelValue && I(e);
|
|
59
59
|
}
|
|
60
|
-
const
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
environments:
|
|
64
|
-
activeEnvVariables:
|
|
65
|
-
isReadOnly:
|
|
60
|
+
const m = [];
|
|
61
|
+
o.colorPicker && m.push(X), m.push(
|
|
62
|
+
Z({
|
|
63
|
+
environments: K,
|
|
64
|
+
activeEnvVariables: k,
|
|
65
|
+
isReadOnly: C
|
|
66
66
|
}),
|
|
67
|
-
|
|
67
|
+
ee
|
|
68
68
|
);
|
|
69
|
-
const
|
|
70
|
-
content:
|
|
71
|
-
() =>
|
|
69
|
+
const S = u(null), { codeMirror: n } = H({
|
|
70
|
+
content: r(
|
|
71
|
+
() => o.modelValue !== void 0 ? String(o.modelValue) : ""
|
|
72
72
|
),
|
|
73
|
-
onChange: (
|
|
74
|
-
|
|
73
|
+
onChange: (e) => {
|
|
74
|
+
A(e), U();
|
|
75
75
|
},
|
|
76
|
-
onFocus: () =>
|
|
77
|
-
onBlur: (
|
|
78
|
-
codeMirrorRef:
|
|
79
|
-
disableTabIndent:
|
|
80
|
-
disableEnter:
|
|
81
|
-
disableCloseBrackets:
|
|
82
|
-
lineNumbers:
|
|
83
|
-
language:
|
|
84
|
-
lint:
|
|
85
|
-
extensions:
|
|
86
|
-
placeholder:
|
|
76
|
+
onFocus: () => g.value = !0,
|
|
77
|
+
onBlur: (e) => N(e),
|
|
78
|
+
codeMirrorRef: S,
|
|
79
|
+
disableTabIndent: r(() => o.disableTabIndent),
|
|
80
|
+
disableEnter: r(() => o.disableEnter),
|
|
81
|
+
disableCloseBrackets: r(() => o.disableCloseBrackets),
|
|
82
|
+
lineNumbers: r(() => o.lineNumbers),
|
|
83
|
+
language: r(() => o.language),
|
|
84
|
+
lint: r(() => o.lint),
|
|
85
|
+
extensions: m,
|
|
86
|
+
placeholder: r(() => o.placeholder)
|
|
87
87
|
});
|
|
88
|
-
(
|
|
89
|
-
|
|
88
|
+
(x = n.value) == null || x.focus(), Q(n, () => {
|
|
89
|
+
n.value && Object.prototype.hasOwnProperty.call(v, "autofocus") && n.value.focus();
|
|
90
90
|
});
|
|
91
|
-
const { handleDropdownSelect:
|
|
92
|
-
codeMirror:
|
|
93
|
-
query:
|
|
94
|
-
showDropdown:
|
|
95
|
-
dropdownPosition:
|
|
96
|
-
}),
|
|
97
|
-
var
|
|
98
|
-
return
|
|
91
|
+
const { handleDropdownSelect: T, updateDropdownVisibility: U } = J({
|
|
92
|
+
codeMirror: n,
|
|
93
|
+
query: V,
|
|
94
|
+
showDropdown: f,
|
|
95
|
+
dropdownPosition: B
|
|
96
|
+
}), W = P(() => {
|
|
97
|
+
var e;
|
|
98
|
+
return o.type === "boolean" || (e = o.type) != null && e.includes("boolean") || o.nullable ? ["true", "false", "null"] : ["true", "false"];
|
|
99
99
|
});
|
|
100
|
-
|
|
100
|
+
R({
|
|
101
101
|
focus: () => {
|
|
102
|
-
var
|
|
103
|
-
(
|
|
102
|
+
var e;
|
|
103
|
+
(e = n.value) == null || e.focus();
|
|
104
104
|
}
|
|
105
|
-
})
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
105
|
+
});
|
|
106
|
+
const b = (e, l) => {
|
|
107
|
+
var s, t, F;
|
|
108
|
+
f.value && (e === "down" ? (l.preventDefault(), (s = p.value) == null || s.handleArrowKey("down")) : e === "up" ? (l.preventDefault(), (t = p.value) == null || t.handleArrowKey("up")) : e === "enter" && (l.preventDefault(), (F = p.value) == null || F.handleSelect()));
|
|
109
|
+
};
|
|
110
|
+
return (e, l) => {
|
|
111
|
+
var s;
|
|
112
|
+
return a(), c(z, null, [
|
|
113
|
+
o.enum && o.enum.length ? (a(), y(q, {
|
|
109
114
|
key: 0,
|
|
110
|
-
modelValue:
|
|
111
|
-
value:
|
|
112
|
-
"onUpdate:modelValue":
|
|
113
|
-
}, null, 8, ["modelValue", "value"])) :
|
|
115
|
+
modelValue: o.modelValue,
|
|
116
|
+
value: o.enum,
|
|
117
|
+
"onUpdate:modelValue": l[0] || (l[0] = (t) => i("update:modelValue", t))
|
|
118
|
+
}, null, 8, ["modelValue", "value"])) : o.type === "boolean" || (s = o.type) != null && s.includes("boolean") ? (a(), y(q, {
|
|
114
119
|
key: 1,
|
|
115
|
-
modelValue:
|
|
116
|
-
value:
|
|
117
|
-
"onUpdate:modelValue":
|
|
118
|
-
}, null, 8, ["modelValue", "value"])) : (a(),
|
|
120
|
+
modelValue: o.modelValue,
|
|
121
|
+
value: W.value,
|
|
122
|
+
"onUpdate:modelValue": l[1] || (l[1] = (t) => i("update:modelValue", t))
|
|
123
|
+
}, null, 8, ["modelValue", "value"])) : (a(), c("div", G({
|
|
119
124
|
key: 2,
|
|
120
|
-
id:
|
|
121
|
-
},
|
|
125
|
+
id: d(O)
|
|
126
|
+
}, e.$attrs, {
|
|
122
127
|
ref_key: "codeMirrorRef",
|
|
123
|
-
ref:
|
|
128
|
+
ref: S,
|
|
124
129
|
class: ["peer font-code w-full whitespace-nowrap overflow-hidden text-xs leading-[1.44] relative", {
|
|
125
|
-
"flow-code-input--error":
|
|
126
|
-
}]
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
130
|
+
"flow-code-input--error": e.error
|
|
131
|
+
}],
|
|
132
|
+
onKeydown: [
|
|
133
|
+
l[2] || (l[2] = h(_((t) => b("down", t), ["stop"]), ["down"])),
|
|
134
|
+
l[3] || (l[3] = h((t) => b("enter", t), ["enter"])),
|
|
135
|
+
l[4] || (l[4] = h(_((t) => b("up", t), ["stop"]), ["up"]))
|
|
136
|
+
]
|
|
137
|
+
}), null, 16, te)),
|
|
138
|
+
e.$slots.warning ? (a(), c("div", ne, [
|
|
139
|
+
D(e.$slots, "warning", {}, void 0, !0)
|
|
140
|
+
])) : w("", !0),
|
|
141
|
+
D(e.$slots, "icon", {}, void 0, !0),
|
|
142
|
+
e.required ? (a(), c("div", re, " Required ")) : w("", !0),
|
|
143
|
+
f.value && o.withVariables && !d(C) ? (a(), y(oe, {
|
|
134
144
|
key: 5,
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
145
|
+
ref_key: "dropdownRef",
|
|
146
|
+
ref: p,
|
|
147
|
+
activeEnvVariables: P(() => d(k)),
|
|
148
|
+
dropdownPosition: B.value,
|
|
149
|
+
query: V.value,
|
|
150
|
+
router: d(M),
|
|
151
|
+
onSelect: d(T)
|
|
152
|
+
}, null, 8, ["activeEnvVariables", "dropdownPosition", "query", "router", "onSelect"])) : w("", !0)
|
|
141
153
|
], 64);
|
|
142
154
|
};
|
|
143
155
|
}
|
|
144
156
|
});
|
|
145
157
|
export {
|
|
146
|
-
|
|
158
|
+
me as default
|
|
147
159
|
};
|
|
@@ -53,8 +53,8 @@ class c extends E {
|
|
|
53
53
|
return o(
|
|
54
54
|
b,
|
|
55
55
|
{
|
|
56
|
-
align: "
|
|
57
|
-
class: "bg-b-
|
|
56
|
+
align: "center",
|
|
57
|
+
class: "bg-b-2 w-full",
|
|
58
58
|
delay: 0,
|
|
59
59
|
side: "bottom",
|
|
60
60
|
sideOffset: 6
|
|
@@ -64,7 +64,7 @@ class c extends E {
|
|
|
64
64
|
content: () => o(
|
|
65
65
|
"div",
|
|
66
66
|
{
|
|
67
|
-
class: "w-content shadow-lg rounded bg-b-1 text-xxs leading-5 text-c-1"
|
|
67
|
+
class: "w-content shadow-lg rounded bg-b-1 brightness-lifted text-xxs leading-5 text-c-1"
|
|
68
68
|
},
|
|
69
69
|
s
|
|
70
70
|
)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TheCommandPalette.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CommandPalette/TheCommandPalette.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TheCommandPalette.vue.d.ts","sourceRoot":"","sources":["../../../src/components/CommandPalette/TheCommandPalette.vue"],"names":[],"mappings":"AAwYA;;;;GAIG;;AACH,wBAsgBI;AAEJ,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAQpB,CAAA;AAEV,yCAAyC;AACzC,MAAM,MAAM,YAAY,GAAG,MAAM,OAAO,iBAAiB,CAAA;AAEzD,MAAM,MAAM,mBAAmB,GAAG;IAChC,8DAA8D;IAC9D,WAAW,CAAC,EAAE,YAAY,CAAA;IAC1B,iEAAiE;IACjE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAC/B,CACA"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import o from "./TheCommandPalette.vue2.js";
|
|
2
|
-
import { PaletteComponents as
|
|
2
|
+
import { PaletteComponents as s } from "./TheCommandPalette.vue2.js";
|
|
3
3
|
/* empty css */
|
|
4
4
|
import t from "../../_virtual/_plugin-vue_export-helper.js";
|
|
5
|
-
const
|
|
5
|
+
const r = /* @__PURE__ */ t(o, [["__scopeId", "data-v-8ba6791f"]]);
|
|
6
6
|
export {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
s as PaletteComponents,
|
|
8
|
+
r as default
|
|
9
9
|
};
|