@react-grab/visual-edit 0.0.95 → 0.0.97

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/cli.cjs CHANGED
@@ -101,7 +101,7 @@ var require_picocolors = __commonJS({
101
101
 
102
102
  // src/cli.ts
103
103
  var import_picocolors = __toESM(require_picocolors());
104
- var VERSION = "0.0.95";
104
+ var VERSION = "0.0.97";
105
105
  console.log(
106
106
  `${import_picocolors.default.magenta("\u273F")} ${import_picocolors.default.bold("React Grab")} ${import_picocolors.default.gray(VERSION)} ${import_picocolors.default.dim("(Visual Edit)")}`
107
107
  );
package/dist/cli.js CHANGED
@@ -99,7 +99,7 @@ var require_picocolors = __commonJS({
99
99
 
100
100
  // src/cli.ts
101
101
  var import_picocolors = __toESM(require_picocolors());
102
- var VERSION = "0.0.95";
102
+ var VERSION = "0.0.97";
103
103
  console.log(
104
104
  `${import_picocolors.default.magenta("\u273F")} ${import_picocolors.default.bold("React Grab")} ${import_picocolors.default.gray(VERSION)} ${import_picocolors.default.dim("(Visual Edit)")}`
105
105
  );
package/dist/client.cjs CHANGED
@@ -3064,7 +3064,7 @@ function setup({
3064
3064
  };
3065
3065
  }
3066
3066
 
3067
- // ../react-grab/dist/chunk-ZFZKLEXZ.js
3067
+ // ../react-grab/dist/chunk-K6AYIDZE.js
3068
3068
  var Wi = (e, t) => e === t;
3069
3069
  var Zt = { equals: Wi };
3070
3070
  var Bo = jo;
@@ -3138,7 +3138,7 @@ function Po(e, t, n) {
3138
3138
  }
3139
3139
  (!e.updatedAt || e.updatedAt <= n) && (e.updatedAt != null && "observers" in e ? Vo(e, o) : e.value = o, e.updatedAt = n);
3140
3140
  }
3141
- function Mt(e) {
3141
+ function Rt(e) {
3142
3142
  let t = k;
3143
3143
  if (e.state === 0) return;
3144
3144
  if (e.state === kt) return Jt(e);
@@ -3173,7 +3173,7 @@ function Ji(e) {
3173
3173
  ke = null, n.length && Fe(() => Bo(n));
3174
3174
  }
3175
3175
  function jo(e) {
3176
- for (let t = 0; t < e.length; t++) Mt(e[t]);
3176
+ for (let t = 0; t < e.length; t++) Rt(e[t]);
3177
3177
  }
3178
3178
  function Jt(e, t) {
3179
3179
  e.state = 0;
@@ -3181,7 +3181,7 @@ function Jt(e, t) {
3181
3181
  let i = e.sources[o];
3182
3182
  if (i.sources) {
3183
3183
  let r = i.state;
3184
- r === Ue ? i !== t && (!i.updatedAt || i.updatedAt < en) && Mt(i) : r === kt && Jt(i, t);
3184
+ r === Ue ? i !== t && (!i.updatedAt || i.updatedAt < en) && Rt(i) : r === kt && Jt(i, t);
3185
3185
  }
3186
3186
  }
3187
3187
  }
@@ -3262,7 +3262,7 @@ function ls(e) {
3262
3262
  } else l();
3263
3263
  r(o);
3264
3264
  }
3265
- var Qo = "0.0.95";
3265
+ var Qo = "0.0.97";
3266
3266
  var us = (e) => typeof e == "number" && !Number.isNaN(e) && Number.isFinite(e);
3267
3267
  var ds = (e) => {
3268
3268
  let t = e.trim();
@@ -3393,7 +3393,7 @@ setup({ delays: { KEY_HOLD_DURATION: ({ context: e }) => e.keyHoldDuration, DOUB
3393
3393
  }, mousePosition: ({ event: e, context: t }) => e.type === "INPUT_MODE_ENTER" ? e.position : t.mousePosition, frozenElement: ({ event: e, context: t }) => e.type === "INPUT_MODE_ENTER" ? e.element : t.frozenElement }) } }).createMachine({ id: "grabMachine", type: "parallel", context: ({ input: e }) => ({ ...bs(e.theme), hasAgentProvider: e.hasAgentProvider, keyHoldDuration: e.keyHoldDuration }), states: { activation: { initial: "idle", states: { idle: { on: { HOLD_START: { target: "holding", actions: ["setKeyHoldDuration"] }, ACTIVATE: { target: "active", actions: ["enableToggleMode", "storeActivationTimestamp"] } } }, holding: { after: { KEY_HOLD_DURATION: { target: "active", actions: ["storeActivationTimestamp"] } }, on: { RELEASE: { target: "idle" }, ACTIVATE: { target: "active", actions: ["enableToggleMode", "storeActivationTimestamp"] } } }, active: { initial: "hovering", states: { hovering: { on: { FREEZE: { target: "frozen", actions: ["freezeCurrentElement"] }, DRAG_START: { target: "dragging", actions: ["setDragStart"] } } }, frozen: { on: { UNFREEZE: { target: "hovering", actions: ["clearFrozenElement"] }, DRAG_START: { target: "dragging", actions: ["setDragStart"] } } }, dragging: { on: { DRAG_END: { target: "justDragged", actions: ["resetDragStart"] }, DRAG_CANCEL: { target: "hovering", actions: ["resetDragStart"] } } }, justDragged: { on: { DRAG_START: { target: "dragging", actions: ["setDragStart"] } }, after: { SUCCESS_LABEL_DURATION: { target: "hovering" } } } }, on: { DEACTIVATE: { target: "idle", actions: ["resetActivationState", "clearActivationTimestamp"] }, MOUSE_MOVE: { actions: ["setMousePosition"] }, ELEMENT_DETECTED: { actions: ["setDetectedElement"] }, SET_TOUCH_MODE: { actions: ["setTouchMode"] }, SET_SELECTION_SOURCE: { actions: ["setSelectionSource"] } } } }, on: { TOGGLE: [{ guard: ({ context: e }) => e.activationTimestamp !== null, target: ".idle", actions: ["resetActivationState", "clearActivationTimestamp"] }, { target: ".active", actions: ["enableToggleMode", "storeActivationTimestamp"] }], VIEWPORT_CHANGE: { actions: ["incrementViewportVersion", "updateSessionBounds"] }, ADD_GRABBED_BOX: { actions: ["addGrabbedBox"] }, REMOVE_GRABBED_BOX: { actions: ["removeGrabbedBox"] }, CLEAR_GRABBED_BOXES: { actions: ["clearGrabbedBoxes"] }, SET_LAST_GRABBED: { actions: ["setLastGrabbedElement"] }, SET_LAST_COPIED: { actions: ["setLastCopiedElement"] }, SET_HAS_AGENT_PROVIDER: { actions: ["setHasAgentProvider"] }, SET_UNDO_REDO_STATE: { actions: ["setUndoRedoState"] }, SET_AGENT_CAPABILITIES: { actions: ["setAgentCapabilities"] }, SET_TOGGLE_MODE: { actions: ["setToggleMode"] }, FREEZE_ELEMENT: { actions: ["setFrozenElement"] }, FREEZE_ELEMENTS: { actions: ["setFrozenElements"] }, SET_PENDING_ABORT_SESSION: { actions: ["setPendingAbortSessionId"] } } }, interaction: { initial: "idle", states: { idle: { on: { CLICK: { target: "awaitingDoubleClick", actions: ["setPendingClickData"] }, INPUT_MODE_ENTER: { target: "inputMode", actions: ["saveInputModePosition", "enableToggleMode"] }, COPY_START: { target: "copying" } } }, awaitingDoubleClick: { after: { DOUBLE_CLICK_THRESHOLD: { target: "copying" } }, on: { DOUBLE_CLICK: { target: "inputMode", guard: "hasAgentProvider", actions: ["clearPendingClickData", "saveInputModePosition"] }, CLICK: { target: "inputMode", guard: "hasAgentProvider", actions: ["clearPendingClickData", "saveInputModePosition"] } } }, copying: { on: { COPY_DONE: { target: "justCopied", actions: ["clearPendingClickData", "setLastCopiedElement"] } } }, justCopied: { after: { COPIED_LABEL_DURATION: { target: "idle" } } }, inputMode: { initial: "typing", states: { typing: { on: { ESC: [{ target: "confirmingDismiss", guard: "hasInputText" }, { target: "#grabMachine.interaction.idle" }], INPUT_SUBMIT: { target: "#grabMachine.interaction.copying" } } }, confirmingDismiss: { on: { CANCEL_DISMISS: { target: "typing" }, CONFIRM_DISMISS: { target: "#grabMachine.interaction.idle", actions: ["clearInputText", "clearReplySessionId"] } } } }, on: { INPUT_CHANGE: { actions: ["setInputText"] }, INPUT_CANCEL: { target: "idle", actions: ["clearInputText", "clearReplySessionId"] } } } }, on: { ADD_LABEL_INSTANCE: { actions: ["addLabelInstance"] }, UPDATE_LABEL_INSTANCE: { actions: ["updateLabelInstance"] }, REMOVE_LABEL_INSTANCE: { actions: ["removeLabelInstance"] }, SET_COPY_START: { actions: ["setCopyStart"] }, SET_PENDING_CLICK: { actions: ["setPendingClickData"] }, SET_REPLY_SESSION: { actions: ["setReplySessionId"] }, DEACTIVATE: { target: ".idle", actions: ["clearInputText", "clearReplySessionId", "clearPendingClickData"] } } }, agentSessions: { initial: "idle", states: { idle: { on: { SESSION_START: { target: "streaming", actions: ["addAgentSession", "setSessionElement"] } } }, streaming: { on: { STREAM_STATUS: { actions: ["updateAgentSessionStatus"] }, STREAM_DONE: { target: "completed", actions: ["completeAgentSession"] }, STREAM_ERROR: { target: "error", actions: ["setAgentSessionError"] }, SESSION_ABORT: { target: "idle", actions: ["removeAgentSession"] } } }, completed: { on: { SESSION_DISMISS: { target: "idle", actions: ["removeAgentSession"] }, SESSION_START: { target: "streaming", actions: ["addAgentSession", "setSessionElement"] } } }, error: { on: { ERROR_ACKNOWLEDGE: { target: "idle", actions: ["removeAgentSession"] }, SESSION_START: { target: "streaming", actions: ["addAgentSession", "setSessionElement"] } } } }, on: { UPDATE_SESSION_BOUNDS: { actions: ["updateSessionBounds"] } } } } });
3394
3394
  var Fn = "-";
3395
3395
  var ks = (e) => {
3396
- let t = Ms(e), { conflictingClassGroups: n, conflictingClassGroupModifiers: o } = e;
3396
+ let t = Rs(e), { conflictingClassGroups: n, conflictingClassGroupModifiers: o } = e;
3397
3397
  return { getClassGroupId: (a) => {
3398
3398
  let l = a.split(Fn);
3399
3399
  return l[0] === "" && l.length !== 1 && l.shift(), fr(l, t) || Ns(a);
@@ -3417,7 +3417,7 @@ var Ns = (e) => {
3417
3417
  if (n) return "arbitrary.." + n;
3418
3418
  }
3419
3419
  };
3420
- var Ms = (e) => {
3420
+ var Rs = (e) => {
3421
3421
  let { theme: t, prefix: n } = e, o = { nextPart: /* @__PURE__ */ new Map(), validators: [] };
3422
3422
  return Os(Object.entries(e.classGroups), n).forEach(([r, a]) => {
3423
3423
  Bn(a, o, r, t);
@@ -3431,7 +3431,7 @@ var Bn = (e, t, n, o) => {
3431
3431
  return;
3432
3432
  }
3433
3433
  if (typeof i == "function") {
3434
- if (Rs(i)) {
3434
+ if (Ms(i)) {
3435
3435
  Bn(i(o), t, n, o);
3436
3436
  return;
3437
3437
  }
@@ -3449,7 +3449,7 @@ var dr = (e, t) => {
3449
3449
  n.nextPart.has(o) || n.nextPart.set(o, { nextPart: /* @__PURE__ */ new Map(), validators: [] }), n = n.nextPart.get(o);
3450
3450
  }), n;
3451
3451
  };
3452
- var Rs = (e) => e.isThemeGetter;
3452
+ var Ms = (e) => e.isThemeGetter;
3453
3453
  var Os = (e, t) => t ? e.map(([n, o]) => {
3454
3454
  let i = o.map((r) => typeof r == "string" ? t + r : typeof r == "object" ? Object.fromEntries(Object.entries(r).map(([a, l]) => [t + a, l])) : r);
3455
3455
  return [n, i];
@@ -3473,15 +3473,15 @@ var pr = "!";
3473
3473
  var Ps = (e) => {
3474
3474
  let { separator: t, experimentalParseClassName: n } = e, o = t.length === 1, i = t[0], r = t.length, a = (l) => {
3475
3475
  let c = [], p = 0, u = 0, d;
3476
- for (let R = 0; R < l.length; R++) {
3477
- let N = l[R];
3476
+ for (let M = 0; M < l.length; M++) {
3477
+ let N = l[M];
3478
3478
  if (p === 0) {
3479
- if (N === i && (o || l.slice(R, R + r) === t)) {
3480
- c.push(l.slice(u, R)), u = R + r;
3479
+ if (N === i && (o || l.slice(M, M + r) === t)) {
3480
+ c.push(l.slice(u, M)), u = M + r;
3481
3481
  continue;
3482
3482
  }
3483
3483
  if (N === "/") {
3484
- d = R;
3484
+ d = M;
3485
3485
  continue;
3486
3486
  }
3487
3487
  }
@@ -3516,7 +3516,7 @@ var Fs = (e, t) => {
3516
3516
  }
3517
3517
  g = false;
3518
3518
  }
3519
- let R = Ds(u).join(":"), N = d ? R + pr : R, _ = N + S;
3519
+ let M = Ds(u).join(":"), N = d ? M + pr : M, _ = N + S;
3520
3520
  if (r.includes(_)) continue;
3521
3521
  r.push(_);
3522
3522
  let v = i(S, g);
@@ -3591,8 +3591,8 @@ var hr = () => false;
3591
3591
  var oa = (e) => Xs.test(e);
3592
3592
  var ra = (e) => Ys.test(e);
3593
3593
  var ia = () => {
3594
- let e = me("colors"), t = me("spacing"), n = me("blur"), o = me("brightness"), i = me("borderColor"), r = me("borderRadius"), a = me("borderSpacing"), l = me("borderWidth"), c = me("contrast"), p = me("grayscale"), u = me("hueRotate"), d = me("invert"), T = me("gap"), y = me("gradientColorStops"), g = me("gradientColorStopPositions"), S = me("inset"), R = me("margin"), N = me("opacity"), _ = me("padding"), v = me("saturate"), q = me("scale"), J = me("sepia"), Z = me("skew"), he = me("space"), be = me("translate"), xe = () => ["auto", "contain", "none"], ue = () => ["auto", "hidden", "clip", "visible", "scroll"], C = () => ["auto", Q, t], w = () => [Q, t], f = () => ["", et, st], h = () => ["auto", Ct, Q], x = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"], M = () => ["solid", "dashed", "dotted", "double", "none"], D = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], I = () => ["start", "end", "center", "between", "around", "evenly", "stretch"], b = () => ["", "0", Q], $ = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], P = () => [Ct, Q];
3595
- return { cacheSize: 500, separator: ":", theme: { colors: [Pt], spacing: [et, st], blur: ["none", "", at, Q], brightness: P(), borderColor: [e], borderRadius: ["none", "", "full", at, Q], borderSpacing: w(), borderWidth: f(), contrast: P(), grayscale: b(), hueRotate: P(), invert: b(), gap: w(), gradientColorStops: [e], gradientColorStopPositions: [Ws, st], inset: C(), margin: C(), opacity: P(), padding: w(), saturate: P(), scale: P(), sepia: b(), skew: P(), space: w(), translate: w() }, classGroups: { aspect: [{ aspect: ["auto", "square", "video", Q] }], container: ["container"], columns: [{ columns: [at] }], "break-after": [{ "break-after": $() }], "break-before": [{ "break-before": $() }], "break-inside": [{ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"] }], "box-decoration": [{ "box-decoration": ["slice", "clone"] }], box: [{ box: ["border", "content"] }], display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"], float: [{ float: ["right", "left", "none", "start", "end"] }], clear: [{ clear: ["left", "right", "both", "none", "start", "end"] }], isolation: ["isolate", "isolation-auto"], "object-fit": [{ object: ["contain", "cover", "fill", "none", "scale-down"] }], "object-position": [{ object: [...x(), Q] }], overflow: [{ overflow: ue() }], "overflow-x": [{ "overflow-x": ue() }], "overflow-y": [{ "overflow-y": ue() }], overscroll: [{ overscroll: xe() }], "overscroll-x": [{ "overscroll-x": xe() }], "overscroll-y": [{ "overscroll-y": xe() }], position: ["static", "fixed", "absolute", "relative", "sticky"], inset: [{ inset: [S] }], "inset-x": [{ "inset-x": [S] }], "inset-y": [{ "inset-y": [S] }], start: [{ start: [S] }], end: [{ end: [S] }], top: [{ top: [S] }], right: [{ right: [S] }], bottom: [{ bottom: [S] }], left: [{ left: [S] }], visibility: ["visible", "invisible", "collapse"], z: [{ z: ["auto", Lt, Q] }], basis: [{ basis: C() }], "flex-direction": [{ flex: ["row", "row-reverse", "col", "col-reverse"] }], "flex-wrap": [{ flex: ["wrap", "wrap-reverse", "nowrap"] }], flex: [{ flex: ["1", "auto", "initial", "none", Q] }], grow: [{ grow: b() }], shrink: [{ shrink: b() }], order: [{ order: ["first", "last", "none", Lt, Q] }], "grid-cols": [{ "grid-cols": [Pt] }], "col-start-end": [{ col: ["auto", { span: ["full", Lt, Q] }, Q] }], "col-start": [{ "col-start": h() }], "col-end": [{ "col-end": h() }], "grid-rows": [{ "grid-rows": [Pt] }], "row-start-end": [{ row: ["auto", { span: [Lt, Q] }, Q] }], "row-start": [{ "row-start": h() }], "row-end": [{ "row-end": h() }], "grid-flow": [{ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"] }], "auto-cols": [{ "auto-cols": ["auto", "min", "max", "fr", Q] }], "auto-rows": [{ "auto-rows": ["auto", "min", "max", "fr", Q] }], gap: [{ gap: [T] }], "gap-x": [{ "gap-x": [T] }], "gap-y": [{ "gap-y": [T] }], "justify-content": [{ justify: ["normal", ...I()] }], "justify-items": [{ "justify-items": ["start", "end", "center", "stretch"] }], "justify-self": [{ "justify-self": ["auto", "start", "end", "center", "stretch"] }], "align-content": [{ content: ["normal", ...I(), "baseline"] }], "align-items": [{ items: ["start", "end", "center", "baseline", "stretch"] }], "align-self": [{ self: ["auto", "start", "end", "center", "stretch", "baseline"] }], "place-content": [{ "place-content": [...I(), "baseline"] }], "place-items": [{ "place-items": ["start", "end", "center", "baseline", "stretch"] }], "place-self": [{ "place-self": ["auto", "start", "end", "center", "stretch"] }], p: [{ p: [_] }], px: [{ px: [_] }], py: [{ py: [_] }], ps: [{ ps: [_] }], pe: [{ pe: [_] }], pt: [{ pt: [_] }], pr: [{ pr: [_] }], pb: [{ pb: [_] }], pl: [{ pl: [_] }], m: [{ m: [R] }], mx: [{ mx: [R] }], my: [{ my: [R] }], ms: [{ ms: [R] }], me: [{ me: [R] }], mt: [{ mt: [R] }], mr: [{ mr: [R] }], mb: [{ mb: [R] }], ml: [{ ml: [R] }], "space-x": [{ "space-x": [he] }], "space-x-reverse": ["space-x-reverse"], "space-y": [{ "space-y": [he] }], "space-y-reverse": ["space-y-reverse"], w: [{ w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", Q, t] }], "min-w": [{ "min-w": [Q, t, "min", "max", "fit"] }], "max-w": [{ "max-w": [Q, t, "none", "full", "min", "max", "fit", "prose", { screen: [at] }, at] }], h: [{ h: [Q, t, "auto", "min", "max", "fit", "svh", "lvh", "dvh"] }], "min-h": [{ "min-h": [Q, t, "min", "max", "fit", "svh", "lvh", "dvh"] }], "max-h": [{ "max-h": [Q, t, "min", "max", "fit", "svh", "lvh", "dvh"] }], size: [{ size: [Q, t, "auto", "min", "max", "fit"] }], "font-size": [{ text: ["base", at, st] }], "font-smoothing": ["antialiased", "subpixel-antialiased"], "font-style": ["italic", "not-italic"], "font-weight": [{ font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", $n] }], "font-family": [{ font: [Pt] }], "fvn-normal": ["normal-nums"], "fvn-ordinal": ["ordinal"], "fvn-slashed-zero": ["slashed-zero"], "fvn-figure": ["lining-nums", "oldstyle-nums"], "fvn-spacing": ["proportional-nums", "tabular-nums"], "fvn-fraction": ["diagonal-fractions", "stacked-fractions"], tracking: [{ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", Q] }], "line-clamp": [{ "line-clamp": ["none", Ct, $n] }], leading: [{ leading: ["none", "tight", "snug", "normal", "relaxed", "loose", et, Q] }], "list-image": [{ "list-image": ["none", Q] }], "list-style-type": [{ list: ["none", "disc", "decimal", Q] }], "list-style-position": [{ list: ["inside", "outside"] }], "placeholder-color": [{ placeholder: [e] }], "placeholder-opacity": [{ "placeholder-opacity": [N] }], "text-alignment": [{ text: ["left", "center", "right", "justify", "start", "end"] }], "text-color": [{ text: [e] }], "text-opacity": [{ "text-opacity": [N] }], "text-decoration": ["underline", "overline", "line-through", "no-underline"], "text-decoration-style": [{ decoration: [...M(), "wavy"] }], "text-decoration-thickness": [{ decoration: ["auto", "from-font", et, st] }], "underline-offset": [{ "underline-offset": ["auto", et, Q] }], "text-decoration-color": [{ decoration: [e] }], "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"], "text-overflow": ["truncate", "text-ellipsis", "text-clip"], "text-wrap": [{ text: ["wrap", "nowrap", "balance", "pretty"] }], indent: [{ indent: w() }], "vertical-align": [{ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", Q] }], whitespace: [{ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"] }], break: [{ break: ["normal", "words", "all", "keep"] }], hyphens: [{ hyphens: ["none", "manual", "auto"] }], content: [{ content: ["none", Q] }], "bg-attachment": [{ bg: ["fixed", "local", "scroll"] }], "bg-clip": [{ "bg-clip": ["border", "padding", "content", "text"] }], "bg-opacity": [{ "bg-opacity": [N] }], "bg-origin": [{ "bg-origin": ["border", "padding", "content"] }], "bg-position": [{ bg: [...x(), Js] }], "bg-repeat": [{ bg: ["no-repeat", { repeat: ["", "x", "y", "round", "space"] }] }], "bg-size": [{ bg: ["auto", "cover", "contain", Zs] }], "bg-image": [{ bg: ["none", { "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"] }, ea] }], "bg-color": [{ bg: [e] }], "gradient-from-pos": [{ from: [g] }], "gradient-via-pos": [{ via: [g] }], "gradient-to-pos": [{ to: [g] }], "gradient-from": [{ from: [y] }], "gradient-via": [{ via: [y] }], "gradient-to": [{ to: [y] }], rounded: [{ rounded: [r] }], "rounded-s": [{ "rounded-s": [r] }], "rounded-e": [{ "rounded-e": [r] }], "rounded-t": [{ "rounded-t": [r] }], "rounded-r": [{ "rounded-r": [r] }], "rounded-b": [{ "rounded-b": [r] }], "rounded-l": [{ "rounded-l": [r] }], "rounded-ss": [{ "rounded-ss": [r] }], "rounded-se": [{ "rounded-se": [r] }], "rounded-ee": [{ "rounded-ee": [r] }], "rounded-es": [{ "rounded-es": [r] }], "rounded-tl": [{ "rounded-tl": [r] }], "rounded-tr": [{ "rounded-tr": [r] }], "rounded-br": [{ "rounded-br": [r] }], "rounded-bl": [{ "rounded-bl": [r] }], "border-w": [{ border: [l] }], "border-w-x": [{ "border-x": [l] }], "border-w-y": [{ "border-y": [l] }], "border-w-s": [{ "border-s": [l] }], "border-w-e": [{ "border-e": [l] }], "border-w-t": [{ "border-t": [l] }], "border-w-r": [{ "border-r": [l] }], "border-w-b": [{ "border-b": [l] }], "border-w-l": [{ "border-l": [l] }], "border-opacity": [{ "border-opacity": [N] }], "border-style": [{ border: [...M(), "hidden"] }], "divide-x": [{ "divide-x": [l] }], "divide-x-reverse": ["divide-x-reverse"], "divide-y": [{ "divide-y": [l] }], "divide-y-reverse": ["divide-y-reverse"], "divide-opacity": [{ "divide-opacity": [N] }], "divide-style": [{ divide: M() }], "border-color": [{ border: [i] }], "border-color-x": [{ "border-x": [i] }], "border-color-y": [{ "border-y": [i] }], "border-color-s": [{ "border-s": [i] }], "border-color-e": [{ "border-e": [i] }], "border-color-t": [{ "border-t": [i] }], "border-color-r": [{ "border-r": [i] }], "border-color-b": [{ "border-b": [i] }], "border-color-l": [{ "border-l": [i] }], "divide-color": [{ divide: [i] }], "outline-style": [{ outline: ["", ...M()] }], "outline-offset": [{ "outline-offset": [et, Q] }], "outline-w": [{ outline: [et, st] }], "outline-color": [{ outline: [e] }], "ring-w": [{ ring: f() }], "ring-w-inset": ["ring-inset"], "ring-color": [{ ring: [e] }], "ring-opacity": [{ "ring-opacity": [N] }], "ring-offset-w": [{ "ring-offset": [et, st] }], "ring-offset-color": [{ "ring-offset": [e] }], shadow: [{ shadow: ["", "inner", "none", at, ta] }], "shadow-color": [{ shadow: [Pt] }], opacity: [{ opacity: [N] }], "mix-blend": [{ "mix-blend": [...D(), "plus-lighter", "plus-darker"] }], "bg-blend": [{ "bg-blend": D() }], filter: [{ filter: ["", "none"] }], blur: [{ blur: [n] }], brightness: [{ brightness: [o] }], contrast: [{ contrast: [c] }], "drop-shadow": [{ "drop-shadow": ["", "none", at, Q] }], grayscale: [{ grayscale: [p] }], "hue-rotate": [{ "hue-rotate": [u] }], invert: [{ invert: [d] }], saturate: [{ saturate: [v] }], sepia: [{ sepia: [J] }], "backdrop-filter": [{ "backdrop-filter": ["", "none"] }], "backdrop-blur": [{ "backdrop-blur": [n] }], "backdrop-brightness": [{ "backdrop-brightness": [o] }], "backdrop-contrast": [{ "backdrop-contrast": [c] }], "backdrop-grayscale": [{ "backdrop-grayscale": [p] }], "backdrop-hue-rotate": [{ "backdrop-hue-rotate": [u] }], "backdrop-invert": [{ "backdrop-invert": [d] }], "backdrop-opacity": [{ "backdrop-opacity": [N] }], "backdrop-saturate": [{ "backdrop-saturate": [v] }], "backdrop-sepia": [{ "backdrop-sepia": [J] }], "border-collapse": [{ border: ["collapse", "separate"] }], "border-spacing": [{ "border-spacing": [a] }], "border-spacing-x": [{ "border-spacing-x": [a] }], "border-spacing-y": [{ "border-spacing-y": [a] }], "table-layout": [{ table: ["auto", "fixed"] }], caption: [{ caption: ["top", "bottom"] }], transition: [{ transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", Q] }], duration: [{ duration: P() }], ease: [{ ease: ["linear", "in", "out", "in-out", Q] }], delay: [{ delay: P() }], animate: [{ animate: ["none", "spin", "ping", "pulse", "bounce", Q] }], transform: [{ transform: ["", "gpu", "none"] }], scale: [{ scale: [q] }], "scale-x": [{ "scale-x": [q] }], "scale-y": [{ "scale-y": [q] }], rotate: [{ rotate: [Lt, Q] }], "translate-x": [{ "translate-x": [be] }], "translate-y": [{ "translate-y": [be] }], "skew-x": [{ "skew-x": [Z] }], "skew-y": [{ "skew-y": [Z] }], "transform-origin": [{ origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", Q] }], accent: [{ accent: ["auto", e] }], appearance: [{ appearance: ["none", "auto"] }], cursor: [{ cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", Q] }], "caret-color": [{ caret: [e] }], "pointer-events": [{ "pointer-events": ["none", "auto"] }], resize: [{ resize: ["none", "y", "x", ""] }], "scroll-behavior": [{ scroll: ["auto", "smooth"] }], "scroll-m": [{ "scroll-m": w() }], "scroll-mx": [{ "scroll-mx": w() }], "scroll-my": [{ "scroll-my": w() }], "scroll-ms": [{ "scroll-ms": w() }], "scroll-me": [{ "scroll-me": w() }], "scroll-mt": [{ "scroll-mt": w() }], "scroll-mr": [{ "scroll-mr": w() }], "scroll-mb": [{ "scroll-mb": w() }], "scroll-ml": [{ "scroll-ml": w() }], "scroll-p": [{ "scroll-p": w() }], "scroll-px": [{ "scroll-px": w() }], "scroll-py": [{ "scroll-py": w() }], "scroll-ps": [{ "scroll-ps": w() }], "scroll-pe": [{ "scroll-pe": w() }], "scroll-pt": [{ "scroll-pt": w() }], "scroll-pr": [{ "scroll-pr": w() }], "scroll-pb": [{ "scroll-pb": w() }], "scroll-pl": [{ "scroll-pl": w() }], "snap-align": [{ snap: ["start", "end", "center", "align-none"] }], "snap-stop": [{ snap: ["normal", "always"] }], "snap-type": [{ snap: ["none", "x", "y", "both"] }], "snap-strictness": [{ snap: ["mandatory", "proximity"] }], touch: [{ touch: ["auto", "none", "manipulation"] }], "touch-x": [{ "touch-pan": ["x", "left", "right"] }], "touch-y": [{ "touch-pan": ["y", "up", "down"] }], "touch-pz": ["touch-pinch-zoom"], select: [{ select: ["none", "text", "all", "auto"] }], "will-change": [{ "will-change": ["auto", "scroll", "contents", "transform", Q] }], fill: [{ fill: [e, "none"] }], "stroke-w": [{ stroke: [et, st, $n] }], stroke: [{ stroke: [e, "none"] }], sr: ["sr-only", "not-sr-only"], "forced-color-adjust": [{ "forced-color-adjust": ["auto", "none"] }] }, conflictingClassGroups: { overflow: ["overflow-x", "overflow-y"], overscroll: ["overscroll-x", "overscroll-y"], inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"], "inset-x": ["right", "left"], "inset-y": ["top", "bottom"], flex: ["basis", "grow", "shrink"], gap: ["gap-x", "gap-y"], p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"], px: ["pr", "pl"], py: ["pt", "pb"], m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"], mx: ["mr", "ml"], my: ["mt", "mb"], size: ["w", "h"], "font-size": ["leading"], "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"], "fvn-ordinal": ["fvn-normal"], "fvn-slashed-zero": ["fvn-normal"], "fvn-figure": ["fvn-normal"], "fvn-spacing": ["fvn-normal"], "fvn-fraction": ["fvn-normal"], "line-clamp": ["display", "overflow"], rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"], "rounded-s": ["rounded-ss", "rounded-es"], "rounded-e": ["rounded-se", "rounded-ee"], "rounded-t": ["rounded-tl", "rounded-tr"], "rounded-r": ["rounded-tr", "rounded-br"], "rounded-b": ["rounded-br", "rounded-bl"], "rounded-l": ["rounded-tl", "rounded-bl"], "border-spacing": ["border-spacing-x", "border-spacing-y"], "border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"], "border-w-x": ["border-w-r", "border-w-l"], "border-w-y": ["border-w-t", "border-w-b"], "border-color": ["border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"], "border-color-x": ["border-color-r", "border-color-l"], "border-color-y": ["border-color-t", "border-color-b"], "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"], "scroll-mx": ["scroll-mr", "scroll-ml"], "scroll-my": ["scroll-mt", "scroll-mb"], "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"], "scroll-px": ["scroll-pr", "scroll-pl"], "scroll-py": ["scroll-pt", "scroll-pb"], touch: ["touch-x", "touch-y", "touch-pz"], "touch-x": ["touch"], "touch-y": ["touch"], "touch-pz": ["touch"] }, conflictingClassGroupModifiers: { "font-size": ["leading"] } };
3594
+ let e = me("colors"), t = me("spacing"), n = me("blur"), o = me("brightness"), i = me("borderColor"), r = me("borderRadius"), a = me("borderSpacing"), l = me("borderWidth"), c = me("contrast"), p = me("grayscale"), u = me("hueRotate"), d = me("invert"), T = me("gap"), y = me("gradientColorStops"), g = me("gradientColorStopPositions"), S = me("inset"), M = me("margin"), N = me("opacity"), _ = me("padding"), v = me("saturate"), q = me("scale"), J = me("sepia"), Z = me("skew"), he = me("space"), be = me("translate"), xe = () => ["auto", "contain", "none"], ue = () => ["auto", "hidden", "clip", "visible", "scroll"], C = () => ["auto", Q, t], w = () => [Q, t], f = () => ["", et, st], h = () => ["auto", Ct, Q], x = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"], R = () => ["solid", "dashed", "dotted", "double", "none"], D = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], I = () => ["start", "end", "center", "between", "around", "evenly", "stretch"], b = () => ["", "0", Q], $ = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], P = () => [Ct, Q];
3595
+ return { cacheSize: 500, separator: ":", theme: { colors: [Pt], spacing: [et, st], blur: ["none", "", at, Q], brightness: P(), borderColor: [e], borderRadius: ["none", "", "full", at, Q], borderSpacing: w(), borderWidth: f(), contrast: P(), grayscale: b(), hueRotate: P(), invert: b(), gap: w(), gradientColorStops: [e], gradientColorStopPositions: [Ws, st], inset: C(), margin: C(), opacity: P(), padding: w(), saturate: P(), scale: P(), sepia: b(), skew: P(), space: w(), translate: w() }, classGroups: { aspect: [{ aspect: ["auto", "square", "video", Q] }], container: ["container"], columns: [{ columns: [at] }], "break-after": [{ "break-after": $() }], "break-before": [{ "break-before": $() }], "break-inside": [{ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"] }], "box-decoration": [{ "box-decoration": ["slice", "clone"] }], box: [{ box: ["border", "content"] }], display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"], float: [{ float: ["right", "left", "none", "start", "end"] }], clear: [{ clear: ["left", "right", "both", "none", "start", "end"] }], isolation: ["isolate", "isolation-auto"], "object-fit": [{ object: ["contain", "cover", "fill", "none", "scale-down"] }], "object-position": [{ object: [...x(), Q] }], overflow: [{ overflow: ue() }], "overflow-x": [{ "overflow-x": ue() }], "overflow-y": [{ "overflow-y": ue() }], overscroll: [{ overscroll: xe() }], "overscroll-x": [{ "overscroll-x": xe() }], "overscroll-y": [{ "overscroll-y": xe() }], position: ["static", "fixed", "absolute", "relative", "sticky"], inset: [{ inset: [S] }], "inset-x": [{ "inset-x": [S] }], "inset-y": [{ "inset-y": [S] }], start: [{ start: [S] }], end: [{ end: [S] }], top: [{ top: [S] }], right: [{ right: [S] }], bottom: [{ bottom: [S] }], left: [{ left: [S] }], visibility: ["visible", "invisible", "collapse"], z: [{ z: ["auto", Lt, Q] }], basis: [{ basis: C() }], "flex-direction": [{ flex: ["row", "row-reverse", "col", "col-reverse"] }], "flex-wrap": [{ flex: ["wrap", "wrap-reverse", "nowrap"] }], flex: [{ flex: ["1", "auto", "initial", "none", Q] }], grow: [{ grow: b() }], shrink: [{ shrink: b() }], order: [{ order: ["first", "last", "none", Lt, Q] }], "grid-cols": [{ "grid-cols": [Pt] }], "col-start-end": [{ col: ["auto", { span: ["full", Lt, Q] }, Q] }], "col-start": [{ "col-start": h() }], "col-end": [{ "col-end": h() }], "grid-rows": [{ "grid-rows": [Pt] }], "row-start-end": [{ row: ["auto", { span: [Lt, Q] }, Q] }], "row-start": [{ "row-start": h() }], "row-end": [{ "row-end": h() }], "grid-flow": [{ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"] }], "auto-cols": [{ "auto-cols": ["auto", "min", "max", "fr", Q] }], "auto-rows": [{ "auto-rows": ["auto", "min", "max", "fr", Q] }], gap: [{ gap: [T] }], "gap-x": [{ "gap-x": [T] }], "gap-y": [{ "gap-y": [T] }], "justify-content": [{ justify: ["normal", ...I()] }], "justify-items": [{ "justify-items": ["start", "end", "center", "stretch"] }], "justify-self": [{ "justify-self": ["auto", "start", "end", "center", "stretch"] }], "align-content": [{ content: ["normal", ...I(), "baseline"] }], "align-items": [{ items: ["start", "end", "center", "baseline", "stretch"] }], "align-self": [{ self: ["auto", "start", "end", "center", "stretch", "baseline"] }], "place-content": [{ "place-content": [...I(), "baseline"] }], "place-items": [{ "place-items": ["start", "end", "center", "baseline", "stretch"] }], "place-self": [{ "place-self": ["auto", "start", "end", "center", "stretch"] }], p: [{ p: [_] }], px: [{ px: [_] }], py: [{ py: [_] }], ps: [{ ps: [_] }], pe: [{ pe: [_] }], pt: [{ pt: [_] }], pr: [{ pr: [_] }], pb: [{ pb: [_] }], pl: [{ pl: [_] }], m: [{ m: [M] }], mx: [{ mx: [M] }], my: [{ my: [M] }], ms: [{ ms: [M] }], me: [{ me: [M] }], mt: [{ mt: [M] }], mr: [{ mr: [M] }], mb: [{ mb: [M] }], ml: [{ ml: [M] }], "space-x": [{ "space-x": [he] }], "space-x-reverse": ["space-x-reverse"], "space-y": [{ "space-y": [he] }], "space-y-reverse": ["space-y-reverse"], w: [{ w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", Q, t] }], "min-w": [{ "min-w": [Q, t, "min", "max", "fit"] }], "max-w": [{ "max-w": [Q, t, "none", "full", "min", "max", "fit", "prose", { screen: [at] }, at] }], h: [{ h: [Q, t, "auto", "min", "max", "fit", "svh", "lvh", "dvh"] }], "min-h": [{ "min-h": [Q, t, "min", "max", "fit", "svh", "lvh", "dvh"] }], "max-h": [{ "max-h": [Q, t, "min", "max", "fit", "svh", "lvh", "dvh"] }], size: [{ size: [Q, t, "auto", "min", "max", "fit"] }], "font-size": [{ text: ["base", at, st] }], "font-smoothing": ["antialiased", "subpixel-antialiased"], "font-style": ["italic", "not-italic"], "font-weight": [{ font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", $n] }], "font-family": [{ font: [Pt] }], "fvn-normal": ["normal-nums"], "fvn-ordinal": ["ordinal"], "fvn-slashed-zero": ["slashed-zero"], "fvn-figure": ["lining-nums", "oldstyle-nums"], "fvn-spacing": ["proportional-nums", "tabular-nums"], "fvn-fraction": ["diagonal-fractions", "stacked-fractions"], tracking: [{ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", Q] }], "line-clamp": [{ "line-clamp": ["none", Ct, $n] }], leading: [{ leading: ["none", "tight", "snug", "normal", "relaxed", "loose", et, Q] }], "list-image": [{ "list-image": ["none", Q] }], "list-style-type": [{ list: ["none", "disc", "decimal", Q] }], "list-style-position": [{ list: ["inside", "outside"] }], "placeholder-color": [{ placeholder: [e] }], "placeholder-opacity": [{ "placeholder-opacity": [N] }], "text-alignment": [{ text: ["left", "center", "right", "justify", "start", "end"] }], "text-color": [{ text: [e] }], "text-opacity": [{ "text-opacity": [N] }], "text-decoration": ["underline", "overline", "line-through", "no-underline"], "text-decoration-style": [{ decoration: [...R(), "wavy"] }], "text-decoration-thickness": [{ decoration: ["auto", "from-font", et, st] }], "underline-offset": [{ "underline-offset": ["auto", et, Q] }], "text-decoration-color": [{ decoration: [e] }], "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"], "text-overflow": ["truncate", "text-ellipsis", "text-clip"], "text-wrap": [{ text: ["wrap", "nowrap", "balance", "pretty"] }], indent: [{ indent: w() }], "vertical-align": [{ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", Q] }], whitespace: [{ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"] }], break: [{ break: ["normal", "words", "all", "keep"] }], hyphens: [{ hyphens: ["none", "manual", "auto"] }], content: [{ content: ["none", Q] }], "bg-attachment": [{ bg: ["fixed", "local", "scroll"] }], "bg-clip": [{ "bg-clip": ["border", "padding", "content", "text"] }], "bg-opacity": [{ "bg-opacity": [N] }], "bg-origin": [{ "bg-origin": ["border", "padding", "content"] }], "bg-position": [{ bg: [...x(), Js] }], "bg-repeat": [{ bg: ["no-repeat", { repeat: ["", "x", "y", "round", "space"] }] }], "bg-size": [{ bg: ["auto", "cover", "contain", Zs] }], "bg-image": [{ bg: ["none", { "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"] }, ea] }], "bg-color": [{ bg: [e] }], "gradient-from-pos": [{ from: [g] }], "gradient-via-pos": [{ via: [g] }], "gradient-to-pos": [{ to: [g] }], "gradient-from": [{ from: [y] }], "gradient-via": [{ via: [y] }], "gradient-to": [{ to: [y] }], rounded: [{ rounded: [r] }], "rounded-s": [{ "rounded-s": [r] }], "rounded-e": [{ "rounded-e": [r] }], "rounded-t": [{ "rounded-t": [r] }], "rounded-r": [{ "rounded-r": [r] }], "rounded-b": [{ "rounded-b": [r] }], "rounded-l": [{ "rounded-l": [r] }], "rounded-ss": [{ "rounded-ss": [r] }], "rounded-se": [{ "rounded-se": [r] }], "rounded-ee": [{ "rounded-ee": [r] }], "rounded-es": [{ "rounded-es": [r] }], "rounded-tl": [{ "rounded-tl": [r] }], "rounded-tr": [{ "rounded-tr": [r] }], "rounded-br": [{ "rounded-br": [r] }], "rounded-bl": [{ "rounded-bl": [r] }], "border-w": [{ border: [l] }], "border-w-x": [{ "border-x": [l] }], "border-w-y": [{ "border-y": [l] }], "border-w-s": [{ "border-s": [l] }], "border-w-e": [{ "border-e": [l] }], "border-w-t": [{ "border-t": [l] }], "border-w-r": [{ "border-r": [l] }], "border-w-b": [{ "border-b": [l] }], "border-w-l": [{ "border-l": [l] }], "border-opacity": [{ "border-opacity": [N] }], "border-style": [{ border: [...R(), "hidden"] }], "divide-x": [{ "divide-x": [l] }], "divide-x-reverse": ["divide-x-reverse"], "divide-y": [{ "divide-y": [l] }], "divide-y-reverse": ["divide-y-reverse"], "divide-opacity": [{ "divide-opacity": [N] }], "divide-style": [{ divide: R() }], "border-color": [{ border: [i] }], "border-color-x": [{ "border-x": [i] }], "border-color-y": [{ "border-y": [i] }], "border-color-s": [{ "border-s": [i] }], "border-color-e": [{ "border-e": [i] }], "border-color-t": [{ "border-t": [i] }], "border-color-r": [{ "border-r": [i] }], "border-color-b": [{ "border-b": [i] }], "border-color-l": [{ "border-l": [i] }], "divide-color": [{ divide: [i] }], "outline-style": [{ outline: ["", ...R()] }], "outline-offset": [{ "outline-offset": [et, Q] }], "outline-w": [{ outline: [et, st] }], "outline-color": [{ outline: [e] }], "ring-w": [{ ring: f() }], "ring-w-inset": ["ring-inset"], "ring-color": [{ ring: [e] }], "ring-opacity": [{ "ring-opacity": [N] }], "ring-offset-w": [{ "ring-offset": [et, st] }], "ring-offset-color": [{ "ring-offset": [e] }], shadow: [{ shadow: ["", "inner", "none", at, ta] }], "shadow-color": [{ shadow: [Pt] }], opacity: [{ opacity: [N] }], "mix-blend": [{ "mix-blend": [...D(), "plus-lighter", "plus-darker"] }], "bg-blend": [{ "bg-blend": D() }], filter: [{ filter: ["", "none"] }], blur: [{ blur: [n] }], brightness: [{ brightness: [o] }], contrast: [{ contrast: [c] }], "drop-shadow": [{ "drop-shadow": ["", "none", at, Q] }], grayscale: [{ grayscale: [p] }], "hue-rotate": [{ "hue-rotate": [u] }], invert: [{ invert: [d] }], saturate: [{ saturate: [v] }], sepia: [{ sepia: [J] }], "backdrop-filter": [{ "backdrop-filter": ["", "none"] }], "backdrop-blur": [{ "backdrop-blur": [n] }], "backdrop-brightness": [{ "backdrop-brightness": [o] }], "backdrop-contrast": [{ "backdrop-contrast": [c] }], "backdrop-grayscale": [{ "backdrop-grayscale": [p] }], "backdrop-hue-rotate": [{ "backdrop-hue-rotate": [u] }], "backdrop-invert": [{ "backdrop-invert": [d] }], "backdrop-opacity": [{ "backdrop-opacity": [N] }], "backdrop-saturate": [{ "backdrop-saturate": [v] }], "backdrop-sepia": [{ "backdrop-sepia": [J] }], "border-collapse": [{ border: ["collapse", "separate"] }], "border-spacing": [{ "border-spacing": [a] }], "border-spacing-x": [{ "border-spacing-x": [a] }], "border-spacing-y": [{ "border-spacing-y": [a] }], "table-layout": [{ table: ["auto", "fixed"] }], caption: [{ caption: ["top", "bottom"] }], transition: [{ transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", Q] }], duration: [{ duration: P() }], ease: [{ ease: ["linear", "in", "out", "in-out", Q] }], delay: [{ delay: P() }], animate: [{ animate: ["none", "spin", "ping", "pulse", "bounce", Q] }], transform: [{ transform: ["", "gpu", "none"] }], scale: [{ scale: [q] }], "scale-x": [{ "scale-x": [q] }], "scale-y": [{ "scale-y": [q] }], rotate: [{ rotate: [Lt, Q] }], "translate-x": [{ "translate-x": [be] }], "translate-y": [{ "translate-y": [be] }], "skew-x": [{ "skew-x": [Z] }], "skew-y": [{ "skew-y": [Z] }], "transform-origin": [{ origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", Q] }], accent: [{ accent: ["auto", e] }], appearance: [{ appearance: ["none", "auto"] }], cursor: [{ cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", Q] }], "caret-color": [{ caret: [e] }], "pointer-events": [{ "pointer-events": ["none", "auto"] }], resize: [{ resize: ["none", "y", "x", ""] }], "scroll-behavior": [{ scroll: ["auto", "smooth"] }], "scroll-m": [{ "scroll-m": w() }], "scroll-mx": [{ "scroll-mx": w() }], "scroll-my": [{ "scroll-my": w() }], "scroll-ms": [{ "scroll-ms": w() }], "scroll-me": [{ "scroll-me": w() }], "scroll-mt": [{ "scroll-mt": w() }], "scroll-mr": [{ "scroll-mr": w() }], "scroll-mb": [{ "scroll-mb": w() }], "scroll-ml": [{ "scroll-ml": w() }], "scroll-p": [{ "scroll-p": w() }], "scroll-px": [{ "scroll-px": w() }], "scroll-py": [{ "scroll-py": w() }], "scroll-ps": [{ "scroll-ps": w() }], "scroll-pe": [{ "scroll-pe": w() }], "scroll-pt": [{ "scroll-pt": w() }], "scroll-pr": [{ "scroll-pr": w() }], "scroll-pb": [{ "scroll-pb": w() }], "scroll-pl": [{ "scroll-pl": w() }], "snap-align": [{ snap: ["start", "end", "center", "align-none"] }], "snap-stop": [{ snap: ["normal", "always"] }], "snap-type": [{ snap: ["none", "x", "y", "both"] }], "snap-strictness": [{ snap: ["mandatory", "proximity"] }], touch: [{ touch: ["auto", "none", "manipulation"] }], "touch-x": [{ "touch-pan": ["x", "left", "right"] }], "touch-y": [{ "touch-pan": ["y", "up", "down"] }], "touch-pz": ["touch-pinch-zoom"], select: [{ select: ["none", "text", "all", "auto"] }], "will-change": [{ "will-change": ["auto", "scroll", "contents", "transform", Q] }], fill: [{ fill: [e, "none"] }], "stroke-w": [{ stroke: [et, st, $n] }], stroke: [{ stroke: [e, "none"] }], sr: ["sr-only", "not-sr-only"], "forced-color-adjust": [{ "forced-color-adjust": ["auto", "none"] }] }, conflictingClassGroups: { overflow: ["overflow-x", "overflow-y"], overscroll: ["overscroll-x", "overscroll-y"], inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"], "inset-x": ["right", "left"], "inset-y": ["top", "bottom"], flex: ["basis", "grow", "shrink"], gap: ["gap-x", "gap-y"], p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"], px: ["pr", "pl"], py: ["pt", "pb"], m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"], mx: ["mr", "ml"], my: ["mt", "mb"], size: ["w", "h"], "font-size": ["leading"], "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"], "fvn-ordinal": ["fvn-normal"], "fvn-slashed-zero": ["fvn-normal"], "fvn-figure": ["fvn-normal"], "fvn-spacing": ["fvn-normal"], "fvn-fraction": ["fvn-normal"], "line-clamp": ["display", "overflow"], rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"], "rounded-s": ["rounded-ss", "rounded-es"], "rounded-e": ["rounded-se", "rounded-ee"], "rounded-t": ["rounded-tl", "rounded-tr"], "rounded-r": ["rounded-tr", "rounded-br"], "rounded-b": ["rounded-br", "rounded-bl"], "rounded-l": ["rounded-tl", "rounded-bl"], "border-spacing": ["border-spacing-x", "border-spacing-y"], "border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"], "border-w-x": ["border-w-r", "border-w-l"], "border-w-y": ["border-w-t", "border-w-b"], "border-color": ["border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"], "border-color-x": ["border-color-r", "border-color-l"], "border-color-y": ["border-color-t", "border-color-b"], "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"], "scroll-mx": ["scroll-mr", "scroll-ml"], "scroll-my": ["scroll-mt", "scroll-mb"], "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"], "scroll-px": ["scroll-pr", "scroll-pl"], "scroll-py": ["scroll-pt", "scroll-pb"], touch: ["touch-x", "touch-y", "touch-pz"], "touch-x": ["touch"], "touch-y": ["touch"], "touch-pz": ["touch"] }, conflictingClassGroupModifiers: { "font-size": ["leading"] } };
3596
3596
  };
3597
3597
  Hs(ia);
3598
3598
  W("<div style=overflow:visible>");
@@ -3633,7 +3633,7 @@ W('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 18 18"fill=currentColor><p
3633
3633
  W('<svg xmlns=http://www.w3.org/2000/svg viewBox="0 0 24 24"fill=none stroke=currentColor stroke-width=2.5 stroke-linecap=round stroke-linejoin=round><path d="m18 15-6-6-6 6">');
3634
3634
  W('<div data-react-grab-ignore-events style=z-index:2147483647><div><div><button data-react-grab-ignore-events class="contain-layout shrink-0 flex items-center justify-center cursor-pointer transition-all hover:scale-105"></button></div><button data-react-grab-ignore-events class="contain-layout shrink-0 flex items-center justify-center cursor-pointer transition-all hover:scale-105">');
3635
3635
  Pe(["pointerdown", "pointermove", "pointerup", "click"]);
3636
- var Ur = "0.5.27";
3636
+ var Ur = "0.5.28";
3637
3637
  var dn = `bippy-${Ur}`;
3638
3638
  var Br = Object.defineProperty;
3639
3639
  var Ga = Object.prototype.hasOwnProperty;
@@ -3838,8 +3838,8 @@ var ti = (e, t) => {
3838
3838
  };
3839
3839
  var ni = (e) => {
3840
3840
  if (!e.includes(":")) return [e, void 0, void 0];
3841
- let t = /(.+?)(?::(\d+))?(?::(\d+))?$/, n = e.startsWith("(") && e.endsWith(")") ? e.slice(1, -1) : e, o = t.exec(n);
3842
- return [o[1], o[2] || void 0, o[3] || void 0];
3841
+ let t = e.startsWith("(") && /:\d+\)$/.test(e), n = t ? e.slice(1, -1) : e, o = /(.+?)(?::(\d+))?(?::(\d+))?$/, i = o.exec(n);
3842
+ return i ? [i[1], i[2] || void 0, i[3] || void 0] : [n, void 0, void 0];
3843
3843
  };
3844
3844
  var uo = (e, t) => t && t.slice != null ? Array.isArray(t.slice) ? e.slice(t.slice[0], t.slice[1]) : e.slice(0, t.slice) : e;
3845
3845
  var Xr = (e, t) => uo(e.split(`
@@ -3875,8 +3875,8 @@ var fl = nl((e, t) => {
3875
3875
  let D = C.next();
3876
3876
  x = l[D], f |= (x & 31) << h, h += 5;
3877
3877
  } while (x & 32);
3878
- let M = f & 1;
3879
- return f >>>= 1, M && (f = -2147483648 | -f), w + f;
3878
+ let R = f & 1;
3879
+ return f >>>= 1, R && (f = -2147483648 | -f), w + f;
3880
3880
  }
3881
3881
  function p(C, w, f) {
3882
3882
  let h = w - f;
@@ -3926,17 +3926,17 @@ var fl = nl((e, t) => {
3926
3926
  }
3927
3927
  }
3928
3928
  let S = [];
3929
- function R(C) {
3930
- let { length: w } = C, f = new g(C), h = [], x = [], M = 0;
3929
+ function M(C) {
3930
+ let { length: w } = C, f = new g(C), h = [], x = [], R = 0;
3931
3931
  for (; f.pos < w; f.pos++) {
3932
- M = c(f, M);
3932
+ R = c(f, R);
3933
3933
  let D = c(f, 0);
3934
3934
  if (!u(f, w)) {
3935
3935
  let Y = x.pop();
3936
- Y[2] = M, Y[3] = D;
3936
+ Y[2] = R, Y[3] = D;
3937
3937
  continue;
3938
3938
  }
3939
- let I = c(f, 0), b = c(f, 0), $ = b & 1, P = $ ? [M, D, 0, 0, I, c(f, 0)] : [M, D, 0, 0, I], B = S;
3939
+ let I = c(f, 0), b = c(f, 0), $ = b & 1, P = $ ? [R, D, 0, 0, I, c(f, 0)] : [R, D, 0, 0, I], B = S;
3940
3940
  if (u(f, w)) {
3941
3941
  B = [];
3942
3942
  do {
@@ -3954,8 +3954,8 @@ var fl = nl((e, t) => {
3954
3954
  return w.flush();
3955
3955
  }
3956
3956
  function _(C, w, f, h) {
3957
- let x = C[w], { 0: M, 1: D, 2: I, 3: b, 4: $, vars: P } = x;
3958
- w > 0 && f.write(o), h[0] = p(f, M, h[0]), p(f, D, 0), p(f, $, 0);
3957
+ let x = C[w], { 0: R, 1: D, 2: I, 3: b, 4: $, vars: P } = x;
3958
+ w > 0 && f.write(o), h[0] = p(f, R, h[0]), p(f, D, 0), p(f, $, 0);
3959
3959
  let B = x.length === 6 ? 1 : 0;
3960
3960
  p(f, B, 0), x.length === 6 && p(f, x[5], 0);
3961
3961
  for (let Y of P) p(f, Y, 0);
@@ -3967,20 +3967,20 @@ var fl = nl((e, t) => {
3967
3967
  return f.write(o), h[0] = p(f, I, h[0]), p(f, b, 0), w;
3968
3968
  }
3969
3969
  function v(C) {
3970
- let { length: w } = C, f = new g(C), h = [], x = [], M = 0, D = 0, I = 0, b = 0, $ = 0, P = 0, B = 0, Y = 0;
3970
+ let { length: w } = C, f = new g(C), h = [], x = [], R = 0, D = 0, I = 0, b = 0, $ = 0, P = 0, B = 0, Y = 0;
3971
3971
  do {
3972
3972
  let H = f.indexOf(";"), V = 0;
3973
3973
  for (; f.pos < H; f.pos++) {
3974
3974
  if (V = c(f, V), !u(f, H)) {
3975
3975
  let te = x.pop();
3976
- te[2] = M, te[3] = V;
3976
+ te[2] = R, te[3] = V;
3977
3977
  continue;
3978
3978
  }
3979
3979
  let oe = c(f, 0), A = oe & 1, F = oe & 2, U = oe & 4, z = null, ce = S, Ee;
3980
3980
  if (A) {
3981
3981
  let te = c(f, D);
3982
- I = c(f, D === te ? I : 0), D = te, Ee = [M, V, 0, 0, te, I];
3983
- } else Ee = [M, V, 0, 0];
3982
+ I = c(f, D === te ? I : 0), D = te, Ee = [R, V, 0, 0, te, I];
3983
+ } else Ee = [R, V, 0, 0];
3984
3984
  if (Ee.isScope = !!U, F) {
3985
3985
  let te = b, de = $;
3986
3986
  b = c(f, b);
@@ -3990,13 +3990,13 @@ var fl = nl((e, t) => {
3990
3990
  if (Ee.callsite = z, u(f, H)) {
3991
3991
  ce = [];
3992
3992
  do {
3993
- B = M, Y = V;
3993
+ B = R, Y = V;
3994
3994
  let te = c(f, 0), de;
3995
3995
  if (te < -1) {
3996
3996
  de = [[c(f, 0)]];
3997
3997
  for (let Se = -1; Se > te; Se--) {
3998
- let Re = B;
3999
- B = c(f, B), Y = c(f, B === Re ? Y : 0);
3998
+ let Me = B;
3999
+ B = c(f, B), Y = c(f, B === Me ? Y : 0);
4000
4000
  let Oe = c(f, 0);
4001
4001
  de.push([Oe, B, Y]);
4002
4002
  }
@@ -4006,7 +4006,7 @@ var fl = nl((e, t) => {
4006
4006
  }
4007
4007
  Ee.bindings = ce, h.push(Ee), x.push(Ee);
4008
4008
  }
4009
- M++, f.pos = H + 1;
4009
+ R++, f.pos = H + 1;
4010
4010
  } while (f.pos < w);
4011
4011
  return h;
4012
4012
  }
@@ -4017,8 +4017,8 @@ var fl = nl((e, t) => {
4017
4017
  return w.flush();
4018
4018
  }
4019
4019
  function J(C, w, f, h) {
4020
- let x = C[w], { 0: M, 1: D, 2: I, 3: b, isScope: $, callsite: P, bindings: B } = x;
4021
- h[0] < M ? (Z(f, h[0], M), h[0] = M, h[1] = 0) : w > 0 && f.write(o), h[1] = p(f, x[1], h[1]);
4020
+ let x = C[w], { 0: R, 1: D, 2: I, 3: b, isScope: $, callsite: P, bindings: B } = x;
4021
+ h[0] < R ? (Z(f, h[0], R), h[0] = R, h[1] = 0) : w > 0 && f.write(o), h[1] = p(f, x[1], h[1]);
4022
4022
  let Y = (x.length === 6 ? 1 : 0) | (P ? 2 : 0) | ($ ? 4 : 0);
4023
4023
  if (p(f, Y, 0), x.length === 6) {
4024
4024
  let { 4: H, 5: V } = x;
@@ -4032,7 +4032,7 @@ var fl = nl((e, t) => {
4032
4032
  H.length > 1 && p(f, -H.length, 0);
4033
4033
  let V = H[0][0];
4034
4034
  p(f, V, 0);
4035
- let oe = M, A = D;
4035
+ let oe = R, A = D;
4036
4036
  for (let F = 1; F < H.length; F++) {
4037
4037
  let U = H[F];
4038
4038
  oe = p(f, U[1], oe), A = p(f, U[2], A), p(f, U[0], 0);
@@ -4051,12 +4051,12 @@ var fl = nl((e, t) => {
4051
4051
  while (++w < f);
4052
4052
  }
4053
4053
  function he(C) {
4054
- let { length: w } = C, f = new g(C), h = [], x = 0, M = 0, D = 0, I = 0, b = 0;
4054
+ let { length: w } = C, f = new g(C), h = [], x = 0, R = 0, D = 0, I = 0, b = 0;
4055
4055
  do {
4056
4056
  let $ = f.indexOf(";"), P = [], B = true, Y = 0;
4057
4057
  for (x = 0; f.pos < $; ) {
4058
4058
  let H;
4059
- x = c(f, x), x < Y && (B = false), Y = x, u(f, $) ? (M = c(f, M), D = c(f, D), I = c(f, I), u(f, $) ? (b = c(f, b), H = [x, M, D, I, b]) : H = [x, M, D, I]) : H = [x], P.push(H), f.pos++;
4059
+ x = c(f, x), x < Y && (B = false), Y = x, u(f, $) ? (R = c(f, R), D = c(f, D), I = c(f, I), u(f, $) ? (b = c(f, b), H = [x, R, D, I, b]) : H = [x, R, D, I]) : H = [x], P.push(H), f.pos++;
4060
4060
  }
4061
4061
  B || be(P), h.push(P), f.pos = $ + 1;
4062
4062
  } while (f.pos <= w);
@@ -4069,19 +4069,19 @@ var fl = nl((e, t) => {
4069
4069
  return C[0] - w[0];
4070
4070
  }
4071
4071
  function ue(C) {
4072
- let w = new y(), f = 0, h = 0, x = 0, M = 0;
4072
+ let w = new y(), f = 0, h = 0, x = 0, R = 0;
4073
4073
  for (let D = 0; D < C.length; D++) {
4074
4074
  let I = C[D];
4075
4075
  if (D > 0 && w.write(i), I.length === 0) continue;
4076
4076
  let b = 0;
4077
4077
  for (let $ = 0; $ < I.length; $++) {
4078
4078
  let P = I[$];
4079
- $ > 0 && w.write(o), b = p(w, P[0], b), P.length !== 1 && (f = p(w, P[1], f), h = p(w, P[2], h), x = p(w, P[3], x), P.length !== 4 && (M = p(w, P[4], M)));
4079
+ $ > 0 && w.write(o), b = p(w, P[0], b), P.length !== 1 && (f = p(w, P[1], f), h = p(w, P[2], h), x = p(w, P[3], x), P.length !== 4 && (R = p(w, P[4], R)));
4080
4080
  }
4081
4081
  }
4082
4082
  return w.flush();
4083
4083
  }
4084
- n.decode = he, n.decodeGeneratedRanges = v, n.decodeOriginalScopes = R, n.encode = ue, n.encodeGeneratedRanges = q, n.encodeOriginalScopes = N, Object.defineProperty(n, "__esModule", { value: true });
4084
+ n.decode = he, n.decodeGeneratedRanges = v, n.decodeOriginalScopes = M, n.encode = ue, n.encodeGeneratedRanges = q, n.encodeOriginalScopes = N, Object.defineProperty(n, "__esModule", { value: true });
4085
4085
  });
4086
4086
  });
4087
4087
  var oi = rl(fl());
@@ -4150,7 +4150,9 @@ var El = async (e, t = fetch) => {
4150
4150
  if (!qr(e)) return null;
4151
4151
  let n;
4152
4152
  try {
4153
- n = await (await t(e)).text();
4153
+ let i = await t(e);
4154
+ if (!i.ok) return null;
4155
+ n = await i.text();
4154
4156
  } catch {
4155
4157
  return null;
4156
4158
  }
@@ -4158,7 +4160,9 @@ var El = async (e, t = fetch) => {
4158
4160
  let o = bl(e, n);
4159
4161
  if (!o || !qr(o)) return null;
4160
4162
  try {
4161
- let i = await t(o), r = await i.json();
4163
+ let i = await t(o);
4164
+ if (!i.ok) return null;
4165
+ let r = await i.json();
4162
4166
  return "sections" in r ? wl(r) : yl(r);
4163
4167
  } catch {
4164
4168
  return null;
@@ -4271,9 +4275,9 @@ var co = (e, t) => {
4271
4275
  for (; g >= 1 && S >= 0; g--, S--) if (T[g] !== y[S]) {
4272
4276
  if (g !== 1 || S !== 1) do
4273
4277
  if (g--, S--, S < 0 || T[g] !== y[S]) {
4274
- let R = `
4278
+ let M = `
4275
4279
  ${T[g].replace(" at new ", " at ")}`, N = Ut(e);
4276
- return N && R.includes("<anonymous>") && (R = R.replace("<anonymous>", N)), R;
4280
+ return N && M.includes("<anonymous>") && (M = M.replace("<anonymous>", N)), M;
4277
4281
  }
4278
4282
  while (g >= 1 && S >= 0);
4279
4283
  break;
@@ -4358,7 +4362,7 @@ var Il = (e) => {
4358
4362
  };
4359
4363
  var kl = (e) => !!(e.fileName?.startsWith("rsc://") && e.functionName);
4360
4364
  var Nl = (e, t) => e.fileName === t.fileName && e.lineNumber === t.lineNumber && e.columnNumber === t.columnNumber;
4361
- var Ml = (e) => {
4365
+ var Rl = (e) => {
4362
4366
  let t = /* @__PURE__ */ new Map();
4363
4367
  for (let n of e) for (let o of n.stackFrames) {
4364
4368
  if (!kl(o)) continue;
@@ -4367,7 +4371,7 @@ var Ml = (e) => {
4367
4371
  }
4368
4372
  return t;
4369
4373
  };
4370
- var Rl = (e, t, n) => {
4374
+ var Ml = (e, t, n) => {
4371
4375
  if (!e.functionName) return { ...e, isServer: true };
4372
4376
  let o = t.get(e.functionName);
4373
4377
  if (!o || o.length === 0) return { ...e, isServer: true };
@@ -4383,7 +4387,7 @@ var Ol = (e) => {
4383
4387
  }, true), t;
4384
4388
  };
4385
4389
  var si = async (e, t = true, n) => {
4386
- let o = Ol(e), i = ti(Al(e)), r = Ml(o), a = /* @__PURE__ */ new Map(), l = i.map((p) => p.source?.includes(Qr) ?? false ? Rl(p, r, a) : p), c = l.filter((p, u, d) => {
4390
+ let o = Ol(e), i = ti(Al(e)), r = Rl(o), a = /* @__PURE__ */ new Map(), l = i.map((p) => p.source?.includes(Qr) ?? false ? Ml(p, r, a) : p), c = l.filter((p, u, d) => {
4387
4391
  if (u === 0) return true;
4388
4392
  let T = d[u - 1];
4389
4393
  return p.functionName !== T.functionName;
@@ -4434,20 +4438,17 @@ var Ll = /* @__PURE__ */ new Set(["InnerLayoutRouter", "RedirectErrorBoundary",
4434
4438
  var Pl = () => typeof document > "u" ? false : !!(document.getElementById("__NEXT_DATA__") || document.querySelector("nextjs-portal"));
4435
4439
  var Dl = (e) => !!(e.startsWith("_") || Ll.has(e));
4436
4440
  var fo = (e) => !(e.length <= 1 || Dl(e) || !ai(e) || e.startsWith("Primitive.") || e.includes("Provider") && e.includes("Context"));
4437
- var $l = 100;
4438
4441
  var Vt = async (e) => {
4439
4442
  if (!Ht()) return [];
4440
4443
  try {
4441
4444
  let t = ao(e);
4442
- if (!t) return null;
4443
- let n = new Promise((o) => setTimeout(() => o(null), $l));
4444
- return await Promise.race([si(t), n]);
4445
+ return t ? await si(t) : null;
4445
4446
  } catch {
4446
4447
  return null;
4447
4448
  }
4448
4449
  };
4449
4450
  var po = async (e, t = {}) => {
4450
- let { maxLines: n = 3 } = t, o = Bl(e), i = await Vt(e), r = Pl(), a = [];
4451
+ let { maxLines: n = 3 } = t, o = $l(e), i = await Vt(e), r = Pl(), a = [];
4451
4452
  if (i) for (let l of i) {
4452
4453
  if (a.length >= n) break;
4453
4454
  if (l.isServer && (!l.functionName || fo(l.functionName))) {
@@ -4463,7 +4464,7 @@ var po = async (e, t = {}) => {
4463
4464
  }
4464
4465
  return `${o}${a.join("")}`;
4465
4466
  };
4466
- var Bl = (e) => {
4467
+ var $l = (e) => {
4467
4468
  let t = e.tagName.toLowerCase();
4468
4469
  if (!(e instanceof HTMLElement)) return `<${t} />`;
4469
4470
  let n = e.innerText?.trim() ?? e.textContent?.trim() ?? "", o = "", i = Array.from(e.attributes);
@@ -4486,10 +4487,10 @@ var Bl = (e) => {
4486
4487
  ${T}`), u.length > 0 ? `<${t}${o}>${u}
4487
4488
  </${t}>` : `<${t}${o} />`;
4488
4489
  };
4489
- var Fl = "application/x-react-grab";
4490
+ var Bl = "application/x-react-grab";
4490
4491
  var Tt = (e, t) => {
4491
4492
  let n = JSON.stringify({ version: Qo, content: e, timestamp: Date.now(), ...t?.prompt }), o = (r) => {
4492
- r.preventDefault(), r.clipboardData?.setData("text/plain", e), r.clipboardData?.setData(Fl, n);
4493
+ r.preventDefault(), r.clipboardData?.setData("text/plain", e), r.clipboardData?.setData(Bl, n);
4493
4494
  };
4494
4495
  document.addEventListener("copy", o);
4495
4496
  let i = document.createElement("textarea");
@@ -7225,7 +7226,7 @@ attachAgent();
7225
7226
  */
7226
7227
  /*! Bundled license information:
7227
7228
 
7228
- bippy/dist/rdt-hook-BZMdLD7S.js:
7229
+ bippy/dist/rdt-hook-5L_ky0r0.js:
7229
7230
  (**
7230
7231
  * @license bippy
7231
7232
  *
@@ -7235,7 +7236,7 @@ bippy/dist/rdt-hook-BZMdLD7S.js:
7235
7236
  * LICENSE file in the root directory of this source tree.
7236
7237
  *)
7237
7238
 
7238
- bippy/dist/core-coQbWNwP.js:
7239
+ bippy/dist/core-U1d648PH.js:
7239
7240
  (**
7240
7241
  * @license bippy
7241
7242
  *
@@ -7255,7 +7256,7 @@ bippy/dist/source.js:
7255
7256
  * LICENSE file in the root directory of this source tree.
7256
7257
  *)
7257
7258
 
7258
- bippy/dist/install-hook-only-BOBPiBkc.js:
7259
+ bippy/dist/install-hook-only-CgvoC7AQ.js:
7259
7260
  (**
7260
7261
  * @license bippy
7261
7262
  *