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