@scalar/api-client-react 0.1.0 → 0.1.2
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 +14 -0
- package/dist/index.cjs +731 -3085
- package/dist/index.js +731 -3085
- package/dist/index.umd.cjs +731 -3085
- package/package.json +2 -2
package/dist/index.umd.cjs
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
return reactJsxRuntime_production_min;
|
|
32
32
|
hasRequiredReactJsxRuntime_production_min = 1;
|
|
33
33
|
var f2 = require$$0, k2 = Symbol.for("react.element"), l2 = Symbol.for("react.fragment"), m2 = Object.prototype.hasOwnProperty, n2 = f2.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, p2 = { key: true, ref: true, __self: true, __source: true };
|
|
34
|
-
function
|
|
34
|
+
function q2(c2, a2, g) {
|
|
35
35
|
var b2, d2 = {}, e2 = null, h2 = null;
|
|
36
36
|
void 0 !== g && (e2 = "" + g);
|
|
37
37
|
void 0 !== a2.key && (e2 = "" + a2.key);
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
return { $$typeof: k2, type: c2, key: e2, ref: h2, props: d2, _owner: n2.current };
|
|
45
45
|
}
|
|
46
46
|
reactJsxRuntime_production_min.Fragment = l2;
|
|
47
|
-
reactJsxRuntime_production_min.jsx =
|
|
48
|
-
reactJsxRuntime_production_min.jsxs =
|
|
47
|
+
reactJsxRuntime_production_min.jsx = q2;
|
|
48
|
+
reactJsxRuntime_production_min.jsxs = q2;
|
|
49
49
|
return reactJsxRuntime_production_min;
|
|
50
50
|
}
|
|
51
51
|
var reactJsxRuntime_development = {};
|
|
@@ -1132,13 +1132,13 @@
|
|
|
1132
1132
|
});
|
|
1133
1133
|
return ret;
|
|
1134
1134
|
}
|
|
1135
|
-
function stringifyStyle(
|
|
1135
|
+
function stringifyStyle(styles) {
|
|
1136
1136
|
let ret = "";
|
|
1137
|
-
if (!
|
|
1137
|
+
if (!styles || isString$1(styles)) {
|
|
1138
1138
|
return ret;
|
|
1139
1139
|
}
|
|
1140
|
-
for (const key in
|
|
1141
|
-
const value =
|
|
1140
|
+
for (const key in styles) {
|
|
1141
|
+
const value = styles[key];
|
|
1142
1142
|
const normalizedKey = key.startsWith(`--`) ? key : hyphenate(key);
|
|
1143
1143
|
if (isString$1(value) || typeof value === "number") {
|
|
1144
1144
|
ret += `${normalizedKey}:${value};`;
|
|
@@ -10910,8 +10910,8 @@ Component that was made reactive: `,
|
|
|
10910
10910
|
el.addEventListener(endEvent, onEnd);
|
|
10911
10911
|
}
|
|
10912
10912
|
function getTransitionInfo(el, expectedType) {
|
|
10913
|
-
const
|
|
10914
|
-
const getStyleProperties = (key) => (
|
|
10913
|
+
const styles = window.getComputedStyle(el);
|
|
10914
|
+
const getStyleProperties = (key) => (styles[key] || "").split(", ");
|
|
10915
10915
|
const transitionDelays = getStyleProperties(`${TRANSITION$1}Delay`);
|
|
10916
10916
|
const transitionDurations = getStyleProperties(`${TRANSITION$1}Duration`);
|
|
10917
10917
|
const transitionTimeout = getTimeout(transitionDelays, transitionDurations);
|
|
@@ -11469,7 +11469,7 @@ Component that was made reactive: `,
|
|
|
11469
11469
|
});
|
|
11470
11470
|
this._ob.observe(this, { attributes: true });
|
|
11471
11471
|
const resolve2 = (def2, isAsync = false) => {
|
|
11472
|
-
const { props, styles
|
|
11472
|
+
const { props, styles } = def2;
|
|
11473
11473
|
let numberProps;
|
|
11474
11474
|
if (props && !isArray$1(props)) {
|
|
11475
11475
|
for (const key in props) {
|
|
@@ -11486,7 +11486,7 @@ Component that was made reactive: `,
|
|
|
11486
11486
|
if (isAsync) {
|
|
11487
11487
|
this._resolveProps(def2);
|
|
11488
11488
|
}
|
|
11489
|
-
this._applyStyles(
|
|
11489
|
+
this._applyStyles(styles);
|
|
11490
11490
|
this._update();
|
|
11491
11491
|
};
|
|
11492
11492
|
const asyncDef = this._def.__asyncLoader;
|
|
@@ -11594,9 +11594,9 @@ Component that was made reactive: `,
|
|
|
11594
11594
|
}
|
|
11595
11595
|
return vnode;
|
|
11596
11596
|
}
|
|
11597
|
-
_applyStyles(
|
|
11598
|
-
if (
|
|
11599
|
-
|
|
11597
|
+
_applyStyles(styles) {
|
|
11598
|
+
if (styles) {
|
|
11599
|
+
styles.forEach((css2) => {
|
|
11600
11600
|
const s2 = document.createElement("style");
|
|
11601
11601
|
s2.textContent = css2;
|
|
11602
11602
|
this.shadowRoot.appendChild(s2);
|
|
@@ -12436,8 +12436,8 @@ Component that was made reactive: `,
|
|
|
12436
12436
|
return document;
|
|
12437
12437
|
}
|
|
12438
12438
|
let c$1 = ["[contentEditable=true]", "[tabindex]", "a[href]", "area[href]", "button:not([disabled])", "iframe", "input:not([disabled])", "select:not([disabled])", "textarea:not([disabled])"].map((e2) => `${e2}:not([tabindex='-1'])`).join(",");
|
|
12439
|
-
var N$
|
|
12440
|
-
function E$
|
|
12439
|
+
var N$6 = ((n2) => (n2[n2.First = 1] = "First", n2[n2.Previous = 2] = "Previous", n2[n2.Next = 4] = "Next", n2[n2.Last = 8] = "Last", n2[n2.WrapAround = 16] = "WrapAround", n2[n2.NoScroll = 32] = "NoScroll", n2))(N$6 || {}), T$3 = ((o2) => (o2[o2.Error = 0] = "Error", o2[o2.Overflow = 1] = "Overflow", o2[o2.Success = 2] = "Success", o2[o2.Underflow = 3] = "Underflow", o2))(T$3 || {}), F = ((t2) => (t2[t2.Previous = -1] = "Previous", t2[t2.Next = 1] = "Next", t2))(F || {});
|
|
12440
|
+
function E$3(e2 = document.body) {
|
|
12441
12441
|
return e2 == null ? [] : Array.from(e2.querySelectorAll(c$1)).sort((r2, t2) => Math.sign((r2.tabIndex || Number.MAX_SAFE_INTEGER) - (t2.tabIndex || Number.MAX_SAFE_INTEGER)));
|
|
12442
12442
|
}
|
|
12443
12443
|
var h = ((t2) => (t2[t2.Strict = 0] = "Strict", t2[t2.Loose = 1] = "Loose", t2))(h || {});
|
|
@@ -12480,7 +12480,7 @@ Component that was made reactive: `,
|
|
|
12480
12480
|
}
|
|
12481
12481
|
function P(e2, r2, { sorted: t2 = true, relativeTo: l2 = null, skipElements: o2 = [] } = {}) {
|
|
12482
12482
|
var m2;
|
|
12483
|
-
let i2 = (m2 = Array.isArray(e2) ? e2.length > 0 ? e2[0].ownerDocument : document : e2 == null ? void 0 : e2.ownerDocument) != null ? m2 : document, n2 = Array.isArray(e2) ? t2 ? O$1(e2) : e2 : E$
|
|
12483
|
+
let i2 = (m2 = Array.isArray(e2) ? e2.length > 0 ? e2[0].ownerDocument : document : e2 == null ? void 0 : e2.ownerDocument) != null ? m2 : document, n2 = Array.isArray(e2) ? t2 ? O$1(e2) : e2 : E$3(e2);
|
|
12484
12484
|
o2.length > 0 && n2.length > 1 && (n2 = n2.filter((s2) => !o2.includes(s2))), l2 = l2 != null ? l2 : i2.activeElement;
|
|
12485
12485
|
let x2 = (() => {
|
|
12486
12486
|
if (r2 & 5)
|
|
@@ -12580,7 +12580,7 @@ Component that was made reactive: `,
|
|
|
12580
12580
|
n2.value || o$2(e2) && o$2(e2) instanceof HTMLButtonElement && !((u2 = o$2(e2)) != null && u2.hasAttribute("type")) && (n2.value = "button");
|
|
12581
12581
|
}), n2;
|
|
12582
12582
|
}
|
|
12583
|
-
var N$
|
|
12583
|
+
var N$5 = ((o2) => (o2[o2.None = 0] = "None", o2[o2.RenderStrategy = 1] = "RenderStrategy", o2[o2.Static = 2] = "Static", o2))(N$5 || {}), S$1 = ((e2) => (e2[e2.Unmount = 0] = "Unmount", e2[e2.Hidden = 1] = "Hidden", e2))(S$1 || {});
|
|
12584
12584
|
function A$3({ visible: r2 = true, features: t2 = 0, ourProps: e2, theirProps: o2, ...i2 }) {
|
|
12585
12585
|
var a2;
|
|
12586
12586
|
let n2 = j(o2, e2), l2 = Object.assign(i2, { props: n2 });
|
|
@@ -12732,7 +12732,7 @@ Component that was made reactive: `,
|
|
|
12732
12732
|
} };
|
|
12733
12733
|
return s2;
|
|
12734
12734
|
}
|
|
12735
|
-
function E$
|
|
12735
|
+
function E$2(n2, e2, o2, r2) {
|
|
12736
12736
|
c$2.isServer || watchEffect((t2) => {
|
|
12737
12737
|
n2 = n2 != null ? n2 : window, n2.addEventListener(e2, o2, r2), t2(() => n2.removeEventListener(e2, o2, r2));
|
|
12738
12738
|
});
|
|
@@ -12763,7 +12763,7 @@ Component that was made reactive: `,
|
|
|
12763
12763
|
let i2 = computed(() => i$4(o2)), e2 = ref(false);
|
|
12764
12764
|
onMounted(() => e2.value = true), onUnmounted(() => e2.value = false), $$1({ ownerDocument: i2 }, computed(() => e2.value && Boolean(t2.features & 16)));
|
|
12765
12765
|
let m2 = z({ ownerDocument: i2, container: o2, initialFocus: computed(() => t2.initialFocus) }, computed(() => e2.value && Boolean(t2.features & 2)));
|
|
12766
|
-
J({ ownerDocument: i2, container: o2, containers: t2.containers, previousActiveElement: m2 }, computed(() => e2.value && Boolean(t2.features & 8)));
|
|
12766
|
+
J$1({ ownerDocument: i2, container: o2, containers: t2.containers, previousActiveElement: m2 }, computed(() => e2.value && Boolean(t2.features & 8)));
|
|
12767
12767
|
let f$1 = n();
|
|
12768
12768
|
function a2(u2) {
|
|
12769
12769
|
let T2 = o$2(o2);
|
|
@@ -12771,9 +12771,9 @@ Component that was made reactive: `,
|
|
|
12771
12771
|
return;
|
|
12772
12772
|
((w2) => w2())(() => {
|
|
12773
12773
|
u$4(f$1.value, { [d$2.Forwards]: () => {
|
|
12774
|
-
P(T2, N$
|
|
12774
|
+
P(T2, N$6.First, { skipElements: [u2.relatedTarget] });
|
|
12775
12775
|
}, [d$2.Backwards]: () => {
|
|
12776
|
-
P(T2, N$
|
|
12776
|
+
P(T2, N$6.Last, { skipElements: [u2.relatedTarget] });
|
|
12777
12777
|
} });
|
|
12778
12778
|
});
|
|
12779
12779
|
}
|
|
@@ -12789,7 +12789,7 @@ Component that was made reactive: `,
|
|
|
12789
12789
|
let T2 = B(t2.containers);
|
|
12790
12790
|
o$2(o2) instanceof HTMLElement && T2.add(o$2(o2));
|
|
12791
12791
|
let d2 = u2.relatedTarget;
|
|
12792
|
-
d2 instanceof HTMLElement && d2.dataset.headlessuiFocusGuard !== "true" && (N$
|
|
12792
|
+
d2 instanceof HTMLElement && d2.dataset.headlessuiFocusGuard !== "true" && (N$4(T2, d2) || (s2.value ? P(o$2(o2), u$4(f$1.value, { [d$2.Forwards]: () => N$6.Next, [d$2.Backwards]: () => N$6.Previous }) | N$6.WrapAround, { relativeTo: u2.target }) : u2.target instanceof HTMLElement && S$2(u2.target)));
|
|
12793
12793
|
}
|
|
12794
12794
|
return () => {
|
|
12795
12795
|
let u2 = {}, T2 = { ref: o2, onKeydown: F2, onFocusout: H2 }, { features: d2, initialFocus: w2, containers: Q2, ...O2 } = t2;
|
|
@@ -12839,14 +12839,14 @@ Component that was made reactive: `,
|
|
|
12839
12839
|
o2.value = s2;
|
|
12840
12840
|
return;
|
|
12841
12841
|
}
|
|
12842
|
-
a2 ? S$2(a2) : P(f2, N$
|
|
12842
|
+
a2 ? S$2(a2) : P(f2, N$6.First | N$6.NoScroll) === T$3.Error && console.warn("There are no focusable elements inside the <FocusTrap />"), o2.value = (H2 = t2.value) == null ? void 0 : H2.activeElement;
|
|
12843
12843
|
});
|
|
12844
12844
|
}, { immediate: true, flush: "post" });
|
|
12845
12845
|
}), o2;
|
|
12846
12846
|
}
|
|
12847
|
-
function J({ ownerDocument: t2, container: n2, containers: r2, previousActiveElement: l2 }, o2) {
|
|
12847
|
+
function J$1({ ownerDocument: t2, container: n2, containers: r2, previousActiveElement: l2 }, o2) {
|
|
12848
12848
|
var i2;
|
|
12849
|
-
E$
|
|
12849
|
+
E$2((i2 = t2.value) == null ? void 0 : i2.defaultView, "focus", (e2) => {
|
|
12850
12850
|
if (!o2.value)
|
|
12851
12851
|
return;
|
|
12852
12852
|
let m2 = B(r2);
|
|
@@ -12855,10 +12855,10 @@ Component that was made reactive: `,
|
|
|
12855
12855
|
if (!f2)
|
|
12856
12856
|
return;
|
|
12857
12857
|
let a2 = e2.target;
|
|
12858
|
-
a2 && a2 instanceof HTMLElement ? N$
|
|
12858
|
+
a2 && a2 instanceof HTMLElement ? N$4(m2, a2) ? (l2.value = a2, S$2(a2)) : (e2.preventDefault(), e2.stopPropagation(), S$2(f2)) : S$2(l2.value);
|
|
12859
12859
|
}, true);
|
|
12860
12860
|
}
|
|
12861
|
-
function N$
|
|
12861
|
+
function N$4(t2, n2) {
|
|
12862
12862
|
for (let r2 of t2)
|
|
12863
12863
|
if (r2.contains(n2))
|
|
12864
12864
|
return true;
|
|
@@ -12991,7 +12991,7 @@ Component that was made reactive: `,
|
|
|
12991
12991
|
}, { immediate: true }), l2;
|
|
12992
12992
|
}
|
|
12993
12993
|
let i$1 = /* @__PURE__ */ new Map(), t$1 = /* @__PURE__ */ new Map();
|
|
12994
|
-
function E(d2, f2 = ref(true)) {
|
|
12994
|
+
function E$1(d2, f2 = ref(true)) {
|
|
12995
12995
|
watchEffect((o2) => {
|
|
12996
12996
|
var a2;
|
|
12997
12997
|
if (!f2.value)
|
|
@@ -13013,7 +13013,7 @@ Component that was made reactive: `,
|
|
|
13013
13013
|
t$1.set(e2, l2 + 1), l2 === 0 && (i$1.set(e2, { "aria-hidden": e2.getAttribute("aria-hidden"), inert: e2.inert }), e2.setAttribute("aria-hidden", "true"), e2.inert = true);
|
|
13014
13014
|
});
|
|
13015
13015
|
}
|
|
13016
|
-
function N$
|
|
13016
|
+
function N$3({ defaultContainers: o2 = [], portals: i2, mainTreeNodeRef: H2 } = {}) {
|
|
13017
13017
|
let t2 = ref(null), r2 = i$4(t2);
|
|
13018
13018
|
function u2() {
|
|
13019
13019
|
var l2, f2, a2;
|
|
@@ -13049,7 +13049,7 @@ Component that was made reactive: `,
|
|
|
13049
13049
|
return inject(u$1, () => {
|
|
13050
13050
|
});
|
|
13051
13051
|
}
|
|
13052
|
-
function R({ type: o2, enabled: r2, element: e2, onUpdate: i2 }) {
|
|
13052
|
+
function R$1({ type: o2, enabled: r2, element: e2, onUpdate: i2 }) {
|
|
13053
13053
|
let a2 = y();
|
|
13054
13054
|
function t2(...n2) {
|
|
13055
13055
|
i2 == null || i2(...n2), a2(...n2);
|
|
@@ -13141,7 +13141,7 @@ Component that was made reactive: `,
|
|
|
13141
13141
|
};
|
|
13142
13142
|
} })];
|
|
13143
13143
|
}
|
|
13144
|
-
let C$2 = Symbol("PortalGroupContext"), N$
|
|
13144
|
+
let C$2 = Symbol("PortalGroupContext"), N$2 = /* @__PURE__ */ defineComponent({ name: "PortalGroup", props: { as: { type: [Object, String], default: "template" }, target: { type: Object, default: null } }, setup(r2, { attrs: e2, slots: u2 }) {
|
|
13145
13145
|
let t2 = reactive({ resolveTarget() {
|
|
13146
13146
|
return r2.target;
|
|
13147
13147
|
} });
|
|
@@ -13150,7 +13150,7 @@ Component that was made reactive: `,
|
|
|
13150
13150
|
return A$3({ theirProps: l2, ourProps: {}, slot: {}, attrs: e2, slots: u2, name: "PortalGroup" });
|
|
13151
13151
|
};
|
|
13152
13152
|
} });
|
|
13153
|
-
var Te = ((l2) => (l2[l2.Open = 0] = "Open", l2[l2.Closed = 1] = "Closed", l2))(Te || {});
|
|
13153
|
+
var Te$1 = ((l2) => (l2[l2.Open = 0] = "Open", l2[l2.Closed = 1] = "Closed", l2))(Te$1 || {});
|
|
13154
13154
|
let H = Symbol("DialogContext");
|
|
13155
13155
|
function T$1(e2) {
|
|
13156
13156
|
let i2 = inject(H, null);
|
|
@@ -13160,34 +13160,34 @@ Component that was made reactive: `,
|
|
|
13160
13160
|
}
|
|
13161
13161
|
return i2;
|
|
13162
13162
|
}
|
|
13163
|
-
let A = "DC8F892D-2EBD-447C-A4C8-A03058436FF4", We = /* @__PURE__ */ defineComponent({ name: "Dialog", inheritAttrs: false, props: { as: { type: [Object, String], default: "div" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, open: { type: [Boolean, String], default: A }, initialFocus: { type: Object, default: null }, id: { type: String, default: null }, role: { type: String, default: "dialog" } }, emits: { close: (e2) => true }, setup(e2, { emit: i2, attrs: l2, slots: d2, expose: s$12 }) {
|
|
13164
|
-
var _$1,
|
|
13163
|
+
let A = "DC8F892D-2EBD-447C-A4C8-A03058436FF4", We$1 = /* @__PURE__ */ defineComponent({ name: "Dialog", inheritAttrs: false, props: { as: { type: [Object, String], default: "div" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, open: { type: [Boolean, String], default: A }, initialFocus: { type: Object, default: null }, id: { type: String, default: null }, role: { type: String, default: "dialog" } }, emits: { close: (e2) => true }, setup(e2, { emit: i2, attrs: l2, slots: d2, expose: s$12 }) {
|
|
13164
|
+
var _$1, q2;
|
|
13165
13165
|
let n2 = (_$1 = e2.id) != null ? _$1 : `headlessui-dialog-${I$1()}`, u2 = ref(false);
|
|
13166
13166
|
onMounted(() => {
|
|
13167
13167
|
u2.value = true;
|
|
13168
13168
|
});
|
|
13169
|
-
let r2 = false, g = computed(() => e2.role === "dialog" || e2.role === "alertdialog" ? e2.role : (r2 || (r2 = true, console.warn(`Invalid role [${g}] passed to <Dialog />. Only \`dialog\` and and \`alertdialog\` are supported. Using \`dialog\` instead.`)), "dialog")), D = ref(0), S2 = l$1(),
|
|
13169
|
+
let r2 = false, g = computed(() => e2.role === "dialog" || e2.role === "alertdialog" ? e2.role : (r2 || (r2 = true, console.warn(`Invalid role [${g}] passed to <Dialog />. Only \`dialog\` and and \`alertdialog\` are supported. Using \`dialog\` instead.`)), "dialog")), D = ref(0), S2 = l$1(), R2 = computed(() => e2.open === A && S2 !== null ? (S2.value & i$2.Open) === i$2.Open : e2.open), m2 = ref(null), E2 = computed(() => i$4(m2));
|
|
13170
13170
|
if (s$12({ el: m2, $el: m2 }), !(e2.open !== A || S2 !== null))
|
|
13171
13171
|
throw new Error("You forgot to provide an `open` prop to the `Dialog`.");
|
|
13172
|
-
if (typeof
|
|
13173
|
-
throw new Error(`You provided an \`open\` prop to the \`Dialog\`, but the value is not a boolean. Received: ${
|
|
13174
|
-
let c2 = computed(() => u2.value &&
|
|
13172
|
+
if (typeof R2.value != "boolean")
|
|
13173
|
+
throw new Error(`You provided an \`open\` prop to the \`Dialog\`, but the value is not a boolean. Received: ${R2.value === A ? void 0 : e2.open}`);
|
|
13174
|
+
let c2 = computed(() => u2.value && R2.value ? 0 : 1), k2 = computed(() => c2.value === 0), w2 = computed(() => D.value > 1), N2 = inject(H, null) !== null, [Q2, X] = A$1(), { resolveContainers: B2, mainTreeNodeRef: K2, MainTreeNode: Z } = N$3({ portals: Q2, defaultContainers: [computed(() => {
|
|
13175
13175
|
var t2;
|
|
13176
13176
|
return (t2 = h2.panelRef.value) != null ? t2 : m2.value;
|
|
13177
13177
|
})] }), ee = computed(() => w2.value ? "parent" : "leaf"), U2 = computed(() => S2 !== null ? (S2.value & i$2.Closing) === i$2.Closing : false), te2 = computed(() => N2 || U2.value ? false : k2.value), le2 = computed(() => {
|
|
13178
13178
|
var t2, a2, p2;
|
|
13179
|
-
return (p2 = Array.from((a2 = (t2 =
|
|
13179
|
+
return (p2 = Array.from((a2 = (t2 = E2.value) == null ? void 0 : t2.querySelectorAll("body > *")) != null ? a2 : []).find((f2) => f2.id === "headlessui-portal-root" ? false : f2.contains(o$2(K2)) && f2 instanceof HTMLElement)) != null ? p2 : null;
|
|
13180
13180
|
});
|
|
13181
|
-
E(le2, te2);
|
|
13181
|
+
E$1(le2, te2);
|
|
13182
13182
|
let ae = computed(() => w2.value ? true : k2.value), oe = computed(() => {
|
|
13183
13183
|
var t2, a2, p2;
|
|
13184
|
-
return (p2 = Array.from((a2 = (t2 =
|
|
13184
|
+
return (p2 = Array.from((a2 = (t2 = E2.value) == null ? void 0 : t2.querySelectorAll("[data-headlessui-portal]")) != null ? a2 : []).find((f2) => f2.contains(o$2(K2)) && f2 instanceof HTMLElement)) != null ? p2 : null;
|
|
13185
13185
|
});
|
|
13186
|
-
E(oe, ae), R({ type: "Dialog", enabled: computed(() => c2.value === 0), element: m2, onUpdate: (t2, a2) => {
|
|
13186
|
+
E$1(oe, ae), R$1({ type: "Dialog", enabled: computed(() => c2.value === 0), element: m2, onUpdate: (t2, a2) => {
|
|
13187
13187
|
if (a2 === "Dialog")
|
|
13188
13188
|
return u$4(t2, { [s.Add]: () => D.value += 1, [s.Remove]: () => D.value -= 1 });
|
|
13189
13189
|
} });
|
|
13190
|
-
let re = k$1({ name: "DialogDescription", slot: computed(() => ({ open:
|
|
13190
|
+
let re = k$1({ name: "DialogDescription", slot: computed(() => ({ open: R2.value })) }), M = ref(null), h2 = { titleId: M, panelRef: ref(null), dialogState: c2, setTitleId(t2) {
|
|
13191
13191
|
M.value !== t2 && (M.value = t2);
|
|
13192
13192
|
}, close() {
|
|
13193
13193
|
i2("close", false);
|
|
@@ -13198,11 +13198,11 @@ Component that was made reactive: `,
|
|
|
13198
13198
|
h2.close(), nextTick(() => a2 == null ? void 0 : a2.focus());
|
|
13199
13199
|
}, ne);
|
|
13200
13200
|
let ie2 = computed(() => !(w2.value || c2.value !== 0));
|
|
13201
|
-
E$
|
|
13201
|
+
E$2((q2 = E2.value) == null ? void 0 : q2.defaultView, "keydown", (t2) => {
|
|
13202
13202
|
ie2.value && (t2.defaultPrevented || t2.key === o$1.Escape && (t2.preventDefault(), t2.stopPropagation(), h2.close()));
|
|
13203
13203
|
});
|
|
13204
13204
|
let ue$1 = computed(() => !(U2.value || c2.value !== 0 || N2));
|
|
13205
|
-
return d$1(
|
|
13205
|
+
return d$1(E2, ue$1, (t2) => {
|
|
13206
13206
|
var a2;
|
|
13207
13207
|
return { containers: [...(a2 = t2.containers) != null ? a2 : [], B2] };
|
|
13208
13208
|
}), watchEffect((t2) => {
|
|
@@ -13220,9 +13220,9 @@ Component that was made reactive: `,
|
|
|
13220
13220
|
p2.observe(a2), t2(() => p2.disconnect());
|
|
13221
13221
|
}), () => {
|
|
13222
13222
|
let { open: t2, initialFocus: a2, ...p2 } = e2, f2 = { ...l2, ref: m2, id: n2, role: g.value, "aria-modal": c2.value === 0 ? true : void 0, "aria-labelledby": M.value, "aria-describedby": re.value }, L = { open: c2.value === 0 };
|
|
13223
|
-
return h$1(u$2, { force: true }, () => [h$1(_, () => h$1(N$
|
|
13223
|
+
return h$1(u$2, { force: true }, () => [h$1(_, () => h$1(N$2, { target: m2.value }, () => h$1(u$2, { force: false }, () => h$1(ue, { initialFocus: a2, containers: B2, features: k2.value ? u$4(ee.value, { parent: ue.features.RestoreFocus, leaf: ue.features.All & ~ue.features.FocusLock }) : ue.features.None }, () => h$1(X, {}, () => A$3({ ourProps: f2, theirProps: { ...p2, ...l2 }, slot: L, attrs: l2, slots: d2, visible: c2.value === 0, features: N$5.RenderStrategy | N$5.Static, name: "Dialog" })))))), h$1(Z)]);
|
|
13224
13224
|
};
|
|
13225
|
-
} }), Ge = /* @__PURE__ */ defineComponent({ name: "DialogPanel", props: { as: { type: [Object, String], default: "div" }, id: { type: String, default: null } }, setup(e2, { attrs: i2, slots: l2, expose: d2 }) {
|
|
13225
|
+
} }), Ge$1 = /* @__PURE__ */ defineComponent({ name: "DialogPanel", props: { as: { type: [Object, String], default: "div" }, id: { type: String, default: null } }, setup(e2, { attrs: i2, slots: l2, expose: d2 }) {
|
|
13226
13226
|
var r2;
|
|
13227
13227
|
let s2 = (r2 = e2.id) != null ? r2 : `headlessui-dialog-panel-${I$1()}`, n2 = T$1("DialogPanel");
|
|
13228
13228
|
d2({ el: n2.panelRef, $el: n2.panelRef });
|
|
@@ -13233,7 +13233,7 @@ Component that was made reactive: `,
|
|
|
13233
13233
|
let { ...g } = e2, D = { id: s2, ref: n2.panelRef, onClick: u2 };
|
|
13234
13234
|
return A$3({ ourProps: D, theirProps: g, slot: { open: n2.dialogState.value === 0 }, attrs: i2, slots: l2, name: "DialogPanel" });
|
|
13235
13235
|
};
|
|
13236
|
-
} }), Ve = /* @__PURE__ */ defineComponent({ name: "DialogTitle", props: { as: { type: [Object, String], default: "h2" }, id: { type: String, default: null } }, setup(e2, { attrs: i2, slots: l2 }) {
|
|
13236
|
+
} }), Ve$1 = /* @__PURE__ */ defineComponent({ name: "DialogTitle", props: { as: { type: [Object, String], default: "h2" }, id: { type: String, default: null } }, setup(e2, { attrs: i2, slots: l2 }) {
|
|
13237
13237
|
var n2;
|
|
13238
13238
|
let d2 = (n2 = e2.id) != null ? n2 : `headlessui-dialog-title-${I$1()}`, s2 = T$1("DialogTitle");
|
|
13239
13239
|
return onMounted(() => {
|
|
@@ -13257,7 +13257,7 @@ Component that was made reactive: `,
|
|
|
13257
13257
|
function U$1() {
|
|
13258
13258
|
return inject(k, null);
|
|
13259
13259
|
}
|
|
13260
|
-
let N = /* @__PURE__ */ defineComponent({ name: "Disclosure", props: { as: { type: [Object, String], default: "template" }, defaultOpen: { type: [Boolean], default: false } }, setup(t2, { slots: r2, attrs: o2 }) {
|
|
13260
|
+
let N$1 = /* @__PURE__ */ defineComponent({ name: "Disclosure", props: { as: { type: [Object, String], default: "template" }, defaultOpen: { type: [Boolean], default: false } }, setup(t2, { slots: r2, attrs: o2 }) {
|
|
13261
13261
|
let s2 = ref(t2.defaultOpen ? 0 : 1), e2 = ref(null), i2 = ref(null), n2 = { buttonId: ref(`headlessui-disclosure-button-${I$1()}`), panelId: ref(`headlessui-disclosure-panel-${I$1()}`), disclosureState: s2, panel: e2, button: i2, toggleDisclosure() {
|
|
13262
13262
|
s2.value = u$4(s2.value, { [0]: 1, [1]: 0 });
|
|
13263
13263
|
}, closeDisclosure() {
|
|
@@ -13317,7 +13317,7 @@ Component that was made reactive: `,
|
|
|
13317
13317
|
let u2 = { open: e2.disclosureState.value === 0 }, { id: S2, ...K2 } = t2, M = n2.value ? { ref: l2, type: a2.value, onClick: c2, onKeydown: D } : { id: (C2 = e2.buttonId.value) != null ? C2 : S2, ref: l2, type: a2.value, "aria-expanded": e2.disclosureState.value === 0, "aria-controls": e2.disclosureState.value === 0 || o$2(e2.panel) ? e2.panelId.value : void 0, disabled: t2.disabled ? true : void 0, onClick: c2, onKeydown: D, onKeyup: v2 };
|
|
13318
13318
|
return A$3({ ourProps: M, theirProps: K2, slot: u2, attrs: r2, slots: o2, name: "DisclosureButton" });
|
|
13319
13319
|
};
|
|
13320
|
-
} }), V = /* @__PURE__ */ defineComponent({ name: "DisclosurePanel", props: { as: { type: [Object, String], default: "div" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, id: { type: String, default: null } }, setup(t2, { attrs: r2, slots: o2, expose: s2 }) {
|
|
13320
|
+
} }), V$1 = /* @__PURE__ */ defineComponent({ name: "DisclosurePanel", props: { as: { type: [Object, String], default: "div" }, static: { type: Boolean, default: false }, unmount: { type: Boolean, default: true }, id: { type: String, default: null } }, setup(t2, { attrs: r2, slots: o2, expose: s2 }) {
|
|
13321
13321
|
let e2 = O("DisclosurePanel");
|
|
13322
13322
|
onMounted(() => {
|
|
13323
13323
|
t2.id !== null && (e2.panelId.value = t2.id);
|
|
@@ -13328,7 +13328,7 @@ Component that was made reactive: `,
|
|
|
13328
13328
|
return () => {
|
|
13329
13329
|
var v2;
|
|
13330
13330
|
let l2 = { open: e2.disclosureState.value === 0, close: e2.close }, { id: a2, ...c2 } = t2, D = { id: (v2 = e2.panelId.value) != null ? v2 : a2, ref: e2.panel };
|
|
13331
|
-
return A$3({ ourProps: D, theirProps: c2, slot: l2, attrs: r2, slots: o2, features: N$
|
|
13331
|
+
return A$3({ ourProps: D, theirProps: c2, slot: l2, attrs: r2, slots: o2, features: N$5.RenderStrategy | N$5.Static, visible: n2.value, name: "DisclosurePanel" });
|
|
13332
13332
|
};
|
|
13333
13333
|
} });
|
|
13334
13334
|
let d = /* @__PURE__ */ defineComponent({ props: { onFocus: { type: Function, required: true } }, setup(t2) {
|
|
@@ -13468,15 +13468,15 @@ Component that was made reactive: `,
|
|
|
13468
13468
|
switch (e2.key) {
|
|
13469
13469
|
case o$1.Home:
|
|
13470
13470
|
case o$1.PageUp:
|
|
13471
|
-
return e2.preventDefault(), e2.stopPropagation(), T2(() => P(c2, N$
|
|
13471
|
+
return e2.preventDefault(), e2.stopPropagation(), T2(() => P(c2, N$6.First));
|
|
13472
13472
|
case o$1.End:
|
|
13473
13473
|
case o$1.PageDown:
|
|
13474
|
-
return e2.preventDefault(), e2.stopPropagation(), T2(() => P(c2, N$
|
|
13474
|
+
return e2.preventDefault(), e2.stopPropagation(), T2(() => P(c2, N$6.Last));
|
|
13475
13475
|
}
|
|
13476
13476
|
if (T2(() => u$4(l2.orientation.value, { vertical() {
|
|
13477
|
-
return e2.key === o$1.ArrowUp ? P(c2, N$
|
|
13477
|
+
return e2.key === o$1.ArrowUp ? P(c2, N$6.Previous | N$6.WrapAround) : e2.key === o$1.ArrowDown ? P(c2, N$6.Next | N$6.WrapAround) : T$3.Error;
|
|
13478
13478
|
}, horizontal() {
|
|
13479
|
-
return e2.key === o$1.ArrowLeft ? P(c2, N$
|
|
13479
|
+
return e2.key === o$1.ArrowLeft ? P(c2, N$6.Previous | N$6.WrapAround) : e2.key === o$1.ArrowRight ? P(c2, N$6.Next | N$6.WrapAround) : T$3.Error;
|
|
13480
13480
|
} })) === T$3.Success)
|
|
13481
13481
|
return e2.preventDefault();
|
|
13482
13482
|
}
|
|
@@ -13496,7 +13496,7 @@ Component that was made reactive: `,
|
|
|
13496
13496
|
let e2 = { selected: u2.value }, { ...c2 } = a2, I2 = { ref: r2, onKeydown: m2, onMousedown: t2, onClick: w2, id: i2, role: "tab", type: n2.value, "aria-controls": (p2 = o$2(l2.panels.value[y2.value])) == null ? void 0 : p2.id, "aria-selected": u2.value, tabIndex: u2.value ? 0 : -1, disabled: a2.disabled ? true : void 0 };
|
|
13497
13497
|
return A$3({ ourProps: I2, theirProps: c2, slot: e2, attrs: b2, slots: s2, name: "Tab" });
|
|
13498
13498
|
};
|
|
13499
|
-
} }), Ie = /* @__PURE__ */ defineComponent({ name: "TabPanels", props: { as: { type: [Object, String], default: "div" } }, setup(a2, { slots: b2, attrs: s2 }) {
|
|
13499
|
+
} }), Ie$1 = /* @__PURE__ */ defineComponent({ name: "TabPanels", props: { as: { type: [Object, String], default: "div" } }, setup(a2, { slots: b2, attrs: s2 }) {
|
|
13500
13500
|
let o2 = C$1("TabPanels");
|
|
13501
13501
|
return () => {
|
|
13502
13502
|
let i2 = { selectedIndex: o2.selectedIndex.value };
|
|
@@ -13519,7 +13519,7 @@ Component that was made reactive: `,
|
|
|
13519
13519
|
return () => {
|
|
13520
13520
|
var n2;
|
|
13521
13521
|
let m2 = { selected: u2.value }, { tabIndex: R2, ...w2 } = a2, t2 = { ref: r2, id: i2, role: "tabpanel", "aria-labelledby": (n2 = o$2(l2.tabs.value[y2.value])) == null ? void 0 : n2.id, tabIndex: u2.value ? R2 : -1 };
|
|
13522
|
-
return !u2.value && a2.unmount && !a2.static ? h$1(f, { as: "span", "aria-hidden": true, ...t2 }) : A$3({ ourProps: t2, theirProps: w2, slot: m2, attrs: b2, slots: s2, features: N$
|
|
13522
|
+
return !u2.value && a2.unmount && !a2.static ? h$1(f, { as: "span", "aria-hidden": true, ...t2 }) : A$3({ ourProps: t2, theirProps: w2, slot: m2, attrs: b2, slots: s2, features: N$5.Static | N$5.RenderStrategy, visible: u2.value, name: "TabPanel" });
|
|
13523
13523
|
};
|
|
13524
13524
|
} });
|
|
13525
13525
|
function tryOnScopeDispose(fn) {
|
|
@@ -16090,2263 +16090,7 @@ Component that was made reactive: `,
|
|
|
16090
16090
|
try {
|
|
16091
16091
|
if (typeof document != "undefined") {
|
|
16092
16092
|
var elementStyle = document.createElement("style");
|
|
16093
|
-
elementStyle.appendChild(document.createTextNode(`@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900');@import url('https://fonts.googleapis.com/css?family=JetBrains%20Mono');
|
|
16094
|
-
|
|
16095
|
-
:root {
|
|
16096
|
-
--default-theme-border-width: 1px;
|
|
16097
|
-
--default-theme-radius: 3px;
|
|
16098
|
-
--default-theme-radius-lg: 6px;
|
|
16099
|
-
--default-theme-radius-xl: 8px;
|
|
16100
|
-
|
|
16101
|
-
--default-theme-header-height: 50px;
|
|
16102
|
-
--default-theme-sidebar-width: 280px;
|
|
16103
|
-
--default-theme-toc-width: 280px;
|
|
16104
|
-
|
|
16105
|
-
/* TYPOGRAPHY ------------------------------------ */
|
|
16106
|
-
--default-theme-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
|
|
16107
|
-
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
16108
|
-
--default-theme-font-code: 'JetBrains Mono', ui-monospace, Menlo, Monaco,
|
|
16109
|
-
'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono',
|
|
16110
|
-
'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono',
|
|
16111
|
-
'Courier New', monospace;
|
|
16112
|
-
|
|
16113
|
-
/** Font sizes for rendered text content (editor styles or static content) */
|
|
16114
|
-
--default-theme-heading-1: 40px; /* Editor Page heading */
|
|
16115
|
-
--default-theme-page-description: 24px;
|
|
16116
|
-
--default-theme-heading-2: 24px; /* Editor section headings */
|
|
16117
|
-
--default-theme-heading-3: 20px;
|
|
16118
|
-
--default-theme-heading-4: 16px;
|
|
16119
|
-
--default-theme-heading-5: 16px;
|
|
16120
|
-
--default-theme-heading-6: 16px;
|
|
16121
|
-
|
|
16122
|
-
--default-theme-paragraph: 16px;
|
|
16123
|
-
--default-theme-small: 14px;
|
|
16124
|
-
--default-theme-mini: 13px;
|
|
16125
|
-
--default-theme-micro: 12px;
|
|
16126
|
-
--default-theme-bold: 600;
|
|
16127
|
-
--default-theme-semibold: 500;
|
|
16128
|
-
--default-theme-regular: 400;
|
|
16129
|
-
|
|
16130
|
-
/* Font sizes for interactive applications (not rendered text content) */
|
|
16131
|
-
--default-theme-font-size-1: 24px;
|
|
16132
|
-
--default-theme-font-size-2: 16px;
|
|
16133
|
-
--default-theme-font-size-3: 14px;
|
|
16134
|
-
--default-theme-font-size-4: 13px;
|
|
16135
|
-
--default-theme-font-size-5: 12px;
|
|
16136
|
-
|
|
16137
|
-
--default-theme-line-height-1: 32px;
|
|
16138
|
-
--default-theme-line-height-2: 24px;
|
|
16139
|
-
--default-theme-line-height-3: 20px;
|
|
16140
|
-
--default-theme-line-height-4: 18px;
|
|
16141
|
-
--default-theme-line-height-5: 16px;
|
|
16142
|
-
|
|
16143
|
-
--default-theme-font-medium: 500;
|
|
16144
|
-
--default-theme-font-bold: 700;
|
|
16145
|
-
}
|
|
16146
|
-
.dark-mode {
|
|
16147
|
-
color-scheme: dark;
|
|
16148
|
-
--default-theme-scrollbar-color: rgba(255, 255, 255, 0.18);
|
|
16149
|
-
--default-theme-scrollbar-color-active: rgba(255, 255, 255, 0.36);
|
|
16150
|
-
--default-theme-button-1: rgba(255, 255, 255, 1);
|
|
16151
|
-
--default-theme-button-1-hover: rgba(255, 255, 255, 0.9);
|
|
16152
|
-
--default-theme-button-1-color: black;
|
|
16153
|
-
}
|
|
16154
|
-
.light-mode {
|
|
16155
|
-
color-scheme: light;
|
|
16156
|
-
--default-theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);
|
|
16157
|
-
--default-theme-scrollbar-color: rgba(0, 0, 0, 0.18);
|
|
16158
|
-
--default-theme-button-1: rgba(0, 0, 0, 1);
|
|
16159
|
-
--default-theme-button-1-hover: rgba(0, 0, 0, 0.8);
|
|
16160
|
-
--default-theme-button-1-color: rgba(255, 255, 255, 0.9);
|
|
16161
|
-
}
|
|
16162
|
-
@media (max-width: 460px) {
|
|
16163
|
-
:root {
|
|
16164
|
-
--default-theme-font-size-1: 22px;
|
|
16165
|
-
--default-theme-font-size-2: 14px;
|
|
16166
|
-
--default-theme-font-size-3: 12px;
|
|
16167
|
-
}
|
|
16168
|
-
}
|
|
16169
|
-
@media (max-width: 720px) {
|
|
16170
|
-
:root {
|
|
16171
|
-
--default-theme-heading-1: 24px;
|
|
16172
|
-
--default-theme-page-description: 20px;
|
|
16173
|
-
}
|
|
16174
|
-
}
|
|
16175
|
-
.cm-scroller,
|
|
16176
|
-
.custom-scroll {
|
|
16177
|
-
overflow-y: auto;
|
|
16178
|
-
scrollbar-color: transparent transparent;
|
|
16179
|
-
scrollbar-width: thin;
|
|
16180
|
-
-webkit-overflow-scrolling: touch;
|
|
16181
|
-
}
|
|
16182
|
-
.custom-scroll-self-contain-overflow {
|
|
16183
|
-
overscroll-behavior: contain;
|
|
16184
|
-
}
|
|
16185
|
-
@supports (-moz-appearance: none) {
|
|
16186
|
-
.cm-scroller,
|
|
16187
|
-
.custom-scroll {
|
|
16188
|
-
padding-right: 12px;
|
|
16189
|
-
}
|
|
16190
|
-
}
|
|
16191
|
-
.cm-scroller:hover,
|
|
16192
|
-
.custom-scroll:hover {
|
|
16193
|
-
scrollbar-color: var(
|
|
16194
|
-
--theme-scrollbar-color,
|
|
16195
|
-
var(--default-theme-scrollbar-color)
|
|
16196
|
-
)
|
|
16197
|
-
transparent;
|
|
16198
|
-
}
|
|
16199
|
-
.cm-scroller:hover::-webkit-scrollbar-thumb,
|
|
16200
|
-
.custom-scroll:hover::-webkit-scrollbar-thumb {
|
|
16201
|
-
background: var(
|
|
16202
|
-
--theme-scrollbar-color,
|
|
16203
|
-
var(--default-theme-scrollbar-color)
|
|
16204
|
-
);
|
|
16205
|
-
background-clip: content-box;
|
|
16206
|
-
border: 3px solid transparent;
|
|
16207
|
-
}
|
|
16208
|
-
.cm-scroller::-webkit-scrollbar-thumb:active,
|
|
16209
|
-
.custom-scroll::-webkit-scrollbar-thumb:active {
|
|
16210
|
-
background: var(
|
|
16211
|
-
--theme-scrollbar-color-active,
|
|
16212
|
-
var(--default-theme-scrollbar-color-active)
|
|
16213
|
-
);
|
|
16214
|
-
background-clip: content-box;
|
|
16215
|
-
border: 3px solid transparent;
|
|
16216
|
-
}
|
|
16217
|
-
.cm-scroller::-webkit-scrollbar-corner,
|
|
16218
|
-
.custom-scroll::-webkit-scrollbar-corner {
|
|
16219
|
-
background: transparent;
|
|
16220
|
-
}
|
|
16221
|
-
.cm-scroller::-webkit-scrollbar,
|
|
16222
|
-
.custom-scroll::-webkit-scrollbar {
|
|
16223
|
-
height: 12px;
|
|
16224
|
-
width: 12px;
|
|
16225
|
-
}
|
|
16226
|
-
.cm-scroller::-webkit-scrollbar-track,
|
|
16227
|
-
.custom-scroll::-webkit-scrollbar-track {
|
|
16228
|
-
background: transparent;
|
|
16229
|
-
}
|
|
16230
|
-
.cm-scroller::-webkit-scrollbar-thumb,
|
|
16231
|
-
.custom-scroll::-webkit-scrollbar-thumb {
|
|
16232
|
-
border-radius: 20px;
|
|
16233
|
-
background: transparent;
|
|
16234
|
-
background-clip: content-box;
|
|
16235
|
-
border: 3px solid transparent;
|
|
16236
|
-
}
|
|
16237
|
-
@media (pointer: coarse) {
|
|
16238
|
-
.cm-scroller,
|
|
16239
|
-
.custom-scroll {
|
|
16240
|
-
padding-right: 12px;
|
|
16241
|
-
}
|
|
16242
|
-
}
|
|
16243
|
-
|
|
16244
|
-
.codemirror-container[data-v-9f50a430] {
|
|
16245
|
-
width: 100%;
|
|
16246
|
-
height: 100%;
|
|
16247
|
-
padding-top: 4px;
|
|
16248
|
-
min-height: 76px;
|
|
16249
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
16250
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16251
|
-
display: flex;
|
|
16252
|
-
align-items: stretch;
|
|
16253
|
-
}
|
|
16254
|
-
.copy-to-clipboard-button[data-v-9f50a430] {
|
|
16255
|
-
background: red;
|
|
16256
|
-
}
|
|
16257
|
-
|
|
16258
|
-
.codemirror {
|
|
16259
|
-
flex-grow: 1;
|
|
16260
|
-
max-width: 100%;
|
|
16261
|
-
cursor: text;
|
|
16262
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
16263
|
-
/* Don't scale wide text on mobile because we let it scroll */
|
|
16264
|
-
-webkit-text-size-adjust: 100%;
|
|
16265
|
-
}
|
|
16266
|
-
.cm-focused {
|
|
16267
|
-
outline: none !important;
|
|
16268
|
-
}
|
|
16269
|
-
|
|
16270
|
-
.modal-layout[data-v-a06b8e92] {
|
|
16271
|
-
position: fixed;
|
|
16272
|
-
width: 100vw;
|
|
16273
|
-
height: 100vh;
|
|
16274
|
-
top: 0;
|
|
16275
|
-
left: 0;
|
|
16276
|
-
z-index: 1001;
|
|
16277
|
-
background: rgba(0, 0, 0, 0.44);
|
|
16278
|
-
padding: 20px;
|
|
16279
|
-
opacity: 0;
|
|
16280
|
-
animation: modal-fade-a06b8e92 0.2s forwards;
|
|
16281
|
-
}
|
|
16282
|
-
.modal-body[data-v-a06b8e92] {
|
|
16283
|
-
padding: 24px 24px 18px 24px;
|
|
16284
|
-
max-height: calc(100vh - 240px);
|
|
16285
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
16286
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
16287
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
16288
|
-
position: relative;
|
|
16289
|
-
}
|
|
16290
|
-
.modal[data-v-a06b8e92] {
|
|
16291
|
-
margin: 80px auto 0;
|
|
16292
|
-
position: relative;
|
|
16293
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
16294
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
16295
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16296
|
-
width: 100%;
|
|
16297
|
-
text-align: left;
|
|
16298
|
-
line-height: 1.4;
|
|
16299
|
-
opacity: 0;
|
|
16300
|
-
transform: scale(0.98);
|
|
16301
|
-
animation: modal-pop-a06b8e92 0.15s 0.15s forwards;
|
|
16302
|
-
display: flex;
|
|
16303
|
-
flex-direction: column;
|
|
16304
|
-
}
|
|
16305
|
-
.modal[data-v-a06b8e92]:before {
|
|
16306
|
-
content: '';
|
|
16307
|
-
display: block;
|
|
16308
|
-
width: 100%;
|
|
16309
|
-
height: 100%;
|
|
16310
|
-
position: absolute;
|
|
16311
|
-
z-index: 0;
|
|
16312
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
16313
|
-
}
|
|
16314
|
-
.dark-mode .modal[data-v-a06b8e92]:before {
|
|
16315
|
-
background: #1a1a1a;
|
|
16316
|
-
}
|
|
16317
|
-
.light-mode .modal[data-v-a06b8e92]:before {
|
|
16318
|
-
background: #fff;
|
|
16319
|
-
}
|
|
16320
|
-
.modal-content-history[data-v-a06b8e92] {
|
|
16321
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
16322
|
-
}
|
|
16323
|
-
.modal-content-history[data-v-a06b8e92],
|
|
16324
|
-
.modal-content-large[data-v-a06b8e92] {
|
|
16325
|
-
max-width: 800px;
|
|
16326
|
-
}
|
|
16327
|
-
.modal-content-normal[data-v-a06b8e92] {
|
|
16328
|
-
max-width: 640px;
|
|
16329
|
-
}
|
|
16330
|
-
.modal-content-small[data-v-a06b8e92] {
|
|
16331
|
-
max-width: 480px;
|
|
16332
|
-
}
|
|
16333
|
-
@keyframes modal-fade-a06b8e92 {
|
|
16334
|
-
from {
|
|
16335
|
-
opacity: 0;
|
|
16336
|
-
}
|
|
16337
|
-
to {
|
|
16338
|
-
opacity: 1;
|
|
16339
|
-
}
|
|
16340
|
-
}
|
|
16341
|
-
@keyframes modal-pop-a06b8e92 {
|
|
16342
|
-
0% {
|
|
16343
|
-
opacity: 0;
|
|
16344
|
-
}
|
|
16345
|
-
100% {
|
|
16346
|
-
opacity: 1;
|
|
16347
|
-
transform: scale(1);
|
|
16348
|
-
}
|
|
16349
|
-
}
|
|
16350
|
-
.modal-header[data-v-a06b8e92] {
|
|
16351
|
-
padding: 12px 24px;
|
|
16352
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16353
|
-
font-size: var(--theme-font-size-4, var(--default-theme-font-size-4));
|
|
16354
|
-
text-align: left;
|
|
16355
|
-
font-weight: 600;
|
|
16356
|
-
margin: 0;
|
|
16357
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg))
|
|
16358
|
-
var(--theme-radius-lg, var(--default-theme-radius-lg)) 0 0;
|
|
16359
|
-
z-index: 1;
|
|
16360
|
-
}
|
|
16361
|
-
.modal-content-history .modal-header[data-v-a06b8e92] {
|
|
16362
|
-
padding-bottom: 0;
|
|
16363
|
-
padding-top: 24px;
|
|
16364
|
-
}
|
|
16365
|
-
.modal-content-history .modal-body[data-v-a06b8e92] {
|
|
16366
|
-
padding-top: 12px;
|
|
16367
|
-
}
|
|
16368
|
-
.modal-content-search[data-v-a06b8e92] {
|
|
16369
|
-
max-width: 540px;
|
|
16370
|
-
}
|
|
16371
|
-
.modal-content-search .modal-body[data-v-a06b8e92] {
|
|
16372
|
-
padding: 0;
|
|
16373
|
-
overflow: hidden;
|
|
16374
|
-
display: flex;
|
|
16375
|
-
flex-direction: column;
|
|
16376
|
-
max-height: 440px;
|
|
16377
|
-
}
|
|
16378
|
-
|
|
16379
|
-
.navtable-item-time[data-v-dd49a57f] {
|
|
16380
|
-
text-transform: capitalize;
|
|
16381
|
-
}
|
|
16382
|
-
.navtable-item__active[data-v-dd49a57f] {
|
|
16383
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
16384
|
-
cursor: default;
|
|
16385
|
-
}
|
|
16386
|
-
|
|
16387
|
-
.navtable-mock {
|
|
16388
|
-
background-repeat: repeat;
|
|
16389
|
-
width: 100%;
|
|
16390
|
-
background-size: 31px 31px;
|
|
16391
|
-
background-position: center 1px;
|
|
16392
|
-
flex: 1;
|
|
16393
|
-
position: relative;
|
|
16394
|
-
z-index: 0;
|
|
16395
|
-
border-top: 1px solid
|
|
16396
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
16397
|
-
background: repeating-linear-gradient(
|
|
16398
|
-
var(--theme-background-1, var(--default-theme-background-1)),
|
|
16399
|
-
var(--theme-background-1, var(--default-theme-background-1)) 34.8px,
|
|
16400
|
-
var(--theme-border-color, var(--default-theme-border-color)) 34.8px,
|
|
16401
|
-
var(--theme-border-color, var(--default-theme-border-color)) 35.8px
|
|
16402
|
-
);
|
|
16403
|
-
}
|
|
16404
|
-
.navtable-mock .navtable-item {
|
|
16405
|
-
position: absolute;
|
|
16406
|
-
width: 100%;
|
|
16407
|
-
height: 100%;
|
|
16408
|
-
left: 0;
|
|
16409
|
-
top: 0;
|
|
16410
|
-
background: transparent;
|
|
16411
|
-
box-shadow: none;
|
|
16412
|
-
}
|
|
16413
|
-
.radio {
|
|
16414
|
-
height: 10px;
|
|
16415
|
-
max-width: 10px;
|
|
16416
|
-
width: 10px;
|
|
16417
|
-
max-height: 10px;
|
|
16418
|
-
background: transparent;
|
|
16419
|
-
border: var(--border, var(--default-border));
|
|
16420
|
-
flex-shrink: 0;
|
|
16421
|
-
margin-right: 6px;
|
|
16422
|
-
margin-left: 0;
|
|
16423
|
-
border-radius: 50%;
|
|
16424
|
-
display: flex;
|
|
16425
|
-
align-items: center;
|
|
16426
|
-
justify-content: center;
|
|
16427
|
-
outline: none;
|
|
16428
|
-
padding: 0;
|
|
16429
|
-
}
|
|
16430
|
-
.radio:before {
|
|
16431
|
-
content: '';
|
|
16432
|
-
position: absolute;
|
|
16433
|
-
top: 0;
|
|
16434
|
-
left: 0;
|
|
16435
|
-
width: 100%;
|
|
16436
|
-
height: 100%;
|
|
16437
|
-
cursor: pointer;
|
|
16438
|
-
}
|
|
16439
|
-
.navtable-item__active:before {
|
|
16440
|
-
content: '';
|
|
16441
|
-
display: block;
|
|
16442
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;
|
|
16443
|
-
width: 100%;
|
|
16444
|
-
position: absolute;
|
|
16445
|
-
top: 0;
|
|
16446
|
-
left: 0;
|
|
16447
|
-
height: 100%;
|
|
16448
|
-
}
|
|
16449
|
-
.navtable-item__active + .navtable-item {
|
|
16450
|
-
/* box-shadow: none; */
|
|
16451
|
-
}
|
|
16452
|
-
.radio.post {
|
|
16453
|
-
background: var(--theme-color-green, var(--default-theme-color-green));
|
|
16454
|
-
}
|
|
16455
|
-
.radio.delete {
|
|
16456
|
-
background: var(--theme-color-red, var(--default-theme-color-red));
|
|
16457
|
-
}
|
|
16458
|
-
.radio.patch {
|
|
16459
|
-
background: var(--theme-color-yellow, var(--default-theme-color-yellow));
|
|
16460
|
-
}
|
|
16461
|
-
.radio.get {
|
|
16462
|
-
background: var(--theme-color-blue, var(--default-theme-color-blue));
|
|
16463
|
-
}
|
|
16464
|
-
.radio.put {
|
|
16465
|
-
background: var(--theme-color-orange, var(--default-theme-color-orange));
|
|
16466
|
-
}
|
|
16467
|
-
.navtable-item-request span {
|
|
16468
|
-
border: none;
|
|
16469
|
-
outline: none;
|
|
16470
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
16471
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16472
|
-
width: 100%;
|
|
16473
|
-
display: block;
|
|
16474
|
-
overflow: hidden;
|
|
16475
|
-
white-space: nowrap;
|
|
16476
|
-
text-overflow: ellipsis;
|
|
16477
|
-
}
|
|
16478
|
-
.navtable-item-request span em {
|
|
16479
|
-
text-transform: uppercase;
|
|
16480
|
-
font-style: normal;
|
|
16481
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
16482
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
16483
|
-
margin-right: 6px;
|
|
16484
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
16485
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
16486
|
-
}
|
|
16487
|
-
|
|
16488
|
-
.request-method-select[data-v-8e2122cd] {
|
|
16489
|
-
position: relative;
|
|
16490
|
-
display: flex;
|
|
16491
|
-
}
|
|
16492
|
-
.request-method-select select[data-v-8e2122cd] {
|
|
16493
|
-
border: none;
|
|
16494
|
-
outline: none;
|
|
16495
|
-
cursor: pointer;
|
|
16496
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
16497
|
-
box-shadow: -2px 0 0 0
|
|
16498
|
-
var(--theme-background-3, var(--default-theme-background-3));
|
|
16499
|
-
position: absolute;
|
|
16500
|
-
top: 0;
|
|
16501
|
-
left: 0;
|
|
16502
|
-
width: 100%;
|
|
16503
|
-
height: 100%;
|
|
16504
|
-
opacity: 0;
|
|
16505
|
-
-moz-appearance: none;
|
|
16506
|
-
-webkit-appearance: none;
|
|
16507
|
-
appearance: none;
|
|
16508
|
-
}
|
|
16509
|
-
.request-method-select select[disabled][data-v-8e2122cd] {
|
|
16510
|
-
pointer-events: none;
|
|
16511
|
-
}
|
|
16512
|
-
.request-method[data-v-8e2122cd] {
|
|
16513
|
-
display: flex;
|
|
16514
|
-
align-items: center;
|
|
16515
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
16516
|
-
appearance: none;
|
|
16517
|
-
-webkit-appearance: none;
|
|
16518
|
-
padding: 0 12px;
|
|
16519
|
-
border-right: 1px solid
|
|
16520
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
16521
|
-
position: relative;
|
|
16522
|
-
}
|
|
16523
|
-
.request-method span[data-v-8e2122cd] {
|
|
16524
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
16525
|
-
font-size: 500;
|
|
16526
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
16527
|
-
text-transform: uppercase;
|
|
16528
|
-
display: flex;
|
|
16529
|
-
align-items: center;
|
|
16530
|
-
}
|
|
16531
|
-
.request-method:not(.request-method--disabled) span[data-v-8e2122cd]:after {
|
|
16532
|
-
content: '';
|
|
16533
|
-
width: 7px;
|
|
16534
|
-
height: 7px;
|
|
16535
|
-
transform: rotate(45deg) translate3d(-2px, -2px, 0);
|
|
16536
|
-
display: block;
|
|
16537
|
-
margin-left: 6px;
|
|
16538
|
-
box-shadow: 1px 1px 0 currentColor;
|
|
16539
|
-
}
|
|
16540
|
-
.request-method i[data-v-8e2122cd] {
|
|
16541
|
-
width: 10px;
|
|
16542
|
-
height: 10px;
|
|
16543
|
-
border-radius: 50%;
|
|
16544
|
-
margin-right: 6px;
|
|
16545
|
-
text-align: center;
|
|
16546
|
-
line-height: 18px;
|
|
16547
|
-
font-style: normal;
|
|
16548
|
-
flex-shrink: 0;
|
|
16549
|
-
display: inline-block;
|
|
16550
|
-
color: var(--theme-color-disabled, var(--default-theme-color-disabled));
|
|
16551
|
-
background: var(
|
|
16552
|
-
--scalar-api-client-color,
|
|
16553
|
-
var(--default-scalar-api-client-color)
|
|
16554
|
-
);
|
|
16555
|
-
}
|
|
16556
|
-
|
|
16557
|
-
.api-client-url-variable {
|
|
16558
|
-
color: var(--scalar-api-client-color, var(--default-scalar-api-client-color));
|
|
16559
|
-
}
|
|
16560
|
-
|
|
16561
|
-
.loader[data-v-75df9114] {
|
|
16562
|
-
position: absolute;
|
|
16563
|
-
z-index: 3;
|
|
16564
|
-
height: 2px;
|
|
16565
|
-
background: var(
|
|
16566
|
-
--scalar-api-client-color,
|
|
16567
|
-
var(--default-scalar-api-client-color)
|
|
16568
|
-
);
|
|
16569
|
-
animation: loading-75df9114 5s cubic-bezier(0, 0.5, 0.25, 1);
|
|
16570
|
-
}
|
|
16571
|
-
@keyframes loading-75df9114 {
|
|
16572
|
-
0% {
|
|
16573
|
-
width: 0;
|
|
16574
|
-
}
|
|
16575
|
-
100% {
|
|
16576
|
-
width: 100%;
|
|
16577
|
-
}
|
|
16578
|
-
}
|
|
16579
|
-
.address-bar[data-v-75df9114] {
|
|
16580
|
-
width: 100%;
|
|
16581
|
-
padding: 12px 12px 10px 12px;
|
|
16582
|
-
display: flex;
|
|
16583
|
-
align-items: center;
|
|
16584
|
-
position: relative;
|
|
16585
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
16586
|
-
}
|
|
16587
|
-
.url-form[data-v-75df9114] {
|
|
16588
|
-
display: flex;
|
|
16589
|
-
width: 100%;
|
|
16590
|
-
align-items: stretch;
|
|
16591
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
16592
|
-
}
|
|
16593
|
-
.url-form[data-v-75df9114] .cm-content {
|
|
16594
|
-
display: flex;
|
|
16595
|
-
align-items: center;
|
|
16596
|
-
}
|
|
16597
|
-
.url-form-field[data-v-75df9114] {
|
|
16598
|
-
border-right: 0;
|
|
16599
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
16600
|
-
border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0
|
|
16601
|
-
var(--theme-radius, var(--default-theme-radius));
|
|
16602
|
-
display: flex;
|
|
16603
|
-
align-items: stretch;
|
|
16604
|
-
width: 100%;
|
|
16605
|
-
overflow: hidden;
|
|
16606
|
-
min-height: 31px;
|
|
16607
|
-
}
|
|
16608
|
-
.url-form-input[data-v-75df9114] {
|
|
16609
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16610
|
-
}
|
|
16611
|
-
.url-form-input[data-v-75df9114] {
|
|
16612
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
16613
|
-
min-height: auto;
|
|
16614
|
-
padding-top: 0;
|
|
16615
|
-
}
|
|
16616
|
-
.url-form-input[data-v-75df9114] .cm-scroller {
|
|
16617
|
-
overflow-y: hidden;
|
|
16618
|
-
}
|
|
16619
|
-
.history[data-v-75df9114] {
|
|
16620
|
-
appearance: none;
|
|
16621
|
-
-webkit-appearance: none;
|
|
16622
|
-
background: transparent;
|
|
16623
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
16624
|
-
display: flex;
|
|
16625
|
-
align-items: center;
|
|
16626
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
16627
|
-
height: 100%;
|
|
16628
|
-
}
|
|
16629
|
-
.send-button[type='submit'][data-v-75df9114] {
|
|
16630
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
16631
|
-
letter-spacing: 0.25px;
|
|
16632
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
16633
|
-
color: white;
|
|
16634
|
-
border: none;
|
|
16635
|
-
white-space: nowrap;
|
|
16636
|
-
padding: 0 12px;
|
|
16637
|
-
text-transform: uppercase;
|
|
16638
|
-
cursor: pointer;
|
|
16639
|
-
outline: none;
|
|
16640
|
-
font-family: (--theme-font, var(--default-theme-font));
|
|
16641
|
-
border-radius: 0 var(--theme-radius, var(--default-theme-radius))
|
|
16642
|
-
var(--theme-radius, var(--default-theme-radius)) 0;
|
|
16643
|
-
background: var(
|
|
16644
|
-
--scalar-api-client-color,
|
|
16645
|
-
var(--default-scalar-api-client-color)
|
|
16646
|
-
);
|
|
16647
|
-
position: relative;
|
|
16648
|
-
/** #087f5b */
|
|
16649
|
-
display: flex;
|
|
16650
|
-
align-items: center;
|
|
16651
|
-
overflow: hidden;
|
|
16652
|
-
flex-shrink: 0;
|
|
16653
|
-
}
|
|
16654
|
-
.send-button[data-v-75df9114]:before {
|
|
16655
|
-
content: '';
|
|
16656
|
-
position: absolute;
|
|
16657
|
-
top: -5%;
|
|
16658
|
-
left: -5%;
|
|
16659
|
-
width: 110%;
|
|
16660
|
-
height: 110%;
|
|
16661
|
-
pointer-events: none;
|
|
16662
|
-
cursor: pointer;
|
|
16663
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
16664
|
-
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
|
|
16665
|
-
}
|
|
16666
|
-
.send-button[data-v-75df9114]:hover:before {
|
|
16667
|
-
background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
|
|
16668
|
-
}
|
|
16669
|
-
.send-button svg[data-v-75df9114] {
|
|
16670
|
-
width: 12px;
|
|
16671
|
-
height: 12px;
|
|
16672
|
-
flex-shrink: 0;
|
|
16673
|
-
margin-right: 6px;
|
|
16674
|
-
position: relative;
|
|
16675
|
-
}
|
|
16676
|
-
.send-button span[data-v-75df9114] {
|
|
16677
|
-
position: relative;
|
|
16678
|
-
}
|
|
16679
|
-
@media screen and (max-width: 720px) {
|
|
16680
|
-
.history-toggle span[data-v-75df9114],
|
|
16681
|
-
.send-button span[data-v-75df9114] {
|
|
16682
|
-
display: none;
|
|
16683
|
-
}
|
|
16684
|
-
.history-toggle svg[data-v-75df9114],
|
|
16685
|
-
.send-button svg[data-v-75df9114] {
|
|
16686
|
-
margin-right: 0;
|
|
16687
|
-
}
|
|
16688
|
-
}
|
|
16689
|
-
.send-button[disabled][data-v-75df9114] {
|
|
16690
|
-
pointer-events: none;
|
|
16691
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
16692
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
16693
|
-
border: 1px solid var(--default-theme-border-color);
|
|
16694
|
-
}
|
|
16695
|
-
.history-toggle[data-v-75df9114] {
|
|
16696
|
-
padding: 0 12px;
|
|
16697
|
-
line-height: 30px;
|
|
16698
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
16699
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
16700
|
-
letter-spacing: 0.125px;
|
|
16701
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
16702
|
-
text-transform: uppercase;
|
|
16703
|
-
height: 100%;
|
|
16704
|
-
display: flex;
|
|
16705
|
-
align-items: center;
|
|
16706
|
-
cursor: pointer;
|
|
16707
|
-
white-space: nowrap;
|
|
16708
|
-
box-shadow: 0 0 0 1px
|
|
16709
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
16710
|
-
margin-left: 12px;
|
|
16711
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
16712
|
-
user-select: none;
|
|
16713
|
-
}
|
|
16714
|
-
.history-toggle[data-v-75df9114]:hover {
|
|
16715
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
16716
|
-
}
|
|
16717
|
-
.history-toggle svg[data-v-75df9114] {
|
|
16718
|
-
height: 13px;
|
|
16719
|
-
width: 13px;
|
|
16720
|
-
margin-right: 6px;
|
|
16721
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
16722
|
-
}
|
|
16723
|
-
.address-bar-content[data-v-75df9114] {
|
|
16724
|
-
width: 640px;
|
|
16725
|
-
height: 100%;
|
|
16726
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
16727
|
-
position: fixed;
|
|
16728
|
-
top: 0;
|
|
16729
|
-
right: 0;
|
|
16730
|
-
z-index: 1000;
|
|
16731
|
-
transform: translate3d(640px, 0, 0);
|
|
16732
|
-
opacity: 0;
|
|
16733
|
-
transition:
|
|
16734
|
-
transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),
|
|
16735
|
-
opacity 0.01s ease-in-out 0.5s;
|
|
16736
|
-
pointer-events: none;
|
|
16737
|
-
}
|
|
16738
|
-
.address-bar--with-history[data-v-75df9114] {
|
|
16739
|
-
z-index: 100000;
|
|
16740
|
-
}
|
|
16741
|
-
.address-bar--with-history .address-bar-content[data-v-75df9114] {
|
|
16742
|
-
transform: translate3d(0, 0, 0);
|
|
16743
|
-
opacity: 1;
|
|
16744
|
-
pointer-events: all;
|
|
16745
|
-
transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
|
|
16746
|
-
}
|
|
16747
|
-
.address-bar--with-history .address-bar-close[data-v-75df9114] {
|
|
16748
|
-
opacity: 1;
|
|
16749
|
-
pointer-events: all;
|
|
16750
|
-
cursor: pointer;
|
|
16751
|
-
}
|
|
16752
|
-
.address-bar-close[data-v-75df9114] {
|
|
16753
|
-
width: 100%;
|
|
16754
|
-
height: 100%;
|
|
16755
|
-
position: fixed;
|
|
16756
|
-
top: 0;
|
|
16757
|
-
left: 0;
|
|
16758
|
-
pointer-events: none;
|
|
16759
|
-
opacity: 0;
|
|
16760
|
-
transition: all 0.1s ease-in-out;
|
|
16761
|
-
z-index: 1000;
|
|
16762
|
-
}
|
|
16763
|
-
|
|
16764
|
-
.scalar-api-client__item {
|
|
16765
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
16766
|
-
margin-bottom: 6px;
|
|
16767
|
-
position: relative;
|
|
16768
|
-
}
|
|
16769
|
-
.scalar-api-client__item button {
|
|
16770
|
-
background-color: transparent;
|
|
16771
|
-
text-align: left;
|
|
16772
|
-
}
|
|
16773
|
-
.scalar-api-client__item:hover {
|
|
16774
|
-
cursor: pointer;
|
|
16775
|
-
}
|
|
16776
|
-
.scalar-api-client__toggle:after {
|
|
16777
|
-
content: '';
|
|
16778
|
-
position: absolute;
|
|
16779
|
-
bottom: -6.5px;
|
|
16780
|
-
width: 100%;
|
|
16781
|
-
height: 6px;
|
|
16782
|
-
left: 0;
|
|
16783
|
-
}
|
|
16784
|
-
.scalar-api-client__item--open .scalar-api-client__toggle:after {
|
|
16785
|
-
display: none;
|
|
16786
|
-
}
|
|
16787
|
-
.scalar-api-client__item:hover,
|
|
16788
|
-
.scalar-api-client__item--open {
|
|
16789
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
16790
|
-
}
|
|
16791
|
-
.scalar-api-client__item--open .scalar-api-client__item__content {
|
|
16792
|
-
display: flex;
|
|
16793
|
-
}
|
|
16794
|
-
.scalar-api-client__item--open:hover {
|
|
16795
|
-
cursor: default;
|
|
16796
|
-
}
|
|
16797
|
-
.scalar-api-client__item--open .scalar-api-client__toggle__icon {
|
|
16798
|
-
transform: rotate(90deg);
|
|
16799
|
-
}
|
|
16800
|
-
.scalar-api-client__toggle {
|
|
16801
|
-
padding: 6px;
|
|
16802
|
-
min-height: 37px;
|
|
16803
|
-
display: flex;
|
|
16804
|
-
align-items: center;
|
|
16805
|
-
justify-content: space-between;
|
|
16806
|
-
position: relative;
|
|
16807
|
-
width: 100%;
|
|
16808
|
-
appearance: none;
|
|
16809
|
-
outline: 0;
|
|
16810
|
-
border: none;
|
|
16811
|
-
font-family: (--theme-font, var(--default-theme-font));
|
|
16812
|
-
cursor: pointer;
|
|
16813
|
-
}
|
|
16814
|
-
.scalar-api-client__item .scalar-api-client__item__title {
|
|
16815
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16816
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
16817
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
16818
|
-
font-family: (--theme-font, var(--default-theme-font));
|
|
16819
|
-
user-select: none;
|
|
16820
|
-
flex: 1;
|
|
16821
|
-
position: relative;
|
|
16822
|
-
z-index: 1;
|
|
16823
|
-
}
|
|
16824
|
-
.scalar-api-client__item .scalar-api-client__toggle__icon {
|
|
16825
|
-
width: 10px;
|
|
16826
|
-
margin-right: 6px;
|
|
16827
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
16828
|
-
z-index: 1;
|
|
16829
|
-
position: relative;
|
|
16830
|
-
}
|
|
16831
|
-
.scalar-api-client__toggle:hover .scalar-api-client__toggle__icon {
|
|
16832
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16833
|
-
}
|
|
16834
|
-
.scalar-api-client__item__options {
|
|
16835
|
-
position: relative;
|
|
16836
|
-
z-index: 1;
|
|
16837
|
-
}
|
|
16838
|
-
.scalar-api-client__item__options span {
|
|
16839
|
-
background: transparent;
|
|
16840
|
-
padding: 2px 0;
|
|
16841
|
-
border-radius: 3px;
|
|
16842
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
16843
|
-
pointer-events: none;
|
|
16844
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
16845
|
-
display: flex;
|
|
16846
|
-
align-items: center;
|
|
16847
|
-
justify-content: center;
|
|
16848
|
-
}
|
|
16849
|
-
.scalar-api-client__item__options:hover span {
|
|
16850
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
16851
|
-
border-color: currentColor;
|
|
16852
|
-
}
|
|
16853
|
-
.scalar-api-client__item__options span svg {
|
|
16854
|
-
width: 15px;
|
|
16855
|
-
height: 15px;
|
|
16856
|
-
margin-left: 3px;
|
|
16857
|
-
}
|
|
16858
|
-
.scalar-api-client__item__options select {
|
|
16859
|
-
position: absolute;
|
|
16860
|
-
top: 0;
|
|
16861
|
-
left: 0;
|
|
16862
|
-
width: 100%;
|
|
16863
|
-
height: 100%;
|
|
16864
|
-
opacity: 0;
|
|
16865
|
-
cursor: pointer;
|
|
16866
|
-
-moz-appearance: none;
|
|
16867
|
-
-webkit-appearance: none;
|
|
16868
|
-
appearance: none;
|
|
16869
|
-
}
|
|
16870
|
-
.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {
|
|
16871
|
-
padding-top: 0;
|
|
16872
|
-
}
|
|
16873
|
-
|
|
16874
|
-
.loader-wrapper[data-v-9c0899b7] {
|
|
16875
|
-
position: relative;
|
|
16876
|
-
height: var(--389e7704);
|
|
16877
|
-
width: var(--389e7704);
|
|
16878
|
-
|
|
16879
|
-
display: flex;
|
|
16880
|
-
align-items: center;
|
|
16881
|
-
justify-content: center;
|
|
16882
|
-
|
|
16883
|
-
--default-loader-size: 50%;
|
|
16884
|
-
}
|
|
16885
|
-
|
|
16886
|
-
/*SVG Positioning for Loader Objects*/
|
|
16887
|
-
.svg-loader[data-v-9c0899b7] {
|
|
16888
|
-
width: var(--loader-size, var(--default-loader-size));
|
|
16889
|
-
height: var(--loader-size, var(--default-loader-size));
|
|
16890
|
-
top: 1rem;
|
|
16891
|
-
right: 0.9rem;
|
|
16892
|
-
overflow: visible;
|
|
16893
|
-
|
|
16894
|
-
fill: none;
|
|
16895
|
-
background-color: transparent;
|
|
16896
|
-
stroke: currentColor;
|
|
16897
|
-
}
|
|
16898
|
-
.svg-path[data-v-9c0899b7] {
|
|
16899
|
-
stroke-width: 14;
|
|
16900
|
-
fill: none;
|
|
16901
|
-
transition: 0.3s;
|
|
16902
|
-
}
|
|
16903
|
-
.svg-x-mark[data-v-9c0899b7] {
|
|
16904
|
-
stroke-dasharray: 57;
|
|
16905
|
-
stroke-dashoffset: 57;
|
|
16906
|
-
transition-delay: 0s;
|
|
16907
|
-
}
|
|
16908
|
-
.svg-check-mark[data-v-9c0899b7] {
|
|
16909
|
-
stroke-dasharray: 149;
|
|
16910
|
-
stroke-dashoffset: 149;
|
|
16911
|
-
transition-delay: 0s;
|
|
16912
|
-
}
|
|
16913
|
-
.icon-is-invalid .svg-x-mark[data-v-9c0899b7] {
|
|
16914
|
-
stroke-dashoffset: 0;
|
|
16915
|
-
transition-delay: 0.3s;
|
|
16916
|
-
}
|
|
16917
|
-
.icon-is-valid .svg-check-mark[data-v-9c0899b7] {
|
|
16918
|
-
stroke-dashoffset: 0;
|
|
16919
|
-
transition-delay: 0.3s;
|
|
16920
|
-
}
|
|
16921
|
-
.circular-loader[data-v-9c0899b7] {
|
|
16922
|
-
animation:
|
|
16923
|
-
rotate-9c0899b7 0.7s linear infinite,fade-in-9c0899b7 0.4s;
|
|
16924
|
-
|
|
16925
|
-
transform-origin: center center;
|
|
16926
|
-
transform: scale(5);
|
|
16927
|
-
|
|
16928
|
-
background: transparent;
|
|
16929
|
-
}
|
|
16930
|
-
.loader-path[data-v-9c0899b7] {
|
|
16931
|
-
stroke-dasharray: 50, 200;
|
|
16932
|
-
stroke-dashoffset: -100;
|
|
16933
|
-
stroke-linecap: round;
|
|
16934
|
-
}
|
|
16935
|
-
.loader-path-off[data-v-9c0899b7] {
|
|
16936
|
-
stroke-dasharray: 50, 200;
|
|
16937
|
-
stroke-dashoffset: -100;
|
|
16938
|
-
transition: opacity 0.3s;
|
|
16939
|
-
opacity: 0;
|
|
16940
|
-
}
|
|
16941
|
-
@keyframes fade-in-9c0899b7 {
|
|
16942
|
-
0% {
|
|
16943
|
-
opacity: 0;
|
|
16944
|
-
}
|
|
16945
|
-
70% {
|
|
16946
|
-
opacity: 0;
|
|
16947
|
-
}
|
|
16948
|
-
100% {
|
|
16949
|
-
opacity: 1;
|
|
16950
|
-
}
|
|
16951
|
-
}
|
|
16952
|
-
@keyframes rotate-9c0899b7 {
|
|
16953
|
-
from {
|
|
16954
|
-
transform: scale(5) rotate(0deg);
|
|
16955
|
-
}
|
|
16956
|
-
to {
|
|
16957
|
-
transform: scale(5) rotate(360deg);
|
|
16958
|
-
}
|
|
16959
|
-
}
|
|
16960
|
-
pre[class*="language-"].line-numbers {
|
|
16961
|
-
position: relative;
|
|
16962
|
-
padding-left: 3.8em;
|
|
16963
|
-
counter-reset: linenumber;
|
|
16964
|
-
}
|
|
16965
|
-
|
|
16966
|
-
pre[class*="language-"].line-numbers > code {
|
|
16967
|
-
position: relative;
|
|
16968
|
-
white-space: inherit;
|
|
16969
|
-
}
|
|
16970
|
-
|
|
16971
|
-
.line-numbers .line-numbers-rows {
|
|
16972
|
-
position: absolute;
|
|
16973
|
-
pointer-events: none;
|
|
16974
|
-
top: 0;
|
|
16975
|
-
font-size: 100%;
|
|
16976
|
-
left: -3.8em;
|
|
16977
|
-
width: 3em; /* works for line-numbers below 1000 lines */
|
|
16978
|
-
letter-spacing: -1px;
|
|
16979
|
-
border-right: 1px solid #999;
|
|
16980
|
-
|
|
16981
|
-
-webkit-user-select: none;
|
|
16982
|
-
-moz-user-select: none;
|
|
16983
|
-
-ms-user-select: none;
|
|
16984
|
-
user-select: none;
|
|
16985
|
-
|
|
16986
|
-
}
|
|
16987
|
-
|
|
16988
|
-
.line-numbers-rows > span {
|
|
16989
|
-
display: block;
|
|
16990
|
-
counter-increment: linenumber;
|
|
16991
|
-
}
|
|
16992
|
-
|
|
16993
|
-
.line-numbers-rows > span:before {
|
|
16994
|
-
content: counter(linenumber);
|
|
16995
|
-
color: #999;
|
|
16996
|
-
display: block;
|
|
16997
|
-
padding-right: 0.8em;
|
|
16998
|
-
text-align: right;
|
|
16999
|
-
}
|
|
17000
|
-
|
|
17001
|
-
.scalar-codeblock-code[class*='language-'],
|
|
17002
|
-
.scalar-codeblock-pre[class*='language-'] {
|
|
17003
|
-
color: var(--theme-color-3, var(--default-theme-color-2));
|
|
17004
|
-
background: none;
|
|
17005
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
17006
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
17007
|
-
text-align: left;
|
|
17008
|
-
white-space: pre;
|
|
17009
|
-
word-spacing: normal;
|
|
17010
|
-
word-break: normal;
|
|
17011
|
-
word-wrap: normal;
|
|
17012
|
-
line-height: 1.4;
|
|
17013
|
-
|
|
17014
|
-
-moz-tab-size: 4;
|
|
17015
|
-
-o-tab-size: 4;
|
|
17016
|
-
tab-size: 4;
|
|
17017
|
-
|
|
17018
|
-
-webkit-hyphens: none;
|
|
17019
|
-
-moz-hyphens: none;
|
|
17020
|
-
-ms-hyphens: none;
|
|
17021
|
-
hyphens: none;
|
|
17022
|
-
}
|
|
17023
|
-
|
|
17024
|
-
/* Code blocks */
|
|
17025
|
-
.scalar-codeblock-pre[class*='language-'] {
|
|
17026
|
-
margin: 0;
|
|
17027
|
-
padding: 0.5rem;
|
|
17028
|
-
overflow: auto;
|
|
17029
|
-
}
|
|
17030
|
-
:not(pre) > code[class*='language-'],
|
|
17031
|
-
.scalar-codeblock-pre[class*='language-'] {
|
|
17032
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17033
|
-
}
|
|
17034
|
-
|
|
17035
|
-
/* Line Numbers */
|
|
17036
|
-
.scalar-codeblock-pre[class*='language-'].line-numbers {
|
|
17037
|
-
padding-left: 2em;
|
|
17038
|
-
position: relative;
|
|
17039
|
-
counter-reset: linenumber;
|
|
17040
|
-
}
|
|
17041
|
-
.line-numbers span.line-numbers-rows {
|
|
17042
|
-
width: 2em;
|
|
17043
|
-
border: none;
|
|
17044
|
-
left: -2em;
|
|
17045
|
-
}
|
|
17046
|
-
.line-numbers code {
|
|
17047
|
-
position: relative;
|
|
17048
|
-
white-space: inherit;
|
|
17049
|
-
}
|
|
17050
|
-
|
|
17051
|
-
/* Inline code */
|
|
17052
|
-
:not(pre) > code[class*='language-'] {
|
|
17053
|
-
padding: 0.1em;
|
|
17054
|
-
border-radius: 0.3em;
|
|
17055
|
-
white-space: normal;
|
|
17056
|
-
}
|
|
17057
|
-
|
|
17058
|
-
/* Code */
|
|
17059
|
-
.token.comment,
|
|
17060
|
-
.token.block-comment,
|
|
17061
|
-
.token.prolog,
|
|
17062
|
-
.token.doctype,
|
|
17063
|
-
.token.cdata {
|
|
17064
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17065
|
-
}
|
|
17066
|
-
.token.punctuation {
|
|
17067
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
17068
|
-
}
|
|
17069
|
-
.token.tag,
|
|
17070
|
-
.token.attr-name,
|
|
17071
|
-
.token.namespace,
|
|
17072
|
-
.token.deleted {
|
|
17073
|
-
color: var(--theme-color-red, var(--default-theme-color-red));
|
|
17074
|
-
}
|
|
17075
|
-
.token.function-name {
|
|
17076
|
-
color: var(--theme-color-green, var(--default-theme-color-green));
|
|
17077
|
-
}
|
|
17078
|
-
.token.boolean,
|
|
17079
|
-
.token.number,
|
|
17080
|
-
.token.function {
|
|
17081
|
-
color: var(--theme-color-orange, var(--default-theme-color-orange));
|
|
17082
|
-
}
|
|
17083
|
-
.token.property,
|
|
17084
|
-
.token.class-name,
|
|
17085
|
-
.token.constant,
|
|
17086
|
-
.token.symbol {
|
|
17087
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17088
|
-
}
|
|
17089
|
-
.token.selector,
|
|
17090
|
-
.token.important,
|
|
17091
|
-
.token.atrule,
|
|
17092
|
-
.token.keyword,
|
|
17093
|
-
.token.builtin {
|
|
17094
|
-
color: var(--theme-color-purple, var(--default-theme-color-purple));
|
|
17095
|
-
}
|
|
17096
|
-
.token.string,
|
|
17097
|
-
.token.char,
|
|
17098
|
-
.token.attr-value,
|
|
17099
|
-
.token.regex,
|
|
17100
|
-
.token.variable {
|
|
17101
|
-
color: var(--theme-color-blue, var(--default-theme-color-blue));
|
|
17102
|
-
}
|
|
17103
|
-
.light-mode .dark-mode .language-shell .token.variable {
|
|
17104
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17105
|
-
}
|
|
17106
|
-
.light-mode .dark-mode .language-shell .token.string {
|
|
17107
|
-
color: var(--theme-color-blue, var(--default-theme-color-blue));
|
|
17108
|
-
}
|
|
17109
|
-
.language-shell .token.string {
|
|
17110
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17111
|
-
}
|
|
17112
|
-
.token.operator,
|
|
17113
|
-
.token.entity,
|
|
17114
|
-
.token.url {
|
|
17115
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
17116
|
-
}
|
|
17117
|
-
.token.important,
|
|
17118
|
-
.token.bold {
|
|
17119
|
-
font-weight: bold;
|
|
17120
|
-
}
|
|
17121
|
-
.token.italic {
|
|
17122
|
-
font-style: italic;
|
|
17123
|
-
}
|
|
17124
|
-
.token.entity {
|
|
17125
|
-
cursor: help;
|
|
17126
|
-
}
|
|
17127
|
-
.token.inserted {
|
|
17128
|
-
color: var(--theme-color-green, var(--default-theme-color-green));
|
|
17129
|
-
}
|
|
17130
|
-
|
|
17131
|
-
.scalar-modal-layout[data-v-53cbffc0] {
|
|
17132
|
-
animation: modal-fade-53cbffc0 0.2s forwards;
|
|
17133
|
-
}
|
|
17134
|
-
.scalar-modal[data-v-53cbffc0] {
|
|
17135
|
-
transform: scale(0.98);
|
|
17136
|
-
animation: modal-pop-53cbffc0 0.15s 0.15s forwards;
|
|
17137
|
-
}
|
|
17138
|
-
@keyframes modal-fade-53cbffc0 {
|
|
17139
|
-
from {
|
|
17140
|
-
opacity: 0;
|
|
17141
|
-
}
|
|
17142
|
-
to {
|
|
17143
|
-
opacity: 1;
|
|
17144
|
-
}
|
|
17145
|
-
}
|
|
17146
|
-
@keyframes modal-pop-53cbffc0 {
|
|
17147
|
-
0% {
|
|
17148
|
-
opacity: 0;
|
|
17149
|
-
}
|
|
17150
|
-
100% {
|
|
17151
|
-
opacity: 1;
|
|
17152
|
-
transform: scale(1);
|
|
17153
|
-
}
|
|
17154
|
-
}
|
|
17155
|
-
|
|
17156
|
-
.scalar-input[data-v-398eaaae]:not(:placeholder-shown),
|
|
17157
|
-
.scalar-input-wrapper-focus .scalar-input[data-v-398eaaae] {
|
|
17158
|
-
opacity: 1;
|
|
17159
|
-
transition: opacity 0.2s ease-in-out 0.15s;
|
|
17160
|
-
}
|
|
17161
|
-
.scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae] {
|
|
17162
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17163
|
-
}
|
|
17164
|
-
.scalar-input-wrapper-error .scalar-input-label[data-v-398eaaae] {
|
|
17165
|
-
color: var(--theme-color-error-color, var(--default-theme-color-red));
|
|
17166
|
-
}
|
|
17167
|
-
.scalar-input[data-v-398eaaae]::selection {
|
|
17168
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17169
|
-
background: rgba(255, 165, 88, 0.35);
|
|
17170
|
-
}
|
|
17171
|
-
.scalar-input[data-v-398eaaae]:has(+ .scalar-input-label) {
|
|
17172
|
-
opacity: 0;
|
|
17173
|
-
}
|
|
17174
|
-
.scalar-input[data-v-398eaaae]:not(:placeholder-shown),
|
|
17175
|
-
.scalar-input-wrapper-focus .scalar-input[data-v-398eaaae] {
|
|
17176
|
-
opacity: 1;
|
|
17177
|
-
transition: opacity 0.2s ease-in-out 0.15s;
|
|
17178
|
-
}
|
|
17179
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill,
|
|
17180
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill:hover,
|
|
17181
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill:focus,
|
|
17182
|
-
.scalar-input[data-v-398eaaae]:-webkit-autofill:active,
|
|
17183
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill,
|
|
17184
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:hover,
|
|
17185
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:focus,
|
|
17186
|
-
.scalar-input[data-v-398eaaae]:focus-within:-webkit-autofill:active {
|
|
17187
|
-
-webkit-box-shadow: 0 0 0px 1000px
|
|
17188
|
-
var(--theme-background-1, var(--default-theme-background-1)) inset !important;
|
|
17189
|
-
-webkit-text-fill-color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17190
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17191
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17192
|
-
}
|
|
17193
|
-
.scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae],
|
|
17194
|
-
.scalar-input:not(:placeholder-shown) + .scalar-input-label[data-v-398eaaae] {
|
|
17195
|
-
transform: translate3d(0, -20px, 0) scale(0.8);
|
|
17196
|
-
transform-origin: top left;
|
|
17197
|
-
}
|
|
17198
|
-
.scalar-input-wrapper-focus .scalar-input-label[data-v-398eaaae],
|
|
17199
|
-
.scalar-input:not(:placeholder-shown) + .scalar-input-label[data-v-398eaaae] {
|
|
17200
|
-
transform: translate3d(0, -20px, 0) scale(0.8);
|
|
17201
|
-
transform-origin: top left;
|
|
17202
|
-
}
|
|
17203
|
-
.scalar-input-wrapper-focus:has(button:active) .scalar-input-label[data-v-398eaaae] {
|
|
17204
|
-
color: var(--theme-color-3, var(--default-theme-color-3)) !important;
|
|
17205
|
-
}
|
|
17206
|
-
@tailwind base;
|
|
17207
|
-
@tailwind components;
|
|
17208
|
-
@tailwind utilities;
|
|
17209
|
-
|
|
17210
|
-
/**
|
|
17211
|
-
* Custom Reset - copied over from the tailwind reset
|
|
17212
|
-
* Auto-magically scoped by postcss (in postcss.config.js)
|
|
17213
|
-
*
|
|
17214
|
-
* @link https://tailwindcss.com/docs/preflight
|
|
17215
|
-
*/
|
|
17216
|
-
@layer base {
|
|
17217
|
-
* {
|
|
17218
|
-
box-sizing: border-box;
|
|
17219
|
-
border-width: unset;
|
|
17220
|
-
border-style: unset;
|
|
17221
|
-
border-color: theme('borderColor.DEFAULT', currentColor);
|
|
17222
|
-
|
|
17223
|
-
font-family: inherit;
|
|
17224
|
-
font-feature-settings: inherit;
|
|
17225
|
-
font-variation-settings: inherit;
|
|
17226
|
-
font-size: unset;
|
|
17227
|
-
font-weight: inherit;
|
|
17228
|
-
line-height: inherit;
|
|
17229
|
-
color: inherit;
|
|
17230
|
-
margin: unset;
|
|
17231
|
-
padding: unset;
|
|
17232
|
-
}
|
|
17233
|
-
}
|
|
17234
|
-
|
|
17235
|
-
@layer utilities {
|
|
17236
|
-
.row {
|
|
17237
|
-
@apply flex flex-row;
|
|
17238
|
-
}
|
|
17239
|
-
.col {
|
|
17240
|
-
@apply flex flex-col;
|
|
17241
|
-
}
|
|
17242
|
-
}
|
|
17243
|
-
|
|
17244
|
-
.table {
|
|
17245
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
17246
|
-
background: transparent;
|
|
17247
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17248
|
-
width: 100%;
|
|
17249
|
-
}
|
|
17250
|
-
.table-row {
|
|
17251
|
-
border-bottom: 1px solid
|
|
17252
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17253
|
-
display: flex;
|
|
17254
|
-
position: relative;
|
|
17255
|
-
}
|
|
17256
|
-
.table-row__add {
|
|
17257
|
-
border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))
|
|
17258
|
-
var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
17259
|
-
border-bottom: none;
|
|
17260
|
-
}
|
|
17261
|
-
.table-row.required-parameter .table-row-item:nth-of-type(2):after {
|
|
17262
|
-
content: 'Required';
|
|
17263
|
-
position: absolute;
|
|
17264
|
-
top: 4px;
|
|
17265
|
-
right: 0;
|
|
17266
|
-
padding: 5px 9px 5px 6px;
|
|
17267
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
17268
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17269
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17270
|
-
box-shadow: -2px 0 4px
|
|
17271
|
-
var(--theme-background-2, var(--default-theme-background-2));
|
|
17272
|
-
}
|
|
17273
|
-
.table-row.required-parameter
|
|
17274
|
-
.table-row-item:nth-of-type(2):focus-within:after {
|
|
17275
|
-
display: none;
|
|
17276
|
-
}
|
|
17277
|
-
.table-row:last-of-type {
|
|
17278
|
-
border-bottom: none;
|
|
17279
|
-
}
|
|
17280
|
-
.table-row__active {
|
|
17281
|
-
border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))
|
|
17282
|
-
var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
17283
|
-
}
|
|
17284
|
-
.table-row-drag {
|
|
17285
|
-
width: 20px;
|
|
17286
|
-
flex-shrink: 0;
|
|
17287
|
-
border-right: 1px solid
|
|
17288
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17289
|
-
align-items: center;
|
|
17290
|
-
justify-content: center;
|
|
17291
|
-
display: none;
|
|
17292
|
-
}
|
|
17293
|
-
.table-row-drag svg {
|
|
17294
|
-
width: 6px;
|
|
17295
|
-
fill: var(--theme-color-3, var(--default-theme-color-3));
|
|
17296
|
-
}
|
|
17297
|
-
.table-row-drag .table-row-drag-add {
|
|
17298
|
-
width: 8px;
|
|
17299
|
-
}
|
|
17300
|
-
.table-row-item {
|
|
17301
|
-
width: 100%;
|
|
17302
|
-
border-right: 1px solid
|
|
17303
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17304
|
-
position: relative;
|
|
17305
|
-
}
|
|
17306
|
-
.table-row-item-menu {
|
|
17307
|
-
position: absolute;
|
|
17308
|
-
right: 6px;
|
|
17309
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17310
|
-
width: 24px;
|
|
17311
|
-
height: 24px;
|
|
17312
|
-
top: 50%;
|
|
17313
|
-
transform: translate3d(0, -50%, 0);
|
|
17314
|
-
border-radius: 50%;
|
|
17315
|
-
display: flex;
|
|
17316
|
-
align-items: center;
|
|
17317
|
-
justify-content: center;
|
|
17318
|
-
opacity: 0;
|
|
17319
|
-
cursor: pointer;
|
|
17320
|
-
}
|
|
17321
|
-
.table-row-item input:focus + .table-row-item-menu,
|
|
17322
|
-
.table-row-item:hover .table-row-item-menu {
|
|
17323
|
-
opacity: 1;
|
|
17324
|
-
}
|
|
17325
|
-
.table-row-item-menu svg {
|
|
17326
|
-
height: 12px;
|
|
17327
|
-
width: initial;
|
|
17328
|
-
fill: var(--theme-color-3, var(--default-theme-color-3));
|
|
17329
|
-
}
|
|
17330
|
-
.table-row-item-menu:hover svg {
|
|
17331
|
-
fill: var(--theme-color-1, var(--default-theme-color-1));
|
|
17332
|
-
}
|
|
17333
|
-
.table-row-item input {
|
|
17334
|
-
border: none;
|
|
17335
|
-
appearance: none;
|
|
17336
|
-
outline: none;
|
|
17337
|
-
padding: 9px;
|
|
17338
|
-
width: 100%;
|
|
17339
|
-
min-height: 100%;
|
|
17340
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17341
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17342
|
-
background: transparent;
|
|
17343
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
17344
|
-
}
|
|
17345
|
-
.table-row-item input[disabled] {
|
|
17346
|
-
background: transparent;
|
|
17347
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
17348
|
-
}
|
|
17349
|
-
.table-row-item input:focus {
|
|
17350
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
|
|
17351
|
-
}
|
|
17352
|
-
.table-row-item label {
|
|
17353
|
-
background: transparent;
|
|
17354
|
-
text-transform: uppercase;
|
|
17355
|
-
display: block;
|
|
17356
|
-
padding: 9px;
|
|
17357
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
17358
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17359
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17360
|
-
}
|
|
17361
|
-
.table-row-meta {
|
|
17362
|
-
overflow: hidden;
|
|
17363
|
-
flex-shrink: 0;
|
|
17364
|
-
transition: all 0.15s ease-in-out;
|
|
17365
|
-
display: flex;
|
|
17366
|
-
align-items: center;
|
|
17367
|
-
justify-content: center;
|
|
17368
|
-
width: 51px;
|
|
17369
|
-
user-select: none;
|
|
17370
|
-
}
|
|
17371
|
-
.table-row-meta-check {
|
|
17372
|
-
width: 18px;
|
|
17373
|
-
height: 18px;
|
|
17374
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
17375
|
-
background: rgba(47, 177, 228, 0.1);
|
|
17376
|
-
}
|
|
17377
|
-
.table-row-meta svg {
|
|
17378
|
-
width: 13px;
|
|
17379
|
-
height: 13px;
|
|
17380
|
-
margin: 0 1px;
|
|
17381
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
17382
|
-
cursor: pointer;
|
|
17383
|
-
}
|
|
17384
|
-
.table-row-meta svg:hover {
|
|
17385
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17386
|
-
}
|
|
17387
|
-
.meta-check {
|
|
17388
|
-
display: flex;
|
|
17389
|
-
position: relative;
|
|
17390
|
-
cursor: pointer;
|
|
17391
|
-
align-items: center;
|
|
17392
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17393
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
17394
|
-
user-select: none;
|
|
17395
|
-
margin: 0 1px;
|
|
17396
|
-
transition: all 0.15s ease-in-out;
|
|
17397
|
-
}
|
|
17398
|
-
.meta-check input {
|
|
17399
|
-
position: absolute;
|
|
17400
|
-
opacity: 0;
|
|
17401
|
-
cursor: pointer;
|
|
17402
|
-
height: 0;
|
|
17403
|
-
width: 0;
|
|
17404
|
-
}
|
|
17405
|
-
.meta-checkmark {
|
|
17406
|
-
height: 17px;
|
|
17407
|
-
width: 17px;
|
|
17408
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
17409
|
-
border-radius: 3px;
|
|
17410
|
-
display: flex;
|
|
17411
|
-
align-items: center;
|
|
17412
|
-
justify-content: center;
|
|
17413
|
-
position: relative;
|
|
17414
|
-
}
|
|
17415
|
-
.meta-checkmark:hover {
|
|
17416
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
17417
|
-
}
|
|
17418
|
-
.meta-check:focus-within .meta-checkmark {
|
|
17419
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
|
|
17420
|
-
}
|
|
17421
|
-
.meta-check .meta-checkmark:after {
|
|
17422
|
-
content: '';
|
|
17423
|
-
display: none;
|
|
17424
|
-
width: 5px;
|
|
17425
|
-
height: 8px;
|
|
17426
|
-
border: solid var(--theme-color-1, var(--default-theme-color-1));
|
|
17427
|
-
border-width: 0 1.5px 1.5px 0;
|
|
17428
|
-
transform: rotate(45deg) translate3d(0, -1px, 0);
|
|
17429
|
-
}
|
|
17430
|
-
.meta-check input:checked ~ .meta-checkmark:after {
|
|
17431
|
-
display: block;
|
|
17432
|
-
}
|
|
17433
|
-
.meta-check input:checked ~ .meta-checkmark:hover {
|
|
17434
|
-
background: transparent;
|
|
17435
|
-
}
|
|
17436
|
-
|
|
17437
|
-
.navtable {
|
|
17438
|
-
width: 100%;
|
|
17439
|
-
}
|
|
17440
|
-
.navtable-follow {
|
|
17441
|
-
background-color: black;
|
|
17442
|
-
color: white;
|
|
17443
|
-
font-size: 9px;
|
|
17444
|
-
padding: 6px;
|
|
17445
|
-
display: -webkit-box;
|
|
17446
|
-
max-width: 250px;
|
|
17447
|
-
-webkit-line-clamp: 12;
|
|
17448
|
-
border-radius: 3px;
|
|
17449
|
-
-webkit-box-orient: vertical;
|
|
17450
|
-
overflow: hidden;
|
|
17451
|
-
line-height: 1.24;
|
|
17452
|
-
transform: translate3d(10px, 0, 0);
|
|
17453
|
-
}
|
|
17454
|
-
.navtable-follow:after {
|
|
17455
|
-
content: '';
|
|
17456
|
-
position: absolute;
|
|
17457
|
-
bottom: 0;
|
|
17458
|
-
width: 100%;
|
|
17459
|
-
height: 6px;
|
|
17460
|
-
background-color: black;
|
|
17461
|
-
}
|
|
17462
|
-
.navtable-follow * {
|
|
17463
|
-
font-family: var(
|
|
17464
|
-
--theme-font-code,
|
|
17465
|
-
var(--default-theme-font-code)
|
|
17466
|
-
) !important;
|
|
17467
|
-
}
|
|
17468
|
-
.navtable-table {
|
|
17469
|
-
position: relative;
|
|
17470
|
-
display: flex;
|
|
17471
|
-
flex-direction: column;
|
|
17472
|
-
min-height: 389px;
|
|
17473
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17474
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
17475
|
-
}
|
|
17476
|
-
.navtable-radios {
|
|
17477
|
-
z-index: 1;
|
|
17478
|
-
border-top: 1px solid
|
|
17479
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17480
|
-
}
|
|
17481
|
-
.navtable-item {
|
|
17482
|
-
display: flex;
|
|
17483
|
-
position: relative;
|
|
17484
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17485
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17486
|
-
border-top: 1px solid
|
|
17487
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17488
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
17489
|
-
}
|
|
17490
|
-
.navtable-item:first-of-type {
|
|
17491
|
-
border-top: none;
|
|
17492
|
-
}
|
|
17493
|
-
.navtable-item > div {
|
|
17494
|
-
word-wrap: break-word;
|
|
17495
|
-
}
|
|
17496
|
-
.navtable-item > div:not(:first-child) {
|
|
17497
|
-
border-left: 1px solid
|
|
17498
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17499
|
-
}
|
|
17500
|
-
.navtable-item-action {
|
|
17501
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17502
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17503
|
-
font-weight: var(--theme-bold, var(--default-theme-bold));
|
|
17504
|
-
background: var(
|
|
17505
|
-
--scalar-api-client-bg3,
|
|
17506
|
-
var(--default-scalar-api-client-bg3)
|
|
17507
|
-
);
|
|
17508
|
-
border: none;
|
|
17509
|
-
border-radius: 30px;
|
|
17510
|
-
appearance: none;
|
|
17511
|
-
max-height: 25px;
|
|
17512
|
-
margin-left: 12px;
|
|
17513
|
-
margin-right: 6px;
|
|
17514
|
-
padding: 4px 8px;
|
|
17515
|
-
outline: none;
|
|
17516
|
-
cursor: pointer;
|
|
17517
|
-
opacity: 0;
|
|
17518
|
-
transition: opacity 0.15s ease-in-out;
|
|
17519
|
-
white-space: nowrap;
|
|
17520
|
-
position: relative;
|
|
17521
|
-
}
|
|
17522
|
-
.navtable-item-action:hover {
|
|
17523
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17524
|
-
background: var(
|
|
17525
|
-
--scalar-api-client-gradient,
|
|
17526
|
-
var(--default-scalar-api-client-gradient)
|
|
17527
|
-
);
|
|
17528
|
-
box-shadow: 0 0 0 1px
|
|
17529
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17530
|
-
}
|
|
17531
|
-
.navtable-item-action:focus {
|
|
17532
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17533
|
-
}
|
|
17534
|
-
.navtable-item:hover,
|
|
17535
|
-
.navtable-item:focus-within .navtable-item-action {
|
|
17536
|
-
opacity: 1;
|
|
17537
|
-
}
|
|
17538
|
-
.navtable-item-add {
|
|
17539
|
-
display: flex;
|
|
17540
|
-
align-items: center;
|
|
17541
|
-
padding: 9px;
|
|
17542
|
-
font-weight: var(--theme-bold, var(--default-theme-bold));
|
|
17543
|
-
outline: none;
|
|
17544
|
-
border: none;
|
|
17545
|
-
appearance: none;
|
|
17546
|
-
background: transparent;
|
|
17547
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17548
|
-
}
|
|
17549
|
-
.navtable-item-add:hover {
|
|
17550
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17551
|
-
cursor: pointer;
|
|
17552
|
-
}
|
|
17553
|
-
.navtable-item-25 {
|
|
17554
|
-
width: 25%;
|
|
17555
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17556
|
-
display: flex;
|
|
17557
|
-
align-items: center;
|
|
17558
|
-
}
|
|
17559
|
-
.navtable-item-33 {
|
|
17560
|
-
width: 33.33333%;
|
|
17561
|
-
display: flex;
|
|
17562
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17563
|
-
align-items: center;
|
|
17564
|
-
}
|
|
17565
|
-
.navtable-item-66 {
|
|
17566
|
-
width: 66.6666%;
|
|
17567
|
-
display: flex;
|
|
17568
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17569
|
-
align-items: center;
|
|
17570
|
-
}
|
|
17571
|
-
.navtable-item-75 {
|
|
17572
|
-
width: 75%;
|
|
17573
|
-
display: flex;
|
|
17574
|
-
align-items: center;
|
|
17575
|
-
}
|
|
17576
|
-
.navtable-item-75:focus-within {
|
|
17577
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17578
|
-
}
|
|
17579
|
-
.navtable-item-40 {
|
|
17580
|
-
width: 40%;
|
|
17581
|
-
display: flex;
|
|
17582
|
-
align-items: center;
|
|
17583
|
-
padding: 9px;
|
|
17584
|
-
}
|
|
17585
|
-
.navtable-item-20 {
|
|
17586
|
-
width: 20%;
|
|
17587
|
-
display: flex;
|
|
17588
|
-
align-items: center;
|
|
17589
|
-
padding: 9px;
|
|
17590
|
-
}
|
|
17591
|
-
.navtable-item-50 {
|
|
17592
|
-
width: 50%;
|
|
17593
|
-
display: flex;
|
|
17594
|
-
align-items: center;
|
|
17595
|
-
}
|
|
17596
|
-
.navtable-item-50:focus-within {
|
|
17597
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17598
|
-
}
|
|
17599
|
-
.navtable-item p {
|
|
17600
|
-
padding: 9px;
|
|
17601
|
-
}
|
|
17602
|
-
.navtable-item input {
|
|
17603
|
-
padding: 12px 6px;
|
|
17604
|
-
border: none;
|
|
17605
|
-
outline: none;
|
|
17606
|
-
appearance: none;
|
|
17607
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17608
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17609
|
-
background: transparent;
|
|
17610
|
-
width: 100%;
|
|
17611
|
-
}
|
|
17612
|
-
.navtable-item input:focus {
|
|
17613
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17614
|
-
}
|
|
17615
|
-
.navtable-item-select {
|
|
17616
|
-
position: relative;
|
|
17617
|
-
}
|
|
17618
|
-
.navtable-item-select select {
|
|
17619
|
-
background: transparent;
|
|
17620
|
-
outline: none;
|
|
17621
|
-
border: none;
|
|
17622
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17623
|
-
-moz-appearance: none;
|
|
17624
|
-
-webkit-appearance: none;
|
|
17625
|
-
appearance: none;
|
|
17626
|
-
width: 100%;
|
|
17627
|
-
padding: 12px 6px;
|
|
17628
|
-
top: 0;
|
|
17629
|
-
position: relative;
|
|
17630
|
-
cursor: pointer;
|
|
17631
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17632
|
-
}
|
|
17633
|
-
.navtable-item-select svg {
|
|
17634
|
-
position: absolute;
|
|
17635
|
-
right: 6px;
|
|
17636
|
-
color: var(--theme-color-ghost, var(--default-theme-color-ghost));
|
|
17637
|
-
width: 6px;
|
|
17638
|
-
top: 12px;
|
|
17639
|
-
pointer-events: none;
|
|
17640
|
-
}
|
|
17641
|
-
.navtable-item .option {
|
|
17642
|
-
padding: 12px 6px;
|
|
17643
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17644
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17645
|
-
width: 100%;
|
|
17646
|
-
}
|
|
17647
|
-
.navtable-item label {
|
|
17648
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
17649
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17650
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
17651
|
-
text-transform: uppercase;
|
|
17652
|
-
display: block;
|
|
17653
|
-
width: 100%;
|
|
17654
|
-
}
|
|
17655
|
-
.navtable-item-response {
|
|
17656
|
-
padding: 0 9px;
|
|
17657
|
-
}
|
|
17658
|
-
.navtable-item-response span {
|
|
17659
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17660
|
-
display: flex;
|
|
17661
|
-
align-items: center;
|
|
17662
|
-
margin-right: 9px;
|
|
17663
|
-
min-width: 40px;
|
|
17664
|
-
}
|
|
17665
|
-
.scalar-api-client__status--1xx:before,
|
|
17666
|
-
.scalar-api-client__status--2xx:before,
|
|
17667
|
-
.scalar-api-client__status--3xx:before,
|
|
17668
|
-
.scalar-api-client__status--4xx:before,
|
|
17669
|
-
.scalar-api-client__status--5xx:before,
|
|
17670
|
-
.scalar-api-client__status--6xx:before {
|
|
17671
|
-
content: '';
|
|
17672
|
-
width: 10px;
|
|
17673
|
-
height: 10px;
|
|
17674
|
-
border-radius: 50%;
|
|
17675
|
-
margin-right: 4px;
|
|
17676
|
-
background: var(--theme-background-2, var(--default-theme-background-2));
|
|
17677
|
-
}
|
|
17678
|
-
.scalar-api-client__status--2xx:before {
|
|
17679
|
-
background: var(--theme-color-green, var(--default-theme-color-green));
|
|
17680
|
-
}
|
|
17681
|
-
.scalar-api-client__status--3xx:before {
|
|
17682
|
-
background: var(--theme-color-orange, var(--default-theme-color-orange));
|
|
17683
|
-
}
|
|
17684
|
-
.scalar-api-client__status--4xx:before {
|
|
17685
|
-
background: var(--theme-color-red, var(--default-theme-color-red));
|
|
17686
|
-
}
|
|
17687
|
-
.navtable-item-response span:empty {
|
|
17688
|
-
display: none;
|
|
17689
|
-
}
|
|
17690
|
-
.simpletable.navtable {
|
|
17691
|
-
padding: 0;
|
|
17692
|
-
}
|
|
17693
|
-
.simpletable.navtable .navtable-item-66,
|
|
17694
|
-
.simpletable.navtable .navtable-item-33 {
|
|
17695
|
-
display: block;
|
|
17696
|
-
}
|
|
17697
|
-
.simpletable.navtable .navtable-table {
|
|
17698
|
-
height: fit-content;
|
|
17699
|
-
}
|
|
17700
|
-
.meta-delete {
|
|
17701
|
-
position: absolute;
|
|
17702
|
-
right: -9px;
|
|
17703
|
-
background: var(
|
|
17704
|
-
--theme-background-3,
|
|
17705
|
-
var(--default-theme-background-3)
|
|
17706
|
-
) !important;
|
|
17707
|
-
height: 20px;
|
|
17708
|
-
width: 20px;
|
|
17709
|
-
border: none;
|
|
17710
|
-
outline: none;
|
|
17711
|
-
border-radius: 50%;
|
|
17712
|
-
opacity: 0;
|
|
17713
|
-
padding: 5px;
|
|
17714
|
-
display: flex;
|
|
17715
|
-
align-items: center;
|
|
17716
|
-
justify-content: center;
|
|
17717
|
-
cursor: pointer;
|
|
17718
|
-
}
|
|
17719
|
-
.meta-delete svg {
|
|
17720
|
-
width: 11px;
|
|
17721
|
-
height: 11px;
|
|
17722
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
17723
|
-
}
|
|
17724
|
-
.meta-delete:hover svg {
|
|
17725
|
-
color: var(--theme-color-red, var(--default-theme-color-red));
|
|
17726
|
-
}
|
|
17727
|
-
.meta-delete:focus svg {
|
|
17728
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17729
|
-
}
|
|
17730
|
-
.meta-delete:focus {
|
|
17731
|
-
border-color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17732
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17733
|
-
}
|
|
17734
|
-
.table-row:hover .meta-delete {
|
|
17735
|
-
opacity: 1;
|
|
17736
|
-
}
|
|
17737
|
-
@media (pointer: coarse) {
|
|
17738
|
-
.table-row:hover .meta-delete {
|
|
17739
|
-
opacity: 1;
|
|
17740
|
-
}
|
|
17741
|
-
}
|
|
17742
|
-
.meta-actions-item {
|
|
17743
|
-
border: none;
|
|
17744
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
17745
|
-
appearance: none;
|
|
17746
|
-
padding: 9px;
|
|
17747
|
-
width: 100%;
|
|
17748
|
-
appearance: none;
|
|
17749
|
-
outline: none;
|
|
17750
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17751
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
17752
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
17753
|
-
cursor: pointer;
|
|
17754
|
-
display: flex;
|
|
17755
|
-
align-items: center;
|
|
17756
|
-
gap: 6px;
|
|
17757
|
-
}
|
|
17758
|
-
.meta-actions {
|
|
17759
|
-
width: 100%;
|
|
17760
|
-
display: flex;
|
|
17761
|
-
justify-content: space-between;
|
|
17762
|
-
}
|
|
17763
|
-
.meta-actions-item:nth-of-type(2) {
|
|
17764
|
-
display: flex;
|
|
17765
|
-
justify-content: flex-end;
|
|
17766
|
-
}
|
|
17767
|
-
.meta-actions-item:nth-of-type(2) i {
|
|
17768
|
-
filter: drop-shadow(0 0.125px 0 currentColor)
|
|
17769
|
-
drop-shadow(0 -0.125px 0 currentColor);
|
|
17770
|
-
}
|
|
17771
|
-
.meta-actions-item-icon {
|
|
17772
|
-
width: 12px;
|
|
17773
|
-
height: 12px;
|
|
17774
|
-
}
|
|
17775
|
-
.meta-actions-item:hover,
|
|
17776
|
-
.meta-actions-item:focus {
|
|
17777
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17778
|
-
}
|
|
17779
|
-
|
|
17780
|
-
.scalar-api-client-add {
|
|
17781
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17782
|
-
padding: 6px;
|
|
17783
|
-
width: fit-content;
|
|
17784
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17785
|
-
cursor: pointer;
|
|
17786
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17787
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
17788
|
-
text-decoration: none;
|
|
17789
|
-
margin: 0 6px;
|
|
17790
|
-
border: none;
|
|
17791
|
-
font-family: var(--theme-font);
|
|
17792
|
-
appearance: none;
|
|
17793
|
-
display: flex;
|
|
17794
|
-
align-items: center;
|
|
17795
|
-
}
|
|
17796
|
-
.scalar-api-client-add svg {
|
|
17797
|
-
width: 12px;
|
|
17798
|
-
height: 12px;
|
|
17799
|
-
margin-right: 6px;
|
|
17800
|
-
}
|
|
17801
|
-
.scalar-api-client-add:hover {
|
|
17802
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17803
|
-
}
|
|
17804
|
-
.scalar-api-client-add:focus-within {
|
|
17805
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
17806
|
-
}
|
|
17807
|
-
|
|
17808
|
-
.scalar-api-client__main__left {
|
|
17809
|
-
width: 50%;
|
|
17810
|
-
border-right: 1px solid
|
|
17811
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17812
|
-
padding: 0 18px 12px 18px;
|
|
17813
|
-
}
|
|
17814
|
-
@media screen and (max-width: 820px) {
|
|
17815
|
-
.scalar-api-client__main__left {
|
|
17816
|
-
width: 100%;
|
|
17817
|
-
border-right: none;
|
|
17818
|
-
padding: 0 12px 12px 12px;
|
|
17819
|
-
}
|
|
17820
|
-
}
|
|
17821
|
-
.scalar-api-client__item__content {
|
|
17822
|
-
flex-flow: wrap;
|
|
17823
|
-
padding: 3px 9px 9px 9px;
|
|
17824
|
-
border-radius: 3px;
|
|
17825
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
17826
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17827
|
-
margin-top: -3px;
|
|
17828
|
-
justify-content: space-between;
|
|
17829
|
-
overflow: auto;
|
|
17830
|
-
}
|
|
17831
|
-
.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {
|
|
17832
|
-
width: 100%;
|
|
17833
|
-
min-height: 63px;
|
|
17834
|
-
}
|
|
17835
|
-
.scalar-api-client__item__content .scalar-codeblock-pre,
|
|
17836
|
-
.scalar-api-client__item__content .cm-s-default {
|
|
17837
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
17838
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
17839
|
-
}
|
|
17840
|
-
.scalar-api-client__item__content .scalar-codeblock-pre,
|
|
17841
|
-
.scalar-api-client__item__content .codemirror-container {
|
|
17842
|
-
width: 100%;
|
|
17843
|
-
max-height: calc(100vh - 300px);
|
|
17844
|
-
overflow: auto;
|
|
17845
|
-
}
|
|
17846
|
-
.scalar-api-client__item__content .cm-scroller {
|
|
17847
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
17848
|
-
border-radius: 3px;
|
|
17849
|
-
}
|
|
17850
|
-
.scalar-api-client__item__content .cm-editor {
|
|
17851
|
-
outline: none !important;
|
|
17852
|
-
}
|
|
17853
|
-
.scalar-api-client__item__content .cm-editor .cm-gutters {
|
|
17854
|
-
background: transparent;
|
|
17855
|
-
}
|
|
17856
|
-
.scalar-api-client__item__content .cm-scroll {
|
|
17857
|
-
background: transparent;
|
|
17858
|
-
}
|
|
17859
|
-
.scalar-api-client__item__content .cm-editor * {
|
|
17860
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17861
|
-
}
|
|
17862
|
-
.scalar-api-client__item__content .cm-editor .cm-line {
|
|
17863
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17864
|
-
}
|
|
17865
|
-
.scalar-api-client__item__content-button {
|
|
17866
|
-
appearance: none;
|
|
17867
|
-
border: none;
|
|
17868
|
-
outline: none;
|
|
17869
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17870
|
-
background: var(
|
|
17871
|
-
--scalar-api-client-color,
|
|
17872
|
-
var(--default-scalar-api-client-color)
|
|
17873
|
-
) !important;
|
|
17874
|
-
text-align: center;
|
|
17875
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
17876
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
17877
|
-
padding: 6px;
|
|
17878
|
-
width: fit-content;
|
|
17879
|
-
margin: 3px 3px 3px auto;
|
|
17880
|
-
text-transform: uppercase;
|
|
17881
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17882
|
-
color: white;
|
|
17883
|
-
cursor: pointer;
|
|
17884
|
-
text-align: center !important;
|
|
17885
|
-
position: relative;
|
|
17886
|
-
}
|
|
17887
|
-
.scalar-api-client__item__content-button span {
|
|
17888
|
-
position: relative;
|
|
17889
|
-
}
|
|
17890
|
-
.scalar-api-client__item__content-button:before {
|
|
17891
|
-
content: '';
|
|
17892
|
-
position: absolute;
|
|
17893
|
-
top: 0;
|
|
17894
|
-
left: 0;
|
|
17895
|
-
width: 100%;
|
|
17896
|
-
height: 100%;
|
|
17897
|
-
pointer-events: none;
|
|
17898
|
-
cursor: pointer;
|
|
17899
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17900
|
-
background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
|
|
17901
|
-
}
|
|
17902
|
-
.scalar-api-client__item__content-button:hover:before {
|
|
17903
|
-
background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
|
|
17904
|
-
}
|
|
17905
|
-
.scalar-api-client__item__content__split {
|
|
17906
|
-
justify-content: space-between;
|
|
17907
|
-
}
|
|
17908
|
-
.scalar-collapsible-section-flex {
|
|
17909
|
-
width: 100%;
|
|
17910
|
-
}
|
|
17911
|
-
.input {
|
|
17912
|
-
background: transparent;
|
|
17913
|
-
position: relative;
|
|
17914
|
-
width: 100%;
|
|
17915
|
-
text-align: left;
|
|
17916
|
-
display: flex;
|
|
17917
|
-
box-shadow: 0 1px 0
|
|
17918
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17919
|
-
}
|
|
17920
|
-
.input:focus-within {
|
|
17921
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;
|
|
17922
|
-
z-index: 10;
|
|
17923
|
-
}
|
|
17924
|
-
.input:first-of-type {
|
|
17925
|
-
border-radius: var(--theme-radius, var(--default-theme-radius))
|
|
17926
|
-
var(--theme-radius, var(--default-theme-radius)) 0 0;
|
|
17927
|
-
}
|
|
17928
|
-
.input:first-child:last-child {
|
|
17929
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17930
|
-
}
|
|
17931
|
-
.input:last-child {
|
|
17932
|
-
box-shadow: none;
|
|
17933
|
-
border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))
|
|
17934
|
-
var(--theme-radius, var(--default-theme-radius));
|
|
17935
|
-
}
|
|
17936
|
-
.input__half:first-of-type {
|
|
17937
|
-
border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0 0;
|
|
17938
|
-
}
|
|
17939
|
-
.input__half:nth-of-type(2) {
|
|
17940
|
-
border-radius: 0 var(--theme-radius, var(--default-theme-radius)) 0 0;
|
|
17941
|
-
}
|
|
17942
|
-
.authentication-form {
|
|
17943
|
-
box-shadow: 0 0 0 1px
|
|
17944
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17945
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
17946
|
-
width: 100%;
|
|
17947
|
-
display: flex;
|
|
17948
|
-
flex-flow: wrap;
|
|
17949
|
-
}
|
|
17950
|
-
.input__half {
|
|
17951
|
-
width: 50%;
|
|
17952
|
-
}
|
|
17953
|
-
.input__half + .input__half {
|
|
17954
|
-
border-left: 1px solid
|
|
17955
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
17956
|
-
}
|
|
17957
|
-
.input__half:focus-within {
|
|
17958
|
-
border-color: transparent;
|
|
17959
|
-
}
|
|
17960
|
-
.input label,
|
|
17961
|
-
.input input {
|
|
17962
|
-
padding: 9px;
|
|
17963
|
-
border: 0;
|
|
17964
|
-
outline: none;
|
|
17965
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17966
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17967
|
-
width: 100%;
|
|
17968
|
-
background: transparent;
|
|
17969
|
-
appearance: none;
|
|
17970
|
-
-webkit-appearance: none;
|
|
17971
|
-
left: 0;
|
|
17972
|
-
}
|
|
17973
|
-
.input label {
|
|
17974
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
17975
|
-
width: fit-content;
|
|
17976
|
-
padding-right: 0;
|
|
17977
|
-
white-space: nowrap;
|
|
17978
|
-
cursor: text;
|
|
17979
|
-
}
|
|
17980
|
-
.input input {
|
|
17981
|
-
position: relative;
|
|
17982
|
-
z-index: 99;
|
|
17983
|
-
}
|
|
17984
|
-
.input input:not(:placeholder-shown) + label {
|
|
17985
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
17986
|
-
}
|
|
17987
|
-
.select {
|
|
17988
|
-
background: --theme-background-1;
|
|
17989
|
-
border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));
|
|
17990
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
17991
|
-
border: 1px solid var(--theme-border-color, var(--default-theme-border-color));
|
|
17992
|
-
width: 100%;
|
|
17993
|
-
position: relative;
|
|
17994
|
-
margin-bottom: 6px;
|
|
17995
|
-
}
|
|
17996
|
-
.select:focus-within {
|
|
17997
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
17998
|
-
}
|
|
17999
|
-
.select:hover {
|
|
18000
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
18001
|
-
}
|
|
18002
|
-
.select svg {
|
|
18003
|
-
position: absolute;
|
|
18004
|
-
right: 9px;
|
|
18005
|
-
pointer-events: none;
|
|
18006
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
18007
|
-
width: 6px;
|
|
18008
|
-
top: 10px;
|
|
18009
|
-
}
|
|
18010
|
-
.select label {
|
|
18011
|
-
display: block;
|
|
18012
|
-
font-size: 10px;
|
|
18013
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
18014
|
-
position: absolute;
|
|
18015
|
-
left: 9px;
|
|
18016
|
-
top: 6px;
|
|
18017
|
-
}
|
|
18018
|
-
.select select {
|
|
18019
|
-
background: transparent;
|
|
18020
|
-
outline: none;
|
|
18021
|
-
border: none;
|
|
18022
|
-
-moz-appearance: none;
|
|
18023
|
-
-webkit-appearance: none;
|
|
18024
|
-
appearance: none;
|
|
18025
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
18026
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
18027
|
-
width: 100%;
|
|
18028
|
-
padding: 14px 9px 4px 9px;
|
|
18029
|
-
top: 0;
|
|
18030
|
-
position: relative;
|
|
18031
|
-
cursor: pointer;
|
|
18032
|
-
}
|
|
18033
|
-
.check {
|
|
18034
|
-
display: flex;
|
|
18035
|
-
position: relative;
|
|
18036
|
-
cursor: pointer;
|
|
18037
|
-
align-items: center;
|
|
18038
|
-
font-size: var(--theme-micro, var(--default-theme-micro));
|
|
18039
|
-
padding: 6px 9px;
|
|
18040
|
-
border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))
|
|
18041
|
-
var(--theme-radius, var(--default-theme-radius));
|
|
18042
|
-
user-select: none;
|
|
18043
|
-
width: 100%;
|
|
18044
|
-
outline: none;
|
|
18045
|
-
}
|
|
18046
|
-
.check:focus-within {
|
|
18047
|
-
box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));
|
|
18048
|
-
}
|
|
18049
|
-
.checkmark:hover {
|
|
18050
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
18051
|
-
}
|
|
18052
|
-
.check:focus-within {
|
|
18053
|
-
border-color: var(--theme-color-1, var(--default-theme-color-1));
|
|
18054
|
-
}
|
|
18055
|
-
.check p {
|
|
18056
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
18057
|
-
}
|
|
18058
|
-
.check input {
|
|
18059
|
-
position: absolute;
|
|
18060
|
-
opacity: 0;
|
|
18061
|
-
cursor: pointer;
|
|
18062
|
-
height: 0;
|
|
18063
|
-
width: 0;
|
|
18064
|
-
}
|
|
18065
|
-
.checkmark {
|
|
18066
|
-
height: 17px;
|
|
18067
|
-
width: 17px;
|
|
18068
|
-
background: var(--theme-background-3, var(--default-theme-background-3));
|
|
18069
|
-
margin-right: 10px;
|
|
18070
|
-
border-radius: 3px;
|
|
18071
|
-
display: flex;
|
|
18072
|
-
align-items: center;
|
|
18073
|
-
justify-content: center;
|
|
18074
|
-
position: relative;
|
|
18075
|
-
}
|
|
18076
|
-
.check input:checked ~ p {
|
|
18077
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
18078
|
-
}
|
|
18079
|
-
.check .checkmark:after {
|
|
18080
|
-
content: '';
|
|
18081
|
-
display: none;
|
|
18082
|
-
width: 5px;
|
|
18083
|
-
height: 8px;
|
|
18084
|
-
border: solid var(--theme-color-1, var(--default-theme-color-1));
|
|
18085
|
-
border-width: 0 1.5px 1.5px 0;
|
|
18086
|
-
transform: rotate(45deg) translate3d(0, -1px, 0);
|
|
18087
|
-
}
|
|
18088
|
-
.check input:checked ~ .checkmark:after {
|
|
18089
|
-
display: block;
|
|
18090
|
-
}
|
|
18091
|
-
.scalar-api-client__main__scroll-container {
|
|
18092
|
-
height: calc(100vh - 320px);
|
|
18093
|
-
}
|
|
18094
|
-
.scalar-api-client__request-name {
|
|
18095
|
-
outline: none;
|
|
18096
|
-
border: none;
|
|
18097
|
-
appearance: none;
|
|
18098
|
-
-webkit-appearance: none;
|
|
18099
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
18100
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
18101
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18102
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
18103
|
-
width: 100%;
|
|
18104
|
-
padding: 0;
|
|
18105
|
-
background: transparent;
|
|
18106
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
18107
|
-
}
|
|
18108
|
-
.scalar-api-client__request-name::-webkit-input-placeholder {
|
|
18109
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18110
|
-
}
|
|
18111
|
-
.scalar-api-client__request-name:-ms-input-placeholder {
|
|
18112
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18113
|
-
}
|
|
18114
|
-
.scalar-api-client__request-name::placeholder {
|
|
18115
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18116
|
-
}
|
|
18117
|
-
|
|
18118
|
-
a[data-v-ffc7287f] {
|
|
18119
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
18120
|
-
text-decoration: underline;
|
|
18121
|
-
text-decoration-color: var(
|
|
18122
|
-
--theme-border-color,
|
|
18123
|
-
var(--default-theme-border-color)
|
|
18124
|
-
);
|
|
18125
|
-
text-underline-offset: 2px;
|
|
18126
|
-
cursor: help;
|
|
18127
|
-
}
|
|
18128
|
-
|
|
18129
|
-
.simple-cell[data-v-b99d5e90] {
|
|
18130
|
-
all: unset;
|
|
18131
|
-
display: table-cell;
|
|
18132
|
-
border-right: 1px solid
|
|
18133
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
18134
|
-
position: relative;
|
|
18135
|
-
padding: 9px !important;
|
|
18136
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
18137
|
-
white-space: nowrap;
|
|
18138
|
-
}
|
|
18139
|
-
.simple-cell a[data-v-b99d5e90] {
|
|
18140
|
-
color: var(--theme-color-1, var(--default-theme-color-1)) !important;
|
|
18141
|
-
}
|
|
18142
|
-
.simple-cell[data-v-b99d5e90]:last-of-type {
|
|
18143
|
-
border-right: none;
|
|
18144
|
-
}
|
|
18145
|
-
.simple-cell.wrap[data-v-b99d5e90] {
|
|
18146
|
-
white-space: normal;
|
|
18147
|
-
}
|
|
18148
|
-
.simple-cell.strong[data-v-b99d5e90] {
|
|
18149
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18150
|
-
}
|
|
18151
|
-
|
|
18152
|
-
.simple-header[data-v-6bd3700b] {
|
|
18153
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
18154
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18155
|
-
text-transform: uppercase;
|
|
18156
|
-
}
|
|
18157
|
-
|
|
18158
|
-
.simple-row[data-v-e7e681a1] {
|
|
18159
|
-
all: unset;
|
|
18160
|
-
display: table-row;
|
|
18161
|
-
box-shadow: 0 -1px var(--theme-border-color, var(--default-theme-border-color));
|
|
18162
|
-
}
|
|
18163
|
-
.simple-row[data-v-e7e681a1]:first-of-type {
|
|
18164
|
-
box-shadow: none;
|
|
18165
|
-
}
|
|
18166
|
-
|
|
18167
|
-
.simple-table[data-v-8f53a32f] {
|
|
18168
|
-
all: unset;
|
|
18169
|
-
display: table;
|
|
18170
|
-
width: 100%;
|
|
18171
|
-
border-spacing: 0;
|
|
18172
|
-
box-shadow: 0 0 0 1px
|
|
18173
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
18174
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
18175
|
-
}
|
|
18176
|
-
|
|
18177
|
-
.scalar-api-client__main__right {
|
|
18178
|
-
width: 50%;
|
|
18179
|
-
padding: 0 18px 12px 18px;
|
|
18180
|
-
}
|
|
18181
|
-
@media screen and (max-width: 820px) {
|
|
18182
|
-
.scalar-api-client__main__right {
|
|
18183
|
-
width: 100%;
|
|
18184
|
-
border-right: none;
|
|
18185
|
-
padding: 0 12px 12px 12px;
|
|
18186
|
-
}
|
|
18187
|
-
}
|
|
18188
|
-
.scalar-api-client__main__right :deep(.scalar-copilot__header-button) {
|
|
18189
|
-
position: absolute;
|
|
18190
|
-
top: 6px;
|
|
18191
|
-
right: 12px;
|
|
18192
|
-
}
|
|
18193
|
-
|
|
18194
|
-
.scalar-api-client,
|
|
18195
|
-
#headlessui-portal-root {
|
|
18196
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
18197
|
-
position: relative;
|
|
18198
|
-
height: 100%;
|
|
18199
|
-
overflow: hidden !important;
|
|
18200
|
-
display: flex;
|
|
18201
|
-
flex-direction: column;
|
|
18202
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
18203
|
-
|
|
18204
|
-
/** Make sure box-sizing is set properly. */
|
|
18205
|
-
box-sizing: border-box;
|
|
18206
|
-
*,
|
|
18207
|
-
*:before,
|
|
18208
|
-
*:after {
|
|
18209
|
-
box-sizing: inherit;
|
|
18210
|
-
}
|
|
18211
|
-
}
|
|
18212
|
-
.scalar-api-client {
|
|
18213
|
-
flex: 1;
|
|
18214
|
-
max-height: 100vh;
|
|
18215
|
-
}
|
|
18216
|
-
@media screen and (max-width: 1000px) {
|
|
18217
|
-
.scalar-api-client {
|
|
18218
|
-
width: 100%;
|
|
18219
|
-
}
|
|
18220
|
-
}
|
|
18221
|
-
.scalar-api-client pre {
|
|
18222
|
-
font-family: var(--theme-font-code, var(--default-theme-font-code));
|
|
18223
|
-
}
|
|
18224
|
-
.scalar-api-client__mobile-navigation {
|
|
18225
|
-
padding: 12px 12px 0 12px;
|
|
18226
|
-
display: flex;
|
|
18227
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
18228
|
-
color: var(--theme-color-2, var(--default-theme-color-2));
|
|
18229
|
-
font-weight: var(--theme-bold, var(--default-theme-bold));
|
|
18230
|
-
}
|
|
18231
|
-
.scalar-api-client__mobile-navigation__toggle {
|
|
18232
|
-
appearance: none;
|
|
18233
|
-
border: none;
|
|
18234
|
-
outline: none;
|
|
18235
|
-
background: transparent;
|
|
18236
|
-
font-size: var(--theme-font-size-2);
|
|
18237
|
-
color: var(--theme-color-2);
|
|
18238
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18239
|
-
font-family: var(--theme-font, var(--default-theme-font));
|
|
18240
|
-
padding: 0;
|
|
18241
|
-
margin-right: 9px;
|
|
18242
|
-
cursor: pointer;
|
|
18243
|
-
}
|
|
18244
|
-
.scalar-api-client__mobile-navigation--active {
|
|
18245
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
18246
|
-
}
|
|
18247
|
-
.scalar-api-client__mobile-navigation--active:hover {
|
|
18248
|
-
cursor: pointer;
|
|
18249
|
-
}
|
|
18250
|
-
.scalar-api-client__main {
|
|
18251
|
-
display: flex;
|
|
18252
|
-
height: 100%;
|
|
18253
|
-
min-height: 0;
|
|
18254
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
18255
|
-
border-top: 1px solid
|
|
18256
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
18257
|
-
}
|
|
18258
|
-
@media screen and (max-width: 820px) {
|
|
18259
|
-
.scalar-api-client__main {
|
|
18260
|
-
flex-direction: column;
|
|
18261
|
-
}
|
|
18262
|
-
}
|
|
18263
|
-
|
|
18264
|
-
/** TODO: Consider to make a Column component */
|
|
18265
|
-
.scalar-api-client__main__content {
|
|
18266
|
-
padding: 12px 6px;
|
|
18267
|
-
background: var(--theme-background-1, var(--default-theme-background-1));
|
|
18268
|
-
top: 0;
|
|
18269
|
-
position: sticky;
|
|
18270
|
-
z-index: 100;
|
|
18271
|
-
}
|
|
18272
|
-
.scalar-api-client__main__content label {
|
|
18273
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
18274
|
-
color: var(--theme-color-1, var(--default-theme-color-1));
|
|
18275
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18276
|
-
display: flex;
|
|
18277
|
-
align-items: center;
|
|
18278
|
-
}
|
|
18279
|
-
@media screen and (max-width: 820px) {
|
|
18280
|
-
.scalar-api-client__main__content {
|
|
18281
|
-
padding: 3px 0 12px 0;
|
|
18282
|
-
}
|
|
18283
|
-
.scalar-api-client__main__content label {
|
|
18284
|
-
display: none;
|
|
18285
|
-
}
|
|
18286
|
-
}
|
|
18287
|
-
.meta {
|
|
18288
|
-
display: flex;
|
|
18289
|
-
margin-top: 3px;
|
|
18290
|
-
font-size: var(--theme-font-size-2, var(--default-theme-font-size-2));
|
|
18291
|
-
font-weight: var(--theme-font-size-2, var(--default-theme-font-size-2));
|
|
18292
|
-
color: var(
|
|
18293
|
-
--scalar-api-client-color2,
|
|
18294
|
-
var(--default-scalar-api-client-color2)
|
|
18295
|
-
);
|
|
18296
|
-
}
|
|
18297
|
-
.meta-item svg {
|
|
18298
|
-
fill: var(--theme-color-ghost, var(--default-theme-color-ghost));
|
|
18299
|
-
height: 14px;
|
|
18300
|
-
width: 14px;
|
|
18301
|
-
margin-right: 6px;
|
|
18302
|
-
}
|
|
18303
|
-
.meta-item {
|
|
18304
|
-
display: flex;
|
|
18305
|
-
align-items: center;
|
|
18306
|
-
margin-right: 12px;
|
|
18307
|
-
white-space: nowrap;
|
|
18308
|
-
font-weight: var(--theme-semibold, var(--default-theme-semibold));
|
|
18309
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
18310
|
-
color: var(--theme-color-3, var(--default-theme-color-3));
|
|
18311
|
-
min-height: 17px;
|
|
18312
|
-
}
|
|
18313
|
-
.meta-item__input {
|
|
18314
|
-
background: transparent;
|
|
18315
|
-
width: 100%;
|
|
18316
|
-
margin-right: 0;
|
|
18317
|
-
}
|
|
18318
|
-
.types {
|
|
18319
|
-
margin: auto;
|
|
18320
|
-
width: 580px;
|
|
18321
|
-
display: flex;
|
|
18322
|
-
align-items: center;
|
|
18323
|
-
justify-content: center;
|
|
18324
|
-
flex-flow: wrap;
|
|
18325
|
-
}
|
|
18326
|
-
.types-heading {
|
|
18327
|
-
width: 100%;
|
|
18328
|
-
text-align: center;
|
|
18329
|
-
}
|
|
18330
|
-
.types-heading b {
|
|
18331
|
-
font-size: 42px;
|
|
18332
|
-
}
|
|
18333
|
-
.types-heading p {
|
|
18334
|
-
margin-bottom: 20px;
|
|
18335
|
-
margin-top: 12px;
|
|
18336
|
-
font-size: 24px;
|
|
18337
|
-
}
|
|
18338
|
-
.scalar-api-client__empty-state {
|
|
18339
|
-
border: 1px dashed
|
|
18340
|
-
var(--theme-border-color, var(--default-theme-border-color));
|
|
18341
|
-
width: 100%;
|
|
18342
|
-
text-align: center;
|
|
18343
|
-
border-radius: var(--theme-radius, var(--default-theme-radius));
|
|
18344
|
-
font-size: var(--theme-small, var(--default-theme-small));
|
|
18345
|
-
min-height: 58px;
|
|
18346
|
-
display: flex;
|
|
18347
|
-
align-items: center;
|
|
18348
|
-
justify-content: center;
|
|
18349
|
-
}`));
|
|
16093
|
+
elementStyle.appendChild(document.createTextNode("@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900');@import url('https://fonts.googleapis.com/css?family=JetBrains%20Mono');\n\n:root {\n --default-theme-border-width: 1px;\n --default-theme-radius: 3px;\n --default-theme-radius-lg: 6px;\n --default-theme-radius-xl: 8px;\n\n --default-theme-header-height: 50px;\n --default-theme-sidebar-width: 280px;\n --default-theme-toc-width: 280px;\n\n /* TYPOGRAPHY ------------------------------------ */\n --default-theme-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',\n Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;\n --default-theme-font-code: 'JetBrains Mono', ui-monospace, Menlo, Monaco,\n 'Cascadia Mono', 'Segoe UI Mono', 'Roboto Mono', 'Oxygen Mono',\n 'Ubuntu Monospace', 'Source Code Pro', 'Fira Mono', 'Droid Sans Mono',\n 'Courier New', monospace;\n\n /** Font sizes for rendered text content (editor styles or static content) */\n --default-theme-heading-1: 40px; /* Editor Page heading */\n --default-theme-page-description: 24px;\n --default-theme-heading-2: 24px; /* Editor section headings */\n --default-theme-heading-3: 20px;\n --default-theme-heading-4: 16px;\n --default-theme-heading-5: 16px;\n --default-theme-heading-6: 16px;\n\n --default-theme-paragraph: 16px;\n --default-theme-small: 14px;\n --default-theme-mini: 13px;\n --default-theme-micro: 12px;\n --default-theme-bold: 600;\n --default-theme-semibold: 500;\n --default-theme-regular: 400;\n\n /* Font sizes for interactive applications (not rendered text content) */\n --default-theme-font-size-1: 24px;\n --default-theme-font-size-2: 16px;\n --default-theme-font-size-3: 14px;\n --default-theme-font-size-4: 13px;\n --default-theme-font-size-5: 12px;\n\n --default-theme-line-height-1: 32px;\n --default-theme-line-height-2: 24px;\n --default-theme-line-height-3: 20px;\n --default-theme-line-height-4: 18px;\n --default-theme-line-height-5: 16px;\n\n --default-theme-font-medium: 500;\n --default-theme-font-bold: 700;\n}\n.dark-mode {\n color-scheme: dark;\n --default-theme-scrollbar-color: rgba(255, 255, 255, 0.18);\n --default-theme-scrollbar-color-active: rgba(255, 255, 255, 0.36);\n --default-theme-button-1: rgba(255, 255, 255, 1);\n --default-theme-button-1-hover: rgba(255, 255, 255, 0.9);\n --default-theme-button-1-color: black;\n\n --default-theme-shadow-1: 0 1px 3px 0 rgb(0, 0, 0, 0.1);\n --default-theme-shadow-2: rgba(15, 15, 15, 0.2) 0px 3px 6px,\n rgba(15, 15, 15, 0.4) 0px 9px 24px, 0 0 0 1px rgba(255, 255, 255, 0.1);\n}\n.light-mode {\n color-scheme: light;\n --default-theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);\n --default-theme-scrollbar-color: rgba(0, 0, 0, 0.18);\n --default-theme-button-1: rgba(0, 0, 0, 1);\n --default-theme-button-1-hover: rgba(0, 0, 0, 0.8);\n --default-theme-button-1-color: rgba(255, 255, 255, 0.9);\n\n --default-theme-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.11);\n --default-theme-shadow-2: rgba(0, 0, 0, 0.08) 0px 13px 20px 0px,\n rgba(0, 0, 0, 0.08) 0px 3px 8px 0px, #eeeeed 0px 0 0 1px;\n}\n@media (max-width: 460px) {\n :root {\n --default-theme-font-size-1: 22px;\n --default-theme-font-size-2: 14px;\n --default-theme-font-size-3: 12px;\n }\n}\n@media (max-width: 720px) {\n :root {\n --default-theme-heading-1: 24px;\n --default-theme-page-description: 20px;\n }\n}\n.cm-scroller,\n.custom-scroll {\n overflow-y: auto;\n scrollbar-color: transparent transparent;\n scrollbar-width: thin;\n -webkit-overflow-scrolling: touch;\n}\n.custom-scroll-self-contain-overflow {\n overscroll-behavior: contain;\n}\n@supports (-moz-appearance: none) {\n .cm-scroller,\n .custom-scroll {\n padding-right: 12px;\n }\n}\n.cm-scroller:hover,\n.custom-scroll:hover {\n scrollbar-color: var(\n --theme-scrollbar-color,\n var(--default-theme-scrollbar-color)\n )\n transparent;\n}\n.cm-scroller:hover::-webkit-scrollbar-thumb,\n.custom-scroll:hover::-webkit-scrollbar-thumb {\n background: var(\n --theme-scrollbar-color,\n var(--default-theme-scrollbar-color)\n );\n background-clip: content-box;\n border: 3px solid transparent;\n}\n.cm-scroller::-webkit-scrollbar-thumb:active,\n.custom-scroll::-webkit-scrollbar-thumb:active {\n background: var(\n --theme-scrollbar-color-active,\n var(--default-theme-scrollbar-color-active)\n );\n background-clip: content-box;\n border: 3px solid transparent;\n}\n.cm-scroller::-webkit-scrollbar-corner,\n.custom-scroll::-webkit-scrollbar-corner {\n background: transparent;\n}\n.cm-scroller::-webkit-scrollbar,\n.custom-scroll::-webkit-scrollbar {\n height: 12px;\n width: 12px;\n}\n.cm-scroller::-webkit-scrollbar-track,\n.custom-scroll::-webkit-scrollbar-track {\n background: transparent;\n}\n.cm-scroller::-webkit-scrollbar-thumb,\n.custom-scroll::-webkit-scrollbar-thumb {\n border-radius: 20px;\n background: transparent;\n background-clip: content-box;\n border: 3px solid transparent;\n}\n@media (pointer: coarse) {\n .cm-scroller,\n .custom-scroll {\n padding-right: 12px;\n }\n}\n\n.codemirror-container[data-v-9f50a430] {\n width: 100%;\n height: 100%;\n padding-top: 4px;\n min-height: 76px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n color: var(--theme-color-1, var(--default-theme-color-1));\n display: flex;\n align-items: stretch;\n}\n.copy-to-clipboard-button[data-v-9f50a430] {\n background: red;\n}\n\n.codemirror {\n flex-grow: 1;\n max-width: 100%;\n cursor: text;\n font-size: var(--theme-small, var(--default-theme-small));\n /* Don't scale wide text on mobile because we let it scroll */\n -webkit-text-size-adjust: 100%;\n}\n.cm-focused {\n outline: none !important;\n}\n\n.modal-layout[data-v-a06b8e92] {\n position: fixed;\n width: 100vw;\n height: 100vh;\n top: 0;\n left: 0;\n z-index: 1001;\n background: rgba(0, 0, 0, 0.44);\n padding: 20px;\n opacity: 0;\n animation: modal-fade-a06b8e92 0.2s forwards;\n}\n.modal-body[data-v-a06b8e92] {\n padding: 24px 24px 18px 24px;\n max-height: calc(100vh - 240px);\n background: var(--theme-background-1, var(--default-theme-background-1));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n font-family: var(--theme-font, var(--default-theme-font));\n position: relative;\n}\n.modal[data-v-a06b8e92] {\n margin: 80px auto 0;\n position: relative;\n background: var(--theme-background-2, var(--default-theme-background-2));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n text-align: left;\n line-height: 1.4;\n opacity: 0;\n transform: scale(0.98);\n animation: modal-pop-a06b8e92 0.15s 0.15s forwards;\n display: flex;\n flex-direction: column;\n}\n.modal[data-v-a06b8e92]:before {\n content: '';\n display: block;\n width: 100%;\n height: 100%;\n position: absolute;\n z-index: 0;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.dark-mode .modal[data-v-a06b8e92]:before {\n background: #1a1a1a;\n}\n.light-mode .modal[data-v-a06b8e92]:before {\n background: #fff;\n}\n.modal-content-history[data-v-a06b8e92] {\n background: var(--theme-background-1, var(--default-theme-background-1));\n}\n.modal-content-history[data-v-a06b8e92],\n.modal-content-large[data-v-a06b8e92] {\n max-width: 800px;\n}\n.modal-content-normal[data-v-a06b8e92] {\n max-width: 640px;\n}\n.modal-content-small[data-v-a06b8e92] {\n max-width: 480px;\n}\n@keyframes modal-fade-a06b8e92 {\nfrom {\n opacity: 0;\n}\nto {\n opacity: 1;\n}\n}\n@keyframes modal-pop-a06b8e92 {\n0% {\n opacity: 0;\n}\n100% {\n opacity: 1;\n transform: scale(1);\n}\n}\n.modal-header[data-v-a06b8e92] {\n padding: 12px 24px;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-font-size-4, var(--default-theme-font-size-4));\n text-align: left;\n font-weight: 600;\n margin: 0;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg)) 0 0;\n z-index: 1;\n}\n.modal-content-history .modal-header[data-v-a06b8e92] {\n padding-bottom: 0;\n padding-top: 24px;\n}\n.modal-content-history .modal-body[data-v-a06b8e92] {\n padding-top: 12px;\n}\n.modal-content-search[data-v-a06b8e92] {\n max-width: 540px;\n}\n.modal-content-search .modal-body[data-v-a06b8e92] {\n padding: 0;\n overflow: hidden;\n display: flex;\n flex-direction: column;\n max-height: 440px;\n}\n\n.navtable-item-time[data-v-dd49a57f] {\n text-transform: capitalize;\n}\n.navtable-item__active[data-v-dd49a57f] {\n background: var(--theme-background-2, var(--default-theme-background-2));\n cursor: default;\n}\n\n.navtable-mock {\n background-repeat: repeat;\n width: 100%;\n background-size: 31px 31px;\n background-position: center 1px;\n flex: 1;\n position: relative;\n z-index: 0;\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n background: repeating-linear-gradient(\n var(--theme-background-1, var(--default-theme-background-1)),\n var(--theme-background-1, var(--default-theme-background-1)) 34.8px,\n var(--theme-border-color, var(--default-theme-border-color)) 34.8px,\n var(--theme-border-color, var(--default-theme-border-color)) 35.8px\n );\n}\n.navtable-mock .navtable-item {\n position: absolute;\n width: 100%;\n height: 100%;\n left: 0;\n top: 0;\n background: transparent;\n box-shadow: none;\n}\n.radio {\n height: 10px;\n max-width: 10px;\n width: 10px;\n max-height: 10px;\n background: transparent;\n border: var(--border, var(--default-border));\n flex-shrink: 0;\n margin-right: 6px;\n margin-left: 0;\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n outline: none;\n padding: 0;\n}\n.radio:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n cursor: pointer;\n}\n.navtable-item__active:before {\n content: '';\n display: block;\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;\n width: 100%;\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n}\n.navtable-item__active + .navtable-item {\n /* box-shadow: none; */\n}\n.radio.post {\n background: var(--theme-color-green, var(--default-theme-color-green));\n}\n.radio.delete {\n background: var(--theme-color-red, var(--default-theme-color-red));\n}\n.radio.patch {\n background: var(--theme-color-yellow, var(--default-theme-color-yellow));\n}\n.radio.get {\n background: var(--theme-color-blue, var(--default-theme-color-blue));\n}\n.radio.put {\n background: var(--theme-color-orange, var(--default-theme-color-orange));\n}\n.navtable-item-request span {\n border: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n display: block;\n overflow: hidden;\n white-space: nowrap;\n text-overflow: ellipsis;\n}\n.navtable-item-request span em {\n text-transform: uppercase;\n font-style: normal;\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n font-size: var(--theme-micro, var(--default-theme-micro));\n margin-right: 6px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n\n.request-method-select[data-v-8e2122cd] {\n position: relative;\n display: flex;\n}\n.request-method-select select[data-v-8e2122cd] {\n border: none;\n outline: none;\n cursor: pointer;\n background: var(--theme-background-3, var(--default-theme-background-3));\n box-shadow: -2px 0 0 0\n var(--theme-background-3, var(--default-theme-background-3));\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n}\n.request-method-select select[disabled][data-v-8e2122cd] {\n pointer-events: none;\n}\n.request-method[data-v-8e2122cd] {\n display: flex;\n align-items: center;\n color: var(--theme-color-3, var(--default-theme-color-3));\n appearance: none;\n -webkit-appearance: none;\n padding: 0 12px;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n}\n.request-method span[data-v-8e2122cd] {\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n font-size: 500;\n font-size: var(--theme-micro, var(--default-theme-micro));\n text-transform: uppercase;\n display: flex;\n align-items: center;\n}\n.request-method:not(.request-method--disabled) span[data-v-8e2122cd]:after {\n content: '';\n width: 7px;\n height: 7px;\n transform: rotate(45deg) translate3d(-2px, -2px, 0);\n display: block;\n margin-left: 6px;\n box-shadow: 1px 1px 0 currentColor;\n}\n.request-method i[data-v-8e2122cd] {\n width: 10px;\n height: 10px;\n border-radius: 50%;\n margin-right: 6px;\n text-align: center;\n line-height: 18px;\n font-style: normal;\n flex-shrink: 0;\n display: inline-block;\n color: var(--theme-color-disabled, var(--default-theme-color-disabled));\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n}\n\n.api-client-url-variable {\n color: var(--scalar-api-client-color, var(--default-scalar-api-client-color));\n}\n\n.loader[data-v-75df9114] {\n position: absolute;\n z-index: 3;\n height: 2px;\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n animation: loading-75df9114 5s cubic-bezier(0, 0.5, 0.25, 1);\n}\n@keyframes loading-75df9114 {\n0% {\n width: 0;\n}\n100% {\n width: 100%;\n}\n}\n.address-bar[data-v-75df9114] {\n width: 100%;\n padding: 12px 12px 10px 12px;\n display: flex;\n align-items: center;\n position: relative;\n background: var(--theme-background-1, var(--default-theme-background-1));\n}\n.url-form[data-v-75df9114] {\n display: flex;\n width: 100%;\n align-items: stretch;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.url-form[data-v-75df9114] .cm-content {\n display: flex;\n align-items: center;\n}\n.url-form-field[data-v-75df9114] {\n border-right: 0;\n background: var(--theme-background-2, var(--default-theme-background-2));\n border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0\n var(--theme-radius, var(--default-theme-radius));\n display: flex;\n align-items: stretch;\n width: 100%;\n overflow: hidden;\n min-height: 31px;\n}\n.url-form-input[data-v-75df9114] {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.url-form-input[data-v-75df9114] {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n min-height: auto;\n padding-top: 0;\n}\n.url-form-input[data-v-75df9114] .cm-scroller {\n overflow-y: hidden;\n}\n.history[data-v-75df9114] {\n appearance: none;\n -webkit-appearance: none;\n background: transparent;\n color: var(--theme-color-2, var(--default-theme-color-2));\n display: flex;\n align-items: center;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n height: 100%;\n}\n.send-button[type='submit'][data-v-75df9114] {\n font-size: var(--theme-micro, var(--default-theme-micro));\n letter-spacing: 0.25px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: white;\n border: none;\n white-space: nowrap;\n padding: 0 12px;\n text-transform: uppercase;\n cursor: pointer;\n outline: none;\n font-family: (--theme-font, var(--default-theme-font));\n border-radius: 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius)) 0;\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n );\n position: relative;\n /** #087f5b */\n display: flex;\n align-items: center;\n overflow: hidden;\n flex-shrink: 0;\n}\n.send-button[data-v-75df9114]:before {\n content: '';\n position: absolute;\n top: -5%;\n left: -5%;\n width: 110%;\n height: 110%;\n pointer-events: none;\n cursor: pointer;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));\n}\n.send-button[data-v-75df9114]:hover:before {\n background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));\n}\n.send-button svg[data-v-75df9114] {\n width: 12px;\n height: 12px;\n flex-shrink: 0;\n margin-right: 6px;\n position: relative;\n}\n.send-button span[data-v-75df9114] {\n position: relative;\n}\n@media screen and (max-width: 720px) {\n.history-toggle span[data-v-75df9114],\n .send-button span[data-v-75df9114] {\n display: none;\n}\n.history-toggle svg[data-v-75df9114],\n .send-button svg[data-v-75df9114] {\n margin-right: 0;\n}\n}\n.send-button[disabled][data-v-75df9114] {\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n background: var(--theme-background-3, var(--default-theme-background-3));\n border: 1px solid var(--default-theme-border-color);\n}\n.history-toggle[data-v-75df9114] {\n padding: 0 12px;\n line-height: 30px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n letter-spacing: 0.125px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n height: 100%;\n display: flex;\n align-items: center;\n cursor: pointer;\n white-space: nowrap;\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n margin-left: 12px;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n user-select: none;\n}\n.history-toggle[data-v-75df9114]:hover {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.history-toggle svg[data-v-75df9114] {\n height: 13px;\n width: 13px;\n margin-right: 6px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.address-bar-content[data-v-75df9114] {\n width: 640px;\n height: 100%;\n background: var(--theme-background-1, var(--default-theme-background-1));\n position: fixed;\n top: 0;\n right: 0;\n z-index: 1000;\n transform: translate3d(640px, 0, 0);\n opacity: 0;\n transition:\n transform 0.5s cubic-bezier(0.77, 0, 0.175, 1),\n opacity 0.01s ease-in-out 0.5s;\n pointer-events: none;\n}\n.address-bar--with-history[data-v-75df9114] {\n z-index: 100000;\n}\n.address-bar--with-history .address-bar-content[data-v-75df9114] {\n transform: translate3d(0, 0, 0);\n opacity: 1;\n pointer-events: all;\n transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);\n}\n.address-bar--with-history .address-bar-close[data-v-75df9114] {\n opacity: 1;\n pointer-events: all;\n cursor: pointer;\n}\n.address-bar-close[data-v-75df9114] {\n width: 100%;\n height: 100%;\n position: fixed;\n top: 0;\n left: 0;\n pointer-events: none;\n opacity: 0;\n transition: all 0.1s ease-in-out;\n z-index: 1000;\n}\n\n.scalar-api-client__item {\n border-radius: var(--theme-radius, var(--default-theme-radius));\n margin-bottom: 6px;\n position: relative;\n}\n.scalar-api-client__item button {\n background-color: transparent;\n text-align: left;\n}\n.scalar-api-client__item:hover {\n cursor: pointer;\n}\n.scalar-api-client__toggle:after {\n content: '';\n position: absolute;\n bottom: -6.5px;\n width: 100%;\n height: 6px;\n left: 0;\n}\n.scalar-api-client__item--open .scalar-api-client__toggle:after {\n display: none;\n}\n.scalar-api-client__item:hover,\n.scalar-api-client__item--open {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.scalar-api-client__item--open .scalar-api-client__item__content {\n display: flex;\n}\n.scalar-api-client__item--open:hover {\n cursor: default;\n}\n.scalar-api-client__item--open .scalar-api-client__toggle__icon {\n transform: rotate(90deg);\n}\n.scalar-api-client__toggle {\n padding: 6px;\n min-height: 37px;\n display: flex;\n align-items: center;\n justify-content: space-between;\n position: relative;\n width: 100%;\n appearance: none;\n outline: 0;\n border: none;\n font-family: (--theme-font, var(--default-theme-font));\n cursor: pointer;\n}\n.scalar-api-client__item .scalar-api-client__item__title {\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-small, var(--default-theme-small));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: (--theme-font, var(--default-theme-font));\n user-select: none;\n flex: 1;\n position: relative;\n z-index: 1;\n}\n.scalar-api-client__item .scalar-api-client__toggle__icon {\n width: 10px;\n margin-right: 6px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n z-index: 1;\n position: relative;\n}\n.scalar-api-client__toggle:hover .scalar-api-client__toggle__icon {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__item__options {\n position: relative;\n z-index: 1;\n}\n.scalar-api-client__item__options span {\n background: transparent;\n padding: 2px 0;\n border-radius: 3px;\n font-size: var(--theme-small, var(--default-theme-small));\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n display: flex;\n align-items: center;\n justify-content: center;\n}\n.scalar-api-client__item__options:hover span {\n color: var(--theme-color-1, var(--default-theme-color-1));\n border-color: currentColor;\n}\n.scalar-api-client__item__options span svg {\n width: 15px;\n height: 15px;\n margin-left: 3px;\n}\n.scalar-api-client__item__options select {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n opacity: 0;\n cursor: pointer;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n}\n.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {\n padding-top: 0;\n}\n\n.table {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n background: transparent;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n width: 100%;\n}\n.table-row {\n border-bottom: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n display: flex;\n position: relative;\n}\n.table-row__add {\n border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg));\n border-bottom: none;\n}\n.table-row.required-parameter .table-row-item:nth-of-type(2):after {\n content: 'Required';\n position: absolute;\n top: 4px;\n right: 0;\n padding: 5px 9px 5px 6px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: var(--theme-background-2, var(--default-theme-background-2));\n box-shadow: -2px 0 4px\n var(--theme-background-2, var(--default-theme-background-2));\n}\n.table-row.required-parameter\n .table-row-item:nth-of-type(2):focus-within:after {\n display: none;\n}\n.table-row:last-of-type {\n border-bottom: none;\n}\n.table-row__active {\n border-radius: 0 0 var(--theme-radius-lg, var(--default-theme-radius-lg))\n var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.table-row-drag {\n width: 20px;\n flex-shrink: 0;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n align-items: center;\n justify-content: center;\n display: none;\n}\n.table-row-drag svg {\n width: 6px;\n fill: var(--theme-color-3, var(--default-theme-color-3));\n}\n.table-row-drag .table-row-drag-add {\n width: 8px;\n}\n.table-row-item {\n width: 100%;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n}\n.table-row-item-menu {\n position: absolute;\n right: 6px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n width: 24px;\n height: 24px;\n top: 50%;\n transform: translate3d(0, -50%, 0);\n border-radius: 50%;\n display: flex;\n align-items: center;\n justify-content: center;\n opacity: 0;\n cursor: pointer;\n}\n.table-row-item input:focus + .table-row-item-menu,\n.table-row-item:hover .table-row-item-menu {\n opacity: 1;\n}\n.table-row-item-menu svg {\n height: 12px;\n width: initial;\n fill: var(--theme-color-3, var(--default-theme-color-3));\n}\n.table-row-item-menu:hover svg {\n fill: var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row-item input {\n border: none;\n appearance: none;\n outline: none;\n padding: 9px;\n width: 100%;\n min-height: 100%;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: transparent;\n font-family: var(--theme-font, var(--default-theme-font));\n}\n.table-row-item input[disabled] {\n background: transparent;\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n}\n.table-row-item input:focus {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row-item label {\n background: transparent;\n text-transform: uppercase;\n display: block;\n padding: 9px;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-size: var(--theme-micro, var(--default-theme-micro));\n}\n.table-row-meta {\n overflow: hidden;\n flex-shrink: 0;\n transition: all 0.15s ease-in-out;\n display: flex;\n align-items: center;\n justify-content: center;\n width: 51px;\n user-select: none;\n}\n.table-row-meta-check {\n width: 18px;\n height: 18px;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n background: rgba(47, 177, 228, 0.1);\n}\n.table-row-meta svg {\n width: 13px;\n height: 13px;\n margin: 0 1px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n cursor: pointer;\n}\n.table-row-meta svg:hover {\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.meta-check {\n display: flex;\n position: relative;\n cursor: pointer;\n align-items: center;\n font-size: var(--theme-micro, var(--default-theme-micro));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n user-select: none;\n margin: 0 1px;\n transition: all 0.15s ease-in-out;\n}\n.meta-check input {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n height: 0;\n width: 0;\n}\n.meta-checkmark {\n height: 17px;\n width: 17px;\n background: var(--theme-background-3, var(--default-theme-background-3));\n border-radius: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n}\n.meta-checkmark:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.meta-check:focus-within .meta-checkmark {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.meta-check .meta-checkmark:after {\n content: '';\n display: none;\n width: 5px;\n height: 8px;\n border: solid var(--theme-color-1, var(--default-theme-color-1));\n border-width: 0 1.5px 1.5px 0;\n transform: rotate(45deg) translate3d(0, -1px, 0);\n}\n.meta-check input:checked ~ .meta-checkmark:after {\n display: block;\n}\n.meta-check input:checked ~ .meta-checkmark:hover {\n background: transparent;\n}\n\n.navtable {\n width: 100%;\n}\n.navtable-follow {\n background-color: black;\n color: white;\n font-size: 9px;\n padding: 6px;\n display: -webkit-box;\n max-width: 250px;\n -webkit-line-clamp: 12;\n border-radius: 3px;\n -webkit-box-orient: vertical;\n overflow: hidden;\n line-height: 1.24;\n transform: translate3d(10px, 0, 0);\n}\n.navtable-follow:after {\n content: '';\n position: absolute;\n bottom: 0;\n width: 100%;\n height: 6px;\n background-color: black;\n}\n.navtable-follow * {\n font-family: var(\n --theme-font-code,\n var(--default-theme-font-code)\n ) !important;\n}\n.navtable-table {\n position: relative;\n display: flex;\n flex-direction: column;\n min-height: 389px;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-radios {\n z-index: 1;\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item {\n display: flex;\n position: relative;\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-size: var(--theme-micro, var(--default-theme-micro));\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.navtable-item:first-of-type {\n border-top: none;\n}\n.navtable-item > div {\n word-wrap: break-word;\n}\n.navtable-item > div:not(:first-child) {\n border-left: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item-action {\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-bold, var(--default-theme-bold));\n background: var(\n --scalar-api-client-bg3,\n var(--default-scalar-api-client-bg3)\n );\n border: none;\n border-radius: 30px;\n appearance: none;\n max-height: 25px;\n margin-left: 12px;\n margin-right: 6px;\n padding: 4px 8px;\n outline: none;\n cursor: pointer;\n opacity: 0;\n transition: opacity 0.15s ease-in-out;\n white-space: nowrap;\n position: relative;\n}\n.navtable-item-action:hover {\n color: var(--theme-color-1, var(--default-theme-color-1));\n background: var(\n --scalar-api-client-gradient,\n var(--default-scalar-api-client-gradient)\n );\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.navtable-item-action:focus {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item:hover,\n.navtable-item:focus-within .navtable-item-action {\n opacity: 1;\n}\n.navtable-item-add {\n display: flex;\n align-items: center;\n padding: 9px;\n font-weight: var(--theme-bold, var(--default-theme-bold));\n outline: none;\n border: none;\n appearance: none;\n background: transparent;\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.navtable-item-add:hover {\n background: var(--theme-background-2, var(--default-theme-background-2));\n cursor: pointer;\n}\n.navtable-item-25 {\n width: 25%;\n font-size: var(--theme-micro, var(--default-theme-micro));\n display: flex;\n align-items: center;\n}\n.navtable-item-33 {\n width: 33.33333%;\n display: flex;\n font-size: var(--theme-micro, var(--default-theme-micro));\n align-items: center;\n}\n.navtable-item-66 {\n width: 66.6666%;\n display: flex;\n font-size: var(--theme-micro, var(--default-theme-micro));\n align-items: center;\n}\n.navtable-item-75 {\n width: 75%;\n display: flex;\n align-items: center;\n}\n.navtable-item-75:focus-within {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item-40 {\n width: 40%;\n display: flex;\n align-items: center;\n padding: 9px;\n}\n.navtable-item-20 {\n width: 20%;\n display: flex;\n align-items: center;\n padding: 9px;\n}\n.navtable-item-50 {\n width: 50%;\n display: flex;\n align-items: center;\n}\n.navtable-item-50:focus-within {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item p {\n padding: 9px;\n}\n.navtable-item input {\n padding: 12px 6px;\n border: none;\n outline: none;\n appearance: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n background: transparent;\n width: 100%;\n}\n.navtable-item input:focus {\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.navtable-item-select {\n position: relative;\n}\n.navtable-item-select select {\n background: transparent;\n outline: none;\n border: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n width: 100%;\n padding: 12px 6px;\n top: 0;\n position: relative;\n cursor: pointer;\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.navtable-item-select svg {\n position: absolute;\n right: 6px;\n color: var(--theme-color-ghost, var(--default-theme-color-ghost));\n width: 6px;\n top: 12px;\n pointer-events: none;\n}\n.navtable-item .option {\n padding: 12px 6px;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n}\n.navtable-item label {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n display: block;\n width: 100%;\n}\n.navtable-item-response {\n padding: 0 9px;\n}\n.navtable-item-response span {\n font-size: var(--theme-micro, var(--default-theme-micro));\n display: flex;\n align-items: center;\n margin-right: 9px;\n min-width: 40px;\n}\n.scalar-api-client__status--1xx:before,\n.scalar-api-client__status--2xx:before,\n.scalar-api-client__status--3xx:before,\n.scalar-api-client__status--4xx:before,\n.scalar-api-client__status--5xx:before,\n.scalar-api-client__status--6xx:before {\n content: '';\n width: 10px;\n height: 10px;\n border-radius: 50%;\n margin-right: 4px;\n background: var(--theme-background-2, var(--default-theme-background-2));\n}\n.scalar-api-client__status--2xx:before {\n background: var(--theme-color-green, var(--default-theme-color-green));\n}\n.scalar-api-client__status--3xx:before {\n background: var(--theme-color-orange, var(--default-theme-color-orange));\n}\n.scalar-api-client__status--4xx:before {\n background: var(--theme-color-red, var(--default-theme-color-red));\n}\n.navtable-item-response span:empty {\n display: none;\n}\n.simpletable.navtable {\n padding: 0;\n}\n.simpletable.navtable .navtable-item-66,\n.simpletable.navtable .navtable-item-33 {\n display: block;\n}\n.simpletable.navtable .navtable-table {\n height: fit-content;\n}\n.meta-delete {\n position: absolute;\n right: -9px;\n background: var(\n --theme-background-3,\n var(--default-theme-background-3)\n ) !important;\n height: 20px;\n width: 20px;\n border: none;\n outline: none;\n border-radius: 50%;\n opacity: 0;\n padding: 5px;\n display: flex;\n align-items: center;\n justify-content: center;\n cursor: pointer;\n}\n.meta-delete svg {\n width: 11px;\n height: 11px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.meta-delete:hover svg {\n color: var(--theme-color-red, var(--default-theme-color-red));\n}\n.meta-delete:focus svg {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.meta-delete:focus {\n border-color: var(--theme-color-1, var(--default-theme-color-1));\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.table-row:hover .meta-delete {\n opacity: 1;\n}\n@media (pointer: coarse) {\n.table-row:hover .meta-delete {\n opacity: 1;\n}\n}\n.meta-actions-item {\n border: none;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n appearance: none;\n padding: 9px;\n width: 100%;\n appearance: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-family: var(--theme-font, var(--default-theme-font));\n color: var(--theme-color-3, var(--default-theme-color-3));\n cursor: pointer;\n display: flex;\n align-items: center;\n gap: 6px;\n}\n.meta-actions {\n width: 100%;\n display: flex;\n justify-content: space-between;\n}\n.meta-actions-item:nth-of-type(2) {\n display: flex;\n justify-content: flex-end;\n}\n.meta-actions-item:nth-of-type(2) i {\n filter: drop-shadow(0 0.125px 0 currentColor)\n drop-shadow(0 -0.125px 0 currentColor);\n}\n.meta-actions-item-icon {\n width: 12px;\n height: 12px;\n}\n.meta-actions-item:hover,\n.meta-actions-item:focus {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n\n.scalar-api-client-add {\n color: var(--theme-color-2, var(--default-theme-color-2));\n padding: 6px;\n width: fit-content;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n cursor: pointer;\n font-size: var(--theme-micro, var(--default-theme-micro));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-decoration: none;\n margin: 0 6px;\n border: none;\n font-family: var(--theme-font);\n appearance: none;\n display: flex;\n align-items: center;\n}\n.scalar-api-client-add svg {\n width: 12px;\n height: 12px;\n margin-right: 6px;\n}\n.scalar-api-client-add:hover {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client-add:focus-within {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n\n.scalar-api-client__main__left {\n width: 50%;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n padding: 0 18px 12px 18px;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__left {\n width: 100%;\n border-right: none;\n padding: 0 12px 12px 12px;\n}\n}\n.scalar-api-client__item__content {\n flex-flow: wrap;\n padding: 3px 9px 9px 9px;\n border-radius: 3px;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-micro, var(--default-theme-micro));\n margin-top: -3px;\n justify-content: space-between;\n overflow: auto;\n}\n.scalar-api-client__item__content .scalar-api-client__codemirror__wrapper {\n width: 100%;\n min-height: 63px;\n}\n.scalar-api-client__item__content .scalar-codeblock-pre,\n.scalar-api-client__item__content .cm-s-default {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n}\n.scalar-api-client__item__content .scalar-codeblock-pre,\n.scalar-api-client__item__content .codemirror-container {\n width: 100%;\n max-height: calc(100vh - 300px);\n overflow: auto;\n}\n.scalar-api-client__item__content .cm-scroller {\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n border-radius: 3px;\n}\n.scalar-api-client__item__content .cm-editor {\n outline: none !important;\n}\n.scalar-api-client__item__content .cm-editor .cm-gutters {\n background: transparent;\n}\n.scalar-api-client__item__content .cm-scroll {\n background: transparent;\n}\n.scalar-api-client__item__content .cm-editor * {\n font-size: var(--theme-micro, var(--default-theme-micro));\n}\n.scalar-api-client__item__content .cm-editor .cm-line {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__item__content-button {\n appearance: none;\n border: none;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n background: var(\n --scalar-api-client-color,\n var(--default-scalar-api-client-color)\n ) !important;\n text-align: center;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: var(--theme-font, var(--default-theme-font));\n padding: 6px;\n width: fit-content;\n margin: 3px 3px 3px auto;\n text-transform: uppercase;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n color: white;\n cursor: pointer;\n text-align: center !important;\n position: relative;\n}\n.scalar-api-client__item__content-button span {\n position: relative;\n}\n.scalar-api-client__item__content-button:before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n pointer-events: none;\n cursor: pointer;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));\n}\n.scalar-api-client__item__content-button:hover:before {\n background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));\n}\n.scalar-api-client__item__content__split {\n justify-content: space-between;\n}\n.scalar-collapsible-section-flex {\n width: 100%;\n}\n.input {\n background: transparent;\n position: relative;\n width: 100%;\n text-align: left;\n display: flex;\n box-shadow: 0 1px 0\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.input:focus-within {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1)) !important;\n z-index: 10;\n}\n.input:first-of-type {\n border-radius: var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius)) 0 0;\n}\n.input:first-child:last-child {\n border-radius: var(--theme-radius, var(--default-theme-radius));\n}\n.input:last-child {\n box-shadow: none;\n border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius));\n}\n.input__half:first-of-type {\n border-radius: var(--theme-radius, var(--default-theme-radius)) 0 0 0;\n}\n.input__half:nth-of-type(2) {\n border-radius: 0 var(--theme-radius, var(--default-theme-radius)) 0 0;\n}\n.authentication-form {\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius, var(--default-theme-radius));\n width: 100%;\n display: flex;\n flex-flow: wrap;\n}\n.input__half {\n width: 50%;\n}\n.input__half + .input__half {\n border-left: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n.input__half:focus-within {\n border-color: transparent;\n}\n.input label,\n.input input {\n padding: 9px;\n border: 0;\n outline: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-2, var(--default-theme-color-2));\n width: 100%;\n background: transparent;\n appearance: none;\n -webkit-appearance: none;\n left: 0;\n}\n.input label {\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: fit-content;\n padding-right: 0;\n white-space: nowrap;\n cursor: text;\n}\n.input input {\n position: relative;\n z-index: 99;\n}\n.input input:not(:placeholder-shown) + label {\n color: var(--theme-color-2, var(--default-theme-color-2));\n}\n.select {\n background: --theme-background-1;\n border-radius: var(--theme-radius-lg, var(--default-theme-radius-lg));\n font-size: var(--theme-micro, var(--default-theme-micro));\n border: 1px solid var(--theme-border-color, var(--default-theme-border-color));\n width: 100%;\n position: relative;\n margin-bottom: 6px;\n}\n.select:focus-within {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.select:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.select svg {\n position: absolute;\n right: 9px;\n pointer-events: none;\n color: var(--theme-color-2, var(--default-theme-color-2));\n width: 6px;\n top: 10px;\n}\n.select label {\n display: block;\n font-size: 10px;\n color: var(--theme-color-2, var(--default-theme-color-2));\n position: absolute;\n left: 9px;\n top: 6px;\n}\n.select select {\n background: transparent;\n outline: none;\n border: none;\n -moz-appearance: none;\n -webkit-appearance: none;\n appearance: none;\n font-size: var(--theme-micro, var(--default-theme-micro));\n color: var(--theme-color-1, var(--default-theme-color-1));\n width: 100%;\n padding: 14px 9px 4px 9px;\n top: 0;\n position: relative;\n cursor: pointer;\n}\n.check {\n display: flex;\n position: relative;\n cursor: pointer;\n align-items: center;\n font-size: var(--theme-micro, var(--default-theme-micro));\n padding: 6px 9px;\n border-radius: 0 0 var(--theme-radius, var(--default-theme-radius))\n var(--theme-radius, var(--default-theme-radius));\n user-select: none;\n width: 100%;\n outline: none;\n}\n.check:focus-within {\n box-shadow: 0 0 0 1px var(--theme-color-1, var(--default-theme-color-1));\n}\n.checkmark:hover {\n background: var(--theme-background-3, var(--default-theme-background-3));\n}\n.check:focus-within {\n border-color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.check p {\n color: var(--theme-color-3, var(--default-theme-color-3));\n}\n.check input {\n position: absolute;\n opacity: 0;\n cursor: pointer;\n height: 0;\n width: 0;\n}\n.checkmark {\n height: 17px;\n width: 17px;\n background: var(--theme-background-3, var(--default-theme-background-3));\n margin-right: 10px;\n border-radius: 3px;\n display: flex;\n align-items: center;\n justify-content: center;\n position: relative;\n}\n.check input:checked ~ p {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.check .checkmark:after {\n content: '';\n display: none;\n width: 5px;\n height: 8px;\n border: solid var(--theme-color-1, var(--default-theme-color-1));\n border-width: 0 1.5px 1.5px 0;\n transform: rotate(45deg) translate3d(0, -1px, 0);\n}\n.check input:checked ~ .checkmark:after {\n display: block;\n}\n.scalar-api-client__main__scroll-container {\n height: calc(100vh - 320px);\n}\n.scalar-api-client__request-name {\n outline: none;\n border: none;\n appearance: none;\n -webkit-appearance: none;\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-size: var(--theme-small, var(--default-theme-small));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n color: var(--theme-color-3, var(--default-theme-color-3));\n width: 100%;\n padding: 0;\n background: transparent;\n font-family: var(--theme-font, var(--default-theme-font));\n}\n.scalar-api-client__request-name::-webkit-input-placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.scalar-api-client__request-name:-ms-input-placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n.scalar-api-client__request-name::placeholder {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n\na[data-v-ffc7287f] {\n color: var(--theme-color-3, var(--default-theme-color-3));\n text-decoration: underline;\n text-decoration-color: var(\n --theme-border-color,\n var(--default-theme-border-color)\n );\n text-underline-offset: 2px;\n cursor: help;\n}\n\n.simple-cell[data-v-b99d5e90] {\n all: unset;\n display: table-cell;\n border-right: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n position: relative;\n padding: 9px !important;\n color: var(--theme-color-1, var(--default-theme-color-1));\n white-space: nowrap;\n}\n.simple-cell a[data-v-b99d5e90] {\n color: var(--theme-color-1, var(--default-theme-color-1)) !important;\n}\n.simple-cell[data-v-b99d5e90]:last-of-type {\n border-right: none;\n}\n.simple-cell.wrap[data-v-b99d5e90] {\n white-space: normal;\n}\n.simple-cell.strong[data-v-b99d5e90] {\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n}\n\n.simple-header[data-v-6bd3700b] {\n color: var(--theme-color-3, var(--default-theme-color-3));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n text-transform: uppercase;\n}\n\n.simple-row[data-v-e7e681a1] {\n all: unset;\n display: table-row;\n box-shadow: 0 -1px var(--theme-border-color, var(--default-theme-border-color));\n}\n.simple-row[data-v-e7e681a1]:first-of-type {\n box-shadow: none;\n}\n\n.simple-table[data-v-8f53a32f] {\n all: unset;\n display: table;\n width: 100%;\n border-spacing: 0;\n box-shadow: 0 0 0 1px\n var(--theme-border-color, var(--default-theme-border-color));\n border-radius: var(--theme-radius, var(--default-theme-radius));\n}\n\n.scalar-api-client__main__right {\n width: 50%;\n padding: 0 18px 12px 18px;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__right {\n width: 100%;\n border-right: none;\n padding: 0 12px 12px 12px;\n}\n}\n.scalar-api-client__main__right :deep(.scalar-copilot__header-button) {\n position: absolute;\n top: 6px;\n right: 12px;\n}\n\n.scalar-api-client,\n#headlessui-portal-root {\n background: var(--theme-background-1, var(--default-theme-background-1));\n position: relative;\n height: 100%;\n overflow: hidden !important;\n display: flex;\n flex-direction: column;\n font-family: var(--theme-font, var(--default-theme-font));\n\n /** Make sure box-sizing is set properly. */\n box-sizing: border-box;\n*,\n *:before,\n *:after {\n box-sizing: inherit;\n}\n}\n.scalar-api-client {\n flex: 1;\n max-height: 100vh;\n}\n@media screen and (max-width: 1000px) {\n.scalar-api-client {\n width: 100%;\n}\n}\n.scalar-api-client pre {\n font-family: var(--theme-font-code, var(--default-theme-font-code));\n}\n.scalar-api-client__mobile-navigation {\n padding: 12px 12px 0 12px;\n display: flex;\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-2, var(--default-theme-color-2));\n font-weight: var(--theme-bold, var(--default-theme-bold));\n}\n.scalar-api-client__mobile-navigation__toggle {\n appearance: none;\n border: none;\n outline: none;\n background: transparent;\n font-size: var(--theme-font-size-2);\n color: var(--theme-color-2);\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-family: var(--theme-font, var(--default-theme-font));\n padding: 0;\n margin-right: 9px;\n cursor: pointer;\n}\n.scalar-api-client__mobile-navigation--active {\n color: var(--theme-color-1, var(--default-theme-color-1));\n}\n.scalar-api-client__mobile-navigation--active:hover {\n cursor: pointer;\n}\n.scalar-api-client__main {\n display: flex;\n height: 100%;\n min-height: 0;\n background: var(--theme-background-1, var(--default-theme-background-1));\n border-top: 1px solid\n var(--theme-border-color, var(--default-theme-border-color));\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main {\n flex-direction: column;\n}\n}\n\n/** TODO: Consider to make a Column component */\n.scalar-api-client__main__content {\n padding: 12px 6px;\n background: var(--theme-background-1, var(--default-theme-background-1));\n top: 0;\n position: sticky;\n z-index: 100;\n}\n.scalar-api-client__main__content label {\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-1, var(--default-theme-color-1));\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n display: flex;\n align-items: center;\n}\n@media screen and (max-width: 820px) {\n.scalar-api-client__main__content {\n padding: 3px 0 12px 0;\n}\n.scalar-api-client__main__content label {\n display: none;\n}\n}\n.meta {\n display: flex;\n margin-top: 3px;\n font-size: var(--theme-font-size-2, var(--default-theme-font-size-2));\n font-weight: var(--theme-font-size-2, var(--default-theme-font-size-2));\n color: var(\n --scalar-api-client-color2,\n var(--default-scalar-api-client-color2)\n );\n}\n.meta-item svg {\n fill: var(--theme-color-ghost, var(--default-theme-color-ghost));\n height: 14px;\n width: 14px;\n margin-right: 6px;\n}\n.meta-item {\n display: flex;\n align-items: center;\n margin-right: 12px;\n white-space: nowrap;\n font-weight: var(--theme-semibold, var(--default-theme-semibold));\n font-size: var(--theme-small, var(--default-theme-small));\n color: var(--theme-color-3, var(--default-theme-color-3));\n min-height: 17px;\n}\n.meta-item__input {\n background: transparent;\n width: 100%;\n margin-right: 0;\n}\n.types {\n margin: auto;\n width: 580px;\n display: flex;\n align-items: center;\n justify-content: center;\n flex-flow: wrap;\n}\n.types-heading {\n width: 100%;\n text-align: center;\n}\n.types-heading b {\n font-size: 42px;\n}\n.types-heading p {\n margin-bottom: 20px;\n margin-top: 12px;\n font-size: 24px;\n}\n.scalar-api-client__empty-state {\n border: 1px dashed\n var(--theme-border-color, var(--default-theme-border-color));\n width: 100%;\n text-align: center;\n border-radius: var(--theme-radius, var(--default-theme-radius));\n font-size: var(--theme-small, var(--default-theme-small));\n min-height: 58px;\n display: flex;\n align-items: center;\n justify-content: center;\n}"));
|
|
18350
16094
|
document.head.appendChild(elementStyle);
|
|
18351
16095
|
}
|
|
18352
16096
|
} catch (e2) {
|
|
@@ -18369,7 +16113,7 @@ a[data-v-ffc7287f] {
|
|
|
18369
16113
|
const purpleTheme = "/* basic theme */\n.light-mode {\n --default-theme-background-1: #fff;\n --default-theme-background-2: #f5f6f8;\n --default-theme-background-3: #eceef1;\n\n --default-theme-color-1: #2a2f45;\n --default-theme-color-2: #757575;\n --default-theme-color-3: #8e8e8e;\n\n --default-theme-color-accent: #5469d4;\n --default-theme-background-accent: #5469d41f;\n\n --default-theme-border-color: rgba(215, 215, 206, 0.5);\n}\n.dark-mode {\n --default-theme-background-1: #15171c;\n --default-theme-background-2: #1c1e24;\n --default-theme-background-3: #22252b;\n\n --default-theme-color-1: #fafafa;\n --default-theme-color-2: #c9ced8;\n --default-theme-color-3: #8c99ad;\n\n --default-theme-color-accent: #5469d4;\n --default-theme-background-accent: #5469d41f;\n\n --default-theme-border-color: rgba(255, 255, 255, 0.12);\n}\n/* Document Sidebar */\n.light-mode .t-doc__sidebar,\n.dark-mode .t-doc__sidebar {\n --sidebar-background-1: var(--default-theme-background-1);\n --sidebar-color-1: var(--default-theme-color-1);\n --sidebar-color-2: var(--default-theme-color-2);\n --sidebar-border-color: var(--default-theme-border-color);\n\n /* Sidebar item hover */\n --sidebar-item-hover-color: currentColor;\n --sidebar-item-hover-background: var(--default-theme-background-3);\n\n /* Sidebar Active */\n --sidebar-item-active-background: var(--default-theme-background-accent);\n --sidebar-color-active: var(--default-theme-color-accent);\n\n /* Sidebar Search */\n --sidebar-search-background: var(--default-theme-background-1);\n --sidebar-search-color: var(--default-theme-color-3);\n --sidebar-search-border-color: var(--default-theme-border-color);\n}\n\n/* advanced */\n.light-mode {\n --default-theme-color-green: #17803d;\n --default-theme-color-red: #e10909;\n --default-theme-color-yellow: #edbe20;\n --default-theme-color-blue: #1763a6;\n --default-theme-color-orange: #e25b09;\n --default-theme-color-purple: #5c3993;\n}\n.dark-mode {\n --default-theme-color-green: #30a159;\n --default-theme-color-red: #dc1b19;\n --default-theme-color-yellow: #eec644;\n --default-theme-color-blue: #2b7abf;\n --default-theme-color-orange: #f07528;\n --default-theme-color-purple: #7a59b1;\n}\n";
|
|
18370
16114
|
const saturnTheme = "/* basic theme */\n.light-mode {\n --default-theme-background-1: #f3f3ee;\n --default-theme-background-2: #e8e8e3;\n --default-theme-background-3: #e4e4df;\n --default-theme-border-color: rgba(215, 215, 206, 0.5);\n\n --default-theme-color-1: #2a2f45;\n --default-theme-color-2: #757575;\n --default-theme-color-3: #8e8e8e;\n\n --default-theme-color-accent: #1763a6;\n --default-theme-background-accent: #1f648e1f;\n\n --default-theme-code-language-color-supersede: var(--default-theme-color-1);\n --default-theme-code-languages-background-supersede: var(\n --default-theme-background-2\n );\n}\n.dark-mode {\n --default-theme-background-1: #09090b;\n --default-theme-background-2: #18181b;\n --default-theme-background-3: #2c2c30;\n --default-theme-border-color: rgba(255, 255, 255, 0.12);\n\n --default-theme-color-1: #fafafa;\n --default-theme-color-2: rgb(161, 161, 170);\n --default-theme-color-3: rgba(255, 255, 255, 0.533);\n\n --default-theme-color-accent: #4eb3ec;\n --default-theme-background-accent: #8ab4f81f;\n\n --default-theme-code-language-color-supersede: var(--default-theme-color-1);\n --default-theme-code-languages-background-supersede: var(\n --default-theme-background-2\n );\n}\n/* Document Sidebar */\n.light-mode .t-doc__sidebar,\n.dark-mode .t-doc__sidebar {\n --default-sidebar-background-1: var(--default-theme-background-1);\n --default-sidebar-color-1: var(--default-theme-color-1);\n --default-sidebar-color-2: var(--default-theme-color-2);\n --default-sidebar-border-color: var(--default-theme-border-color);\n\n --default-sidebar-item-hover-background: var(--default-theme-background-3);\n --default-sidebar-item-hover-color: currentColor;\n\n --default-sidebar-item-active-background: var(--default-theme-background-3);\n --default-sidebar-color-active: var(--default-theme-color-1);\n\n --default-sidebar-search-background: var(--default-theme-background-1);\n --default-sidebar-search-border-color: var(--default-theme-border-color);\n --default-sidebar-search-color: var(--default-theme-color-3);\n}\n\n/* advanced */\n.light-mode {\n --default-theme-color-green: #17803d;\n --default-theme-color-red: #e10909;\n --default-theme-color-yellow: #edbe20;\n --default-theme-color-blue: #1763a6;\n --default-theme-color-orange: #e25b09;\n --default-theme-color-purple: #5c3993;\n}\n.dark-mode {\n --default-theme-color-green: #30a159;\n --default-theme-color-red: #dc1b19;\n --default-theme-color-yellow: #eec644;\n --default-theme-color-blue: #2b7abf;\n --default-theme-color-orange: #f07528;\n --default-theme-color-purple: #7a59b1;\n}\n.dark-mode h2.t-editor__heading,\n.dark-mode .t-editor__page-title h1,\n.dark-mode h1.section-header,\n.dark-mode .markdown h1,\n.dark-mode .markdown h2,\n.dark-mode .markdown h3,\n.dark-mode .markdown h4,\n.dark-mode .markdown h5,\n.dark-mode .markdown h6 {\n -webkit-text-fill-color: transparent;\n background-image: linear-gradient(\n to right bottom,\n rgb(255, 255, 255) 30%,\n rgba(255, 255, 255, 0.38)\n );\n -webkit-background-clip: text;\n background-clip: text;\n}\n";
|
|
18371
16115
|
const solarizedTheme = ".light-mode {\n color-scheme: light;\n --default-theme-color-1: #584c27;\n --default-theme-color-2: #616161;\n --default-theme-color-3: #a89f84;\n --default-theme-color-accent: #b58900;\n --default-theme-background-1: #fdf6e3;\n --default-theme-background-2: #eee8d5;\n --default-theme-background-3: #ddd6c1;\n --default-theme-background-accent: #b589001f;\n\n --default-theme-border-color: #ded8c8;\n --default-theme-scrollbar-color: rgba(0, 0, 0, 0.18);\n --default-theme-scrollbar-color-active: rgba(0, 0, 0, 0.36);\n --default-theme-lifted-brightness: 1;\n --default-theme-backdrop-brightness: 1;\n\n --default-theme-shadow-1: 0 1px 3px 0 rgba(0, 0, 0, 0.11);\n --default-theme-shadow-2: rgba(0, 0, 0, 0.08) 0px 13px 20px 0px,\n rgba(0, 0, 0, 0.08) 0px 3px 8px 0px, #eeeeed 0px 0 0 1px;\n\n --default-theme-button-1: rgb(49 53 56);\n --default-theme-button-1-color: #fff;\n --default-theme-button-1-hover: rgb(28 31 33);\n\n --default-theme-color-red: #b91c1c;\n --default-theme-color-orange: #a16207;\n --default-theme-color-green: #047857;\n --default-theme-color-blue: #1d4ed8;\n --default-theme-color-orange: #c2410c;\n --default-theme-color-purple: #6d28d9;\n}\n\n.dark-mode {\n color-scheme: dark;\n --default-theme-color-1: #fff;\n --default-theme-color-2: #cccccc;\n --default-theme-color-3: #6d8890;\n --default-theme-color-accent: #007acc;\n --default-theme-background-1: #00212b;\n --default-theme-background-2: #012b36;\n --default-theme-background-3: #004052;\n --default-theme-background-accent: #015a6f;\n\n --default-theme-border-color: rgba(255, 255, 255, 0.1);\n --default-theme-scrollbar-color: rgba(255, 255, 255, 0.24);\n --default-theme-scrollbar-color-active: rgba(255, 255, 255, 0.48);\n --default-theme-lifted-brightness: 1.45;\n --default-theme-backdrop-brightness: 0.5;\n\n --default-theme-shadow-1: 0 1px 3px 0 rgb(0, 0, 0, 0.1);\n --default-theme-shadow-2: rgba(15, 15, 15, 0.2) 0px 3px 6px,\n rgba(15, 15, 15, 0.4) 0px 9px 24px, 0 0 0 1px rgba(255, 255, 255, 0.1);\n\n --default-theme-button-1: #f6f6f6;\n --default-theme-button-1-color: #000;\n --default-theme-button-1-hover: #e7e7e7;\n\n --default-theme-color-green: #00b648;\n --default-theme-color-red: #dc1b19;\n --default-theme-color-yellow: #ffc90d;\n --default-theme-color-blue: #4eb3ec;\n --default-theme-color-orange: #ff8d4d;\n --default-theme-color-purple: #b191f9;\n}\n\n/* Sidebar */\n.light-mode .t-doc__sidebar {\n --default-sidebar-background-1: var(--default-theme-background-1);\n --default-sidebar-item-hover-color: currentColor;\n --default-sidebar-item-hover-background: var(--default-theme-background-2);\n --default-sidebar-item-active-background: var(\n --default-theme-background-accent\n );\n --default-sidebar-border-color: var(--default-theme-border-color);\n --default-sidebar-color-1: var(--default-theme-color-1);\n --default-sidebar-color-2: var(--default-theme-color-2);\n --default-sidebar-color-active: var(--default-theme-color-accent);\n --default-sidebar-search-background: var(--default-theme-background-2);\n --default-sidebar-search-border-color: var(--sidebar-search-background);\n --default-sidebar-search--color: var(--default-theme-color-3);\n}\n\n.dark-mode .sidebar {\n --default-sidebar-background-1: var(--default-theme-background-1);\n --default-sidebar-item-hover-color: currentColor;\n --default-sidebar-item-hover-background: var(--default-theme-background-2);\n --default-sidebar-item-active-background: var(\n --default-theme-background-accent\n );\n --default-sidebar-border-color: var(--default-theme-border-color);\n --default-sidebar-color-1: var(--default-theme-color-1);\n --default-sidebar-color-2: var(--default-theme-color-2);\n --default-sidebar-color-active: var(--default-sidebar-color-1);\n --default-sidebar-search-background: var(--default-theme-background-2);\n --default-sidebar-search-border-color: var(--sidebar-search-background);\n --default-sidebar-search--color: var(--default-theme-color-3);\n}\n";
|
|
18372
|
-
const _sfc_main$
|
|
16116
|
+
const _sfc_main$r = /* @__PURE__ */ defineComponent({
|
|
18373
16117
|
__name: "ThemeStyles",
|
|
18374
16118
|
props: {
|
|
18375
16119
|
id: {}
|
|
@@ -19302,7 +17046,7 @@ a[data-v-ffc7287f] {
|
|
|
19302
17046
|
url: "https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/511"
|
|
19303
17047
|
}
|
|
19304
17048
|
};
|
|
19305
|
-
const _sfc_main$
|
|
17049
|
+
const _sfc_main$q = /* @__PURE__ */ defineComponent({
|
|
19306
17050
|
__name: "HttpMethod",
|
|
19307
17051
|
props: {
|
|
19308
17052
|
as: {},
|
|
@@ -30529,8 +28273,8 @@ a[data-v-ffc7287f] {
|
|
|
30529
28273
|
function supportsTabSize() {
|
|
30530
28274
|
var _a2;
|
|
30531
28275
|
if (_supportsTabSize == null && typeof document != "undefined" && document.body) {
|
|
30532
|
-
let
|
|
30533
|
-
_supportsTabSize = ((_a2 =
|
|
28276
|
+
let styles = document.body.style;
|
|
28277
|
+
_supportsTabSize = ((_a2 = styles.tabSize) !== null && _a2 !== void 0 ? _a2 : styles.MozTabSize) != null;
|
|
30534
28278
|
}
|
|
30535
28279
|
return _supportsTabSize || false;
|
|
30536
28280
|
}
|
|
@@ -31107,25 +28851,25 @@ a[data-v-ffc7287f] {
|
|
|
31107
28851
|
for (let b2 of line.type) {
|
|
31108
28852
|
if (b2.type == BlockType.Text && first) {
|
|
31109
28853
|
advanceCursor(lineClasses, classSet, b2.from);
|
|
31110
|
-
for (let
|
|
31111
|
-
|
|
28854
|
+
for (let cx of contexts)
|
|
28855
|
+
cx.line(this.view, b2, classSet);
|
|
31112
28856
|
first = false;
|
|
31113
28857
|
} else if (b2.widget) {
|
|
31114
|
-
for (let
|
|
31115
|
-
|
|
28858
|
+
for (let cx of contexts)
|
|
28859
|
+
cx.widget(this.view, b2);
|
|
31116
28860
|
}
|
|
31117
28861
|
}
|
|
31118
28862
|
} else if (line.type == BlockType.Text) {
|
|
31119
28863
|
advanceCursor(lineClasses, classSet, line.from);
|
|
31120
|
-
for (let
|
|
31121
|
-
|
|
28864
|
+
for (let cx of contexts)
|
|
28865
|
+
cx.line(this.view, line, classSet);
|
|
31122
28866
|
} else if (line.widget) {
|
|
31123
|
-
for (let
|
|
31124
|
-
|
|
28867
|
+
for (let cx of contexts)
|
|
28868
|
+
cx.widget(this.view, line);
|
|
31125
28869
|
}
|
|
31126
28870
|
}
|
|
31127
|
-
for (let
|
|
31128
|
-
|
|
28871
|
+
for (let cx of contexts)
|
|
28872
|
+
cx.finish();
|
|
31129
28873
|
if (detach)
|
|
31130
28874
|
this.view.scrollDOM.insertBefore(this.dom, after);
|
|
31131
28875
|
}
|
|
@@ -34452,12 +32196,12 @@ a[data-v-ffc7287f] {
|
|
|
34452
32196
|
let parser2 = {
|
|
34453
32197
|
parsedPos: from,
|
|
34454
32198
|
advance() {
|
|
34455
|
-
let
|
|
34456
|
-
if (
|
|
32199
|
+
let cx = currentContext;
|
|
32200
|
+
if (cx) {
|
|
34457
32201
|
for (let r2 of ranges)
|
|
34458
|
-
|
|
32202
|
+
cx.tempSkipped.push(r2);
|
|
34459
32203
|
if (until)
|
|
34460
|
-
|
|
32204
|
+
cx.scheduleOn = cx.scheduleOn ? Promise.all([cx.scheduleOn, until]) : until;
|
|
34461
32205
|
}
|
|
34462
32206
|
this.parsedPos = to;
|
|
34463
32207
|
return new Tree(NodeType$1.none, [], [], to - from);
|
|
@@ -34556,15 +32300,15 @@ a[data-v-ffc7287f] {
|
|
|
34556
32300
|
this.scheduleWork();
|
|
34557
32301
|
}
|
|
34558
32302
|
update(update) {
|
|
34559
|
-
let
|
|
34560
|
-
if (
|
|
32303
|
+
let cx = this.view.state.field(Language.state).context;
|
|
32304
|
+
if (cx.updateViewport(update.view.viewport) || this.view.viewport.to > cx.treeLen)
|
|
34561
32305
|
this.scheduleWork();
|
|
34562
32306
|
if (update.docChanged || update.selectionSet) {
|
|
34563
32307
|
if (this.view.hasFocus)
|
|
34564
32308
|
this.chunkBudget += 50;
|
|
34565
32309
|
this.scheduleWork();
|
|
34566
32310
|
}
|
|
34567
|
-
this.checkAsyncSchedule(
|
|
32311
|
+
this.checkAsyncSchedule(cx);
|
|
34568
32312
|
}
|
|
34569
32313
|
scheduleWork() {
|
|
34570
32314
|
if (this.working)
|
|
@@ -34602,11 +32346,11 @@ a[data-v-ffc7287f] {
|
|
|
34602
32346
|
this.scheduleWork();
|
|
34603
32347
|
this.checkAsyncSchedule(field.context);
|
|
34604
32348
|
}
|
|
34605
|
-
checkAsyncSchedule(
|
|
34606
|
-
if (
|
|
32349
|
+
checkAsyncSchedule(cx) {
|
|
32350
|
+
if (cx.scheduleOn) {
|
|
34607
32351
|
this.workScheduled++;
|
|
34608
|
-
|
|
34609
|
-
|
|
32352
|
+
cx.scheduleOn.then(() => this.scheduleWork()).catch((err) => logException(this.view.state, err)).then(() => this.workScheduled--);
|
|
32353
|
+
cx.scheduleOn = null;
|
|
34610
32354
|
}
|
|
34611
32355
|
}
|
|
34612
32356
|
destroy() {
|
|
@@ -34764,7 +32508,7 @@ a[data-v-ffc7287f] {
|
|
|
34764
32508
|
}
|
|
34765
32509
|
}
|
|
34766
32510
|
const indentNodeProp = /* @__PURE__ */ new NodeProp();
|
|
34767
|
-
function syntaxIndentation(
|
|
32511
|
+
function syntaxIndentation(cx, ast, pos) {
|
|
34768
32512
|
let stack2 = ast.resolveStack(pos);
|
|
34769
32513
|
let inner = stack2.node.enterUnfinishedNodesBefore(pos);
|
|
34770
32514
|
if (inner != stack2.node) {
|
|
@@ -34774,18 +32518,18 @@ a[data-v-ffc7287f] {
|
|
|
34774
32518
|
for (let i2 = add2.length - 1; i2 >= 0; i2--)
|
|
34775
32519
|
stack2 = { node: add2[i2], next: stack2 };
|
|
34776
32520
|
}
|
|
34777
|
-
return indentFor(stack2,
|
|
32521
|
+
return indentFor(stack2, cx, pos);
|
|
34778
32522
|
}
|
|
34779
|
-
function indentFor(stack2,
|
|
32523
|
+
function indentFor(stack2, cx, pos) {
|
|
34780
32524
|
for (let cur2 = stack2; cur2; cur2 = cur2.next) {
|
|
34781
32525
|
let strategy = indentStrategy(cur2.node);
|
|
34782
32526
|
if (strategy)
|
|
34783
|
-
return strategy(TreeIndentContext.create(
|
|
32527
|
+
return strategy(TreeIndentContext.create(cx, pos, cur2));
|
|
34784
32528
|
}
|
|
34785
32529
|
return 0;
|
|
34786
32530
|
}
|
|
34787
|
-
function ignoreClosed(
|
|
34788
|
-
return
|
|
32531
|
+
function ignoreClosed(cx) {
|
|
32532
|
+
return cx.pos == cx.options.simulateBreak && cx.options.simulateDoubleBreak;
|
|
34789
32533
|
}
|
|
34790
32534
|
function indentStrategy(tree) {
|
|
34791
32535
|
let strategy = tree.type.prop(indentNodeProp);
|
|
@@ -34794,7 +32538,7 @@ a[data-v-ffc7287f] {
|
|
|
34794
32538
|
let first = tree.firstChild, close;
|
|
34795
32539
|
if (first && (close = first.type.prop(NodeProp.closedBy))) {
|
|
34796
32540
|
let last = tree.lastChild, closed = last && close.indexOf(last.name) > -1;
|
|
34797
|
-
return (
|
|
32541
|
+
return (cx) => delimitedStrategy(cx, true, 1, void 0, closed && !ignoreClosed(cx) ? last.from : void 0);
|
|
34798
32542
|
}
|
|
34799
32543
|
return tree.parent == null ? topIndent : null;
|
|
34800
32544
|
}
|
|
@@ -36342,7 +34086,7 @@ a[data-v-ffc7287f] {
|
|
|
36342
34086
|
if (update.transactions.some((tr) => tr.effects.some((e2) => e2.is(startCompletionEffect))))
|
|
36343
34087
|
this.pendingStart = true;
|
|
36344
34088
|
let delay = this.pendingStart ? 50 : update.state.facet(completionConfig).activateOnTypingDelay;
|
|
36345
|
-
this.debounceUpdate = cState.active.some((a2) => a2.state == 1 && !this.running.some((
|
|
34089
|
+
this.debounceUpdate = cState.active.some((a2) => a2.state == 1 && !this.running.some((q2) => q2.active.source == a2.source)) ? setTimeout(() => this.startUpdate(), delay) : -1;
|
|
36346
34090
|
if (this.composing != 0)
|
|
36347
34091
|
for (let tr of update.transactions) {
|
|
36348
34092
|
if (getUserEvent(tr) == "input")
|
|
@@ -36376,7 +34120,7 @@ a[data-v-ffc7287f] {
|
|
|
36376
34120
|
});
|
|
36377
34121
|
}
|
|
36378
34122
|
scheduleAccept() {
|
|
36379
|
-
if (this.running.every((
|
|
34123
|
+
if (this.running.every((q2) => q2.done !== void 0))
|
|
36380
34124
|
this.accept();
|
|
36381
34125
|
else if (this.debounceAccept < 0)
|
|
36382
34126
|
this.debounceAccept = setTimeout(() => this.accept(), this.view.state.facet(completionConfig).updateSyncTime);
|
|
@@ -37053,8 +34797,8 @@ a[data-v-ffc7287f] {
|
|
|
37053
34797
|
@internal
|
|
37054
34798
|
*/
|
|
37055
34799
|
static start(p2, state2, pos = 0) {
|
|
37056
|
-
let
|
|
37057
|
-
return new Stack(p2, [], state2, pos, pos, 0, [], 0,
|
|
34800
|
+
let cx = p2.parser.context;
|
|
34801
|
+
return new Stack(p2, [], state2, pos, pos, 0, [], 0, cx ? new StackContext(cx, cx.start) : null, 0, null);
|
|
37058
34802
|
}
|
|
37059
34803
|
/**
|
|
37060
34804
|
The stack's current [context](#lr.ContextTracker) value, if
|
|
@@ -39897,8 +37641,8 @@ a[data-v-ffc7287f] {
|
|
|
39897
37641
|
return input.acceptToken(missingCloseTag, -2);
|
|
39898
37642
|
if (stack2.dialectEnabled(Dialect_noMatch))
|
|
39899
37643
|
return input.acceptToken(NoMatchStartCloseTag);
|
|
39900
|
-
for (let
|
|
39901
|
-
if (
|
|
37644
|
+
for (let cx = stack2.context; cx; cx = cx.parent)
|
|
37645
|
+
if (cx.name == name2)
|
|
39902
37646
|
return;
|
|
39903
37647
|
input.acceptToken(MismatchedStartCloseTag);
|
|
39904
37648
|
} else {
|
|
@@ -40460,7 +38204,7 @@ a[data-v-ffc7287f] {
|
|
|
40460
38204
|
return context.baseIndent + (closed ? 0 : isCase ? 1 : 2) * context.unit;
|
|
40461
38205
|
},
|
|
40462
38206
|
Block: /* @__PURE__ */ delimitedIndent({ closing: "}" }),
|
|
40463
|
-
ArrowFunction: (
|
|
38207
|
+
ArrowFunction: (cx) => cx.baseIndent + cx.unit,
|
|
40464
38208
|
"TemplateString BlockComment": () => null,
|
|
40465
38209
|
"Statement Property": /* @__PURE__ */ continuedIndent({ except: /^{/ }),
|
|
40466
38210
|
JSXElement(context) {
|
|
@@ -41718,21 +39462,21 @@ a[data-v-ffc7287f] {
|
|
|
41718
39462
|
parser: /* @__PURE__ */ parser.configure({
|
|
41719
39463
|
props: [
|
|
41720
39464
|
/* @__PURE__ */ indentNodeProp.add({
|
|
41721
|
-
Stream: (
|
|
41722
|
-
for (let before =
|
|
39465
|
+
Stream: (cx) => {
|
|
39466
|
+
for (let before = cx.node.resolve(cx.pos, -1); before && before.to >= cx.pos; before = before.parent) {
|
|
41723
39467
|
if (before.name == "BlockLiteralContent" && before.from < before.to)
|
|
41724
|
-
return
|
|
39468
|
+
return cx.baseIndentFor(before);
|
|
41725
39469
|
if (before.name == "BlockLiteral")
|
|
41726
|
-
return
|
|
39470
|
+
return cx.baseIndentFor(before) + cx.unit;
|
|
41727
39471
|
if (before.name == "BlockSequence" || before.name == "BlockMapping")
|
|
41728
|
-
return
|
|
39472
|
+
return cx.column(before.from, 1);
|
|
41729
39473
|
if (before.name == "QuotedLiteral")
|
|
41730
39474
|
return null;
|
|
41731
39475
|
if (before.name == "Literal") {
|
|
41732
|
-
let col =
|
|
41733
|
-
if (col ==
|
|
39476
|
+
let col = cx.column(before.from, 1);
|
|
39477
|
+
if (col == cx.lineIndent(before.from, 1))
|
|
41734
39478
|
return col;
|
|
41735
|
-
if (before.to >
|
|
39479
|
+
if (before.to > cx.pos)
|
|
41736
39480
|
return null;
|
|
41737
39481
|
}
|
|
41738
39482
|
}
|
|
@@ -41759,7 +39503,7 @@ a[data-v-ffc7287f] {
|
|
|
41759
39503
|
var {
|
|
41760
39504
|
theme: theme2,
|
|
41761
39505
|
settings = {},
|
|
41762
|
-
styles
|
|
39506
|
+
styles = []
|
|
41763
39507
|
} = _ref;
|
|
41764
39508
|
var themeOptions = {
|
|
41765
39509
|
".cm-gutters": {}
|
|
@@ -41823,7 +39567,7 @@ a[data-v-ffc7287f] {
|
|
|
41823
39567
|
var themeExtension = EditorView.theme(themeOptions, {
|
|
41824
39568
|
dark: theme2 === "dark"
|
|
41825
39569
|
});
|
|
41826
|
-
var highlightStyle = HighlightStyle.define(
|
|
39570
|
+
var highlightStyle = HighlightStyle.define(styles);
|
|
41827
39571
|
var extension = [themeExtension, syntaxHighlighting(highlightStyle)];
|
|
41828
39572
|
return extension;
|
|
41829
39573
|
};
|
|
@@ -42164,7 +39908,7 @@ a[data-v-ffc7287f] {
|
|
|
42164
39908
|
}
|
|
42165
39909
|
return extensions;
|
|
42166
39910
|
}
|
|
42167
|
-
const _sfc_main$
|
|
39911
|
+
const _sfc_main$p = /* @__PURE__ */ defineComponent({
|
|
42168
39912
|
__name: "CodeMirror",
|
|
42169
39913
|
props: {
|
|
42170
39914
|
content: {},
|
|
@@ -42208,9 +39952,9 @@ a[data-v-ffc7287f] {
|
|
|
42208
39952
|
}
|
|
42209
39953
|
return target;
|
|
42210
39954
|
};
|
|
42211
|
-
const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
39955
|
+
const CodeMirror = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-9f50a430"]]);
|
|
42212
39956
|
const _hoisted_1$m = { class: "scalar-modal-layout modal-layout" };
|
|
42213
|
-
const _sfc_main$
|
|
39957
|
+
const _sfc_main$o = /* @__PURE__ */ defineComponent({
|
|
42214
39958
|
__name: "FlowModal",
|
|
42215
39959
|
props: {
|
|
42216
39960
|
state: {},
|
|
@@ -42221,13 +39965,13 @@ a[data-v-ffc7287f] {
|
|
|
42221
39965
|
},
|
|
42222
39966
|
setup(__props) {
|
|
42223
39967
|
return (_ctx, _cache) => {
|
|
42224
|
-
return openBlock(), createBlock(unref(We), {
|
|
39968
|
+
return openBlock(), createBlock(unref(We$1), {
|
|
42225
39969
|
open: _ctx.state.open,
|
|
42226
39970
|
onClose: _cache[0] || (_cache[0] = ($event) => _ctx.state.hide())
|
|
42227
39971
|
}, {
|
|
42228
39972
|
default: withCtx(() => [
|
|
42229
39973
|
createBaseVNode("div", _hoisted_1$m, [
|
|
42230
|
-
createVNode(unref(Ge), {
|
|
39974
|
+
createVNode(unref(Ge$1), {
|
|
42231
39975
|
class: normalizeClass(["modal", {
|
|
42232
39976
|
"modal-content-large": _ctx.variant === "large",
|
|
42233
39977
|
"modal-content-normal": _ctx.variant === "normal",
|
|
@@ -42238,7 +39982,7 @@ a[data-v-ffc7287f] {
|
|
|
42238
39982
|
style: normalizeStyle({ maxWidth: _ctx.maxWidth })
|
|
42239
39983
|
}, {
|
|
42240
39984
|
default: withCtx(() => [
|
|
42241
|
-
_ctx.title ? (openBlock(), createBlock(unref(Ve), {
|
|
39985
|
+
_ctx.title ? (openBlock(), createBlock(unref(Ve$1), {
|
|
42242
39986
|
key: 0,
|
|
42243
39987
|
class: "modal-header"
|
|
42244
39988
|
}, {
|
|
@@ -42265,7 +40009,7 @@ a[data-v-ffc7287f] {
|
|
|
42265
40009
|
};
|
|
42266
40010
|
}
|
|
42267
40011
|
});
|
|
42268
|
-
const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
40012
|
+
const FlowModal = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-a06b8e92"]]);
|
|
42269
40013
|
const useModal = () => reactive({
|
|
42270
40014
|
open: false,
|
|
42271
40015
|
show() {
|
|
@@ -42542,7 +40286,7 @@ a[data-v-ffc7287f] {
|
|
|
42542
40286
|
const _hoisted_1$l = { class: "navtable-item-40 navtable-item-request" };
|
|
42543
40287
|
const _hoisted_2$f = { class: "navtable-item-40 navtable-item-response" };
|
|
42544
40288
|
const _hoisted_3$a = { class: "navtable-item-20 navtable-item-time" };
|
|
42545
|
-
const _sfc_main$
|
|
40289
|
+
const _sfc_main$n = /* @__PURE__ */ defineComponent({
|
|
42546
40290
|
__name: "RequestHistoryItem",
|
|
42547
40291
|
props: {
|
|
42548
40292
|
history: {}
|
|
@@ -42589,14 +40333,14 @@ a[data-v-ffc7287f] {
|
|
|
42589
40333
|
};
|
|
42590
40334
|
}
|
|
42591
40335
|
});
|
|
42592
|
-
const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
40336
|
+
const RequestHistoryItem = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-dd49a57f"]]);
|
|
42593
40337
|
const _hoisted_1$k = { class: "navigation-content-item" };
|
|
42594
40338
|
const _hoisted_2$e = { class: "navtable" };
|
|
42595
40339
|
const _hoisted_3$9 = { class: "navtable-table" };
|
|
42596
40340
|
const _hoisted_4$7 = /* @__PURE__ */ createStaticVNode('<div class="navtable-item navtable-item__top"><div class="navtable-item-40"><label for="">Request</label></div><div class="navtable-item-40"><label for="">Response</label></div><div class="navtable-item-20"><label for="">TIME</label></div></div>', 1);
|
|
42597
40341
|
const _hoisted_5$6 = { class: "navtable-radios" };
|
|
42598
40342
|
const _hoisted_6$5 = /* @__PURE__ */ createStaticVNode('<div class="navtable-mock"><div class="navtable-item"><div class="navtable-item-40"></div><div class="navtable-item-40"></div><div class="navtable-item-20"></div></div></div>', 1);
|
|
42599
|
-
const _sfc_main$
|
|
40343
|
+
const _sfc_main$m = /* @__PURE__ */ defineComponent({
|
|
42600
40344
|
__name: "RequestHistory",
|
|
42601
40345
|
emits: ["toggle"],
|
|
42602
40346
|
setup(__props) {
|
|
@@ -42624,7 +40368,7 @@ a[data-v-ffc7287f] {
|
|
|
42624
40368
|
const _hoisted_1$j = { class: "request-method-select" };
|
|
42625
40369
|
const _hoisted_2$d = ["disabled", "value"];
|
|
42626
40370
|
const _hoisted_3$8 = ["value"];
|
|
42627
|
-
const _sfc_main$
|
|
40371
|
+
const _sfc_main$l = /* @__PURE__ */ defineComponent({
|
|
42628
40372
|
__name: "RequestMethodSelect",
|
|
42629
40373
|
props: {
|
|
42630
40374
|
requestMethod: {},
|
|
@@ -42669,7 +40413,7 @@ a[data-v-ffc7287f] {
|
|
|
42669
40413
|
};
|
|
42670
40414
|
}
|
|
42671
40415
|
});
|
|
42672
|
-
const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
40416
|
+
const RequestMethodSelect = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-8e2122cd"]]);
|
|
42673
40417
|
const _withScopeId = (n2) => (pushScopeId("data-v-75df9114"), n2 = n2(), popScopeId(), n2);
|
|
42674
40418
|
const _hoisted_1$i = {
|
|
42675
40419
|
key: 0,
|
|
@@ -42729,7 +40473,7 @@ a[data-v-ffc7287f] {
|
|
|
42729
40473
|
})
|
|
42730
40474
|
])
|
|
42731
40475
|
], -1));
|
|
42732
|
-
const _sfc_main$
|
|
40476
|
+
const _sfc_main$k = /* @__PURE__ */ defineComponent({
|
|
42733
40477
|
__name: "AddressBar",
|
|
42734
40478
|
props: {
|
|
42735
40479
|
proxyUrl: {}
|
|
@@ -42833,7 +40577,7 @@ a[data-v-ffc7287f] {
|
|
|
42833
40577
|
variant: "history"
|
|
42834
40578
|
}, {
|
|
42835
40579
|
default: withCtx(() => [
|
|
42836
|
-
createVNode(_sfc_main$
|
|
40580
|
+
createVNode(_sfc_main$m, {
|
|
42837
40581
|
showHistory: showHistory.value,
|
|
42838
40582
|
onToggle: _cache[1] || (_cache[1] = ($event) => showHistory.value = !showHistory.value)
|
|
42839
40583
|
}, null, 8, ["showHistory"])
|
|
@@ -42855,7 +40599,7 @@ a[data-v-ffc7287f] {
|
|
|
42855
40599
|
};
|
|
42856
40600
|
}
|
|
42857
40601
|
});
|
|
42858
|
-
const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
40602
|
+
const AddressBar = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-75df9114"]]);
|
|
42859
40603
|
const _hoisted_1$h = /* @__PURE__ */ createBaseVNode("svg", {
|
|
42860
40604
|
class: "scalar-api-client__toggle__icon",
|
|
42861
40605
|
height: "10",
|
|
@@ -42875,7 +40619,7 @@ a[data-v-ffc7287f] {
|
|
|
42875
40619
|
class: "scalar-api-client__item__options"
|
|
42876
40620
|
};
|
|
42877
40621
|
const _hoisted_4$5 = { class: "scalar-api-client__item__content" };
|
|
42878
|
-
const _sfc_main$
|
|
40622
|
+
const _sfc_main$j = /* @__PURE__ */ defineComponent({
|
|
42879
40623
|
__name: "CollapsibleSection",
|
|
42880
40624
|
props: {
|
|
42881
40625
|
title: {},
|
|
@@ -42896,7 +40640,7 @@ a[data-v-ffc7287f] {
|
|
|
42896
40640
|
}
|
|
42897
40641
|
);
|
|
42898
40642
|
return (_ctx, _cache) => {
|
|
42899
|
-
return openBlock(), createBlock(unref(N), {
|
|
40643
|
+
return openBlock(), createBlock(unref(N$1), {
|
|
42900
40644
|
ref_key: "disclosureButton",
|
|
42901
40645
|
ref: disclosureButton,
|
|
42902
40646
|
defaultOpen: _ctx.defaultOpen
|
|
@@ -42920,7 +40664,7 @@ a[data-v-ffc7287f] {
|
|
|
42920
40664
|
]),
|
|
42921
40665
|
_: 2
|
|
42922
40666
|
}, 1536),
|
|
42923
|
-
createVNode(unref(V), null, {
|
|
40667
|
+
createVNode(unref(V$1), null, {
|
|
42924
40668
|
default: withCtx(() => [
|
|
42925
40669
|
createBaseVNode("div", _hoisted_4$5, [
|
|
42926
40670
|
renderSlot(_ctx.$slots, "default")
|
|
@@ -42995,7 +40739,7 @@ a[data-v-ffc7287f] {
|
|
|
42995
40739
|
const _hoisted_36 = { class: "check" };
|
|
42996
40740
|
const _hoisted_37 = /* @__PURE__ */ createBaseVNode("span", { class: "checkmark" }, null, -1);
|
|
42997
40741
|
const _hoisted_38 = /* @__PURE__ */ createBaseVNode("p", null, "Enabled", -1);
|
|
42998
|
-
const _sfc_main$
|
|
40742
|
+
const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
42999
40743
|
__name: "RequestAuth",
|
|
43000
40744
|
setup(__props) {
|
|
43001
40745
|
const store = useRequestStore();
|
|
@@ -43031,7 +40775,7 @@ a[data-v-ffc7287f] {
|
|
|
43031
40775
|
}
|
|
43032
40776
|
];
|
|
43033
40777
|
return (_ctx, _cache) => {
|
|
43034
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
40778
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Authentication" }, {
|
|
43035
40779
|
options: withCtx(() => [
|
|
43036
40780
|
createBaseVNode("div", null, [
|
|
43037
40781
|
createBaseVNode("span", null, [
|
|
@@ -45850,56 +43594,6 @@ a[data-v-ffc7287f] {
|
|
|
45850
43594
|
function extendTailwindMerge(configExtension, ...createConfig) {
|
|
45851
43595
|
return typeof configExtension === "function" ? createTailwindMerge(getDefaultConfig, configExtension, ...createConfig) : createTailwindMerge(() => mergeConfigs(getDefaultConfig(), configExtension), ...createConfig);
|
|
45852
43596
|
}
|
|
45853
|
-
const classPrefix = "scalar-component";
|
|
45854
|
-
const tw = extendTailwindMerge({
|
|
45855
|
-
extend: {
|
|
45856
|
-
classGroups: {
|
|
45857
|
-
// Add the scalar class prefix as a custom class to be deduped by tailwind-merge
|
|
45858
|
-
[classPrefix]: [classPrefix]
|
|
45859
|
-
}
|
|
45860
|
-
}
|
|
45861
|
-
});
|
|
45862
|
-
const { cva, cx, compose } = defineConfig({
|
|
45863
|
-
hooks: {
|
|
45864
|
-
onComplete: (className) => `${tw(className, classPrefix)}`
|
|
45865
|
-
}
|
|
45866
|
-
});
|
|
45867
|
-
const styles = {
|
|
45868
|
-
solid: [
|
|
45869
|
-
"scalar-button-solid",
|
|
45870
|
-
"bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
|
|
45871
|
-
],
|
|
45872
|
-
outlined: [
|
|
45873
|
-
"scalar-button-outlined",
|
|
45874
|
-
"active:bg-btn-1 border border-solid border-border bg-transparent text-fore-1 hocus:bg-back-2"
|
|
45875
|
-
],
|
|
45876
|
-
ghost: [
|
|
45877
|
-
"scalar-button-ghost",
|
|
45878
|
-
"bg-transparent text-fore-3 active:text-fore-2 hocus:text-fore-2"
|
|
45879
|
-
],
|
|
45880
|
-
danger: [
|
|
45881
|
-
"scalar-button-danger",
|
|
45882
|
-
"bg-error text-white active:brightness-90 hocus:brightness-90"
|
|
45883
|
-
]
|
|
45884
|
-
};
|
|
45885
|
-
cva({
|
|
45886
|
-
base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
|
|
45887
|
-
variants: {
|
|
45888
|
-
disabled: {
|
|
45889
|
-
true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
|
|
45890
|
-
},
|
|
45891
|
-
fullWidth: { true: "w-full" },
|
|
45892
|
-
size: { md: "h-10 px-6 text-sm" },
|
|
45893
|
-
variant: styles
|
|
45894
|
-
},
|
|
45895
|
-
compoundVariants: [
|
|
45896
|
-
{
|
|
45897
|
-
disabled: true,
|
|
45898
|
-
variant: "ghost",
|
|
45899
|
-
class: "bg-transparent text-ghost"
|
|
45900
|
-
}
|
|
45901
|
-
]
|
|
45902
|
-
});
|
|
45903
43597
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
45904
43598
|
function getDefaultExportFromCjs(x2) {
|
|
45905
43599
|
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
|
|
@@ -47357,42 +45051,88 @@ a[data-v-ffc7287f] {
|
|
|
47357
45051
|
})();
|
|
47358
45052
|
})(prism);
|
|
47359
45053
|
var prismExports = prism.exports;
|
|
47360
|
-
const
|
|
47361
|
-
(
|
|
47362
|
-
|
|
47363
|
-
|
|
45054
|
+
const q = /* @__PURE__ */ getDefaultExportFromCjs(prismExports);
|
|
45055
|
+
const R = "scalar-component", fe = extendTailwindMerge({
|
|
45056
|
+
extend: {
|
|
45057
|
+
classGroups: {
|
|
45058
|
+
// Add the scalar class prefix as a custom class to be deduped by tailwind-merge
|
|
45059
|
+
[R]: [R]
|
|
45060
|
+
}
|
|
45061
|
+
}
|
|
45062
|
+
}), { cva: N, cx: E, compose: gt } = defineConfig({
|
|
45063
|
+
hooks: {
|
|
45064
|
+
onComplete: (r2) => `${fe(r2, R)}`
|
|
45065
|
+
}
|
|
45066
|
+
});
|
|
45067
|
+
const Y = {
|
|
45068
|
+
solid: [
|
|
45069
|
+
"scalar-button-solid",
|
|
45070
|
+
"bg-back-btn-1 text-fore-btn-1 shadow-sm active:bg-back-btn-1 active:shadow-none hocus:bg-hover-btn-1"
|
|
45071
|
+
],
|
|
45072
|
+
outlined: [
|
|
45073
|
+
"scalar-button-outlined",
|
|
45074
|
+
"active:bg-btn-1 border border-solid border-border bg-transparent text-fore-1 hocus:bg-back-2"
|
|
45075
|
+
],
|
|
45076
|
+
ghost: [
|
|
45077
|
+
"scalar-button-ghost",
|
|
45078
|
+
"bg-transparent text-fore-3 active:text-fore-2 hocus:text-fore-2"
|
|
45079
|
+
],
|
|
45080
|
+
danger: [
|
|
45081
|
+
"scalar-button-danger",
|
|
45082
|
+
"bg-error text-white active:brightness-90 hocus:brightness-90"
|
|
45083
|
+
]
|
|
45084
|
+
};
|
|
45085
|
+
N({
|
|
45086
|
+
base: "scalar-button row cursor-pointer items-center justify-center rounded font-medium",
|
|
45087
|
+
variants: {
|
|
45088
|
+
disabled: {
|
|
45089
|
+
true: "bg-background-2 text-color-3 cursor-not-allowed shadow-none"
|
|
45090
|
+
},
|
|
45091
|
+
fullWidth: { true: "w-full" },
|
|
45092
|
+
size: { md: "h-10 px-6 text-sm" },
|
|
45093
|
+
variant: Y
|
|
45094
|
+
},
|
|
45095
|
+
compoundVariants: [
|
|
45096
|
+
{
|
|
45097
|
+
disabled: true,
|
|
45098
|
+
variant: "ghost",
|
|
45099
|
+
class: "bg-transparent text-ghost"
|
|
45100
|
+
}
|
|
45101
|
+
]
|
|
45102
|
+
});
|
|
45103
|
+
(function(r2) {
|
|
45104
|
+
var t2 = "\\b(?:BASH|BASHOPTS|BASH_ALIASES|BASH_ARGC|BASH_ARGV|BASH_CMDS|BASH_COMPLETION_COMPAT_DIR|BASH_LINENO|BASH_REMATCH|BASH_SOURCE|BASH_VERSINFO|BASH_VERSION|COLORTERM|COLUMNS|COMP_WORDBREAKS|DBUS_SESSION_BUS_ADDRESS|DEFAULTS_PATH|DESKTOP_SESSION|DIRSTACK|DISPLAY|EUID|GDMSESSION|GDM_LANG|GNOME_KEYRING_CONTROL|GNOME_KEYRING_PID|GPG_AGENT_INFO|GROUPS|HISTCONTROL|HISTFILE|HISTFILESIZE|HISTSIZE|HOME|HOSTNAME|HOSTTYPE|IFS|INSTANCE|JOB|LANG|LANGUAGE|LC_ADDRESS|LC_ALL|LC_IDENTIFICATION|LC_MEASUREMENT|LC_MONETARY|LC_NAME|LC_NUMERIC|LC_PAPER|LC_TELEPHONE|LC_TIME|LESSCLOSE|LESSOPEN|LINES|LOGNAME|LS_COLORS|MACHTYPE|MAILCHECK|MANDATORY_PATH|NO_AT_BRIDGE|OLDPWD|OPTERR|OPTIND|ORBIT_SOCKETDIR|OSTYPE|PAPERSIZE|PATH|PIPESTATUS|PPID|PS1|PS2|PS3|PS4|PWD|RANDOM|REPLY|SECONDS|SELINUX_INIT|SESSION|SESSIONTYPE|SESSION_MANAGER|SHELL|SHELLOPTS|SHLVL|SSH_AUTH_SOCK|TERM|UID|UPSTART_EVENTS|UPSTART_INSTANCE|UPSTART_JOB|UPSTART_SESSION|USER|WINDOWID|XAUTHORITY|XDG_CONFIG_DIRS|XDG_CURRENT_DESKTOP|XDG_DATA_DIRS|XDG_GREETER_DATA_DIR|XDG_MENU_PREFIX|XDG_RUNTIME_DIR|XDG_SEAT|XDG_SEAT_PATH|XDG_SESSION_DESKTOP|XDG_SESSION_ID|XDG_SESSION_PATH|XDG_SESSION_TYPE|XDG_VTNR|XMODIFIERS)\\b", e2 = {
|
|
47364
45105
|
pattern: /(^(["']?)\w+\2)[ \t]+\S.*/,
|
|
47365
45106
|
lookbehind: true,
|
|
47366
45107
|
alias: "punctuation",
|
|
47367
45108
|
// this looks reasonably well in all themes
|
|
47368
45109
|
inside: null
|
|
47369
45110
|
// see below
|
|
47370
|
-
}
|
|
47371
|
-
|
|
47372
|
-
|
|
47373
|
-
|
|
47374
|
-
pattern: RegExp("\\$" + envVars),
|
|
45111
|
+
}, s2 = {
|
|
45112
|
+
bash: e2,
|
|
45113
|
+
environment: {
|
|
45114
|
+
pattern: RegExp("\\$" + t2),
|
|
47375
45115
|
alias: "constant"
|
|
47376
45116
|
},
|
|
47377
|
-
|
|
45117
|
+
variable: [
|
|
47378
45118
|
// [0]: Arithmetic Environment
|
|
47379
45119
|
{
|
|
47380
45120
|
pattern: /\$?\(\([\s\S]+?\)\)/,
|
|
47381
45121
|
greedy: true,
|
|
47382
45122
|
inside: {
|
|
47383
45123
|
// If there is a $ sign at the beginning highlight $(( and )) as variable
|
|
47384
|
-
|
|
45124
|
+
variable: [
|
|
47385
45125
|
{
|
|
47386
45126
|
pattern: /(^\$\(\([\s\S]+)\)\)/,
|
|
47387
45127
|
lookbehind: true
|
|
47388
45128
|
},
|
|
47389
45129
|
/^\$\(\(/
|
|
47390
45130
|
],
|
|
47391
|
-
|
|
45131
|
+
number: /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/,
|
|
47392
45132
|
// Operators according to https://www.gnu.org/software/bash/manual/bashref.html#Shell-Arithmetic
|
|
47393
|
-
|
|
45133
|
+
operator: /--|\+\+|\*\*=?|<<=?|>>=?|&&|\|\||[=!+\-*/%<>^&|]=?|[?~:]/,
|
|
47394
45134
|
// If there is no $ sign at the beginning highlight (( and )) as punctuation
|
|
47395
|
-
|
|
45135
|
+
punctuation: /\(\(?|\)\)?|,|;/
|
|
47396
45136
|
}
|
|
47397
45137
|
},
|
|
47398
45138
|
// [1]: Command Substitution
|
|
@@ -47400,7 +45140,7 @@ a[data-v-ffc7287f] {
|
|
|
47400
45140
|
pattern: /\$\((?:\([^)]+\)|[^()])+\)|`[^`]+`/,
|
|
47401
45141
|
greedy: true,
|
|
47402
45142
|
inside: {
|
|
47403
|
-
|
|
45143
|
+
variable: /^\$\(|^`|\)$|`$/
|
|
47404
45144
|
}
|
|
47405
45145
|
},
|
|
47406
45146
|
// [2]: Brace expansion
|
|
@@ -47408,10 +45148,10 @@ a[data-v-ffc7287f] {
|
|
|
47408
45148
|
pattern: /\$\{[^}]+\}/,
|
|
47409
45149
|
greedy: true,
|
|
47410
45150
|
inside: {
|
|
47411
|
-
|
|
47412
|
-
|
|
47413
|
-
|
|
47414
|
-
pattern: RegExp("(\\{)" +
|
|
45151
|
+
operator: /:[-=?+]?|[!\/]|##?|%%?|\^\^?|,,?/,
|
|
45152
|
+
punctuation: /[\[\]]/,
|
|
45153
|
+
environment: {
|
|
45154
|
+
pattern: RegExp("(\\{)" + t2),
|
|
47415
45155
|
lookbehind: true,
|
|
47416
45156
|
alias: "constant"
|
|
47417
45157
|
}
|
|
@@ -47420,14 +45160,14 @@ a[data-v-ffc7287f] {
|
|
|
47420
45160
|
/\$(?:\w+|[#?*!@$])/
|
|
47421
45161
|
],
|
|
47422
45162
|
// Escape sequences from echo and printf's manuals, and escaped quotes.
|
|
47423
|
-
|
|
45163
|
+
entity: /\\(?:[abceEfnrtv\\"]|O?[0-7]{1,3}|U[0-9a-fA-F]{8}|u[0-9a-fA-F]{4}|x[0-9a-fA-F]{1,2})/
|
|
47424
45164
|
};
|
|
47425
|
-
|
|
47426
|
-
|
|
45165
|
+
r2.languages.bash = {
|
|
45166
|
+
shebang: {
|
|
47427
45167
|
pattern: /^#!\s*\/.*/,
|
|
47428
45168
|
alias: "important"
|
|
47429
45169
|
},
|
|
47430
|
-
|
|
45170
|
+
comment: {
|
|
47431
45171
|
pattern: /(^|[^"{\\$])#.*/,
|
|
47432
45172
|
lookbehind: true
|
|
47433
45173
|
},
|
|
@@ -47459,8 +45199,8 @@ a[data-v-ffc7287f] {
|
|
|
47459
45199
|
"assign-left": {
|
|
47460
45200
|
pattern: /(^|[\s;|&]|[<>]\()\w+(?:\.\w+)*(?=\+?=)/,
|
|
47461
45201
|
inside: {
|
|
47462
|
-
|
|
47463
|
-
pattern: RegExp("(^|[\\s;|&]|[<>]\\()" +
|
|
45202
|
+
environment: {
|
|
45203
|
+
pattern: RegExp("(^|[\\s;|&]|[<>]\\()" + t2),
|
|
47464
45204
|
lookbehind: true,
|
|
47465
45205
|
alias: "constant"
|
|
47466
45206
|
}
|
|
@@ -47469,18 +45209,18 @@ a[data-v-ffc7287f] {
|
|
|
47469
45209
|
lookbehind: true
|
|
47470
45210
|
},
|
|
47471
45211
|
// Highlight parameter names as variables
|
|
47472
|
-
|
|
45212
|
+
parameter: {
|
|
47473
45213
|
pattern: /(^|\s)-{1,2}(?:\w+:[+-]?)?\w+(?:\.\w+)*(?=[=\s]|$)/,
|
|
47474
45214
|
alias: "variable",
|
|
47475
45215
|
lookbehind: true
|
|
47476
45216
|
},
|
|
47477
|
-
|
|
45217
|
+
string: [
|
|
47478
45218
|
// Support for Here-documents https://en.wikipedia.org/wiki/Here_document
|
|
47479
45219
|
{
|
|
47480
45220
|
pattern: /((?:^|[^<])<<-?\s*)(\w+)\s[\s\S]*?(?:\r?\n|\r)\2/,
|
|
47481
45221
|
lookbehind: true,
|
|
47482
45222
|
greedy: true,
|
|
47483
|
-
inside:
|
|
45223
|
+
inside: s2
|
|
47484
45224
|
},
|
|
47485
45225
|
// Here-document with quotes around the tag
|
|
47486
45226
|
// → No expansion (so no “inside”).
|
|
@@ -47489,7 +45229,7 @@ a[data-v-ffc7287f] {
|
|
|
47489
45229
|
lookbehind: true,
|
|
47490
45230
|
greedy: true,
|
|
47491
45231
|
inside: {
|
|
47492
|
-
|
|
45232
|
+
bash: e2
|
|
47493
45233
|
}
|
|
47494
45234
|
},
|
|
47495
45235
|
// “Normal” string
|
|
@@ -47498,7 +45238,7 @@ a[data-v-ffc7287f] {
|
|
|
47498
45238
|
pattern: /(^|[^\\](?:\\\\)*)"(?:\\[\s\S]|\$\([^)]+\)|\$(?!\()|`[^`]+`|[^"\\`$])*"/,
|
|
47499
45239
|
lookbehind: true,
|
|
47500
45240
|
greedy: true,
|
|
47501
|
-
inside:
|
|
45241
|
+
inside: s2
|
|
47502
45242
|
},
|
|
47503
45243
|
{
|
|
47504
45244
|
// https://www.gnu.org/software/bash/manual/html_node/Single-Quotes.html
|
|
@@ -47511,31 +45251,31 @@ a[data-v-ffc7287f] {
|
|
|
47511
45251
|
pattern: /\$'(?:[^'\\]|\\[\s\S])*'/,
|
|
47512
45252
|
greedy: true,
|
|
47513
45253
|
inside: {
|
|
47514
|
-
|
|
45254
|
+
entity: s2.entity
|
|
47515
45255
|
}
|
|
47516
45256
|
}
|
|
47517
45257
|
],
|
|
47518
|
-
|
|
47519
|
-
pattern: RegExp("\\$?" +
|
|
45258
|
+
environment: {
|
|
45259
|
+
pattern: RegExp("\\$?" + t2),
|
|
47520
45260
|
alias: "constant"
|
|
47521
45261
|
},
|
|
47522
|
-
|
|
47523
|
-
|
|
45262
|
+
variable: s2.variable,
|
|
45263
|
+
function: {
|
|
47524
45264
|
pattern: /(^|[\s;|&]|[<>]\()(?:add|apropos|apt|apt-cache|apt-get|aptitude|aspell|automysqlbackup|awk|basename|bash|bc|bconsole|bg|bzip2|cal|cargo|cat|cfdisk|chgrp|chkconfig|chmod|chown|chroot|cksum|clear|cmp|column|comm|composer|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|debootstrap|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|docker|docker-compose|du|egrep|eject|env|ethtool|expand|expect|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fuser|gawk|git|gparted|grep|groupadd|groupdel|groupmod|groups|grub-mkconfig|gzip|halt|head|hg|history|host|hostname|htop|iconv|id|ifconfig|ifdown|ifup|import|install|ip|java|jobs|join|kill|killall|less|link|ln|locate|logname|logrotate|look|lpc|lpr|lprint|lprintd|lprintq|lprm|ls|lsof|lynx|make|man|mc|mdadm|mkconfig|mkdir|mke2fs|mkfifo|mkfs|mkisofs|mknod|mkswap|mmv|more|most|mount|mtools|mtr|mutt|mv|nano|nc|netstat|nice|nl|node|nohup|notify-send|npm|nslookup|op|open|parted|passwd|paste|pathchk|ping|pkill|pnpm|podman|podman-compose|popd|pr|printcap|printenv|ps|pushd|pv|quota|quotacheck|quotactl|ram|rar|rcp|reboot|remsync|rename|renice|rev|rm|rmdir|rpm|rsync|scp|screen|sdiff|sed|sendmail|seq|service|sftp|sh|shellcheck|shuf|shutdown|sleep|slocate|sort|split|ssh|stat|strace|su|sudo|sum|suspend|swapon|sync|sysctl|tac|tail|tar|tee|time|timeout|top|touch|tr|traceroute|tsort|tty|umount|uname|unexpand|uniq|units|unrar|unshar|unzip|update-grub|uptime|useradd|userdel|usermod|users|uudecode|uuencode|v|vcpkg|vdir|vi|vim|virsh|vmstat|wait|watch|wc|wget|whereis|which|who|whoami|write|xargs|xdg-open|yarn|yes|zenity|zip|zsh|zypper)(?=$|[)\s;|&])/,
|
|
47525
45265
|
lookbehind: true
|
|
47526
45266
|
},
|
|
47527
|
-
|
|
45267
|
+
keyword: {
|
|
47528
45268
|
pattern: /(^|[\s;|&]|[<>]\()(?:case|do|done|elif|else|esac|fi|for|function|if|in|select|then|until|while)(?=$|[)\s;|&])/,
|
|
47529
45269
|
lookbehind: true
|
|
47530
45270
|
},
|
|
47531
45271
|
// https://www.gnu.org/software/bash/manual/html_node/Shell-Builtin-Commands.html
|
|
47532
|
-
|
|
45272
|
+
builtin: {
|
|
47533
45273
|
pattern: /(^|[\s;|&]|[<>]\()(?:\.|:|alias|bind|break|builtin|caller|cd|command|continue|declare|echo|enable|eval|exec|exit|export|getopts|hash|help|let|local|logout|mapfile|printf|pwd|read|readarray|readonly|return|set|shift|shopt|source|test|times|trap|type|typeset|ulimit|umask|unalias|unset)(?=$|[)\s;|&])/,
|
|
47534
45274
|
lookbehind: true,
|
|
47535
45275
|
// Alias added to make those easier to distinguish from strings.
|
|
47536
45276
|
alias: "class-name"
|
|
47537
45277
|
},
|
|
47538
|
-
|
|
45278
|
+
boolean: {
|
|
47539
45279
|
pattern: /(^|[\s;|&]|[<>]\()(?:false|true)(?=$|[)\s;|&])/,
|
|
47540
45280
|
lookbehind: true
|
|
47541
45281
|
},
|
|
@@ -47543,7 +45283,7 @@ a[data-v-ffc7287f] {
|
|
|
47543
45283
|
pattern: /\B&\d\b/,
|
|
47544
45284
|
alias: "important"
|
|
47545
45285
|
},
|
|
47546
|
-
|
|
45286
|
+
operator: {
|
|
47547
45287
|
// Lots of redirections here, but not just that.
|
|
47548
45288
|
pattern: /\d?<>|>\||\+=|=[=~]?|!=?|<<[<-]?|[&\d]?>>|\d[<>]&?|[<>][&=]?|&[>&]?|\|[&|]?/,
|
|
47549
45289
|
inside: {
|
|
@@ -47553,14 +45293,13 @@ a[data-v-ffc7287f] {
|
|
|
47553
45293
|
}
|
|
47554
45294
|
}
|
|
47555
45295
|
},
|
|
47556
|
-
|
|
47557
|
-
|
|
45296
|
+
punctuation: /\$?\(\(?|\)\)?|\.\.|[{}[\];\\]/,
|
|
45297
|
+
number: {
|
|
47558
45298
|
pattern: /(^|\s)(?:[1-9]\d*|0)(?:[.,]\d+)?\b/,
|
|
47559
45299
|
lookbehind: true
|
|
47560
45300
|
}
|
|
47561
|
-
};
|
|
47562
|
-
|
|
47563
|
-
var toBeCopied = [
|
|
45301
|
+
}, e2.inside = r2.languages.bash;
|
|
45302
|
+
for (var u2 = [
|
|
47564
45303
|
"comment",
|
|
47565
45304
|
"function-name",
|
|
47566
45305
|
"for-or-select",
|
|
@@ -47576,177 +45315,172 @@ a[data-v-ffc7287f] {
|
|
|
47576
45315
|
"operator",
|
|
47577
45316
|
"punctuation",
|
|
47578
45317
|
"number"
|
|
47579
|
-
];
|
|
47580
|
-
|
|
47581
|
-
|
|
47582
|
-
inside2[toBeCopied[i2]] = Prism2.languages.bash[toBeCopied[i2]];
|
|
47583
|
-
}
|
|
47584
|
-
Prism2.languages.sh = Prism2.languages.bash;
|
|
47585
|
-
Prism2.languages.shell = Prism2.languages.bash;
|
|
45318
|
+
], f2 = s2.variable[1].inside, a2 = 0; a2 < u2.length; a2++)
|
|
45319
|
+
f2[u2[a2]] = r2.languages.bash[u2[a2]];
|
|
45320
|
+
r2.languages.sh = r2.languages.bash, r2.languages.shell = r2.languages.bash;
|
|
47586
45321
|
})(Prism);
|
|
47587
45322
|
Prism.languages.json = {
|
|
47588
|
-
|
|
45323
|
+
property: {
|
|
47589
45324
|
pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?=\s*:)/,
|
|
47590
45325
|
lookbehind: true,
|
|
47591
45326
|
greedy: true
|
|
47592
45327
|
},
|
|
47593
|
-
|
|
45328
|
+
string: {
|
|
47594
45329
|
pattern: /(^|[^\\])"(?:\\.|[^\\"\r\n])*"(?!\s*:)/,
|
|
47595
45330
|
lookbehind: true,
|
|
47596
45331
|
greedy: true
|
|
47597
45332
|
},
|
|
47598
|
-
|
|
45333
|
+
comment: {
|
|
47599
45334
|
pattern: /\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,
|
|
47600
45335
|
greedy: true
|
|
47601
45336
|
},
|
|
47602
|
-
|
|
47603
|
-
|
|
47604
|
-
|
|
47605
|
-
|
|
47606
|
-
|
|
45337
|
+
number: /-?\b\d+(?:\.\d+)?(?:e[+-]?\d+)?\b/i,
|
|
45338
|
+
punctuation: /[{}[\],]/,
|
|
45339
|
+
operator: /:/,
|
|
45340
|
+
boolean: /\b(?:false|true)\b/,
|
|
45341
|
+
null: {
|
|
47607
45342
|
pattern: /\bnull\b/,
|
|
47608
45343
|
alias: "keyword"
|
|
47609
45344
|
}
|
|
47610
45345
|
};
|
|
47611
45346
|
Prism.languages.webmanifest = Prism.languages.json;
|
|
47612
45347
|
(function() {
|
|
47613
|
-
if (typeof Prism
|
|
45348
|
+
if (typeof Prism > "u" || typeof document > "u")
|
|
47614
45349
|
return;
|
|
47615
|
-
|
|
47616
|
-
var lang_dependencies = (
|
|
45350
|
+
var r2 = (
|
|
47617
45351
|
/*dependencies_placeholder[*/
|
|
47618
45352
|
{
|
|
47619
|
-
|
|
47620
|
-
|
|
47621
|
-
|
|
45353
|
+
javascript: "clike",
|
|
45354
|
+
actionscript: "javascript",
|
|
45355
|
+
apex: [
|
|
47622
45356
|
"clike",
|
|
47623
45357
|
"sql"
|
|
47624
45358
|
],
|
|
47625
|
-
|
|
47626
|
-
|
|
45359
|
+
arduino: "cpp",
|
|
45360
|
+
aspnet: [
|
|
47627
45361
|
"markup",
|
|
47628
45362
|
"csharp"
|
|
47629
45363
|
],
|
|
47630
|
-
|
|
47631
|
-
|
|
47632
|
-
|
|
47633
|
-
|
|
47634
|
-
|
|
47635
|
-
|
|
47636
|
-
|
|
45364
|
+
birb: "clike",
|
|
45365
|
+
bison: "c",
|
|
45366
|
+
c: "clike",
|
|
45367
|
+
csharp: "clike",
|
|
45368
|
+
cpp: "c",
|
|
45369
|
+
cfscript: "clike",
|
|
45370
|
+
chaiscript: [
|
|
47637
45371
|
"clike",
|
|
47638
45372
|
"cpp"
|
|
47639
45373
|
],
|
|
47640
|
-
|
|
47641
|
-
|
|
47642
|
-
|
|
47643
|
-
|
|
45374
|
+
cilkc: "c",
|
|
45375
|
+
cilkcpp: "cpp",
|
|
45376
|
+
coffeescript: "javascript",
|
|
45377
|
+
crystal: "ruby",
|
|
47644
45378
|
"css-extras": "css",
|
|
47645
|
-
|
|
47646
|
-
|
|
47647
|
-
|
|
47648
|
-
|
|
45379
|
+
d: "clike",
|
|
45380
|
+
dart: "clike",
|
|
45381
|
+
django: "markup-templating",
|
|
45382
|
+
ejs: [
|
|
47649
45383
|
"javascript",
|
|
47650
45384
|
"markup-templating"
|
|
47651
45385
|
],
|
|
47652
|
-
|
|
45386
|
+
etlua: [
|
|
47653
45387
|
"lua",
|
|
47654
45388
|
"markup-templating"
|
|
47655
45389
|
],
|
|
47656
|
-
|
|
45390
|
+
erb: [
|
|
47657
45391
|
"ruby",
|
|
47658
45392
|
"markup-templating"
|
|
47659
45393
|
],
|
|
47660
|
-
|
|
45394
|
+
fsharp: "clike",
|
|
47661
45395
|
"firestore-security-rules": "clike",
|
|
47662
|
-
|
|
47663
|
-
|
|
47664
|
-
|
|
47665
|
-
|
|
47666
|
-
|
|
47667
|
-
|
|
47668
|
-
|
|
47669
|
-
|
|
47670
|
-
|
|
47671
|
-
|
|
47672
|
-
|
|
47673
|
-
|
|
47674
|
-
|
|
47675
|
-
|
|
45396
|
+
flow: "javascript",
|
|
45397
|
+
ftl: "markup-templating",
|
|
45398
|
+
gml: "clike",
|
|
45399
|
+
glsl: "c",
|
|
45400
|
+
go: "clike",
|
|
45401
|
+
gradle: "clike",
|
|
45402
|
+
groovy: "clike",
|
|
45403
|
+
haml: "ruby",
|
|
45404
|
+
handlebars: "markup-templating",
|
|
45405
|
+
haxe: "clike",
|
|
45406
|
+
hlsl: "c",
|
|
45407
|
+
idris: "haskell",
|
|
45408
|
+
java: "clike",
|
|
45409
|
+
javadoc: [
|
|
47676
45410
|
"markup",
|
|
47677
45411
|
"java",
|
|
47678
45412
|
"javadoclike"
|
|
47679
45413
|
],
|
|
47680
|
-
|
|
47681
|
-
|
|
45414
|
+
jolie: "clike",
|
|
45415
|
+
jsdoc: [
|
|
47682
45416
|
"javascript",
|
|
47683
45417
|
"javadoclike",
|
|
47684
45418
|
"typescript"
|
|
47685
45419
|
],
|
|
47686
45420
|
"js-extras": "javascript",
|
|
47687
|
-
|
|
47688
|
-
|
|
45421
|
+
json5: "json",
|
|
45422
|
+
jsonp: "json",
|
|
47689
45423
|
"js-templates": "javascript",
|
|
47690
|
-
|
|
47691
|
-
|
|
45424
|
+
kotlin: "clike",
|
|
45425
|
+
latte: [
|
|
47692
45426
|
"clike",
|
|
47693
45427
|
"markup-templating",
|
|
47694
45428
|
"php"
|
|
47695
45429
|
],
|
|
47696
|
-
|
|
47697
|
-
|
|
47698
|
-
|
|
47699
|
-
|
|
45430
|
+
less: "css",
|
|
45431
|
+
lilypond: "scheme",
|
|
45432
|
+
liquid: "markup-templating",
|
|
45433
|
+
markdown: "markup",
|
|
47700
45434
|
"markup-templating": "markup",
|
|
47701
|
-
|
|
47702
|
-
|
|
47703
|
-
|
|
47704
|
-
|
|
47705
|
-
|
|
47706
|
-
|
|
47707
|
-
|
|
45435
|
+
mongodb: "javascript",
|
|
45436
|
+
n4js: "javascript",
|
|
45437
|
+
objectivec: "c",
|
|
45438
|
+
opencl: "c",
|
|
45439
|
+
parser: "markup",
|
|
45440
|
+
php: "markup-templating",
|
|
45441
|
+
phpdoc: [
|
|
47708
45442
|
"php",
|
|
47709
45443
|
"javadoclike"
|
|
47710
45444
|
],
|
|
47711
45445
|
"php-extras": "php",
|
|
47712
|
-
|
|
47713
|
-
|
|
47714
|
-
|
|
47715
|
-
|
|
45446
|
+
plsql: "sql",
|
|
45447
|
+
processing: "clike",
|
|
45448
|
+
protobuf: "clike",
|
|
45449
|
+
pug: [
|
|
47716
45450
|
"markup",
|
|
47717
45451
|
"javascript"
|
|
47718
45452
|
],
|
|
47719
|
-
|
|
47720
|
-
|
|
47721
|
-
|
|
47722
|
-
|
|
47723
|
-
|
|
47724
|
-
|
|
47725
|
-
|
|
45453
|
+
purebasic: "clike",
|
|
45454
|
+
purescript: "haskell",
|
|
45455
|
+
qsharp: "clike",
|
|
45456
|
+
qml: "javascript",
|
|
45457
|
+
qore: "clike",
|
|
45458
|
+
racket: "scheme",
|
|
45459
|
+
cshtml: [
|
|
47726
45460
|
"markup",
|
|
47727
45461
|
"csharp"
|
|
47728
45462
|
],
|
|
47729
|
-
|
|
45463
|
+
jsx: [
|
|
47730
45464
|
"markup",
|
|
47731
45465
|
"javascript"
|
|
47732
45466
|
],
|
|
47733
|
-
|
|
45467
|
+
tsx: [
|
|
47734
45468
|
"jsx",
|
|
47735
45469
|
"typescript"
|
|
47736
45470
|
],
|
|
47737
|
-
|
|
47738
|
-
|
|
47739
|
-
|
|
47740
|
-
|
|
47741
|
-
|
|
45471
|
+
reason: "clike",
|
|
45472
|
+
ruby: "clike",
|
|
45473
|
+
sass: "css",
|
|
45474
|
+
scss: "css",
|
|
45475
|
+
scala: "java",
|
|
47742
45476
|
"shell-session": "bash",
|
|
47743
|
-
|
|
47744
|
-
|
|
47745
|
-
|
|
47746
|
-
|
|
47747
|
-
|
|
47748
|
-
|
|
47749
|
-
|
|
45477
|
+
smarty: "markup-templating",
|
|
45478
|
+
solidity: "clike",
|
|
45479
|
+
soy: "markup-templating",
|
|
45480
|
+
sparql: "turtle",
|
|
45481
|
+
sqf: "clike",
|
|
45482
|
+
squirrel: "clike",
|
|
45483
|
+
stata: [
|
|
47750
45484
|
"mata",
|
|
47751
45485
|
"java",
|
|
47752
45486
|
"python"
|
|
@@ -47759,305 +45493,231 @@ a[data-v-ffc7287f] {
|
|
|
47759
45493
|
"t4-templating",
|
|
47760
45494
|
"vbnet"
|
|
47761
45495
|
],
|
|
47762
|
-
|
|
47763
|
-
|
|
45496
|
+
tap: "yaml",
|
|
45497
|
+
tt2: [
|
|
47764
45498
|
"clike",
|
|
47765
45499
|
"markup-templating"
|
|
47766
45500
|
],
|
|
47767
|
-
|
|
47768
|
-
|
|
47769
|
-
|
|
47770
|
-
|
|
47771
|
-
|
|
47772
|
-
|
|
47773
|
-
|
|
47774
|
-
|
|
47775
|
-
|
|
45501
|
+
textile: "markup",
|
|
45502
|
+
twig: "markup-templating",
|
|
45503
|
+
typescript: "javascript",
|
|
45504
|
+
v: "clike",
|
|
45505
|
+
vala: "clike",
|
|
45506
|
+
vbnet: "basic",
|
|
45507
|
+
velocity: "markup",
|
|
45508
|
+
wiki: "markup",
|
|
45509
|
+
xeora: "markup",
|
|
47776
45510
|
"xml-doc": "markup",
|
|
47777
|
-
|
|
45511
|
+
xquery: "markup"
|
|
47778
45512
|
}
|
|
47779
|
-
)
|
|
47780
|
-
var lang_aliases = (
|
|
45513
|
+
), t2 = (
|
|
47781
45514
|
/*aliases_placeholder[*/
|
|
47782
45515
|
{
|
|
47783
|
-
|
|
47784
|
-
|
|
47785
|
-
|
|
47786
|
-
|
|
47787
|
-
|
|
47788
|
-
|
|
47789
|
-
|
|
47790
|
-
|
|
47791
|
-
|
|
47792
|
-
|
|
45516
|
+
html: "markup",
|
|
45517
|
+
xml: "markup",
|
|
45518
|
+
svg: "markup",
|
|
45519
|
+
mathml: "markup",
|
|
45520
|
+
ssml: "markup",
|
|
45521
|
+
atom: "markup",
|
|
45522
|
+
rss: "markup",
|
|
45523
|
+
js: "javascript",
|
|
45524
|
+
g4: "antlr4",
|
|
45525
|
+
ino: "arduino",
|
|
47793
45526
|
"arm-asm": "armasm",
|
|
47794
|
-
|
|
47795
|
-
|
|
47796
|
-
|
|
47797
|
-
|
|
47798
|
-
|
|
47799
|
-
|
|
47800
|
-
|
|
47801
|
-
|
|
47802
|
-
|
|
47803
|
-
|
|
47804
|
-
|
|
47805
|
-
|
|
47806
|
-
|
|
45527
|
+
art: "arturo",
|
|
45528
|
+
adoc: "asciidoc",
|
|
45529
|
+
avs: "avisynth",
|
|
45530
|
+
avdl: "avro-idl",
|
|
45531
|
+
gawk: "awk",
|
|
45532
|
+
sh: "bash",
|
|
45533
|
+
shell: "bash",
|
|
45534
|
+
shortcode: "bbcode",
|
|
45535
|
+
rbnf: "bnf",
|
|
45536
|
+
oscript: "bsl",
|
|
45537
|
+
cs: "csharp",
|
|
45538
|
+
dotnet: "csharp",
|
|
45539
|
+
cfc: "cfscript",
|
|
47807
45540
|
"cilk-c": "cilkc",
|
|
47808
45541
|
"cilk-cpp": "cilkcpp",
|
|
47809
|
-
|
|
47810
|
-
|
|
47811
|
-
|
|
47812
|
-
|
|
45542
|
+
cilk: "cilkcpp",
|
|
45543
|
+
coffee: "coffeescript",
|
|
45544
|
+
conc: "concurnas",
|
|
45545
|
+
jinja2: "django",
|
|
47813
45546
|
"dns-zone": "dns-zone-file",
|
|
47814
|
-
|
|
47815
|
-
|
|
47816
|
-
|
|
47817
|
-
|
|
47818
|
-
|
|
47819
|
-
|
|
47820
|
-
|
|
47821
|
-
|
|
47822
|
-
|
|
45547
|
+
dockerfile: "docker",
|
|
45548
|
+
gv: "dot",
|
|
45549
|
+
eta: "ejs",
|
|
45550
|
+
xlsx: "excel-formula",
|
|
45551
|
+
xls: "excel-formula",
|
|
45552
|
+
gamemakerlanguage: "gml",
|
|
45553
|
+
po: "gettext",
|
|
45554
|
+
gni: "gn",
|
|
45555
|
+
ld: "linker-script",
|
|
47823
45556
|
"go-mod": "go-module",
|
|
47824
|
-
|
|
47825
|
-
|
|
47826
|
-
|
|
47827
|
-
|
|
47828
|
-
|
|
47829
|
-
|
|
47830
|
-
|
|
47831
|
-
|
|
47832
|
-
|
|
47833
|
-
|
|
47834
|
-
|
|
47835
|
-
|
|
47836
|
-
|
|
47837
|
-
|
|
47838
|
-
|
|
47839
|
-
|
|
45557
|
+
hbs: "handlebars",
|
|
45558
|
+
mustache: "handlebars",
|
|
45559
|
+
hs: "haskell",
|
|
45560
|
+
idr: "idris",
|
|
45561
|
+
gitignore: "ignore",
|
|
45562
|
+
hgignore: "ignore",
|
|
45563
|
+
npmignore: "ignore",
|
|
45564
|
+
webmanifest: "json",
|
|
45565
|
+
kt: "kotlin",
|
|
45566
|
+
kts: "kotlin",
|
|
45567
|
+
kum: "kumir",
|
|
45568
|
+
tex: "latex",
|
|
45569
|
+
context: "latex",
|
|
45570
|
+
ly: "lilypond",
|
|
45571
|
+
emacs: "lisp",
|
|
45572
|
+
elisp: "lisp",
|
|
47840
45573
|
"emacs-lisp": "lisp",
|
|
47841
|
-
|
|
47842
|
-
|
|
47843
|
-
|
|
47844
|
-
|
|
47845
|
-
|
|
47846
|
-
|
|
47847
|
-
|
|
47848
|
-
|
|
47849
|
-
|
|
47850
|
-
|
|
47851
|
-
|
|
47852
|
-
|
|
47853
|
-
|
|
47854
|
-
|
|
47855
|
-
|
|
47856
|
-
|
|
47857
|
-
|
|
47858
|
-
|
|
47859
|
-
|
|
47860
|
-
|
|
47861
|
-
|
|
47862
|
-
|
|
45574
|
+
md: "markdown",
|
|
45575
|
+
moon: "moonscript",
|
|
45576
|
+
n4jsd: "n4js",
|
|
45577
|
+
nani: "naniscript",
|
|
45578
|
+
objc: "objectivec",
|
|
45579
|
+
qasm: "openqasm",
|
|
45580
|
+
objectpascal: "pascal",
|
|
45581
|
+
px: "pcaxis",
|
|
45582
|
+
pcode: "peoplecode",
|
|
45583
|
+
plantuml: "plant-uml",
|
|
45584
|
+
pq: "powerquery",
|
|
45585
|
+
mscript: "powerquery",
|
|
45586
|
+
pbfasm: "purebasic",
|
|
45587
|
+
purs: "purescript",
|
|
45588
|
+
py: "python",
|
|
45589
|
+
qs: "qsharp",
|
|
45590
|
+
rkt: "racket",
|
|
45591
|
+
razor: "cshtml",
|
|
45592
|
+
rpy: "renpy",
|
|
45593
|
+
res: "rescript",
|
|
45594
|
+
robot: "robotframework",
|
|
45595
|
+
rb: "ruby",
|
|
47863
45596
|
"sh-session": "shell-session",
|
|
47864
|
-
|
|
47865
|
-
|
|
47866
|
-
|
|
47867
|
-
|
|
47868
|
-
|
|
47869
|
-
|
|
47870
|
-
|
|
47871
|
-
|
|
47872
|
-
|
|
47873
|
-
|
|
47874
|
-
|
|
47875
|
-
|
|
47876
|
-
|
|
47877
|
-
|
|
47878
|
-
|
|
47879
|
-
|
|
47880
|
-
|
|
47881
|
-
|
|
47882
|
-
|
|
47883
|
-
|
|
47884
|
-
|
|
47885
|
-
|
|
47886
|
-
|
|
47887
|
-
}
|
|
47888
|
-
);
|
|
47889
|
-
|
|
47890
|
-
|
|
47891
|
-
|
|
47892
|
-
|
|
47893
|
-
|
|
47894
|
-
|
|
47895
|
-
|
|
47896
|
-
var autoloaderPath = script.getAttribute("data-autoloader-path");
|
|
47897
|
-
if (autoloaderPath != null) {
|
|
47898
|
-
languages_path = autoloaderPath.trim().replace(/\/?$/, "/");
|
|
47899
|
-
} else {
|
|
47900
|
-
var src = script.src;
|
|
47901
|
-
if (autoloaderFile.test(src)) {
|
|
47902
|
-
languages_path = src.replace(autoloaderFile, "components/");
|
|
47903
|
-
} else if (prismFile.test(src)) {
|
|
47904
|
-
languages_path = src.replace(prismFile, "$1components/");
|
|
47905
|
-
}
|
|
45597
|
+
shellsession: "shell-session",
|
|
45598
|
+
smlnj: "sml",
|
|
45599
|
+
sol: "solidity",
|
|
45600
|
+
sln: "solution-file",
|
|
45601
|
+
rq: "sparql",
|
|
45602
|
+
sclang: "supercollider",
|
|
45603
|
+
t4: "t4-cs",
|
|
45604
|
+
trickle: "tremor",
|
|
45605
|
+
troy: "tremor",
|
|
45606
|
+
trig: "turtle",
|
|
45607
|
+
ts: "typescript",
|
|
45608
|
+
tsconfig: "typoscript",
|
|
45609
|
+
uscript: "unrealscript",
|
|
45610
|
+
uc: "unrealscript",
|
|
45611
|
+
url: "uri",
|
|
45612
|
+
vb: "visual-basic",
|
|
45613
|
+
vba: "visual-basic",
|
|
45614
|
+
webidl: "web-idl",
|
|
45615
|
+
mathematica: "wolfram",
|
|
45616
|
+
nb: "wolfram",
|
|
45617
|
+
wl: "wolfram",
|
|
45618
|
+
xeoracube: "xeora",
|
|
45619
|
+
yml: "yaml"
|
|
45620
|
+
}
|
|
45621
|
+
), e2 = {}, s2 = "none", u2 = "components/", f2 = Prism.util.currentScript();
|
|
45622
|
+
if (f2) {
|
|
45623
|
+
var a2 = /\bplugins\/autoloader\/prism-autoloader\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, d2 = /(^|\/)[\w-]+\.(?:min\.)?js(?:\?[^\r\n/]*)?$/i, n2 = f2.getAttribute("data-autoloader-path");
|
|
45624
|
+
if (n2 != null)
|
|
45625
|
+
u2 = n2.trim().replace(/\/?$/, "/");
|
|
45626
|
+
else {
|
|
45627
|
+
var c2 = f2.src;
|
|
45628
|
+
a2.test(c2) ? u2 = c2.replace(a2, "components/") : d2.test(c2) && (u2 = c2.replace(d2, "$1components/"));
|
|
47906
45629
|
}
|
|
47907
45630
|
}
|
|
47908
|
-
var
|
|
47909
|
-
languages_path,
|
|
45631
|
+
var h2 = Prism.plugins.autoloader = {
|
|
45632
|
+
languages_path: u2,
|
|
47910
45633
|
use_minified: true,
|
|
47911
|
-
loadLanguages
|
|
45634
|
+
loadLanguages: y2
|
|
47912
45635
|
};
|
|
47913
|
-
function
|
|
47914
|
-
var
|
|
47915
|
-
|
|
47916
|
-
|
|
47917
|
-
|
|
47918
|
-
document.body.removeChild(
|
|
47919
|
-
|
|
47920
|
-
|
|
47921
|
-
|
|
47922
|
-
|
|
47923
|
-
|
|
47924
|
-
|
|
47925
|
-
|
|
47926
|
-
|
|
47927
|
-
|
|
47928
|
-
|
|
47929
|
-
|
|
47930
|
-
|
|
47931
|
-
if (parent && parent.tagName.toLowerCase() === "pre") {
|
|
47932
|
-
deps = (parent.getAttribute("data-dependencies") || "").trim();
|
|
47933
|
-
}
|
|
47934
|
-
}
|
|
47935
|
-
return deps ? deps.split(/\s*,\s*/g) : [];
|
|
47936
|
-
}
|
|
47937
|
-
function isLoaded(lang) {
|
|
47938
|
-
if (lang.indexOf("!") >= 0) {
|
|
45636
|
+
function i2(o2, p2, v2) {
|
|
45637
|
+
var m2 = document.createElement("script");
|
|
45638
|
+
m2.src = o2, m2.async = true, m2.onload = function() {
|
|
45639
|
+
document.body.removeChild(m2), p2 && p2();
|
|
45640
|
+
}, m2.onerror = function() {
|
|
45641
|
+
document.body.removeChild(m2), v2 && v2();
|
|
45642
|
+
}, document.body.appendChild(m2);
|
|
45643
|
+
}
|
|
45644
|
+
function b2(o2) {
|
|
45645
|
+
var p2 = (o2.getAttribute("data-dependencies") || "").trim();
|
|
45646
|
+
if (!p2) {
|
|
45647
|
+
var v2 = o2.parentElement;
|
|
45648
|
+
v2 && v2.tagName.toLowerCase() === "pre" && (p2 = (v2.getAttribute("data-dependencies") || "").trim());
|
|
45649
|
+
}
|
|
45650
|
+
return p2 ? p2.split(/\s*,\s*/g) : [];
|
|
45651
|
+
}
|
|
45652
|
+
function l2(o2) {
|
|
45653
|
+
if (o2.indexOf("!") >= 0)
|
|
47939
45654
|
return false;
|
|
47940
|
-
|
|
47941
|
-
lang = lang_aliases[lang] || lang;
|
|
47942
|
-
if (lang in Prism.languages) {
|
|
45655
|
+
if (o2 = t2[o2] || o2, o2 in Prism.languages)
|
|
47943
45656
|
return true;
|
|
47944
|
-
|
|
47945
|
-
|
|
47946
|
-
return data && !data.error && data.loading === false;
|
|
45657
|
+
var p2 = e2[o2];
|
|
45658
|
+
return p2 && !p2.error && p2.loading === false;
|
|
47947
45659
|
}
|
|
47948
|
-
function
|
|
47949
|
-
return
|
|
45660
|
+
function _2(o2) {
|
|
45661
|
+
return h2.languages_path + "prism-" + o2 + (h2.use_minified ? ".min" : "") + ".js";
|
|
47950
45662
|
}
|
|
47951
|
-
function
|
|
47952
|
-
|
|
47953
|
-
|
|
47954
|
-
|
|
47955
|
-
|
|
47956
|
-
var completed = 0;
|
|
47957
|
-
var failed = false;
|
|
47958
|
-
if (total === 0) {
|
|
47959
|
-
if (success) {
|
|
47960
|
-
setTimeout(success, 0);
|
|
47961
|
-
}
|
|
45663
|
+
function y2(o2, p2, v2) {
|
|
45664
|
+
typeof o2 == "string" && (o2 = [o2]);
|
|
45665
|
+
var m2 = o2.length, L = 0, x2 = false;
|
|
45666
|
+
if (m2 === 0) {
|
|
45667
|
+
p2 && setTimeout(p2, 0);
|
|
47962
45668
|
return;
|
|
47963
45669
|
}
|
|
47964
|
-
function
|
|
47965
|
-
|
|
47966
|
-
return;
|
|
47967
|
-
}
|
|
47968
|
-
completed++;
|
|
47969
|
-
if (completed === total) {
|
|
47970
|
-
success && success(languages);
|
|
47971
|
-
}
|
|
45670
|
+
function S2() {
|
|
45671
|
+
x2 || (L++, L === m2 && p2 && p2(o2));
|
|
47972
45672
|
}
|
|
47973
|
-
|
|
47974
|
-
|
|
47975
|
-
|
|
47976
|
-
return;
|
|
47977
|
-
}
|
|
47978
|
-
failed = true;
|
|
47979
|
-
error && error(lang);
|
|
45673
|
+
o2.forEach(function(G2) {
|
|
45674
|
+
Q2(G2, S2, function() {
|
|
45675
|
+
x2 || (x2 = true, v2 && v2(G2));
|
|
47980
45676
|
});
|
|
47981
45677
|
});
|
|
47982
45678
|
}
|
|
47983
|
-
function
|
|
47984
|
-
var
|
|
47985
|
-
|
|
47986
|
-
|
|
47987
|
-
|
|
47988
|
-
|
|
47989
|
-
|
|
47990
|
-
|
|
47991
|
-
|
|
47992
|
-
|
|
47993
|
-
}
|
|
47994
|
-
|
|
47995
|
-
|
|
47996
|
-
error
|
|
47997
|
-
});
|
|
47998
|
-
if (!force && isLoaded(lang)) {
|
|
47999
|
-
languageCallback(lang, "success");
|
|
48000
|
-
} else if (!force && data.error) {
|
|
48001
|
-
languageCallback(lang, "error");
|
|
48002
|
-
} else if (force || !data.loading) {
|
|
48003
|
-
data.loading = true;
|
|
48004
|
-
data.error = false;
|
|
48005
|
-
addScript(getLanguagePath(lang), function() {
|
|
48006
|
-
data.loading = false;
|
|
48007
|
-
languageCallback(lang, "success");
|
|
48008
|
-
}, function() {
|
|
48009
|
-
data.loading = false;
|
|
48010
|
-
data.error = true;
|
|
48011
|
-
languageCallback(lang, "error");
|
|
48012
|
-
});
|
|
48013
|
-
}
|
|
48014
|
-
}
|
|
48015
|
-
var dependencies = lang_dependencies[lang];
|
|
48016
|
-
if (dependencies && dependencies.length) {
|
|
48017
|
-
loadLanguages(dependencies, load, error);
|
|
48018
|
-
} else {
|
|
48019
|
-
load();
|
|
45679
|
+
function Q2(o2, p2, v2) {
|
|
45680
|
+
var m2 = o2.indexOf("!") >= 0;
|
|
45681
|
+
o2 = o2.replace("!", ""), o2 = t2[o2] || o2;
|
|
45682
|
+
function L() {
|
|
45683
|
+
var S2 = e2[o2];
|
|
45684
|
+
S2 || (S2 = e2[o2] = {
|
|
45685
|
+
callbacks: []
|
|
45686
|
+
}), S2.callbacks.push({
|
|
45687
|
+
success: p2,
|
|
45688
|
+
error: v2
|
|
45689
|
+
}), !m2 && l2(o2) ? j2(o2, "success") : !m2 && S2.error ? j2(o2, "error") : (m2 || !S2.loading) && (S2.loading = true, S2.error = false, i2(_2(o2), function() {
|
|
45690
|
+
S2.loading = false, j2(o2, "success");
|
|
45691
|
+
}, function() {
|
|
45692
|
+
S2.loading = false, S2.error = true, j2(o2, "error");
|
|
45693
|
+
}));
|
|
48020
45694
|
}
|
|
45695
|
+
var x2 = r2[o2];
|
|
45696
|
+
x2 && x2.length ? y2(x2, L, v2) : L();
|
|
48021
45697
|
}
|
|
48022
|
-
function
|
|
48023
|
-
if (
|
|
48024
|
-
var
|
|
48025
|
-
|
|
48026
|
-
|
|
48027
|
-
if (callback) {
|
|
48028
|
-
setTimeout(callback, 0);
|
|
48029
|
-
}
|
|
45698
|
+
function j2(o2, p2) {
|
|
45699
|
+
if (e2[o2]) {
|
|
45700
|
+
for (var v2 = e2[o2].callbacks, m2 = 0, L = v2.length; m2 < L; m2++) {
|
|
45701
|
+
var x2 = v2[m2][p2];
|
|
45702
|
+
x2 && setTimeout(x2, 0);
|
|
48030
45703
|
}
|
|
48031
|
-
|
|
45704
|
+
v2.length = 0;
|
|
48032
45705
|
}
|
|
48033
45706
|
}
|
|
48034
|
-
Prism.hooks.add("complete", function(
|
|
48035
|
-
var element =
|
|
48036
|
-
|
|
48037
|
-
|
|
48038
|
-
|
|
48039
|
-
|
|
48040
|
-
var deps = getDependencies(element);
|
|
48041
|
-
if (/^diff-./i.test(language2)) {
|
|
48042
|
-
deps.push("diff");
|
|
48043
|
-
deps.push(language2.substr("diff-".length));
|
|
48044
|
-
} else {
|
|
48045
|
-
deps.push(language2);
|
|
48046
|
-
}
|
|
48047
|
-
if (!deps.every(isLoaded)) {
|
|
48048
|
-
loadLanguages(deps, function() {
|
|
48049
|
-
Prism.highlightElement(element);
|
|
45707
|
+
Prism.hooks.add("complete", function(o2) {
|
|
45708
|
+
var p2 = o2.element, v2 = o2.language;
|
|
45709
|
+
if (!(!p2 || !v2 || v2 === s2)) {
|
|
45710
|
+
var m2 = b2(p2);
|
|
45711
|
+
/^diff-./i.test(v2) ? (m2.push("diff"), m2.push(v2.substr(5))) : m2.push(v2), m2.every(l2) || y2(m2, function() {
|
|
45712
|
+
Prism.highlightElement(p2);
|
|
48050
45713
|
});
|
|
48051
45714
|
}
|
|
48052
45715
|
});
|
|
48053
45716
|
})();
|
|
48054
45717
|
(function() {
|
|
48055
|
-
if (typeof Prism
|
|
45718
|
+
if (typeof Prism > "u" || typeof document > "u")
|
|
48056
45719
|
return;
|
|
48057
|
-
|
|
48058
|
-
var PLUGIN_NAME = "line-numbers";
|
|
48059
|
-
var NEW_LINE_EXP = /\n(?!$)/g;
|
|
48060
|
-
var config2 = Prism.plugins.lineNumbers = {
|
|
45720
|
+
var r2 = "line-numbers", t2 = /\n(?!$)/g, e2 = Prism.plugins.lineNumbers = {
|
|
48061
45721
|
/**
|
|
48062
45722
|
* Get node for provided line number
|
|
48063
45723
|
*
|
|
@@ -48065,24 +45725,16 @@ a[data-v-ffc7287f] {
|
|
|
48065
45725
|
* @param {number} number line number
|
|
48066
45726
|
* @returns {Element|undefined}
|
|
48067
45727
|
*/
|
|
48068
|
-
getLine: function(
|
|
48069
|
-
if (
|
|
48070
|
-
|
|
48071
|
-
|
|
48072
|
-
|
|
48073
|
-
|
|
48074
|
-
|
|
48075
|
-
|
|
48076
|
-
|
|
48077
|
-
var lineNumberEnd = lineNumberStart + (lineNumberRows.children.length - 1);
|
|
48078
|
-
if (number2 < lineNumberStart) {
|
|
48079
|
-
number2 = lineNumberStart;
|
|
48080
|
-
}
|
|
48081
|
-
if (number2 > lineNumberEnd) {
|
|
48082
|
-
number2 = lineNumberEnd;
|
|
45728
|
+
getLine: function(a2, d2) {
|
|
45729
|
+
if (!(a2.tagName !== "PRE" || !a2.classList.contains(r2))) {
|
|
45730
|
+
var n2 = a2.querySelector(".line-numbers-rows");
|
|
45731
|
+
if (n2) {
|
|
45732
|
+
var c2 = parseInt(a2.getAttribute("data-start"), 10) || 1, h2 = c2 + (n2.children.length - 1);
|
|
45733
|
+
d2 < c2 && (d2 = c2), d2 > h2 && (d2 = h2);
|
|
45734
|
+
var i2 = d2 - c2;
|
|
45735
|
+
return n2.children[i2];
|
|
45736
|
+
}
|
|
48083
45737
|
}
|
|
48084
|
-
var lineIndex = number2 - lineNumberStart;
|
|
48085
|
-
return lineNumberRows.children[lineIndex];
|
|
48086
45738
|
},
|
|
48087
45739
|
/**
|
|
48088
45740
|
* Resizes the line numbers of the given element.
|
|
@@ -48092,8 +45744,8 @@ a[data-v-ffc7287f] {
|
|
|
48092
45744
|
* @param {HTMLElement} element A `<pre>` element with line numbers.
|
|
48093
45745
|
* @returns {void}
|
|
48094
45746
|
*/
|
|
48095
|
-
resize: function(
|
|
48096
|
-
|
|
45747
|
+
resize: function(a2) {
|
|
45748
|
+
s2([a2]);
|
|
48097
45749
|
},
|
|
48098
45750
|
/**
|
|
48099
45751
|
* Whether the plugin can assume that the units font sizes and margins are not depended on the size of
|
|
@@ -48107,237 +45759,234 @@ a[data-v-ffc7287f] {
|
|
|
48107
45759
|
*/
|
|
48108
45760
|
assumeViewportIndependence: true
|
|
48109
45761
|
};
|
|
48110
|
-
function
|
|
48111
|
-
|
|
48112
|
-
var
|
|
48113
|
-
|
|
48114
|
-
|
|
48115
|
-
|
|
48116
|
-
|
|
48117
|
-
|
|
48118
|
-
|
|
48119
|
-
|
|
48120
|
-
|
|
48121
|
-
|
|
48122
|
-
|
|
48123
|
-
|
|
48124
|
-
|
|
48125
|
-
|
|
48126
|
-
|
|
48127
|
-
|
|
48128
|
-
lineNumberSizer = document.createElement("span");
|
|
48129
|
-
lineNumberSizer.className = "line-numbers-sizer";
|
|
48130
|
-
codeElement.appendChild(lineNumberSizer);
|
|
48131
|
-
}
|
|
48132
|
-
lineNumberSizer.innerHTML = "0";
|
|
48133
|
-
lineNumberSizer.style.display = "block";
|
|
48134
|
-
var oneLinerHeight = lineNumberSizer.getBoundingClientRect().height;
|
|
48135
|
-
lineNumberSizer.innerHTML = "";
|
|
48136
|
-
return {
|
|
48137
|
-
element,
|
|
48138
|
-
lines: codeLines,
|
|
48139
|
-
lineHeights: [],
|
|
48140
|
-
oneLinerHeight,
|
|
48141
|
-
sizer: lineNumberSizer
|
|
48142
|
-
};
|
|
48143
|
-
}).filter(Boolean);
|
|
48144
|
-
infos.forEach(function(info) {
|
|
48145
|
-
var lineNumberSizer = info.sizer;
|
|
48146
|
-
var lines = info.lines;
|
|
48147
|
-
var lineHeights = info.lineHeights;
|
|
48148
|
-
var oneLinerHeight = info.oneLinerHeight;
|
|
48149
|
-
lineHeights[lines.length - 1] = void 0;
|
|
48150
|
-
lines.forEach(function(line, index2) {
|
|
48151
|
-
if (line && line.length > 1) {
|
|
48152
|
-
var e2 = lineNumberSizer.appendChild(document.createElement("span"));
|
|
48153
|
-
e2.style.display = "block";
|
|
48154
|
-
e2.textContent = line;
|
|
48155
|
-
} else {
|
|
48156
|
-
lineHeights[index2] = oneLinerHeight;
|
|
48157
|
-
}
|
|
48158
|
-
});
|
|
48159
|
-
});
|
|
48160
|
-
infos.forEach(function(info) {
|
|
48161
|
-
var lineNumberSizer = info.sizer;
|
|
48162
|
-
var lineHeights = info.lineHeights;
|
|
48163
|
-
var childIndex = 0;
|
|
48164
|
-
for (var i2 = 0; i2 < lineHeights.length; i2++) {
|
|
48165
|
-
if (lineHeights[i2] === void 0) {
|
|
48166
|
-
lineHeights[i2] = lineNumberSizer.children[childIndex++].getBoundingClientRect().height;
|
|
45762
|
+
function s2(a2) {
|
|
45763
|
+
if (a2 = a2.filter(function(n2) {
|
|
45764
|
+
var c2 = u2(n2), h2 = c2["white-space"];
|
|
45765
|
+
return h2 === "pre-wrap" || h2 === "pre-line";
|
|
45766
|
+
}), a2.length != 0) {
|
|
45767
|
+
var d2 = a2.map(function(n2) {
|
|
45768
|
+
var c2 = n2.querySelector("code"), h2 = n2.querySelector(".line-numbers-rows");
|
|
45769
|
+
if (!(!c2 || !h2)) {
|
|
45770
|
+
var i2 = n2.querySelector(".line-numbers-sizer"), b2 = c2.textContent.split(t2);
|
|
45771
|
+
i2 || (i2 = document.createElement("span"), i2.className = "line-numbers-sizer", c2.appendChild(i2)), i2.innerHTML = "0", i2.style.display = "block";
|
|
45772
|
+
var l2 = i2.getBoundingClientRect().height;
|
|
45773
|
+
return i2.innerHTML = "", {
|
|
45774
|
+
element: n2,
|
|
45775
|
+
lines: b2,
|
|
45776
|
+
lineHeights: [],
|
|
45777
|
+
oneLinerHeight: l2,
|
|
45778
|
+
sizer: i2
|
|
45779
|
+
};
|
|
48167
45780
|
}
|
|
48168
|
-
}
|
|
48169
|
-
|
|
48170
|
-
|
|
48171
|
-
|
|
48172
|
-
|
|
48173
|
-
|
|
48174
|
-
|
|
48175
|
-
|
|
48176
|
-
|
|
45781
|
+
}).filter(Boolean);
|
|
45782
|
+
d2.forEach(function(n2) {
|
|
45783
|
+
var c2 = n2.sizer, h2 = n2.lines, i2 = n2.lineHeights, b2 = n2.oneLinerHeight;
|
|
45784
|
+
i2[h2.length - 1] = void 0, h2.forEach(function(l2, _2) {
|
|
45785
|
+
if (l2 && l2.length > 1) {
|
|
45786
|
+
var y2 = c2.appendChild(document.createElement("span"));
|
|
45787
|
+
y2.style.display = "block", y2.textContent = l2;
|
|
45788
|
+
} else
|
|
45789
|
+
i2[_2] = b2;
|
|
45790
|
+
});
|
|
45791
|
+
}), d2.forEach(function(n2) {
|
|
45792
|
+
for (var c2 = n2.sizer, h2 = n2.lineHeights, i2 = 0, b2 = 0; b2 < h2.length; b2++)
|
|
45793
|
+
h2[b2] === void 0 && (h2[b2] = c2.children[i2++].getBoundingClientRect().height);
|
|
45794
|
+
}), d2.forEach(function(n2) {
|
|
45795
|
+
var c2 = n2.sizer, h2 = n2.element.querySelector(".line-numbers-rows");
|
|
45796
|
+
c2.style.display = "none", c2.innerHTML = "", n2.lineHeights.forEach(function(i2, b2) {
|
|
45797
|
+
h2.children[b2].style.height = i2 + "px";
|
|
45798
|
+
});
|
|
48177
45799
|
});
|
|
48178
|
-
});
|
|
48179
|
-
}
|
|
48180
|
-
function getStyles(element) {
|
|
48181
|
-
if (!element) {
|
|
48182
|
-
return null;
|
|
48183
45800
|
}
|
|
48184
|
-
return window.getComputedStyle ? getComputedStyle(element) : element.currentStyle || null;
|
|
48185
45801
|
}
|
|
48186
|
-
|
|
45802
|
+
function u2(a2) {
|
|
45803
|
+
return a2 ? window.getComputedStyle ? getComputedStyle(a2) : a2.currentStyle || null : null;
|
|
45804
|
+
}
|
|
45805
|
+
var f2 = void 0;
|
|
48187
45806
|
window.addEventListener("resize", function() {
|
|
48188
|
-
|
|
48189
|
-
|
|
48190
|
-
|
|
48191
|
-
|
|
48192
|
-
|
|
48193
|
-
|
|
48194
|
-
|
|
48195
|
-
|
|
48196
|
-
|
|
48197
|
-
|
|
48198
|
-
|
|
48199
|
-
|
|
48200
|
-
|
|
48201
|
-
|
|
48202
|
-
|
|
48203
|
-
/** @type {HTMLElement} */
|
|
48204
|
-
code2.parentNode
|
|
48205
|
-
);
|
|
48206
|
-
if (!pre || !/pre/i.test(pre.nodeName)) {
|
|
48207
|
-
return;
|
|
48208
|
-
}
|
|
48209
|
-
if (code2.querySelector(".line-numbers-rows")) {
|
|
48210
|
-
return;
|
|
48211
|
-
}
|
|
48212
|
-
if (!Prism.util.isActive(code2, PLUGIN_NAME)) {
|
|
48213
|
-
return;
|
|
45807
|
+
e2.assumeViewportIndependence && f2 === window.innerWidth || (f2 = window.innerWidth, s2(Array.prototype.slice.call(document.querySelectorAll("pre." + r2))));
|
|
45808
|
+
}), Prism.hooks.add("complete", function(a2) {
|
|
45809
|
+
if (a2.code) {
|
|
45810
|
+
var d2 = (
|
|
45811
|
+
/** @type {Element} */
|
|
45812
|
+
a2.element
|
|
45813
|
+
), n2 = (
|
|
45814
|
+
/** @type {HTMLElement} */
|
|
45815
|
+
d2.parentNode
|
|
45816
|
+
);
|
|
45817
|
+
if (!(!n2 || !/pre/i.test(n2.nodeName)) && !d2.querySelector(".line-numbers-rows") && Prism.util.isActive(d2, r2)) {
|
|
45818
|
+
d2.classList.remove(r2), n2.classList.add(r2);
|
|
45819
|
+
var c2 = a2.code.match(t2), h2 = c2 ? c2.length + 1 : 1, i2, b2 = new Array(h2 + 1).join("<span></span>");
|
|
45820
|
+
i2 = document.createElement("span"), i2.setAttribute("aria-hidden", "true"), i2.className = "line-numbers-rows", i2.innerHTML = b2, n2.hasAttribute("data-start") && (n2.style.counterReset = "linenumber " + (parseInt(n2.getAttribute("data-start"), 10) - 1)), a2.element.appendChild(i2), s2([n2]), Prism.hooks.run("line-numbers", a2);
|
|
45821
|
+
}
|
|
48214
45822
|
}
|
|
48215
|
-
|
|
48216
|
-
|
|
48217
|
-
var match = env.code.match(NEW_LINE_EXP);
|
|
48218
|
-
var linesNum = match ? match.length + 1 : 1;
|
|
48219
|
-
var lineNumbersWrapper;
|
|
48220
|
-
var lines = new Array(linesNum + 1).join("<span></span>");
|
|
48221
|
-
lineNumbersWrapper = document.createElement("span");
|
|
48222
|
-
lineNumbersWrapper.setAttribute("aria-hidden", "true");
|
|
48223
|
-
lineNumbersWrapper.className = "line-numbers-rows";
|
|
48224
|
-
lineNumbersWrapper.innerHTML = lines;
|
|
48225
|
-
if (pre.hasAttribute("data-start")) {
|
|
48226
|
-
pre.style.counterReset = "linenumber " + (parseInt(pre.getAttribute("data-start"), 10) - 1);
|
|
48227
|
-
}
|
|
48228
|
-
env.element.appendChild(lineNumbersWrapper);
|
|
48229
|
-
resizeElements([pre]);
|
|
48230
|
-
Prism.hooks.run("line-numbers", env);
|
|
48231
|
-
});
|
|
48232
|
-
Prism.hooks.add("line-numbers", function(env) {
|
|
48233
|
-
env.plugins = env.plugins || {};
|
|
48234
|
-
env.plugins.lineNumbers = true;
|
|
45823
|
+
}), Prism.hooks.add("line-numbers", function(a2) {
|
|
45824
|
+
a2.plugins = a2.plugins || {}, a2.plugins.lineNumbers = true;
|
|
48235
45825
|
});
|
|
48236
45826
|
})();
|
|
48237
|
-
const
|
|
45827
|
+
const ft = /* @__PURE__ */ defineComponent({
|
|
48238
45828
|
__name: "ScalarCodeBlock",
|
|
48239
45829
|
props: {
|
|
48240
45830
|
content: {},
|
|
48241
45831
|
lang: { default: "js" },
|
|
48242
|
-
lineNumbers: { type: Boolean, default: false }
|
|
45832
|
+
lineNumbers: { type: Boolean, default: false },
|
|
45833
|
+
hideCredentials: {}
|
|
48243
45834
|
},
|
|
48244
|
-
setup(
|
|
48245
|
-
const
|
|
48246
|
-
|
|
48247
|
-
|
|
48248
|
-
|
|
48249
|
-
|
|
45835
|
+
setup(r2) {
|
|
45836
|
+
const t2 = r2, { plugins: e2, highlightElement: s2 } = q;
|
|
45837
|
+
t2.hideCredentials && q.hooks.add("wrap", function(a2) {
|
|
45838
|
+
if (!t2.hideCredentials)
|
|
45839
|
+
return;
|
|
45840
|
+
let d2 = false;
|
|
45841
|
+
typeof t2.hideCredentials == "string" ? a2.content.includes(t2.hideCredentials) && (d2 = true) : Array.isArray(t2.hideCredentials) && (d2 = t2.hideCredentials.some(
|
|
45842
|
+
(n2) => a2.content.includes(n2)
|
|
45843
|
+
)), d2 && (a2.content = a2.content.replace(
|
|
45844
|
+
/<span class="credentials">.*?<\/span>/g,
|
|
45845
|
+
(n2) => n2.replace(/<span class="credentials">|<\/span>/g, "")
|
|
45846
|
+
), a2.content = a2.content.replace(
|
|
45847
|
+
new RegExp(
|
|
45848
|
+
typeof t2.hideCredentials == "string" ? t2.hideCredentials : t2.hideCredentials.join("|"),
|
|
45849
|
+
"g"
|
|
45850
|
+
),
|
|
45851
|
+
(n2) => `<span class="credentials">${n2}</span>`
|
|
45852
|
+
));
|
|
48250
45853
|
});
|
|
48251
|
-
|
|
48252
|
-
watch(
|
|
48253
|
-
() => [
|
|
45854
|
+
const u2 = ref(null), f2 = computed(() => t2.lang === "node" ? "js" : t2.lang);
|
|
45855
|
+
return e2.autoloader.languages_path = "https://cdnjs.cloudflare.com/ajax/libs/prism/1.29.0/components/", watch(
|
|
45856
|
+
() => [t2.lang, t2.content],
|
|
48254
45857
|
() => {
|
|
48255
|
-
|
|
48256
|
-
|
|
48257
|
-
|
|
48258
|
-
|
|
48259
|
-
|
|
48260
|
-
|
|
48261
|
-
|
|
48262
|
-
|
|
48263
|
-
|
|
48264
|
-
|
|
48265
|
-
|
|
48266
|
-
|
|
48267
|
-
}
|
|
48268
|
-
},
|
|
48269
|
-
|
|
48270
|
-
|
|
48271
|
-
|
|
48272
|
-
|
|
48273
|
-
|
|
48274
|
-
|
|
48275
|
-
|
|
48276
|
-
}
|
|
48277
|
-
})
|
|
48278
|
-
|
|
48279
|
-
|
|
48280
|
-
const parser2 = new Parser2();
|
|
48281
|
-
const parsed = parser2.parseFromString(raw, "image/svg+xml");
|
|
48282
|
-
if (parsed.getElementsByTagName("parsererror").length) {
|
|
48283
|
-
return void 0;
|
|
48284
|
-
}
|
|
48285
|
-
const svg = parsed.documentElement;
|
|
48286
|
-
const attrs = attrsToObject(svg.attributes);
|
|
48287
|
-
const { width, height, ...rest } = attrs;
|
|
48288
|
-
return h$1("svg", { ...rest, innerHTML: svg.innerHTML });
|
|
48289
|
-
};
|
|
48290
|
-
const SvgRenderer = /* @__PURE__ */ defineAsyncComponent(async () => {
|
|
48291
|
-
const Parser2 = typeof DOMParser === "undefined" ? (await Promise.resolve().then(() => indexCpJxdgyL).then((n2) => n2.i)).DOMParser : DOMParser;
|
|
48292
|
-
const Renderer = getRendererComponent(Parser2);
|
|
48293
|
-
Renderer.props = {
|
|
45858
|
+
u2.value && nextTick(() => s2(u2.value));
|
|
45859
|
+
}
|
|
45860
|
+
), onMounted(() => {
|
|
45861
|
+
u2.value && s2(u2.value);
|
|
45862
|
+
}), (a2, d2) => (openBlock(), createElementBlock("pre", {
|
|
45863
|
+
class: normalizeClass(["scalar-component scalar-codeblock-pre", {
|
|
45864
|
+
"line-numbers": a2.lineNumbers
|
|
45865
|
+
}])
|
|
45866
|
+
}, [
|
|
45867
|
+
createBaseVNode("code", {
|
|
45868
|
+
ref_key: "el",
|
|
45869
|
+
ref: u2,
|
|
45870
|
+
class: normalizeClass(`scalar-codeblock-code lang-${f2.value}`)
|
|
45871
|
+
}, toDisplayString(a2.content), 3)
|
|
45872
|
+
], 2));
|
|
45873
|
+
}
|
|
45874
|
+
}), Ee = (r2) => Object.fromEntries(Array.from(r2).map((t2) => [t2.name, t2.value])), Le = (r2) => ({ raw: t2 }) => {
|
|
45875
|
+
const s2 = new r2().parseFromString(t2, "image/svg+xml");
|
|
45876
|
+
if (s2.getElementsByTagName("parsererror").length)
|
|
45877
|
+
return;
|
|
45878
|
+
const u2 = s2.documentElement, f2 = Ee(u2.attributes), { width: a2, height: d2, ...n2 } = f2;
|
|
45879
|
+
return h$1("svg", { ...n2, innerHTML: u2.innerHTML });
|
|
45880
|
+
}, Ae = /* @__PURE__ */ defineAsyncComponent(async () => {
|
|
45881
|
+
const r2 = typeof DOMParser > "u" ? (await Promise.resolve().then(() => indexCpJxdgyL).then((n2) => n2.i)).DOMParser : DOMParser, t2 = Le(r2);
|
|
45882
|
+
return t2.props = {
|
|
48294
45883
|
raw: {
|
|
48295
45884
|
type: String,
|
|
48296
45885
|
required: true
|
|
48297
45886
|
}
|
|
48298
|
-
};
|
|
48299
|
-
|
|
48300
|
-
|
|
48301
|
-
|
|
48302
|
-
|
|
48303
|
-
|
|
48304
|
-
|
|
48305
|
-
|
|
48306
|
-
|
|
48307
|
-
|
|
48308
|
-
|
|
48309
|
-
|
|
48310
|
-
|
|
48311
|
-
|
|
48312
|
-
|
|
48313
|
-
|
|
48314
|
-
|
|
48315
|
-
|
|
48316
|
-
|
|
48317
|
-
|
|
48318
|
-
|
|
48319
|
-
|
|
48320
|
-
|
|
48321
|
-
|
|
48322
|
-
|
|
48323
|
-
|
|
48324
|
-
|
|
48325
|
-
|
|
48326
|
-
|
|
48327
|
-
|
|
48328
|
-
|
|
48329
|
-
|
|
48330
|
-
|
|
48331
|
-
|
|
48332
|
-
|
|
45887
|
+
}, t2;
|
|
45888
|
+
}), Te = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48">
|
|
45889
|
+
<path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="3.429"
|
|
45890
|
+
d="M24 1.714v44.572M1.714 24h44.572" />
|
|
45891
|
+
</svg>`, Ie = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32.5 23.5" fill="currentColor">
|
|
45892
|
+
<path d="M11.2 23.5 0 12.3l2.15-2.15 9.05 9.05L30.4 0l2.15 2.15z" />
|
|
45893
|
+
</svg>`, Me = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
45894
|
+
<path d="M4.5 8.25L12 15.75L19.5 8.25" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
45895
|
+
</svg>
|
|
45896
|
+
`, Ne = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
45897
|
+
<path d="M15.75 19.5L8.25 12L15.75 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
45898
|
+
</svg>
|
|
45899
|
+
`, je = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
45900
|
+
<path d="M8.25 19.5L15.75 12L8.25 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
45901
|
+
</svg>`, Oe = `<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
45902
|
+
<path d="M19.5 15.75L12 8.25L4.5 15.75" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
45903
|
+
</svg>
|
|
45904
|
+
`, Be = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 16 16">
|
|
45905
|
+
<path d="M6,5h4c1.7,0,2-1.3,2-3c1.1,0,2,0.9,2,2v10c0,1.1-0.9,2-2,2H4c-1.1,0-2-0.9-2-2V4c0-1.1,0.9-2,2-2C4,3.7,4.3,5,6,5z M6,2V1
|
|
45906
|
+
c0-0.6,0.5-1,1-1h2c0.5,0,1,0.4,1,1v1.3C10,2.9,9.6,3,9,3H7C6.4,3,6,2.6,6,2z" />
|
|
45907
|
+
</svg>`, De = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
45908
|
+
<path stroke="currentColor" d="m12.5 1.5-11 11m0-11 11 11" />
|
|
45909
|
+
</svg>`, Pe = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
|
|
45910
|
+
<path
|
|
45911
|
+
d="M9.557,7.243A.456.456,0,0,0,9.1,6.991C9.023,7,8.951,7,8.877,7A4,4,0,0,1,5.546.781.5.5,0,0,0,5.564.256.476.476,0,0,0,5.1,0,5,5,0,1,0,9.539,7.767.5.5,0,0,0,9.557,7.243Z"
|
|
45912
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45913
|
+
</svg>`, ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor">
|
|
45914
|
+
<path
|
|
45915
|
+
d="M6 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" />
|
|
45916
|
+
</svg>`, Re = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 9">
|
|
45917
|
+
<g fill="none" fill-rule="evenodd" transform="translate(.67 .67)">
|
|
45918
|
+
<rect transform="rotate(180 4 4)" />
|
|
45919
|
+
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".5"
|
|
45920
|
+
d="M2.85 1.73h3.4v3.4m0-3.4L1.74 6.24" />
|
|
45921
|
+
</g>
|
|
45922
|
+
</svg>`, He = `<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 1024 1024">
|
|
45923
|
+
<path
|
|
45924
|
+
d="M512 0a512 512 0 0 0-162 998c26 4 35-11 35-25l-1-95c-128 23-161-32-172-60-6-15-31-61-52-73-18-10-44-33-1-33 40-1 69 37 78 52 46 78 120 56 149 43 5-33 18-56 33-69-114-13-234-56-234-253 0-56 20-101 53-137-5-13-23-65 5-136 0 0 43-13 141 53a487 487 0 0 1 256 0c98-66 141-53 141-53 28 71 10 123 5 136 33 36 53 81 53 137 0 197-120 240-234 253 18 16 35 47 35 95l-1 140c0 14 9 30 35 25A512 512 0 0 0 512 0z" />
|
|
45925
|
+
</svg>`, $e = `<svg
|
|
45926
|
+
height="24"
|
|
45927
|
+
viewBox="0 0 24 24"
|
|
45928
|
+
width="24"
|
|
45929
|
+
xmlns="http://www.w3.org/2000/svg">
|
|
45930
|
+
<path
|
|
45931
|
+
d="M24 12a1 1 0 0 0 -1 -1h-3.91a0.51 0.51 0 0 1 -0.49 -0.4 6.83 6.83 0 0 0 -0.94 -2.28 0.5 0.5 0 0 1 0.06 -0.63l2.77 -2.76a1 1 0 1 0 -1.42 -1.42l-2.76 2.77a0.5 0.5 0 0 1 -0.63 0.06 6.83 6.83 0 0 0 -2.28 -0.94 0.5 0.5 0 0 1 -0.4 -0.49V1a1 1 0 0 0 -2 0v3.91a0.51 0.51 0 0 1 -0.4 0.49 6.83 6.83 0 0 0 -2.28 0.94 0.5 0.5 0 0 1 -0.63 -0.06L4.93 3.51a1 1 0 0 0 -1.42 1.42l2.77 2.76a0.5 0.5 0 0 1 0.06 0.63 6.83 6.83 0 0 0 -0.94 2.28 0.5 0.5 0 0 1 -0.49 0.4H1a1 1 0 0 0 0 2h3.91a0.51 0.51 0 0 1 0.49 0.4 6.83 6.83 0 0 0 0.94 2.28 0.5 0.5 0 0 1 -0.06 0.63l-2.77 2.76a1 1 0 1 0 1.42 1.42l2.76 -2.77a0.5 0.5 0 0 1 0.63 -0.06 6.83 6.83 0 0 0 2.28 0.94 0.5 0.5 0 0 1 0.4 0.49V23a1 1 0 0 0 2 0v-3.91a0.51 0.51 0 0 1 0.4 -0.49 6.83 6.83 0 0 0 2.28 -0.94 0.5 0.5 0 0 1 0.63 0.06l2.76 2.77a1 1 0 1 0 1.42 -1.42l-2.77 -2.76a0.5 0.5 0 0 1 -0.06 -0.63 6.83 6.83 0 0 0 0.94 -2.28 0.5 0.5 0 0 1 0.49 -0.4H23a1 1 0 0 0 1 -1Zm-8.74 2.5A5.76 5.76 0 0 1 9.5 8.74a5.66 5.66 0 0 1 0.16 -1.31 0.49 0.49 0 0 1 0.34 -0.36 5.36 5.36 0 0 1 1.8 -0.31 5.47 5.47 0 0 1 5.46 5.46 5.36 5.36 0 0 1 -0.31 1.8 0.49 0.49 0 0 1 -0.35 0.32 5.53 5.53 0 0 1 -1.34 0.16Z"
|
|
45932
|
+
fill="currentColor"
|
|
45933
|
+
stroke-width="1"></path>
|
|
45934
|
+
</svg>`, Ge = `<svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg">
|
|
45935
|
+
<path d="M3.500 5.000 A1.500 1.500 0 1 0 6.500 5.000 A1.500 1.500 0 1 0 3.500 5.000 Z" fill="currentColor"
|
|
45936
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45937
|
+
<path d="M5,2.25a.625.625,0,0,1-.625-.625v-1a.625.625,0,0,1,1.25,0v1A.625.625,0,0,1,5,2.25Z" fill="currentColor"
|
|
45938
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45939
|
+
<path d="M6.945,3.055a.623.623,0,0,1,0-.883l.707-.708a.625.625,0,0,1,.884.884l-.708.707A.623.623,0,0,1,6.945,3.055Z"
|
|
45940
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45941
|
+
<path d="M7.75,5a.625.625,0,0,1,.625-.625h1a.625.625,0,0,1,0,1.25h-1A.625.625,0,0,1,7.75,5Z" fill="currentColor"
|
|
45942
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45943
|
+
<path d="M6.945,6.945a.623.623,0,0,1,.883,0l.708.707a.625.625,0,0,1-.884.884l-.707-.708A.623.623,0,0,1,6.945,6.945Z"
|
|
45944
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45945
|
+
<path d="M5,7.75a.625.625,0,0,1,.625.625v1a.625.625,0,0,1-1.25,0v-1A.625.625,0,0,1,5,7.75Z" fill="currentColor"
|
|
45946
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45947
|
+
<path
|
|
45948
|
+
d="M3.055,6.945a.623.623,0,0,1,0,.883l-.707.708a.625.625,0,0,1-.884-.884l.708-.707A.623.623,0,0,1,3.055,6.945Z"
|
|
45949
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45950
|
+
<path d="M2.25,5a.625.625,0,0,1-.625.625h-1a.625.625,0,0,1,0-1.25h1A.625.625,0,0,1,2.25,5Z" fill="currentColor"
|
|
45951
|
+
stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45952
|
+
<path
|
|
45953
|
+
d="M3.055,3.055a.623.623,0,0,1-.883,0l-.708-.707a.625.625,0,0,1,.884-.884l.707.708A.623.623,0,0,1,3.055,3.055Z"
|
|
45954
|
+
fill="currentColor" stroke="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="0"></path>
|
|
45955
|
+
</svg>`, qe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 593 593">
|
|
45956
|
+
<path fill="currentColor" fill-rule="evenodd"
|
|
45957
|
+
d="M347 0c6 0 12 5 12 12v134l94-95c5-5 13-5 17 0l72 72c4 4 5 12 0 16v1l-95 94h134c7 0 12 5 12 12v101c0 7-5 12-12 12H447l95 94c4 5 5 13 0 17l-72 72c-4 4-12 5-16 0h-1l-94-95v134c0 7-5 12-12 12H246c-7 0-12-5-12-12v-70c0-22 9-43 24-59l130-130c14-14 14-37 0-51L259 142a84 84 0 0 1-25-59V12c0-7 5-12 12-12h101ZM138 52h1l219 219c14 14 14 37 0 51L139 542c-4 5-12 5-17 0l-71-70c-4-5-5-12 0-17l95-96H12c-7 0-12-5-12-12V246c0-7 5-12 12-12h134l-95-94c-4-5-4-12 0-17l71-71c4-5 12-5 16 0Z" />
|
|
45958
|
+
</svg>`, Ve = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 662 662">
|
|
45959
|
+
<path fill-rule="evenodd" fill="currentColor"
|
|
45960
|
+
d="M331 0a331 331 0 1 1 0 662 331 331 0 0 1 0-662Zm148.5 109 .6.9a187 187 0 1 1-297.6-.9 267 267 0 1 0 297 0Z" />
|
|
45961
|
+
</svg>`, Fe = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620">
|
|
45962
|
+
<path fill="currentColor"
|
|
45963
|
+
d="M-.653 309.29c-.078 82.272 31.848 159.735 89.739 218.178l.283.283c122.379 121.247 319.824 121.184 440.16-.283 119.967-121.1 119.409-316.933-.998-437.339l-.99-.99C468.681 30.845 390.716-1.017 307.893-.67c-82.83.354-160.443 32.994-218.814 91.79C31.209 149.555-.724 227.025-.653 309.29Zm469.271-160.789.778.778c87.9 87.9 88.325 231.005.707 319.33-77.753 78.46-199.786 87.412-288.959 26.862l198.513-198.513-.007 166.361 83.68-.07v-306.22H157.11l-.008 83.6h160.584L121.994 436.323c-59.347-87.689-50.536-208.59 26.51-286.343C236.34 61.294 379.94 60.67 468.61 148.494Z" />
|
|
45964
|
+
</svg>`, Ue = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 642 642" fill="currentColor">
|
|
45965
|
+
<path
|
|
45966
|
+
d="M321 0a321 321 0 1 1 0 642 321 321 0 0 1 0-642Zm51.3 63L321 189.5 269.7 63l1 136.5-95.8-97.2L228 228l-125.7-53.1 97.2 95.8-136.5-1L189.5 321 63 372.3l136.5-1-97.2 95.8 125.7-53-53.1 125.6 95.8-97.2-1 136.5L321 452.5 372.3 579l-1-136.5 95.8 97.2-53-125.7 125.6 53.1-97.2-95.8 136.5 1L452.5 321 579 269.7l-136.5 1 97.2-95.8L414 228l53.1-125.7-95.8 97.2 1-136.5Z" />
|
|
45967
|
+
</svg>`, Ze = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 620 620" fill="currentColor">
|
|
45968
|
+
<path
|
|
45969
|
+
d="M529.2 90.8A310 310 0 1 0 90.8 529.2 310 310 0 0 0 529.2 90.8M122.4 498.2c-54.9-55-15.4-183.5 88.2-287 103.6-103.7 232.1-143.2 287-88.3 54.9 54.8 15.4 183.4-88.3 287-103.5 103.6-232 143.1-286.9 88.3m261.8-262.7A104.7 104.7 0 1 1 236 383.7a104.7 104.7 0 0 1 148.2-148.2" />
|
|
45970
|
+
</svg>`, We = `<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" viewBox="0 0 14 14">
|
|
45971
|
+
<path fill="none" stroke="currentColor" d="M14 3.4H0m14 7.2H0" />
|
|
45972
|
+
</svg>`, Xe = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 14">
|
|
45973
|
+
<path fill="currentColor" fill-rule="evenodd"
|
|
45974
|
+
d="M11.8214 0.0977942C12.1097 -0.00745677 12.4219 -0.0286524 12.7219 0.0367783C13.0248 0.102864 13.3024 0.254542 13.5216 0.47378C13.7408 0.693018 13.8925 0.970598 13.9586 1.27352C14.024 1.57344 14.0028 1.88572 13.8976 2.17395L10.3236 12.8859L10.3234 12.8866C10.2363 13.1501 10.083 13.3868 9.8781 13.574C9.6738 13.7606 9.42509 13.8918 9.15572 13.9549C8.8863 14.0206 8.60441 14.0151 8.33774 13.9389C8.07131 13.8628 7.82926 13.7187 7.63529 13.5209L5.71795 11.6124L3.70389 12.6538C3.54684 12.7351 3.35857 12.7273 3.20874 12.6334C3.05892 12.5395 2.96981 12.3735 2.9744 12.1967L3.05697 9.013L10.1019 3.8956C10.3812 3.69273 10.4432 3.30188 10.2403 3.02261C10.0374 2.74333 9.64659 2.68139 9.36731 2.88425L2.20283 8.08846L0.473125 6.35875L0.473067 6.3587L0.472941 6.35857C0.285618 6.17138 0.147716 5.9406 0.0716193 5.68694C-0.00393616 5.43509 -0.0162115 5.16853 0.0358379 4.91085C0.0879545 4.62934 0.213796 4.36664 0.400577 4.14957C0.588637 3.93101 0.83165 3.76664 1.1045 3.67345L1.10787 3.6723L1.10787 3.67231L11.8214 0.0977942Z"
|
|
45975
|
+
clip-rule="evenodd"></path>
|
|
45976
|
+
</svg>`, Ke = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="currentColor">
|
|
45977
|
+
<path fill-rule="evenodd"
|
|
45978
|
+
d="M12.6 11.2h.1l3 3a1 1 0 1 1-1.4 1.5l-3-3a1 1 0 0 1-.1-.1 7 7 0 1 1 1.4-1.4zM7 12A5 5 0 1 0 7 2a5 5 0 0 0 0 10z" />
|
|
45979
|
+
</svg>`, V = /* @__PURE__ */ Object.assign({ "./Add.svg": Te, "./CheckMark.svg": Ie, "./ChevronDown.svg": Me, "./ChevronLeft.svg": Ne, "./ChevronRight.svg": je, "./ChevronUp.svg": Oe, "./Clipboard.svg": Be, "./Close.svg": De, "./DarkMode.svg": Pe, "./Ellipses.svg": ze, "./ExternalLink.svg": Re, "./GitHub.svg": He, "./LightDarkModeToggle.svg": $e, "./LightMode.svg": Ge, "./Logo.svg": qe, "./LogoAPI.svg": Ve, "./LogoClient.svg": Fe, "./LogoMarket.svg": Ue, "./LogoSwagger.svg": Ze, "./Menu.svg": We, "./PaperAirplane.svg": Xe, "./Search.svg": Ke }), Ye = (r2) => {
|
|
45980
|
+
const t2 = `./${r2}.svg`;
|
|
45981
|
+
return V[t2] === void 0 ? (console.warn(`Could not find icon: ${r2}`), "") : V[t2];
|
|
45982
|
+
}, J = /* @__PURE__ */ defineComponent({
|
|
48333
45983
|
__name: "ScalarIcon",
|
|
48334
45984
|
props: {
|
|
48335
45985
|
icon: {},
|
|
48336
45986
|
size: {}
|
|
48337
45987
|
},
|
|
48338
|
-
setup(
|
|
48339
|
-
const
|
|
48340
|
-
const iconProps = cva({
|
|
45988
|
+
setup(r2) {
|
|
45989
|
+
const t2 = r2, e2 = N({
|
|
48341
45990
|
variants: {
|
|
48342
45991
|
size: {
|
|
48343
45992
|
xs: "h-3 w-3",
|
|
@@ -48351,15 +46000,12 @@ a[data-v-ffc7287f] {
|
|
|
48351
46000
|
defaultVariants: {
|
|
48352
46001
|
size: "full"
|
|
48353
46002
|
}
|
|
48354
|
-
});
|
|
48355
|
-
|
|
48356
|
-
|
|
48357
|
-
|
|
48358
|
-
|
|
48359
|
-
|
|
48360
|
-
raw: data.value
|
|
48361
|
-
}, null, 8, ["class", "raw"])) : createCommentVNode("", true);
|
|
48362
|
-
};
|
|
46003
|
+
}), s2 = computed(() => Ye(t2.icon));
|
|
46004
|
+
return (u2, f2) => s2.value ? (openBlock(), createBlock(unref(Ae), {
|
|
46005
|
+
key: 0,
|
|
46006
|
+
class: normalizeClass(unref(E)("scalar-icon", unref(e2)({ size: u2.size }))),
|
|
46007
|
+
raw: s2.value
|
|
46008
|
+
}, null, 8, ["class", "raw"])) : createCommentVNode("", true);
|
|
48363
46009
|
}
|
|
48364
46010
|
});
|
|
48365
46011
|
const _hoisted_1$f = { class: "table" };
|
|
@@ -48520,7 +46166,7 @@ a[data-v-ffc7287f] {
|
|
|
48520
46166
|
onClick: addHandler
|
|
48521
46167
|
}, [
|
|
48522
46168
|
createBaseVNode("i", _hoisted_24, [
|
|
48523
|
-
createVNode(unref(
|
|
46169
|
+
createVNode(unref(J), { icon: "Add" })
|
|
48524
46170
|
]),
|
|
48525
46171
|
createTextVNode(" " + toDisplayString(_ctx.addLabel), 1)
|
|
48526
46172
|
])) : createCommentVNode("", true),
|
|
@@ -48532,7 +46178,7 @@ a[data-v-ffc7287f] {
|
|
|
48532
46178
|
}, [
|
|
48533
46179
|
createTextVNode(" Show More "),
|
|
48534
46180
|
createBaseVNode("i", _hoisted_25, [
|
|
48535
|
-
createVNode(unref(
|
|
46181
|
+
createVNode(unref(J), { icon: "ChevronDown" })
|
|
48536
46182
|
])
|
|
48537
46183
|
])) : createCommentVNode("", true)
|
|
48538
46184
|
])
|
|
@@ -48591,7 +46237,7 @@ a[data-v-ffc7287f] {
|
|
|
48591
46237
|
}
|
|
48592
46238
|
};
|
|
48593
46239
|
return (_ctx, _cache) => {
|
|
48594
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
46240
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
|
|
48595
46241
|
default: withCtx(() => [
|
|
48596
46242
|
_ctx.body && _ctx.body.length === 0 && _ctx.formData && _ctx.formData.length === 0 ? (openBlock(), createElementBlock("span", _hoisted_1$d, "No Body")) : _ctx.formData && _ctx.formData.length > 0 ? (openBlock(), createBlock(unref(_sfc_main$h), {
|
|
48597
46243
|
key: 1,
|
|
@@ -48649,7 +46295,7 @@ a[data-v-ffc7287f] {
|
|
|
48649
46295
|
(_a2 = activeRequest2.cookies) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
48650
46296
|
}
|
|
48651
46297
|
return (_ctx, _cache) => {
|
|
48652
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
46298
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
48653
46299
|
defaultOpen: unref(activeRequest2).cookies && unref(activeRequest2).cookies.length > 0,
|
|
48654
46300
|
title: "Cookies"
|
|
48655
46301
|
}, {
|
|
@@ -48716,7 +46362,7 @@ a[data-v-ffc7287f] {
|
|
|
48716
46362
|
(_a2 = activeRequest2.headers) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
48717
46363
|
}
|
|
48718
46364
|
return (_ctx, _cache) => {
|
|
48719
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
46365
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
48720
46366
|
defaultOpen: unref(activeRequest2).headers && unref(activeRequest2).headers.length > 0,
|
|
48721
46367
|
title: "Headers"
|
|
48722
46368
|
}, {
|
|
@@ -48783,7 +46429,7 @@ a[data-v-ffc7287f] {
|
|
|
48783
46429
|
(_a2 = activeRequest2.query) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
48784
46430
|
}
|
|
48785
46431
|
return (_ctx, _cache) => {
|
|
48786
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
46432
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
48787
46433
|
defaultOpen: unref(activeRequest2).query && unref(activeRequest2).query.length > 0,
|
|
48788
46434
|
title: "Query Parameters"
|
|
48789
46435
|
}, {
|
|
@@ -48851,7 +46497,7 @@ a[data-v-ffc7287f] {
|
|
|
48851
46497
|
(_a2 = activeRequest2.variables) == null ? void 0 : _a2.push({ name: "", value: "", enabled: true });
|
|
48852
46498
|
}
|
|
48853
46499
|
return (_ctx, _cache) => {
|
|
48854
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
46500
|
+
return openBlock(), createBlock(unref(_sfc_main$j), {
|
|
48855
46501
|
defaultOpen: unref(activeRequest2).variables && unref(activeRequest2).variables.length > 0,
|
|
48856
46502
|
title: "Variables"
|
|
48857
46503
|
}, {
|
|
@@ -48912,7 +46558,7 @@ a[data-v-ffc7287f] {
|
|
|
48912
46558
|
createVNode(_sfc_main$b, {
|
|
48913
46559
|
variables: unref(activeRequest2).variables
|
|
48914
46560
|
}, null, 8, ["variables"]),
|
|
48915
|
-
createVNode(_sfc_main$
|
|
46561
|
+
createVNode(_sfc_main$i),
|
|
48916
46562
|
createVNode(_sfc_main$e, {
|
|
48917
46563
|
cookies: unref(activeRequest2).cookies
|
|
48918
46564
|
}, null, 8, ["cookies"]),
|
|
@@ -48976,10 +46622,10 @@ a[data-v-ffc7287f] {
|
|
|
48976
46622
|
return null;
|
|
48977
46623
|
});
|
|
48978
46624
|
return (_ctx, _cache) => {
|
|
48979
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
46625
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Body" }, {
|
|
48980
46626
|
default: withCtx(() => [
|
|
48981
46627
|
_ctx.active ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
48982
|
-
codeMirrorLanguage.value ? (openBlock(), createBlock(unref(
|
|
46628
|
+
codeMirrorLanguage.value ? (openBlock(), createBlock(unref(ft), {
|
|
48983
46629
|
key: 0,
|
|
48984
46630
|
class: "custom-scroll",
|
|
48985
46631
|
content: _ctx.data,
|
|
@@ -49098,7 +46744,7 @@ a[data-v-ffc7287f] {
|
|
|
49098
46744
|
}).join("-");
|
|
49099
46745
|
};
|
|
49100
46746
|
return (_ctx, _cache) => {
|
|
49101
|
-
return openBlock(), createBlock(unref(_sfc_main$
|
|
46747
|
+
return openBlock(), createBlock(unref(_sfc_main$j), { title: "Headers" }, {
|
|
49102
46748
|
default: withCtx(() => [
|
|
49103
46749
|
_ctx.headers.length > 0 ? (openBlock(), createBlock(unref(SimpleTable), { key: 0 }, {
|
|
49104
46750
|
default: withCtx(() => [
|
|
@@ -49278,7 +46924,7 @@ a[data-v-ffc7287f] {
|
|
|
49278
46924
|
headers: responseHeaders.value
|
|
49279
46925
|
}, null, 8, ["active", "data", "headers"]),
|
|
49280
46926
|
createVNode(_sfc_main$3, { headers: responseHeaders.value }, null, 8, ["headers"]),
|
|
49281
|
-
createVNode(unref(_sfc_main$
|
|
46927
|
+
createVNode(unref(_sfc_main$j), { title: "Cookies" }, {
|
|
49282
46928
|
default: withCtx(() => [
|
|
49283
46929
|
withDirectives(createVNode(unref(_sfc_main$g), { items: responseCookies.value }, null, 8, ["items"]), [
|
|
49284
46930
|
[vShow, responseCookies.value.length > 0]
|
|
@@ -49326,8 +46972,8 @@ a[data-v-ffc7287f] {
|
|
|
49326
46972
|
);
|
|
49327
46973
|
return (_ctx, _cache) => {
|
|
49328
46974
|
return openBlock(), createElementBlock(Fragment, null, [
|
|
49329
|
-
createVNode(unref(_sfc_main$
|
|
49330
|
-
createVNode(_sfc_main$
|
|
46975
|
+
createVNode(unref(_sfc_main$r), { id: _ctx.theme }, null, 8, ["id"]),
|
|
46976
|
+
createVNode(_sfc_main$q, {
|
|
49331
46977
|
class: "scalar-api-client",
|
|
49332
46978
|
method: unref(activeRequest2).type ?? "get",
|
|
49333
46979
|
property: "--default-scalar-api-client-color",
|
|
@@ -49373,7 +47019,7 @@ a[data-v-ffc7287f] {
|
|
|
49373
47019
|
]),
|
|
49374
47020
|
_: 1
|
|
49375
47021
|
}),
|
|
49376
|
-
createVNode(unref(Ie), { as: "template" }, {
|
|
47022
|
+
createVNode(unref(Ie$1), { as: "template" }, {
|
|
49377
47023
|
default: withCtx(() => [
|
|
49378
47024
|
createVNode(unref(ye), { as: "template" }, {
|
|
49379
47025
|
default: withCtx(() => [
|