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