made-refine 0.2.21 → 0.3.0

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.
@@ -19,6 +19,7 @@ var DirectEditPreload = (() => {
19
19
  var fiberRoots = /* @__PURE__ */ new Map();
20
20
  var elementToFiber = /* @__PURE__ */ new WeakMap();
21
21
  var indexDirty = true;
22
+ var DEVTOOLS_HOOK_VERSION = 1;
22
23
  function ensureRootSet(rendererId) {
23
24
  let set = fiberRoots.get(rendererId);
24
25
  if (!set) {
@@ -120,7 +121,8 @@ var DirectEditPreload = (() => {
120
121
  }
121
122
  globalWindow.__DIRECT_EDIT_DEVTOOLS__ = {
122
123
  getFiberForElement,
123
- hasHook: true
124
+ hasHook: true,
125
+ version: DEVTOOLS_HOOK_VERSION
124
126
  };
125
127
  }
126
128
  installHook();
package/dist/preload.js CHANGED
@@ -19,6 +19,7 @@ module.exports = __toCommonJS(preload_exports);
19
19
  var fiberRoots = /* @__PURE__ */ new Map();
20
20
  var elementToFiber = /* @__PURE__ */ new WeakMap();
21
21
  var indexDirty = true;
22
+ var DEVTOOLS_HOOK_VERSION = 1;
22
23
  function ensureRootSet(rendererId) {
23
24
  let set = fiberRoots.get(rendererId);
24
25
  if (!set) {
@@ -120,7 +121,8 @@ function installHook() {
120
121
  }
121
122
  globalWindow.__DIRECT_EDIT_DEVTOOLS__ = {
122
123
  getFiberForElement,
123
- hasHook: true
124
+ hasHook: true,
125
+ version: DEVTOOLS_HOOK_VERSION
124
126
  };
125
127
  }
126
128
  installHook();
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/preload.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\n\ntype Fiber = {\n child?: Fiber | null\n sibling?: Fiber | null\n stateNode?: unknown\n return?: Fiber | null\n _debugOwner?: Fiber | null\n _debugSource?: {\n fileName?: string\n lineNumber?: number\n columnNumber?: number\n }\n pendingProps?: { __source?: unknown }\n memoizedProps?: { __source?: unknown }\n}\n\ntype FiberRoot = {\n current?: Fiber | null\n}\n\ntype DevToolsHook = {\n supportsFiber?: boolean\n inject?: (renderer: unknown) => number\n onCommitFiberRoot?: (rendererId: number, root: FiberRoot, ...args: unknown[]) => void\n onCommitFiberUnmount?: (rendererId: number, fiber: Fiber, ...args: unknown[]) => void\n getFiberRoots?: (rendererId: number) => Set<FiberRoot>\n}\n\nconst fiberRoots = new Map<number, Set<FiberRoot>>()\nlet elementToFiber = new WeakMap<HTMLElement, Fiber>()\nlet indexDirty = true\n\nfunction ensureRootSet(rendererId: number): Set<FiberRoot> {\n let set = fiberRoots.get(rendererId)\n if (!set) {\n set = new Set<FiberRoot>()\n fiberRoots.set(rendererId, set)\n }\n return set\n}\n\nfunction rebuildIndex() {\n elementToFiber = new WeakMap<HTMLElement, Fiber>()\n for (const roots of fiberRoots.values()) {\n for (const root of roots) {\n const current = root?.current\n if (!current) continue\n indexFiberTree(current)\n }\n }\n}\n\nfunction indexFiberTree(root: Fiber) {\n const stack: Fiber[] = [root]\n while (stack.length > 0) {\n const node = stack.pop()\n if (!node) continue\n\n const stateNode = node.stateNode as { nodeType?: number } | undefined\n if (stateNode && stateNode.nodeType === 1) {\n elementToFiber.set(stateNode as HTMLElement, node)\n }\n\n if (node.child) stack.push(node.child)\n if (node.sibling) stack.push(node.sibling)\n }\n}\n\nfunction getFiberForElement(element: HTMLElement): Fiber | null {\n if (indexDirty) {\n rebuildIndex()\n indexDirty = false\n }\n return elementToFiber.get(element) ?? null\n}\n\nfunction createHook(): DevToolsHook {\n let rendererId = 0\n\n const hook: DevToolsHook = {\n supportsFiber: true,\n inject(renderer) {\n rendererId += 1\n const id = rendererId\n void renderer\n ensureRootSet(id)\n return id\n },\n onCommitFiberRoot(id, root) {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n },\n onCommitFiberUnmount() {\n // Rebuild on next commit; unmount does not include the root reference.\n },\n getFiberRoots(id) {\n return ensureRootSet(id)\n },\n }\n\n return hook\n}\n\nfunction wrapHook(existing: DevToolsHook) {\n const originalInject = existing.inject?.bind(existing)\n const originalCommit = existing.onCommitFiberRoot?.bind(existing)\n const originalUnmount = existing.onCommitFiberUnmount?.bind(existing)\n\n existing.supportsFiber = true\n\n existing.inject = (renderer) => {\n const id = originalInject ? originalInject(renderer) : 1\n ensureRootSet(id)\n return id\n }\n\n existing.onCommitFiberRoot = (id, root, ...args) => {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n if (originalCommit) {\n originalCommit(id, root, ...args)\n }\n }\n\n existing.onCommitFiberUnmount = (id, fiber, ...args) => {\n if (originalUnmount) {\n originalUnmount(id, fiber, ...args)\n }\n }\n\n if (!existing.getFiberRoots) {\n existing.getFiberRoots = (id) => ensureRootSet(id)\n }\n}\n\nfunction installHook() {\n if (typeof window === 'undefined') return\n const globalWindow = window as Window & {\n __REACT_DEVTOOLS_GLOBAL_HOOK__?: DevToolsHook\n __DIRECT_EDIT_DEVTOOLS__?: { getFiberForElement: (element: HTMLElement) => Fiber | null; hasHook: boolean }\n }\n\n if (globalWindow.__DIRECT_EDIT_DEVTOOLS__?.hasHook) return\n\n const existing = globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__\n if (existing) {\n wrapHook(existing)\n } else {\n globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__ = createHook()\n }\n\n globalWindow.__DIRECT_EDIT_DEVTOOLS__ = {\n getFiberForElement,\n hasHook: true,\n }\n}\n\ninstallHook()\n\nexport {}\n"],"mappings":"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","names":[]}
1
+ {"version":3,"sources":["../src/preload.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\n\ntype Fiber = {\n child?: Fiber | null\n sibling?: Fiber | null\n stateNode?: unknown\n return?: Fiber | null\n _debugOwner?: Fiber | null\n _debugSource?: {\n fileName?: string\n lineNumber?: number\n columnNumber?: number\n }\n pendingProps?: { __source?: unknown }\n memoizedProps?: { __source?: unknown }\n}\n\ntype FiberRoot = {\n current?: Fiber | null\n}\n\ntype DevToolsHook = {\n supportsFiber?: boolean\n inject?: (renderer: unknown) => number\n onCommitFiberRoot?: (rendererId: number, root: FiberRoot, ...args: unknown[]) => void\n onCommitFiberUnmount?: (rendererId: number, fiber: Fiber, ...args: unknown[]) => void\n getFiberRoots?: (rendererId: number) => Set<FiberRoot>\n}\n\nconst fiberRoots = new Map<number, Set<FiberRoot>>()\nlet elementToFiber = new WeakMap<HTMLElement, Fiber>()\nlet indexDirty = true\n// Bump when the __DIRECT_EDIT_DEVTOOLS__ bridge shape changes incompatibly.\nconst DEVTOOLS_HOOK_VERSION = 1\n\nfunction ensureRootSet(rendererId: number): Set<FiberRoot> {\n let set = fiberRoots.get(rendererId)\n if (!set) {\n set = new Set<FiberRoot>()\n fiberRoots.set(rendererId, set)\n }\n return set\n}\n\nfunction rebuildIndex() {\n elementToFiber = new WeakMap<HTMLElement, Fiber>()\n for (const roots of fiberRoots.values()) {\n for (const root of roots) {\n const current = root?.current\n if (!current) continue\n indexFiberTree(current)\n }\n }\n}\n\nfunction indexFiberTree(root: Fiber) {\n const stack: Fiber[] = [root]\n while (stack.length > 0) {\n const node = stack.pop()\n if (!node) continue\n\n const stateNode = node.stateNode as { nodeType?: number } | undefined\n if (stateNode && stateNode.nodeType === 1) {\n elementToFiber.set(stateNode as HTMLElement, node)\n }\n\n if (node.child) stack.push(node.child)\n if (node.sibling) stack.push(node.sibling)\n }\n}\n\nfunction getFiberForElement(element: HTMLElement): Fiber | null {\n if (indexDirty) {\n rebuildIndex()\n indexDirty = false\n }\n return elementToFiber.get(element) ?? null\n}\n\nfunction createHook(): DevToolsHook {\n let rendererId = 0\n\n const hook: DevToolsHook = {\n supportsFiber: true,\n inject(renderer) {\n rendererId += 1\n const id = rendererId\n void renderer\n ensureRootSet(id)\n return id\n },\n onCommitFiberRoot(id, root) {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n },\n onCommitFiberUnmount() {\n // Rebuild on next commit; unmount does not include the root reference.\n },\n getFiberRoots(id) {\n return ensureRootSet(id)\n },\n }\n\n return hook\n}\n\nfunction wrapHook(existing: DevToolsHook) {\n const originalInject = existing.inject?.bind(existing)\n const originalCommit = existing.onCommitFiberRoot?.bind(existing)\n const originalUnmount = existing.onCommitFiberUnmount?.bind(existing)\n\n existing.supportsFiber = true\n\n existing.inject = (renderer) => {\n const id = originalInject ? originalInject(renderer) : 1\n ensureRootSet(id)\n return id\n }\n\n existing.onCommitFiberRoot = (id, root, ...args) => {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n if (originalCommit) {\n originalCommit(id, root, ...args)\n }\n }\n\n existing.onCommitFiberUnmount = (id, fiber, ...args) => {\n if (originalUnmount) {\n originalUnmount(id, fiber, ...args)\n }\n }\n\n if (!existing.getFiberRoots) {\n existing.getFiberRoots = (id) => ensureRootSet(id)\n }\n}\n\nfunction installHook() {\n if (typeof window === 'undefined') return\n const globalWindow = window as Window & {\n __REACT_DEVTOOLS_GLOBAL_HOOK__?: DevToolsHook\n __DIRECT_EDIT_DEVTOOLS__?: {\n getFiberForElement: (element: HTMLElement) => Fiber | null\n hasHook: boolean\n version?: number\n }\n }\n\n if (globalWindow.__DIRECT_EDIT_DEVTOOLS__?.hasHook) return\n\n const existing = globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__\n if (existing) {\n wrapHook(existing)\n } else {\n globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__ = createHook()\n }\n\n globalWindow.__DIRECT_EDIT_DEVTOOLS__ = {\n getFiberForElement,\n hasHook: true,\n version: DEVTOOLS_HOOK_VERSION,\n }\n}\n\ninstallHook()\n\nexport {}\n"],"mappings":"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","names":[]}
package/dist/preload.mjs CHANGED
@@ -2,6 +2,7 @@
2
2
  var fiberRoots = /* @__PURE__ */ new Map();
3
3
  var elementToFiber = /* @__PURE__ */ new WeakMap();
4
4
  var indexDirty = true;
5
+ var DEVTOOLS_HOOK_VERSION = 1;
5
6
  function ensureRootSet(rendererId) {
6
7
  let set = fiberRoots.get(rendererId);
7
8
  if (!set) {
@@ -103,7 +104,8 @@ function installHook() {
103
104
  }
104
105
  globalWindow.__DIRECT_EDIT_DEVTOOLS__ = {
105
106
  getFiberForElement,
106
- hasHook: true
107
+ hasHook: true,
108
+ version: DEVTOOLS_HOOK_VERSION
107
109
  };
108
110
  }
109
111
  installHook();
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/preload.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\n\ntype Fiber = {\n child?: Fiber | null\n sibling?: Fiber | null\n stateNode?: unknown\n return?: Fiber | null\n _debugOwner?: Fiber | null\n _debugSource?: {\n fileName?: string\n lineNumber?: number\n columnNumber?: number\n }\n pendingProps?: { __source?: unknown }\n memoizedProps?: { __source?: unknown }\n}\n\ntype FiberRoot = {\n current?: Fiber | null\n}\n\ntype DevToolsHook = {\n supportsFiber?: boolean\n inject?: (renderer: unknown) => number\n onCommitFiberRoot?: (rendererId: number, root: FiberRoot, ...args: unknown[]) => void\n onCommitFiberUnmount?: (rendererId: number, fiber: Fiber, ...args: unknown[]) => void\n getFiberRoots?: (rendererId: number) => Set<FiberRoot>\n}\n\nconst fiberRoots = new Map<number, Set<FiberRoot>>()\nlet elementToFiber = new WeakMap<HTMLElement, Fiber>()\nlet indexDirty = true\n\nfunction ensureRootSet(rendererId: number): Set<FiberRoot> {\n let set = fiberRoots.get(rendererId)\n if (!set) {\n set = new Set<FiberRoot>()\n fiberRoots.set(rendererId, set)\n }\n return set\n}\n\nfunction rebuildIndex() {\n elementToFiber = new WeakMap<HTMLElement, Fiber>()\n for (const roots of fiberRoots.values()) {\n for (const root of roots) {\n const current = root?.current\n if (!current) continue\n indexFiberTree(current)\n }\n }\n}\n\nfunction indexFiberTree(root: Fiber) {\n const stack: Fiber[] = [root]\n while (stack.length > 0) {\n const node = stack.pop()\n if (!node) continue\n\n const stateNode = node.stateNode as { nodeType?: number } | undefined\n if (stateNode && stateNode.nodeType === 1) {\n elementToFiber.set(stateNode as HTMLElement, node)\n }\n\n if (node.child) stack.push(node.child)\n if (node.sibling) stack.push(node.sibling)\n }\n}\n\nfunction getFiberForElement(element: HTMLElement): Fiber | null {\n if (indexDirty) {\n rebuildIndex()\n indexDirty = false\n }\n return elementToFiber.get(element) ?? null\n}\n\nfunction createHook(): DevToolsHook {\n let rendererId = 0\n\n const hook: DevToolsHook = {\n supportsFiber: true,\n inject(renderer) {\n rendererId += 1\n const id = rendererId\n void renderer\n ensureRootSet(id)\n return id\n },\n onCommitFiberRoot(id, root) {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n },\n onCommitFiberUnmount() {\n // Rebuild on next commit; unmount does not include the root reference.\n },\n getFiberRoots(id) {\n return ensureRootSet(id)\n },\n }\n\n return hook\n}\n\nfunction wrapHook(existing: DevToolsHook) {\n const originalInject = existing.inject?.bind(existing)\n const originalCommit = existing.onCommitFiberRoot?.bind(existing)\n const originalUnmount = existing.onCommitFiberUnmount?.bind(existing)\n\n existing.supportsFiber = true\n\n existing.inject = (renderer) => {\n const id = originalInject ? originalInject(renderer) : 1\n ensureRootSet(id)\n return id\n }\n\n existing.onCommitFiberRoot = (id, root, ...args) => {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n if (originalCommit) {\n originalCommit(id, root, ...args)\n }\n }\n\n existing.onCommitFiberUnmount = (id, fiber, ...args) => {\n if (originalUnmount) {\n originalUnmount(id, fiber, ...args)\n }\n }\n\n if (!existing.getFiberRoots) {\n existing.getFiberRoots = (id) => ensureRootSet(id)\n }\n}\n\nfunction installHook() {\n if (typeof window === 'undefined') return\n const globalWindow = window as Window & {\n __REACT_DEVTOOLS_GLOBAL_HOOK__?: DevToolsHook\n __DIRECT_EDIT_DEVTOOLS__?: { getFiberForElement: (element: HTMLElement) => Fiber | null; hasHook: boolean }\n }\n\n if (globalWindow.__DIRECT_EDIT_DEVTOOLS__?.hasHook) return\n\n const existing = globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__\n if (existing) {\n wrapHook(existing)\n } else {\n globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__ = createHook()\n }\n\n globalWindow.__DIRECT_EDIT_DEVTOOLS__ = {\n getFiberForElement,\n hasHook: true,\n }\n}\n\ninstallHook()\n\nexport {}\n"],"mappings":";AA6BA,IAAM,aAAa,oBAAI,IAA4B;AACnD,IAAI,iBAAiB,oBAAI,QAA4B;AACrD,IAAI,aAAa;AAEjB,SAAS,cAAc,YAAoC;AACzD,MAAI,MAAM,WAAW,IAAI,UAAU;AACnC,MAAI,CAAC,KAAK;AACR,UAAM,oBAAI,IAAe;AACzB,eAAW,IAAI,YAAY,GAAG;AAAA,EAChC;AACA,SAAO;AACT;AAEA,SAAS,eAAe;AACtB,mBAAiB,oBAAI,QAA4B;AACjD,aAAW,SAAS,WAAW,OAAO,GAAG;AACvC,eAAW,QAAQ,OAAO;AACxB,YAAM,UAAU,MAAM;AACtB,UAAI,CAAC,QAAS;AACd,qBAAe,OAAO;AAAA,IACxB;AAAA,EACF;AACF;AAEA,SAAS,eAAe,MAAa;AACnC,QAAM,QAAiB,CAAC,IAAI;AAC5B,SAAO,MAAM,SAAS,GAAG;AACvB,UAAM,OAAO,MAAM,IAAI;AACvB,QAAI,CAAC,KAAM;AAEX,UAAM,YAAY,KAAK;AACvB,QAAI,aAAa,UAAU,aAAa,GAAG;AACzC,qBAAe,IAAI,WAA0B,IAAI;AAAA,IACnD;AAEA,QAAI,KAAK,MAAO,OAAM,KAAK,KAAK,KAAK;AACrC,QAAI,KAAK,QAAS,OAAM,KAAK,KAAK,OAAO;AAAA,EAC3C;AACF;AAEA,SAAS,mBAAmB,SAAoC;AAC9D,MAAI,YAAY;AACd,iBAAa;AACb,iBAAa;AAAA,EACf;AACA,SAAO,eAAe,IAAI,OAAO,KAAK;AACxC;AAEA,SAAS,aAA2B;AAClC,MAAI,aAAa;AAEjB,QAAM,OAAqB;AAAA,IACzB,eAAe;AAAA,IACf,OAAO,UAAU;AACf,oBAAc;AACd,YAAM,KAAK;AACX,WAAK;AACL,oBAAc,EAAE;AAChB,aAAO;AAAA,IACT;AAAA,IACA,kBAAkB,IAAI,MAAM;AAC1B,YAAM,QAAQ,cAAc,EAAE;AAC9B,YAAM,IAAI,IAAI;AACd,mBAAa;AAAA,IACf;AAAA,IACA,uBAAuB;AAAA,IAEvB;AAAA,IACA,cAAc,IAAI;AAChB,aAAO,cAAc,EAAE;AAAA,IACzB;AAAA,EACF;AAEA,SAAO;AACT;AAEA,SAAS,SAAS,UAAwB;AACxC,QAAM,iBAAiB,SAAS,QAAQ,KAAK,QAAQ;AACrD,QAAM,iBAAiB,SAAS,mBAAmB,KAAK,QAAQ;AAChE,QAAM,kBAAkB,SAAS,sBAAsB,KAAK,QAAQ;AAEpE,WAAS,gBAAgB;AAEzB,WAAS,SAAS,CAAC,aAAa;AAC9B,UAAM,KAAK,iBAAiB,eAAe,QAAQ,IAAI;AACvD,kBAAc,EAAE;AAChB,WAAO;AAAA,EACT;AAEA,WAAS,oBAAoB,CAAC,IAAI,SAAS,SAAS;AAClD,UAAM,QAAQ,cAAc,EAAE;AAC9B,UAAM,IAAI,IAAI;AACd,iBAAa;AACb,QAAI,gBAAgB;AAClB,qBAAe,IAAI,MAAM,GAAG,IAAI;AAAA,IAClC;AAAA,EACF;AAEA,WAAS,uBAAuB,CAAC,IAAI,UAAU,SAAS;AACtD,QAAI,iBAAiB;AACnB,sBAAgB,IAAI,OAAO,GAAG,IAAI;AAAA,IACpC;AAAA,EACF;AAEA,MAAI,CAAC,SAAS,eAAe;AAC3B,aAAS,gBAAgB,CAAC,OAAO,cAAc,EAAE;AAAA,EACnD;AACF;AAEA,SAAS,cAAc;AACrB,MAAI,OAAO,WAAW,YAAa;AACnC,QAAM,eAAe;AAKrB,MAAI,aAAa,0BAA0B,QAAS;AAEpD,QAAM,WAAW,aAAa;AAC9B,MAAI,UAAU;AACZ,aAAS,QAAQ;AAAA,EACnB,OAAO;AACL,iBAAa,iCAAiC,WAAW;AAAA,EAC3D;AAEA,eAAa,2BAA2B;AAAA,IACtC;AAAA,IACA,SAAS;AAAA,EACX;AACF;AAEA,YAAY;","names":[]}
1
+ {"version":3,"sources":["../src/preload.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-explicit-any */\n\ntype Fiber = {\n child?: Fiber | null\n sibling?: Fiber | null\n stateNode?: unknown\n return?: Fiber | null\n _debugOwner?: Fiber | null\n _debugSource?: {\n fileName?: string\n lineNumber?: number\n columnNumber?: number\n }\n pendingProps?: { __source?: unknown }\n memoizedProps?: { __source?: unknown }\n}\n\ntype FiberRoot = {\n current?: Fiber | null\n}\n\ntype DevToolsHook = {\n supportsFiber?: boolean\n inject?: (renderer: unknown) => number\n onCommitFiberRoot?: (rendererId: number, root: FiberRoot, ...args: unknown[]) => void\n onCommitFiberUnmount?: (rendererId: number, fiber: Fiber, ...args: unknown[]) => void\n getFiberRoots?: (rendererId: number) => Set<FiberRoot>\n}\n\nconst fiberRoots = new Map<number, Set<FiberRoot>>()\nlet elementToFiber = new WeakMap<HTMLElement, Fiber>()\nlet indexDirty = true\n// Bump when the __DIRECT_EDIT_DEVTOOLS__ bridge shape changes incompatibly.\nconst DEVTOOLS_HOOK_VERSION = 1\n\nfunction ensureRootSet(rendererId: number): Set<FiberRoot> {\n let set = fiberRoots.get(rendererId)\n if (!set) {\n set = new Set<FiberRoot>()\n fiberRoots.set(rendererId, set)\n }\n return set\n}\n\nfunction rebuildIndex() {\n elementToFiber = new WeakMap<HTMLElement, Fiber>()\n for (const roots of fiberRoots.values()) {\n for (const root of roots) {\n const current = root?.current\n if (!current) continue\n indexFiberTree(current)\n }\n }\n}\n\nfunction indexFiberTree(root: Fiber) {\n const stack: Fiber[] = [root]\n while (stack.length > 0) {\n const node = stack.pop()\n if (!node) continue\n\n const stateNode = node.stateNode as { nodeType?: number } | undefined\n if (stateNode && stateNode.nodeType === 1) {\n elementToFiber.set(stateNode as HTMLElement, node)\n }\n\n if (node.child) stack.push(node.child)\n if (node.sibling) stack.push(node.sibling)\n }\n}\n\nfunction getFiberForElement(element: HTMLElement): Fiber | null {\n if (indexDirty) {\n rebuildIndex()\n indexDirty = false\n }\n return elementToFiber.get(element) ?? null\n}\n\nfunction createHook(): DevToolsHook {\n let rendererId = 0\n\n const hook: DevToolsHook = {\n supportsFiber: true,\n inject(renderer) {\n rendererId += 1\n const id = rendererId\n void renderer\n ensureRootSet(id)\n return id\n },\n onCommitFiberRoot(id, root) {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n },\n onCommitFiberUnmount() {\n // Rebuild on next commit; unmount does not include the root reference.\n },\n getFiberRoots(id) {\n return ensureRootSet(id)\n },\n }\n\n return hook\n}\n\nfunction wrapHook(existing: DevToolsHook) {\n const originalInject = existing.inject?.bind(existing)\n const originalCommit = existing.onCommitFiberRoot?.bind(existing)\n const originalUnmount = existing.onCommitFiberUnmount?.bind(existing)\n\n existing.supportsFiber = true\n\n existing.inject = (renderer) => {\n const id = originalInject ? originalInject(renderer) : 1\n ensureRootSet(id)\n return id\n }\n\n existing.onCommitFiberRoot = (id, root, ...args) => {\n const roots = ensureRootSet(id)\n roots.add(root)\n indexDirty = true\n if (originalCommit) {\n originalCommit(id, root, ...args)\n }\n }\n\n existing.onCommitFiberUnmount = (id, fiber, ...args) => {\n if (originalUnmount) {\n originalUnmount(id, fiber, ...args)\n }\n }\n\n if (!existing.getFiberRoots) {\n existing.getFiberRoots = (id) => ensureRootSet(id)\n }\n}\n\nfunction installHook() {\n if (typeof window === 'undefined') return\n const globalWindow = window as Window & {\n __REACT_DEVTOOLS_GLOBAL_HOOK__?: DevToolsHook\n __DIRECT_EDIT_DEVTOOLS__?: {\n getFiberForElement: (element: HTMLElement) => Fiber | null\n hasHook: boolean\n version?: number\n }\n }\n\n if (globalWindow.__DIRECT_EDIT_DEVTOOLS__?.hasHook) return\n\n const existing = globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__\n if (existing) {\n wrapHook(existing)\n } else {\n globalWindow.__REACT_DEVTOOLS_GLOBAL_HOOK__ = createHook()\n }\n\n globalWindow.__DIRECT_EDIT_DEVTOOLS__ = {\n getFiberForElement,\n hasHook: true,\n version: DEVTOOLS_HOOK_VERSION,\n }\n}\n\ninstallHook()\n\nexport {}\n"],"mappings":"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","names":[]}
package/dist/styles.css CHANGED
@@ -1,2 +1,2 @@
1
1
  /*! tailwindcss v4.1.18 | MIT License | https://tailwindcss.com */
2
- @layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-white:#fff;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--leading-relaxed:1.625;--radius-sm:calc(.5rem - 4px);--radius-md:calc(.5rem - 2px);--radius-xl:.75rem;--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--blur-xl:24px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-border:#e6e6e6;--color-ring:#262626;--color-background:#fff;--color-foreground:#171717;--color-primary:#171717;--color-primary-foreground:#fafafa;--color-secondary-foreground:#171717;--color-destructive:#ef4444;--color-destructive-foreground:#fafafa;--color-muted:#f2f2f2;--color-muted-foreground:#737373;--color-popover-foreground:#171717}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root,:host{color-scheme:light;color:var(--color-foreground)}@media (prefers-color-scheme:dark){:root,:host(:not([data-theme])),:host([data-theme=system]){color-scheme:dark;color:var(--color-foreground);--color-border:#2e2e2e;--color-input:#2e2e2e;--color-ring:#d4d4d4;--color-background:#121212;--color-foreground:#fafafa;--color-primary:#fafafa;--color-primary-foreground:#171717;--color-secondary:#262626;--color-secondary-foreground:#fafafa;--color-destructive:#7f1d1d;--color-destructive-foreground:#fafafa;--color-muted:#262626;--color-muted-foreground:#a3a3a3;--color-accent:#262626;--color-accent-foreground:#fafafa;--color-popover:#171717;--color-popover-foreground:#fafafa}}:host([data-theme=dark]){color-scheme:dark;color:var(--color-foreground);--color-border:#2e2e2e;--color-input:#2e2e2e;--color-ring:#d4d4d4;--color-background:#121212;--color-foreground:#fafafa;--color-primary:#fafafa;--color-primary-foreground:#171717;--color-secondary:#262626;--color-secondary-foreground:#fafafa;--color-destructive:#7f1d1d;--color-destructive-foreground:#fafafa;--color-muted:#262626;--color-muted-foreground:#a3a3a3;--color-accent:#262626;--color-accent-foreground:#fafafa;--color-popover:#171717;--color-popover-foreground:#fafafa}*,:before,:after{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-font-weight:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:var(--color-background);--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;border-color:var(--color-border)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.inset-0{inset:calc(var(--spacing)*0)}.top-1\/2{top:50%}.left-1\.5{left:calc(var(--spacing)*1.5)}.left-1\/2{left:50%}.left-2{left:calc(var(--spacing)*2)}.left-3{left:calc(var(--spacing)*3)}.isolate{isolation:isolate}.z-\[99990\]{z-index:99990}.z-\[99991\]{z-index:99991}.z-\[99998\]{z-index:99998}.z-\[99999\]{z-index:99999}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.m-4{margin:calc(var(--spacing)*4)}.mx-0\.5{margin-inline:calc(var(--spacing)*.5)}.mx-2{margin-inline:calc(var(--spacing)*2)}.my-0\.5{margin-block:calc(var(--spacing)*.5)}.my-1{margin-block:calc(var(--spacing)*1)}.mt-0{margin-top:calc(var(--spacing)*0)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-1\.5{margin-top:calc(var(--spacing)*1.5)}.mt-2\.5{margin-top:calc(var(--spacing)*2.5)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-1\.5{margin-bottom:calc(var(--spacing)*1.5)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.ml-0{margin-left:calc(var(--spacing)*0)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-1\.5{margin-left:calc(var(--spacing)*1.5)}.ml-2{margin-left:calc(var(--spacing)*2)}.block{display:block}.contents{display:contents}.flex{display:flex}.flow-root{display:flow-root}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.list-item{display:list-item}.table{display:table}.size-1{width:calc(var(--spacing)*1);height:calc(var(--spacing)*1)}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}.size-3\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-5{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}.size-6{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.size-7{width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.size-full{width:100%;height:100%}.h-0\.5{height:calc(var(--spacing)*.5)}.h-2{height:calc(var(--spacing)*2)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-11{height:calc(var(--spacing)*11)}.h-\[150px\]{height:150px}.h-auto{height:auto}.h-fit{height:fit-content}.h-full{height:100%}.max-h-48{max-height:calc(var(--spacing)*48)}.max-h-\[240px\]{max-height:240px}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-\[18px\]{min-height:18px}.w-0\.5{width:calc(var(--spacing)*.5)}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-11{width:calc(var(--spacing)*11)}.w-14{width:calc(var(--spacing)*14)}.w-\[1\.5px\]{width:1.5px}.w-\[60px\]{width:60px}.w-\[68px\]{width:68px}.w-\[180px\]{width:180px}.w-\[200px\]{width:200px}.w-\[240px\]{width:240px}.w-\[260px\]{width:260px}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-px{width:1px}.max-w-full{max-width:100%}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[18px\]{min-width:18px}.min-w-\[20px\]{min-width:20px}.min-w-\[100px\]{min-width:100px}.min-w-\[120px\]{min-width:120px}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.origin-\(--transform-origin\){transform-origin:var(--transform-origin)}.-translate-x-1\/2{--tw-translate-x:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.cursor-crosshair{cursor:crosshair}.cursor-default{cursor:default}.cursor-grab{cursor:grab}.cursor-grabbing{cursor:grabbing}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.resize{resize:both}.resize-none{resize:none}.\[appearance\:textfield\]{appearance:textfield}.appearance-none{appearance:none}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-\[0fr\]{grid-template-columns:0fr}.grid-cols-\[1fr\]{grid-template-columns:1fr}.grid-rows-\[0fr\]{grid-template-rows:0fr}.grid-rows-\[1fr\]{grid-template-rows:1fr}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.place-items-center{place-items:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-around{justify-content:space-around}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-evenly{justify-content:space-evenly}.justify-start{justify-content:flex-start}.gap-0\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-4{gap:calc(var(--spacing)*4)}.gap-\[2px\]{gap:2px}.gap-\[4px\]{gap:4px}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}.self-start{align-self:flex-start}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.rounded{border-radius:.25rem}.rounded-\[6px\]{border-radius:6px}.rounded-\[8px\]{border-radius:8px}.rounded-full{border-radius:3.40282e38px}.rounded-md{border-radius:var(--radius-md)}.rounded-sm{border-radius:var(--radius-sm)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-tl{border-top-left-radius:.25rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-dotted{--tw-border-style:dotted;border-style:dotted}.border-double{--tw-border-style:double;border-style:double}.border-none{--tw-border-style:none;border-style:none}.border-solid{--tw-border-style:solid;border-style:solid}.\[border-top-style\:solid\]{border-top-style:solid}.\[border-right-style\:dashed\]{border-right-style:dashed}.\[border-bottom-style\:dashed\]{border-bottom-style:dashed}.\[border-bottom-style\:dotted\]{border-bottom-style:dotted}.\[border-bottom-style\:solid\]{border-bottom-style:solid}.\[border-left-style\:double\]{border-left-style:double}.\[border-left-style\:solid\]{border-left-style:solid}.border-border{border-color:var(--color-border)}.border-border\/30{border-color:#e6e6e64d}@supports (color:color-mix(in lab, red, red)){.border-border\/30{border-color:color-mix(in oklab,var(--color-border)30%,transparent)}}.border-border\/50{border-color:#e6e6e680}@supports (color:color-mix(in lab, red, red)){.border-border\/50{border-color:color-mix(in oklab,var(--color-border)50%,transparent)}}.border-foreground\/10{border-color:#1717171a}@supports (color:color-mix(in lab, red, red)){.border-foreground\/10{border-color:color-mix(in oklab,var(--color-foreground)10%,transparent)}}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.bg-\[canvas\]{background-color:canvas}.bg-background{background-color:var(--color-background)}.bg-background\/85{background-color:#ffffffd9}@supports (color:color-mix(in lab, red, red)){.bg-background\/85{background-color:color-mix(in oklab,var(--color-background)85%,transparent)}}.bg-blue-500{background-color:var(--color-blue-500)}.bg-border{background-color:var(--color-border)}.bg-destructive{background-color:var(--color-destructive)}.bg-foreground{background-color:var(--color-foreground)}.bg-foreground\/25{background-color:#17171740}@supports (color:color-mix(in lab, red, red)){.bg-foreground\/25{background-color:color-mix(in oklab,var(--color-foreground)25%,transparent)}}.bg-muted{background-color:var(--color-muted)}.bg-muted-foreground\/30{background-color:#7373734d}@supports (color:color-mix(in lab, red, red)){.bg-muted-foreground\/30{background-color:color-mix(in oklab,var(--color-muted-foreground)30%,transparent)}}.bg-primary{background-color:var(--color-primary)}.bg-red-500{background-color:var(--color-red-500)}.bg-transparent{background-color:#0000}.fill-border{fill:var(--color-border)}.p-0{padding:calc(var(--spacing)*0)}.p-0\.5{padding:calc(var(--spacing)*.5)}.p-1{padding:calc(var(--spacing)*1)}.p-1\.5{padding:calc(var(--spacing)*1.5)}.p-2{padding:calc(var(--spacing)*2)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\.5{padding-inline:calc(var(--spacing)*2.5)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-0{padding-block:calc(var(--spacing)*0)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-2\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-3\.5{padding-block:calc(var(--spacing)*3.5)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-1{padding-top:calc(var(--spacing)*1)}.pt-2\.5{padding-top:calc(var(--spacing)*2.5)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-6{padding-top:calc(var(--spacing)*6)}.pt-\[13px\]{padding-top:13px}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-1\.5{padding-right:calc(var(--spacing)*1.5)}.pr-2{padding-right:calc(var(--spacing)*2)}.pb-1{padding-bottom:calc(var(--spacing)*1)}.pb-1\.5{padding-bottom:calc(var(--spacing)*1.5)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pl-0{padding-left:calc(var(--spacing)*0)}.pl-6{padding-left:calc(var(--spacing)*6)}.pl-7{padding-left:calc(var(--spacing)*7)}.text-center{text-align:center}.text-justify{text-align:justify}.text-left{text-align:left}.text-right{text-align:right}.font-mono{font-family:var(--font-mono)}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[7px\]{font-size:7px}.text-\[9px\]{font-size:9px}.text-\[10px\]{font-size:10px}.leading-\[18px\]{--tw-leading:18px;line-height:18px}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-extralight{--tw-font-weight:var(--font-weight-extralight);font-weight:var(--font-weight-extralight)}.font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.\[overflow-wrap\:anywhere\]{overflow-wrap:anywhere}.break-words{overflow-wrap:break-word}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-background{color:var(--color-background)}.text-blue-500{color:var(--color-blue-500)}.text-destructive-foreground{color:var(--color-destructive-foreground)}.text-foreground{color:var(--color-foreground)}.text-green-400{color:var(--color-green-400)}.text-green-500{color:var(--color-green-500)}.text-muted-foreground{color:var(--color-muted-foreground)}.text-popover-foreground{color:var(--color-popover-foreground)}.text-primary{color:var(--color-primary)}.text-primary-foreground{color:var(--color-primary-foreground)}.text-red-500{color:var(--color-red-500)}.text-secondary-foreground{color:var(--color-secondary-foreground)}.text-white{color:var(--color-white)}.lowercase{text-transform:lowercase}.uppercase{text-transform:uppercase}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xs{--tw-shadow:0 1px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_0_0_1px_rgba\(0\,0\,0\,0\.3\)\]{--tw-shadow:0 0 0 1px var(--tw-shadow-color,#0000004d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_4px_6px_-1px_rgba\(0\,0\,0\,0\.1\)\]{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[inset_0_0_0_1px_rgba\(0\,0\,0\,0\.1\)\]{--tw-shadow:inset 0 0 0 1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-white{--tw-ring-color:var(--color-white)}.outline,.outline-1{outline-style:var(--tw-outline-style);outline-width:1px}.outline-border{outline-color:var(--color-border)}.outline-foreground\/10{outline-color:#1717171a}@supports (color:color-mix(in lab, red, red)){.outline-foreground\/10{outline-color:color-mix(in oklab,var(--color-foreground)10%,transparent)}}.outline-red-500\/70{outline-color:#fb2c36b3}@supports (color:color-mix(in lab, red, red)){.outline-red-500\/70{outline-color:color-mix(in oklab,var(--color-red-500)70%,transparent)}}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur-xl{--tw-backdrop-blur:blur(var(--blur-xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[color\,background-color\]{transition-property:color,background-color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[opacity\,background-color\,color\]{transition-property:opacity,background-color,color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[transform\,scale\,opacity\]{transition-property:transform,scale,opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.animate-in{--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial;animation-name:enter;animation-duration:.15s}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.\[-ms-overflow-style\:none\]{-ms-overflow-style:none}.\[scrollbar-width\:none\]{scrollbar-width:none}.duration-150{animation-duration:.15s}.duration-200{animation-duration:.2s}.ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)}.fade-in-0{--tw-enter-opacity:0}.running{animation-play-state:running}.zoom-in-95{--tw-enter-scale:.95}@media (hover:hover){.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}.group-hover\/pin\:inline:is(:where(.group\/pin):hover *){display:inline}}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--color-foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--color-muted-foreground)}.placeholder\:text-red-400::placeholder{color:var(--color-red-400)}.focus-within\:ring-1:focus-within{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-within\:ring-ring:focus-within{--tw-ring-color:var(--color-ring)}.focus-within\:outline-none:focus-within{--tw-outline-style:none;outline-style:none}.focus-within\:ring-inset:focus-within{--tw-ring-inset:inset}@media (hover:hover){.hover\:scale-\[1\.67\]:hover{scale:1.67}.hover\:bg-blue-600:hover{background-color:var(--color-blue-600)}.hover\:bg-destructive\/90:hover{background-color:#ef4444e6}@supports (color:color-mix(in lab, red, red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--color-destructive)90%,transparent)}}.hover\:bg-foreground\/80:hover{background-color:#171717cc}@supports (color:color-mix(in lab, red, red)){.hover\:bg-foreground\/80:hover{background-color:color-mix(in oklab,var(--color-foreground)80%,transparent)}}.hover\:bg-muted:hover{background-color:var(--color-muted)}.hover\:bg-muted-foreground\/10:hover{background-color:#7373731a}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted-foreground\/10:hover{background-color:color-mix(in oklab,var(--color-muted-foreground)10%,transparent)}}.hover\:bg-muted\/50:hover{background-color:#f2f2f280}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted\/50:hover{background-color:color-mix(in oklab,var(--color-muted)50%,transparent)}}.hover\:bg-muted\/80:hover{background-color:#f2f2f2cc}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted\/80:hover{background-color:color-mix(in oklab,var(--color-muted)80%,transparent)}}.hover\:bg-primary\/90:hover{background-color:#171717e6}@supports (color:color-mix(in lab, red, red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--color-primary)90%,transparent)}}.hover\:text-foreground:hover{color:var(--color-foreground)}.hover\:underline:hover{text-decoration-line:underline}.hover\:shadow-lg:hover{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color:var(--color-ring)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-inset:focus-visible{--tw-ring-inset:inset}.active\:cursor-grabbing:active{cursor:grabbing}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.data-ending-style\:scale-90[data-ending-style]{--tw-scale-x:90%;--tw-scale-y:90%;--tw-scale-z:90%;scale:var(--tw-scale-x)var(--tw-scale-y)}.data-ending-style\:opacity-0[data-ending-style]{opacity:0}.data-instant\:transition-none[data-instant]{transition-property:none}.data-starting-style\:scale-90[data-starting-style]{--tw-scale-x:90%;--tw-scale-y:90%;--tw-scale-z:90%;scale:var(--tw-scale-x)var(--tw-scale-y)}.data-starting-style\:opacity-0[data-starting-style]{opacity:0}.data-\[highlighted\]\:bg-muted[data-highlighted]{background-color:var(--color-muted)}.data-\[highlighted\]\:bg-muted\/50[data-highlighted]{background-color:#f2f2f280}@supports (color:color-mix(in lab, red, red)){.data-\[highlighted\]\:bg-muted\/50[data-highlighted]{background-color:color-mix(in oklab,var(--color-muted)50%,transparent)}}.data-\[highlighted\]\:text-foreground[data-highlighted]{color:var(--color-foreground)}@media (prefers-color-scheme:dark){.dark\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark\:-outline-offset-1{outline-offset:calc(1px*-1)}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-3\.5 svg{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button{appearance:none}.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button{appearance:none}.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar{display:none}}@media (prefers-reduced-motion:reduce){*,:before,:after{transition:none;animation:none}}.lucide{stroke-width:1px}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0))}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@keyframes pulse{50%{opacity:.5}}
2
+ @layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-leading:initial;--tw-font-weight:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-backdrop-blur:initial;--tw-backdrop-brightness:initial;--tw-backdrop-contrast:initial;--tw-backdrop-grayscale:initial;--tw-backdrop-hue-rotate:initial;--tw-backdrop-invert:initial;--tw-backdrop-opacity:initial;--tw-backdrop-saturate:initial;--tw-backdrop-sepia:initial;--tw-duration:initial;--tw-ease:initial;--tw-scale-x:1;--tw-scale-y:1;--tw-scale-z:1}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-red-400:oklch(70.4% .191 22.216);--color-red-500:oklch(63.7% .237 25.331);--color-green-400:oklch(79.2% .209 151.711);--color-green-500:oklch(72.3% .219 149.579);--color-blue-500:oklch(62.3% .214 259.815);--color-blue-600:oklch(54.6% .245 262.881);--color-white:#fff;--spacing:.25rem;--text-xs:.75rem;--text-xs--line-height:calc(1/.75);--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--font-weight-thin:100;--font-weight-extralight:200;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--font-weight-extrabold:800;--font-weight-black:900;--leading-relaxed:1.625;--radius-sm:calc(.5rem - 4px);--radius-md:calc(.5rem - 2px);--radius-xl:.75rem;--ease-out:cubic-bezier(0,0,.2,1);--ease-in-out:cubic-bezier(.4,0,.2,1);--animate-pulse:pulse 2s cubic-bezier(.4,0,.6,1)infinite;--blur-xl:24px;--default-transition-duration:.15s;--default-transition-timing-function:cubic-bezier(.4,0,.2,1);--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono);--color-border:#e6e6e6;--color-ring:#262626;--color-background:#fff;--color-foreground:#171717;--color-primary:#171717;--color-primary-foreground:#fafafa;--color-secondary-foreground:#171717;--color-destructive:#ef4444;--color-destructive-foreground:#fafafa;--color-muted:#f2f2f2;--color-muted-foreground:#737373;--color-popover-foreground:#171717}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}:root,:host{color-scheme:light;color:var(--color-foreground)}@media (prefers-color-scheme:dark){:root,:host(:not([data-theme])),:host([data-theme=system]){color-scheme:dark;color:var(--color-foreground);--color-border:#2e2e2e;--color-input:#2e2e2e;--color-ring:#d4d4d4;--color-background:#121212;--color-foreground:#fafafa;--color-primary:#fafafa;--color-primary-foreground:#171717;--color-secondary:#262626;--color-secondary-foreground:#fafafa;--color-destructive:#7f1d1d;--color-destructive-foreground:#fafafa;--color-muted:#262626;--color-muted-foreground:#a3a3a3;--color-accent:#262626;--color-accent-foreground:#fafafa;--color-popover:#171717;--color-popover-foreground:#fafafa}}:host([data-theme=dark]){color-scheme:dark;color:var(--color-foreground);--color-border:#2e2e2e;--color-input:#2e2e2e;--color-ring:#d4d4d4;--color-background:#121212;--color-foreground:#fafafa;--color-primary:#fafafa;--color-primary-foreground:#171717;--color-secondary:#262626;--color-secondary-foreground:#fafafa;--color-destructive:#7f1d1d;--color-destructive-foreground:#fafafa;--color-muted:#262626;--color-muted-foreground:#a3a3a3;--color-accent:#262626;--color-accent-foreground:#fafafa;--color-popover:#171717;--color-popover-foreground:#fafafa}*,:before,:after{--tw-translate-x:0;--tw-translate-y:0;--tw-translate-z:0;--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-font-weight:initial;--tw-ordinal:initial;--tw-slashed-zero:initial;--tw-numeric-figure:initial;--tw-numeric-spacing:initial;--tw-numeric-fraction:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:var(--color-background);--tw-ring-offset-shadow:0 0 #0000;--tw-outline-style:solid;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial;--tw-duration:initial;border-color:var(--color-border)}}@layer components;@layer utilities{.pointer-events-none{pointer-events:none}.collapse{visibility:collapse}.invisible{visibility:hidden}.visible{visibility:visible}.absolute{position:absolute}.fixed{position:fixed}.relative{position:relative}.static{position:static}.inset-0{inset:calc(var(--spacing)*0)}.top-1\/2{top:50%}.left-1\.5{left:calc(var(--spacing)*1.5)}.left-1\/2{left:50%}.left-2{left:calc(var(--spacing)*2)}.left-3{left:calc(var(--spacing)*3)}.isolate{isolation:isolate}.z-\[99990\]{z-index:99990}.z-\[99991\]{z-index:99991}.z-\[99998\]{z-index:99998}.z-\[99999\]{z-index:99999}.\!container{width:100%!important}@media (min-width:40rem){.\!container{max-width:40rem!important}}@media (min-width:48rem){.\!container{max-width:48rem!important}}@media (min-width:64rem){.\!container{max-width:64rem!important}}@media (min-width:80rem){.\!container{max-width:80rem!important}}@media (min-width:96rem){.\!container{max-width:96rem!important}}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.m-4{margin:calc(var(--spacing)*4)}.mx-0\.5{margin-inline:calc(var(--spacing)*.5)}.mx-2{margin-inline:calc(var(--spacing)*2)}.my-0\.5{margin-block:calc(var(--spacing)*.5)}.my-1{margin-block:calc(var(--spacing)*1)}.mt-0{margin-top:calc(var(--spacing)*0)}.mt-1{margin-top:calc(var(--spacing)*1)}.mt-1\.5{margin-top:calc(var(--spacing)*1.5)}.mt-2\.5{margin-top:calc(var(--spacing)*2.5)}.mb-1{margin-bottom:calc(var(--spacing)*1)}.mb-1\.5{margin-bottom:calc(var(--spacing)*1.5)}.mb-2{margin-bottom:calc(var(--spacing)*2)}.ml-0{margin-left:calc(var(--spacing)*0)}.ml-1{margin-left:calc(var(--spacing)*1)}.ml-1\.5{margin-left:calc(var(--spacing)*1.5)}.ml-2{margin-left:calc(var(--spacing)*2)}.block{display:block}.contents{display:contents}.flex{display:flex}.flow-root{display:flow-root}.grid{display:grid}.hidden{display:none}.inline{display:inline}.inline-block{display:inline-block}.inline-flex{display:inline-flex}.inline-grid{display:inline-grid}.list-item{display:list-item}.table{display:table}.size-1{width:calc(var(--spacing)*1);height:calc(var(--spacing)*1)}.size-2\.5{width:calc(var(--spacing)*2.5);height:calc(var(--spacing)*2.5)}.size-3{width:calc(var(--spacing)*3);height:calc(var(--spacing)*3)}.size-3\.5{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.size-4{width:calc(var(--spacing)*4);height:calc(var(--spacing)*4)}.size-5{width:calc(var(--spacing)*5);height:calc(var(--spacing)*5)}.size-6{width:calc(var(--spacing)*6);height:calc(var(--spacing)*6)}.size-7{width:calc(var(--spacing)*7);height:calc(var(--spacing)*7)}.size-full{width:100%;height:100%}.h-0\.5{height:calc(var(--spacing)*.5)}.h-2{height:calc(var(--spacing)*2)}.h-3\.5{height:calc(var(--spacing)*3.5)}.h-4{height:calc(var(--spacing)*4)}.h-5{height:calc(var(--spacing)*5)}.h-6{height:calc(var(--spacing)*6)}.h-7{height:calc(var(--spacing)*7)}.h-8{height:calc(var(--spacing)*8)}.h-9{height:calc(var(--spacing)*9)}.h-10{height:calc(var(--spacing)*10)}.h-11{height:calc(var(--spacing)*11)}.h-\[150px\]{height:150px}.h-auto{height:auto}.h-fit{height:fit-content}.h-full{height:100%}.max-h-48{max-height:calc(var(--spacing)*48)}.max-h-\[240px\]{max-height:240px}.min-h-0{min-height:calc(var(--spacing)*0)}.min-h-\[18px\]{min-height:18px}.w-0\.5{width:calc(var(--spacing)*.5)}.w-2{width:calc(var(--spacing)*2)}.w-3{width:calc(var(--spacing)*3)}.w-4{width:calc(var(--spacing)*4)}.w-5{width:calc(var(--spacing)*5)}.w-8{width:calc(var(--spacing)*8)}.w-9{width:calc(var(--spacing)*9)}.w-10{width:calc(var(--spacing)*10)}.w-11{width:calc(var(--spacing)*11)}.w-14{width:calc(var(--spacing)*14)}.w-\[1\.5px\]{width:1.5px}.w-\[60px\]{width:60px}.w-\[68px\]{width:68px}.w-\[180px\]{width:180px}.w-\[200px\]{width:200px}.w-\[240px\]{width:240px}.w-\[260px\]{width:260px}.w-auto{width:auto}.w-fit{width:fit-content}.w-full{width:100%}.w-px{width:1px}.max-w-full{max-width:100%}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[18px\]{min-width:18px}.min-w-\[20px\]{min-width:20px}.min-w-\[100px\]{min-width:100px}.min-w-\[120px\]{min-width:120px}.flex-1{flex:1}.flex-shrink-0,.shrink-0{flex-shrink:0}.origin-\(--transform-origin\){transform-origin:var(--transform-origin)}.-translate-x-1\/2{--tw-translate-x:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.-translate-y-1\/2{--tw-translate-y:calc(calc(1/2*100%)*-1);translate:var(--tw-translate-x)var(--tw-translate-y)}.rotate-45{rotate:45deg}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.animate-pulse{animation:var(--animate-pulse)}.cursor-crosshair{cursor:crosshair}.cursor-default{cursor:default}.cursor-grab{cursor:grab}.cursor-grabbing{cursor:grabbing}.cursor-not-allowed{cursor:not-allowed}.cursor-pointer{cursor:pointer}.touch-none{touch-action:none}.resize{resize:both}.resize-none{resize:none}.\[appearance\:textfield\]{appearance:textfield}.appearance-none{appearance:none}.grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.grid-cols-\[0fr\]{grid-template-columns:0fr}.grid-cols-\[1fr\]{grid-template-columns:1fr}.grid-rows-\[0fr\]{grid-template-rows:0fr}.grid-rows-\[1fr\]{grid-template-rows:1fr}.flex-col{flex-direction:column}.flex-col-reverse{flex-direction:column-reverse}.flex-row{flex-direction:row}.flex-row-reverse{flex-direction:row-reverse}.place-items-center{place-items:center}.items-baseline{align-items:baseline}.items-center{align-items:center}.items-end{align-items:flex-end}.items-start{align-items:flex-start}.items-stretch{align-items:stretch}.justify-around{justify-content:space-around}.justify-between{justify-content:space-between}.justify-center{justify-content:center}.justify-end{justify-content:flex-end}.justify-evenly{justify-content:space-evenly}.justify-start{justify-content:flex-start}.gap-0\.5{gap:calc(var(--spacing)*.5)}.gap-1{gap:calc(var(--spacing)*1)}.gap-1\.5{gap:calc(var(--spacing)*1.5)}.gap-2{gap:calc(var(--spacing)*2)}.gap-4{gap:calc(var(--spacing)*4)}.gap-\[2px\]{gap:2px}.gap-\[4px\]{gap:4px}:where(.space-y-2>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*2)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*2)*calc(1 - var(--tw-space-y-reverse)))}.self-start{align-self:flex-start}.truncate{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.overflow-hidden{overflow:hidden}.overflow-x-auto{overflow-x:auto}.overflow-x-hidden{overflow-x:hidden}.overflow-y-auto{overflow-y:auto}.overflow-y-hidden{overflow-y:hidden}.rounded{border-radius:.25rem}.rounded-\[6px\]{border-radius:6px}.rounded-\[8px\]{border-radius:8px}.rounded-full{border-radius:3.40282e38px}.rounded-md{border-radius:var(--radius-md)}.rounded-sm{border-radius:var(--radius-sm)}.rounded-xl{border-radius:var(--radius-xl)}.rounded-tl{border-top-left-radius:.25rem}.rounded-tr{border-top-right-radius:.25rem}.rounded-br{border-bottom-right-radius:.25rem}.rounded-bl{border-bottom-left-radius:.25rem}.border{border-style:var(--tw-border-style);border-width:1px}.border-0{border-style:var(--tw-border-style);border-width:0}.border-2{border-style:var(--tw-border-style);border-width:2px}.border-t{border-top-style:var(--tw-border-style);border-top-width:1px}.border-r{border-right-style:var(--tw-border-style);border-right-width:1px}.border-b{border-bottom-style:var(--tw-border-style);border-bottom-width:1px}.border-l{border-left-style:var(--tw-border-style);border-left-width:1px}.border-dashed{--tw-border-style:dashed;border-style:dashed}.border-dotted{--tw-border-style:dotted;border-style:dotted}.border-double{--tw-border-style:double;border-style:double}.border-none{--tw-border-style:none;border-style:none}.border-solid{--tw-border-style:solid;border-style:solid}.\[border-top-style\:solid\]{border-top-style:solid}.\[border-right-style\:dashed\]{border-right-style:dashed}.\[border-bottom-style\:dashed\]{border-bottom-style:dashed}.\[border-bottom-style\:dotted\]{border-bottom-style:dotted}.\[border-bottom-style\:solid\]{border-bottom-style:solid}.\[border-left-style\:double\]{border-left-style:double}.\[border-left-style\:solid\]{border-left-style:solid}.border-border{border-color:var(--color-border)}.border-border\/30{border-color:#e6e6e64d}@supports (color:color-mix(in lab, red, red)){.border-border\/30{border-color:color-mix(in oklab,var(--color-border)30%,transparent)}}.border-border\/50{border-color:#e6e6e680}@supports (color:color-mix(in lab, red, red)){.border-border\/50{border-color:color-mix(in oklab,var(--color-border)50%,transparent)}}.border-foreground\/10{border-color:#1717171a}@supports (color:color-mix(in lab, red, red)){.border-foreground\/10{border-color:color-mix(in oklab,var(--color-foreground)10%,transparent)}}.border-transparent{border-color:#0000}.border-white{border-color:var(--color-white)}.bg-\[canvas\]{background-color:canvas}.bg-background{background-color:var(--color-background)}.bg-background\/85{background-color:#ffffffd9}@supports (color:color-mix(in lab, red, red)){.bg-background\/85{background-color:color-mix(in oklab,var(--color-background)85%,transparent)}}.bg-blue-500{background-color:var(--color-blue-500)}.bg-border{background-color:var(--color-border)}.bg-destructive{background-color:var(--color-destructive)}.bg-foreground{background-color:var(--color-foreground)}.bg-foreground\/25{background-color:#17171740}@supports (color:color-mix(in lab, red, red)){.bg-foreground\/25{background-color:color-mix(in oklab,var(--color-foreground)25%,transparent)}}.bg-muted{background-color:var(--color-muted)}.bg-muted-foreground\/30{background-color:#7373734d}@supports (color:color-mix(in lab, red, red)){.bg-muted-foreground\/30{background-color:color-mix(in oklab,var(--color-muted-foreground)30%,transparent)}}.bg-primary{background-color:var(--color-primary)}.bg-red-500{background-color:var(--color-red-500)}.bg-transparent{background-color:#0000}.fill-border{fill:var(--color-border)}.p-0{padding:calc(var(--spacing)*0)}.p-0\.5{padding:calc(var(--spacing)*.5)}.p-1{padding:calc(var(--spacing)*1)}.p-1\.5{padding:calc(var(--spacing)*1.5)}.p-2{padding:calc(var(--spacing)*2)}.p-3{padding:calc(var(--spacing)*3)}.p-4{padding:calc(var(--spacing)*4)}.px-1{padding-inline:calc(var(--spacing)*1)}.px-1\.5{padding-inline:calc(var(--spacing)*1.5)}.px-2{padding-inline:calc(var(--spacing)*2)}.px-2\.5{padding-inline:calc(var(--spacing)*2.5)}.px-3{padding-inline:calc(var(--spacing)*3)}.px-4{padding-inline:calc(var(--spacing)*4)}.px-8{padding-inline:calc(var(--spacing)*8)}.py-0{padding-block:calc(var(--spacing)*0)}.py-0\.5{padding-block:calc(var(--spacing)*.5)}.py-1{padding-block:calc(var(--spacing)*1)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.py-2{padding-block:calc(var(--spacing)*2)}.py-2\.5{padding-block:calc(var(--spacing)*2.5)}.py-3{padding-block:calc(var(--spacing)*3)}.py-3\.5{padding-block:calc(var(--spacing)*3.5)}.pt-0{padding-top:calc(var(--spacing)*0)}.pt-1{padding-top:calc(var(--spacing)*1)}.pt-2\.5{padding-top:calc(var(--spacing)*2.5)}.pt-4{padding-top:calc(var(--spacing)*4)}.pt-6{padding-top:calc(var(--spacing)*6)}.pt-\[13px\]{padding-top:13px}.pr-1{padding-right:calc(var(--spacing)*1)}.pr-1\.5{padding-right:calc(var(--spacing)*1.5)}.pr-2{padding-right:calc(var(--spacing)*2)}.pb-1{padding-bottom:calc(var(--spacing)*1)}.pb-1\.5{padding-bottom:calc(var(--spacing)*1.5)}.pb-3{padding-bottom:calc(var(--spacing)*3)}.pl-0{padding-left:calc(var(--spacing)*0)}.pl-6{padding-left:calc(var(--spacing)*6)}.pl-7{padding-left:calc(var(--spacing)*7)}.text-center{text-align:center}.text-justify{text-align:justify}.text-left{text-align:left}.text-right{text-align:right}.font-mono{font-family:var(--font-mono)}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.text-xs{font-size:var(--text-xs);line-height:var(--tw-leading,var(--text-xs--line-height))}.text-\[7px\]{font-size:7px}.text-\[9px\]{font-size:9px}.text-\[10px\]{font-size:10px}.leading-\[18px\]{--tw-leading:18px;line-height:18px}.leading-none{--tw-leading:1;line-height:1}.leading-relaxed{--tw-leading:var(--leading-relaxed);line-height:var(--leading-relaxed)}.font-black{--tw-font-weight:var(--font-weight-black);font-weight:var(--font-weight-black)}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-extrabold{--tw-font-weight:var(--font-weight-extrabold);font-weight:var(--font-weight-extrabold)}.font-extralight{--tw-font-weight:var(--font-weight-extralight);font-weight:var(--font-weight-extralight)}.font-light{--tw-font-weight:var(--font-weight-light);font-weight:var(--font-weight-light)}.font-medium{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.font-thin{--tw-font-weight:var(--font-weight-thin);font-weight:var(--font-weight-thin)}.\[overflow-wrap\:anywhere\]{overflow-wrap:anywhere}.break-words{overflow-wrap:break-word}.whitespace-nowrap{white-space:nowrap}.whitespace-pre-wrap{white-space:pre-wrap}.text-background{color:var(--color-background)}.text-blue-500{color:var(--color-blue-500)}.text-destructive-foreground{color:var(--color-destructive-foreground)}.text-foreground{color:var(--color-foreground)}.text-green-400{color:var(--color-green-400)}.text-green-500{color:var(--color-green-500)}.text-muted-foreground{color:var(--color-muted-foreground)}.text-popover-foreground{color:var(--color-popover-foreground)}.text-primary{color:var(--color-primary)}.text-primary-foreground{color:var(--color-primary-foreground)}.text-red-500{color:var(--color-red-500)}.text-secondary-foreground{color:var(--color-secondary-foreground)}.text-white{color:var(--color-white)}.lowercase{text-transform:lowercase}.uppercase{text-transform:uppercase}.tabular-nums{--tw-numeric-spacing:tabular-nums;font-variant-numeric:var(--tw-ordinal,)var(--tw-slashed-zero,)var(--tw-numeric-figure,)var(--tw-numeric-spacing,)var(--tw-numeric-fraction,)}.underline-offset-4{text-underline-offset:4px}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xl{--tw-shadow:0 25px 50px -12px var(--tw-shadow-color,#00000040);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-2xs{--tw-shadow:0 1px var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_0_0_1px_rgba\(0\,0\,0\,0\.3\)\]{--tw-shadow:0 0 0 1px var(--tw-shadow-color,#0000004d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[0_4px_6px_-1px_rgba\(0\,0\,0\,0\.1\)\]{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-\[inset_0_0_0_1px_rgba\(0\,0\,0\,0\.1\)\]{--tw-shadow:inset 0 0 0 1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-inner{--tw-shadow:inset 0 2px 4px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-md{--tw-shadow:0 4px 6px -1px var(--tw-shadow-color,#0000001a),0 2px 4px -2px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-sm{--tw-shadow:0 1px 3px 0 var(--tw-shadow-color,#0000001a),0 1px 2px -1px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xl{--tw-shadow:0 20px 25px -5px var(--tw-shadow-color,#0000001a),0 8px 10px -6px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.shadow-xs{--tw-shadow:0 1px 2px 0 var(--tw-shadow-color,#0000000d);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-2{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.ring-white{--tw-ring-color:var(--color-white)}.outline,.outline-1{outline-style:var(--tw-outline-style);outline-width:1px}.outline-border{outline-color:var(--color-border)}.outline-foreground\/10{outline-color:#1717171a}@supports (color:color-mix(in lab, red, red)){.outline-foreground\/10{outline-color:color-mix(in oklab,var(--color-foreground)10%,transparent)}}.outline-red-500\/70{outline-color:#fb2c36b3}@supports (color:color-mix(in lab, red, red)){.outline-red-500\/70{outline-color:color-mix(in oklab,var(--color-red-500)70%,transparent)}}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.filter{filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}.backdrop-blur-xl{--tw-backdrop-blur:blur(var(--blur-xl));-webkit-backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,);backdrop-filter:var(--tw-backdrop-blur,)var(--tw-backdrop-brightness,)var(--tw-backdrop-contrast,)var(--tw-backdrop-grayscale,)var(--tw-backdrop-hue-rotate,)var(--tw-backdrop-invert,)var(--tw-backdrop-opacity,)var(--tw-backdrop-saturate,)var(--tw-backdrop-sepia,)}.transition{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to,opacity,box-shadow,transform,translate,scale,rotate,filter,-webkit-backdrop-filter,backdrop-filter,display,content-visibility,overlay,pointer-events;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[color\,background-color\]{transition-property:color,background-color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[opacity\,background-color\,color\]{transition-property:opacity,background-color,color;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-\[transform\,scale\,opacity\]{transition-property:transform,scale,opacity;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-all{transition-property:all;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-colors{transition-property:color,background-color,border-color,outline-color,text-decoration-color,fill,stroke,--tw-gradient-from,--tw-gradient-via,--tw-gradient-to;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-shadow{transition-property:box-shadow;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.transition-transform{transition-property:transform,translate,scale,rotate;transition-timing-function:var(--tw-ease,var(--default-transition-timing-function));transition-duration:var(--tw-duration,var(--default-transition-duration))}.duration-150{--tw-duration:.15s;transition-duration:.15s}.duration-200{--tw-duration:.2s;transition-duration:.2s}.ease-in-out{--tw-ease:var(--ease-in-out);transition-timing-function:var(--ease-in-out)}.ease-out{--tw-ease:var(--ease-out);transition-timing-function:var(--ease-out)}.animate-in{--tw-enter-opacity:initial;--tw-enter-scale:initial;--tw-enter-rotate:initial;--tw-enter-translate-x:initial;--tw-enter-translate-y:initial;animation-name:enter;animation-duration:.15s}.outline-none{--tw-outline-style:none;outline-style:none}.select-none{-webkit-user-select:none;user-select:none}.\[-ms-overflow-style\:none\]{-ms-overflow-style:none}.\[scrollbar-width\:none\]{scrollbar-width:none}.duration-150{animation-duration:.15s}.duration-200{animation-duration:.2s}.ease-in-out{animation-timing-function:cubic-bezier(.4,0,.2,1)}.ease-out{animation-timing-function:cubic-bezier(0,0,.2,1)}.fade-in-0{--tw-enter-opacity:0}.running{animation-play-state:running}.zoom-in-95{--tw-enter-scale:.95}@media (hover:hover){.group-hover\:opacity-100:is(:where(.group):hover *){opacity:1}.group-hover\/pin\:inline:is(:where(.group\/pin):hover *){display:inline}}.file\:border-0::file-selector-button{border-style:var(--tw-border-style);border-width:0}.file\:bg-transparent::file-selector-button{background-color:#0000}.file\:text-sm::file-selector-button{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.file\:font-medium::file-selector-button{--tw-font-weight:var(--font-weight-medium);font-weight:var(--font-weight-medium)}.file\:text-foreground::file-selector-button{color:var(--color-foreground)}.placeholder\:text-muted-foreground::placeholder{color:var(--color-muted-foreground)}.placeholder\:text-red-400::placeholder{color:var(--color-red-400)}.focus-within\:ring-1:focus-within{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-within\:ring-ring:focus-within{--tw-ring-color:var(--color-ring)}.focus-within\:outline-none:focus-within{--tw-outline-style:none;outline-style:none}.focus-within\:ring-inset:focus-within{--tw-ring-inset:inset}@media (hover:hover){.hover\:scale-\[1\.67\]:hover{scale:1.67}.hover\:bg-blue-600:hover{background-color:var(--color-blue-600)}.hover\:bg-destructive\/90:hover{background-color:#ef4444e6}@supports (color:color-mix(in lab, red, red)){.hover\:bg-destructive\/90:hover{background-color:color-mix(in oklab,var(--color-destructive)90%,transparent)}}.hover\:bg-foreground\/80:hover{background-color:#171717cc}@supports (color:color-mix(in lab, red, red)){.hover\:bg-foreground\/80:hover{background-color:color-mix(in oklab,var(--color-foreground)80%,transparent)}}.hover\:bg-muted:hover{background-color:var(--color-muted)}.hover\:bg-muted-foreground\/10:hover{background-color:#7373731a}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted-foreground\/10:hover{background-color:color-mix(in oklab,var(--color-muted-foreground)10%,transparent)}}.hover\:bg-muted\/50:hover{background-color:#f2f2f280}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted\/50:hover{background-color:color-mix(in oklab,var(--color-muted)50%,transparent)}}.hover\:bg-muted\/80:hover{background-color:#f2f2f2cc}@supports (color:color-mix(in lab, red, red)){.hover\:bg-muted\/80:hover{background-color:color-mix(in oklab,var(--color-muted)80%,transparent)}}.hover\:bg-primary\/90:hover{background-color:#171717e6}@supports (color:color-mix(in lab, red, red)){.hover\:bg-primary\/90:hover{background-color:color-mix(in oklab,var(--color-primary)90%,transparent)}}.hover\:text-foreground:hover{color:var(--color-foreground)}.hover\:underline:hover{text-decoration-line:underline}.hover\:shadow-lg:hover{--tw-shadow:0 10px 15px -3px var(--tw-shadow-color,#0000001a),0 4px 6px -4px var(--tw-shadow-color,#0000001a);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}}.focus\:outline-none:focus{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-1:focus-visible{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.focus-visible\:ring-ring:focus-visible{--tw-ring-color:var(--color-ring)}.focus-visible\:outline-none:focus-visible{--tw-outline-style:none;outline-style:none}.focus-visible\:ring-inset:focus-visible{--tw-ring-inset:inset}.active\:cursor-grabbing:active{cursor:grabbing}.disabled\:pointer-events-none:disabled{pointer-events:none}.disabled\:cursor-not-allowed:disabled{cursor:not-allowed}.disabled\:opacity-50:disabled{opacity:.5}.data-ending-style\:scale-90[data-ending-style]{--tw-scale-x:90%;--tw-scale-y:90%;--tw-scale-z:90%;scale:var(--tw-scale-x)var(--tw-scale-y)}.data-ending-style\:opacity-0[data-ending-style]{opacity:0}.data-instant\:transition-none[data-instant]{transition-property:none}.data-starting-style\:scale-90[data-starting-style]{--tw-scale-x:90%;--tw-scale-y:90%;--tw-scale-z:90%;scale:var(--tw-scale-x)var(--tw-scale-y)}.data-starting-style\:opacity-0[data-starting-style]{opacity:0}.data-\[highlighted\]\:bg-muted[data-highlighted]{background-color:var(--color-muted)}.data-\[highlighted\]\:bg-muted\/50[data-highlighted]{background-color:#f2f2f280}@supports (color:color-mix(in lab, red, red)){.data-\[highlighted\]\:bg-muted\/50[data-highlighted]{background-color:color-mix(in oklab,var(--color-muted)50%,transparent)}}.data-\[highlighted\]\:text-foreground[data-highlighted]{color:var(--color-foreground)}@media (prefers-color-scheme:dark){.dark\:shadow-none{--tw-shadow:0 0 #0000;box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.dark\:-outline-offset-1{outline-offset:calc(1px*-1)}}.\[\&_svg\]\:pointer-events-none svg{pointer-events:none}.\[\&_svg\]\:size-3\.5 svg{width:calc(var(--spacing)*3.5);height:calc(var(--spacing)*3.5)}.\[\&_svg\]\:shrink-0 svg{flex-shrink:0}.\[\&\:\:-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button{appearance:none}.\[\&\:\:-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button{appearance:none}.\[\&\:\:-webkit-scrollbar\]\:hidden::-webkit-scrollbar{display:none}}@media (prefers-reduced-motion:reduce){*,:before,:after{transition:none;animation:none}}.lucide{stroke-width:1px}@keyframes enter{0%{opacity:var(--tw-enter-opacity,1);transform:translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0))}}@keyframes exit{to{opacity:var(--tw-exit-opacity,1);transform:translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0))}}@property --tw-translate-x{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-y{syntax:"*";inherits:false;initial-value:0}@property --tw-translate-z{syntax:"*";inherits:false;initial-value:0}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-ordinal{syntax:"*";inherits:false}@property --tw-slashed-zero{syntax:"*";inherits:false}@property --tw-numeric-figure{syntax:"*";inherits:false}@property --tw-numeric-spacing{syntax:"*";inherits:false}@property --tw-numeric-fraction{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-outline-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}@property --tw-backdrop-blur{syntax:"*";inherits:false}@property --tw-backdrop-brightness{syntax:"*";inherits:false}@property --tw-backdrop-contrast{syntax:"*";inherits:false}@property --tw-backdrop-grayscale{syntax:"*";inherits:false}@property --tw-backdrop-hue-rotate{syntax:"*";inherits:false}@property --tw-backdrop-invert{syntax:"*";inherits:false}@property --tw-backdrop-opacity{syntax:"*";inherits:false}@property --tw-backdrop-saturate{syntax:"*";inherits:false}@property --tw-backdrop-sepia{syntax:"*";inherits:false}@property --tw-duration{syntax:"*";inherits:false}@property --tw-ease{syntax:"*";inherits:false}@property --tw-scale-x{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-y{syntax:"*";inherits:false;initial-value:1}@property --tw-scale-z{syntax:"*";inherits:false;initial-value:1}@keyframes pulse{50%{opacity:.5}}
@@ -386,8 +386,6 @@ type SessionItem = {
386
386
  declare function parsePropertyValue(value: string): CSSPropertyValue;
387
387
  declare function formatPropertyValue(value: CSSPropertyValue): string;
388
388
 
389
- declare function clamp(value: number, min: number, max: number): number;
390
- declare function isInputFocused(): boolean;
391
389
  declare function getComputedStyles(element: HTMLElement): {
392
390
  spacing: SpacingProperties;
393
391
  borderRadius: BorderRadiusProperties;
@@ -397,21 +395,8 @@ declare function getComputedBorderStyles(element: HTMLElement): BorderProperties
397
395
  /** CSS properties captured before editing so resetToOriginal can restore them. */
398
396
  declare const ORIGINAL_STYLE_PROPS: readonly ["padding-top", "padding-right", "padding-bottom", "padding-left", "padding", "margin-top", "margin-right", "margin-bottom", "margin-left", "margin", "gap", "border-radius", "border-top-left-radius", "border-top-right-radius", "border-bottom-right-radius", "border-bottom-left-radius", "border", "border-style", "border-width", "border-top-style", "border-top-width", "border-right-style", "border-right-width", "border-bottom-style", "border-bottom-width", "border-left-style", "border-left-width", "display", "flex-direction", "justify-content", "align-items", "width", "height", "background-color", "background", "color", "border-color", "outline-color", "outline-style", "outline-width", "box-shadow", "font-family", "font-weight", "font-size", "line-height", "letter-spacing", "text-align"];
399
397
  declare function getOriginalInlineStyles(element: HTMLElement): Record<string, string>;
400
- declare function stylesToTailwind(styles: Record<string, string>): string;
401
- declare const propertyToCSSMap: Record<SpacingPropertyKey, string>;
402
- declare const borderRadiusPropertyToCSSMap: Record<BorderRadiusPropertyKey, string>;
403
- declare const borderPropertyToCSSMap: Record<BorderPropertyKey, string>;
404
- declare const flexPropertyToCSSMap: Record<FlexPropertyKey, string>;
405
- declare const sizingPropertyToCSSMap: Record<SizingPropertyKey, string>;
406
- declare const typographyPropertyToCSSMap: Record<TypographyPropertyKey, string>;
407
- declare function isTextElement(element: HTMLElement): boolean;
408
398
  declare function getComputedTypography(element: HTMLElement): TypographyProperties;
409
- declare function detectSizingMode(element: HTMLElement, dimension: 'width' | 'height'): SizingMode;
410
- declare function getSizingValue(element: HTMLElement, dimension: 'width' | 'height'): SizingValue;
411
399
  declare function getComputedSizing(element: HTMLElement): SizingProperties;
412
- declare function sizingValueToCSS(sizing: SizingValue): string;
413
- declare function sizingToTailwind(dimension: 'width' | 'height', sizing: SizingValue): string;
414
- declare function parseColorValue(cssValue: string): ColorValue;
415
400
  declare function getComputedBoxShadow(element: HTMLElement): string;
416
401
  declare function getComputedColorStyles(element: HTMLElement): ColorProperties;
417
402
  declare function getSelectionColors(element: HTMLElement): ColorValue[];
@@ -426,6 +411,22 @@ interface AllComputedStyles {
426
411
  typography: TypographyProperties;
427
412
  }
428
413
  declare function getAllComputedStyles(element: HTMLElement): AllComputedStyles;
414
+
415
+ declare function clamp(value: number, min: number, max: number): number;
416
+ declare function isInputFocused(): boolean;
417
+ declare function stylesToTailwind(styles: Record<string, string>): string;
418
+ declare const propertyToCSSMap: Record<SpacingPropertyKey, string>;
419
+ declare const borderRadiusPropertyToCSSMap: Record<BorderRadiusPropertyKey, string>;
420
+ declare const borderPropertyToCSSMap: Record<BorderPropertyKey, string>;
421
+ declare const flexPropertyToCSSMap: Record<FlexPropertyKey, string>;
422
+ declare const sizingPropertyToCSSMap: Record<SizingPropertyKey, string>;
423
+ declare const typographyPropertyToCSSMap: Record<TypographyPropertyKey, string>;
424
+ declare function isTextElement(element: HTMLElement): boolean;
425
+ declare function detectSizingMode(element: HTMLElement, dimension: 'width' | 'height'): SizingMode;
426
+ declare function getSizingValue(element: HTMLElement, dimension: 'width' | 'height'): SizingValue;
427
+ declare function sizingValueToCSS(sizing: SizingValue): string;
428
+ declare function sizingToTailwind(dimension: 'width' | 'height', sizing: SizingValue): string;
429
+ declare function parseColorValue(cssValue: string): ColorValue;
429
430
  declare const colorPropertyToCSSMap: Record<ColorPropertyKey, string>;
430
431
  declare function colorToTailwind(property: ColorPropertyKey, colorValue: ColorValue): string;
431
432
  declare function getElementInfo(element: HTMLElement): ElementInfo;
@@ -386,8 +386,6 @@ type SessionItem = {
386
386
  declare function parsePropertyValue(value: string): CSSPropertyValue;
387
387
  declare function formatPropertyValue(value: CSSPropertyValue): string;
388
388
 
389
- declare function clamp(value: number, min: number, max: number): number;
390
- declare function isInputFocused(): boolean;
391
389
  declare function getComputedStyles(element: HTMLElement): {
392
390
  spacing: SpacingProperties;
393
391
  borderRadius: BorderRadiusProperties;
@@ -397,21 +395,8 @@ declare function getComputedBorderStyles(element: HTMLElement): BorderProperties
397
395
  /** CSS properties captured before editing so resetToOriginal can restore them. */
398
396
  declare const ORIGINAL_STYLE_PROPS: readonly ["padding-top", "padding-right", "padding-bottom", "padding-left", "padding", "margin-top", "margin-right", "margin-bottom", "margin-left", "margin", "gap", "border-radius", "border-top-left-radius", "border-top-right-radius", "border-bottom-right-radius", "border-bottom-left-radius", "border", "border-style", "border-width", "border-top-style", "border-top-width", "border-right-style", "border-right-width", "border-bottom-style", "border-bottom-width", "border-left-style", "border-left-width", "display", "flex-direction", "justify-content", "align-items", "width", "height", "background-color", "background", "color", "border-color", "outline-color", "outline-style", "outline-width", "box-shadow", "font-family", "font-weight", "font-size", "line-height", "letter-spacing", "text-align"];
399
397
  declare function getOriginalInlineStyles(element: HTMLElement): Record<string, string>;
400
- declare function stylesToTailwind(styles: Record<string, string>): string;
401
- declare const propertyToCSSMap: Record<SpacingPropertyKey, string>;
402
- declare const borderRadiusPropertyToCSSMap: Record<BorderRadiusPropertyKey, string>;
403
- declare const borderPropertyToCSSMap: Record<BorderPropertyKey, string>;
404
- declare const flexPropertyToCSSMap: Record<FlexPropertyKey, string>;
405
- declare const sizingPropertyToCSSMap: Record<SizingPropertyKey, string>;
406
- declare const typographyPropertyToCSSMap: Record<TypographyPropertyKey, string>;
407
- declare function isTextElement(element: HTMLElement): boolean;
408
398
  declare function getComputedTypography(element: HTMLElement): TypographyProperties;
409
- declare function detectSizingMode(element: HTMLElement, dimension: 'width' | 'height'): SizingMode;
410
- declare function getSizingValue(element: HTMLElement, dimension: 'width' | 'height'): SizingValue;
411
399
  declare function getComputedSizing(element: HTMLElement): SizingProperties;
412
- declare function sizingValueToCSS(sizing: SizingValue): string;
413
- declare function sizingToTailwind(dimension: 'width' | 'height', sizing: SizingValue): string;
414
- declare function parseColorValue(cssValue: string): ColorValue;
415
400
  declare function getComputedBoxShadow(element: HTMLElement): string;
416
401
  declare function getComputedColorStyles(element: HTMLElement): ColorProperties;
417
402
  declare function getSelectionColors(element: HTMLElement): ColorValue[];
@@ -426,6 +411,22 @@ interface AllComputedStyles {
426
411
  typography: TypographyProperties;
427
412
  }
428
413
  declare function getAllComputedStyles(element: HTMLElement): AllComputedStyles;
414
+
415
+ declare function clamp(value: number, min: number, max: number): number;
416
+ declare function isInputFocused(): boolean;
417
+ declare function stylesToTailwind(styles: Record<string, string>): string;
418
+ declare const propertyToCSSMap: Record<SpacingPropertyKey, string>;
419
+ declare const borderRadiusPropertyToCSSMap: Record<BorderRadiusPropertyKey, string>;
420
+ declare const borderPropertyToCSSMap: Record<BorderPropertyKey, string>;
421
+ declare const flexPropertyToCSSMap: Record<FlexPropertyKey, string>;
422
+ declare const sizingPropertyToCSSMap: Record<SizingPropertyKey, string>;
423
+ declare const typographyPropertyToCSSMap: Record<TypographyPropertyKey, string>;
424
+ declare function isTextElement(element: HTMLElement): boolean;
425
+ declare function detectSizingMode(element: HTMLElement, dimension: 'width' | 'height'): SizingMode;
426
+ declare function getSizingValue(element: HTMLElement, dimension: 'width' | 'height'): SizingValue;
427
+ declare function sizingValueToCSS(sizing: SizingValue): string;
428
+ declare function sizingToTailwind(dimension: 'width' | 'height', sizing: SizingValue): string;
429
+ declare function parseColorValue(cssValue: string): ColorValue;
429
430
  declare const colorPropertyToCSSMap: Record<ColorPropertyKey, string>;
430
431
  declare function colorToTailwind(property: ColorPropertyKey, colorValue: ColorValue): string;
431
432
  declare function getElementInfo(element: HTMLElement): ElementInfo;
package/dist/utils.d.mts CHANGED
@@ -1 +1 @@
1
- export { ag as AllComputedStyles, e as BorderProperties, d as BorderPropertyKey, s as BorderRadiusProperties, B as BorderRadiusPropertyKey, t as BorderStyle, C as CSSPropertyValue, u as ColorProperties, i as ColorPropertyKey, j as ColorValue, m as DirectEditState, D as DragState, a as DropIndicator, x as DropTarget, E as ElementInfo, y as ElementLocator, ah as ExportContentProfile, z as FlexProperties, F as FlexPropertyKey, M as MeasurementLine, H as MeasurementState, ai as MovePlanContext, aj as ORIGINAL_STYLE_PROPS, R as ReactComponentFrame, J as SizingMode, K as SizingProperties, f as SizingPropertyKey, g as SizingValue, L as SpacingProperties, c as SpacingPropertyKey, q as TypographyProperties, T as TypographyPropertyKey, ak as borderPropertyToCSSMap, al as borderRadiusPropertyToCSSMap, Q as buildCommentExport, am as buildEditExport, an as buildElementContext, ao as buildExportInstruction, ap as buildMovePlan, aq as buildMovePlanContext, V as buildSessionExport, W as calculateDropPosition, X as calculateElementMeasurements, Y as calculateGuidelineMeasurements, Z as calculateParentMeasurements, ar as clamp, as as collapseExportShorthands, at as collapseSpacingShorthands, au as colorPropertyToCSSMap, _ as colorToTailwind, av as computeHoverHighlight, aw as computeIntendedIndex, ax as detectChildrenDirection, ay as detectSizingMode, $ as elementFromPointWithoutOverlays, az as ensureDirectTextSpanAtPoint, aA as findChildAtPoint, a0 as findContainerAtPoint, a1 as findLayoutContainerAtPoint, aB as findTextOwnerAtPoint, aC as findTextOwnerByRangeScan, aD as flexPropertyToCSSMap, aE as formatComponentTree, a2 as formatPropertyValue, aF as getAllComputedStyles, aG as getChildBriefInfo, a3 as getComputedBorderStyles, a4 as getComputedBoxShadow, a5 as getComputedColorStyles, aH as getComputedSizing, a6 as getComputedStyles, aI as getComputedTypography, aJ as getContextOnlyBlocks, a7 as getDimensionDisplay, aK as getElementDisplayName, a8 as getElementInfo, a9 as getElementLocator, aL as getElementSource, aM as getExportContentProfile, aa as getFlexDirection, aN as getLocatorHeader, aO as getMoveIntentForEdit, aP as getOriginalInlineStyles, aQ as getSelectionColors, aR as getSizingValue, aS as hasSessionEditChanges, ab as isFlexContainer, aT as isInFlowChild, aU as isInputFocused, ac as isLayoutContainer, aV as isTextElement, ad as parseColorValue, ae as parsePropertyValue, aW as partitionMultiSelectedEdits, aX as propertyToCSSMap, aY as resolveElementTarget, aZ as sizingPropertyToCSSMap, a_ as sizingToTailwind, a$ as sizingValueToCSS, af as stylesToTailwind, b0 as typographyPropertyToCSSMap } from './utils-Byovnuwg.mjs';
1
+ export { ag as AllComputedStyles, e as BorderProperties, d as BorderPropertyKey, s as BorderRadiusProperties, B as BorderRadiusPropertyKey, t as BorderStyle, C as CSSPropertyValue, u as ColorProperties, i as ColorPropertyKey, j as ColorValue, m as DirectEditState, D as DragState, a as DropIndicator, x as DropTarget, E as ElementInfo, y as ElementLocator, ah as ExportContentProfile, z as FlexProperties, F as FlexPropertyKey, M as MeasurementLine, H as MeasurementState, ai as MovePlanContext, aj as ORIGINAL_STYLE_PROPS, R as ReactComponentFrame, J as SizingMode, K as SizingProperties, f as SizingPropertyKey, g as SizingValue, L as SpacingProperties, c as SpacingPropertyKey, q as TypographyProperties, T as TypographyPropertyKey, ak as borderPropertyToCSSMap, al as borderRadiusPropertyToCSSMap, Q as buildCommentExport, am as buildEditExport, an as buildElementContext, ao as buildExportInstruction, ap as buildMovePlan, aq as buildMovePlanContext, V as buildSessionExport, W as calculateDropPosition, X as calculateElementMeasurements, Y as calculateGuidelineMeasurements, Z as calculateParentMeasurements, ar as clamp, as as collapseExportShorthands, at as collapseSpacingShorthands, au as colorPropertyToCSSMap, _ as colorToTailwind, av as computeHoverHighlight, aw as computeIntendedIndex, ax as detectChildrenDirection, ay as detectSizingMode, $ as elementFromPointWithoutOverlays, az as ensureDirectTextSpanAtPoint, aA as findChildAtPoint, a0 as findContainerAtPoint, a1 as findLayoutContainerAtPoint, aB as findTextOwnerAtPoint, aC as findTextOwnerByRangeScan, aD as flexPropertyToCSSMap, aE as formatComponentTree, a2 as formatPropertyValue, aF as getAllComputedStyles, aG as getChildBriefInfo, a3 as getComputedBorderStyles, a4 as getComputedBoxShadow, a5 as getComputedColorStyles, aH as getComputedSizing, a6 as getComputedStyles, aI as getComputedTypography, aJ as getContextOnlyBlocks, a7 as getDimensionDisplay, aK as getElementDisplayName, a8 as getElementInfo, a9 as getElementLocator, aL as getElementSource, aM as getExportContentProfile, aa as getFlexDirection, aN as getLocatorHeader, aO as getMoveIntentForEdit, aP as getOriginalInlineStyles, aQ as getSelectionColors, aR as getSizingValue, aS as hasSessionEditChanges, ab as isFlexContainer, aT as isInFlowChild, aU as isInputFocused, ac as isLayoutContainer, aV as isTextElement, ad as parseColorValue, ae as parsePropertyValue, aW as partitionMultiSelectedEdits, aX as propertyToCSSMap, aY as resolveElementTarget, aZ as sizingPropertyToCSSMap, a_ as sizingToTailwind, a$ as sizingValueToCSS, af as stylesToTailwind, b0 as typographyPropertyToCSSMap } from './utils-ovHeRo0g.mjs';
package/dist/utils.d.ts CHANGED
@@ -1 +1 @@
1
- export { ag as AllComputedStyles, e as BorderProperties, d as BorderPropertyKey, s as BorderRadiusProperties, B as BorderRadiusPropertyKey, t as BorderStyle, C as CSSPropertyValue, u as ColorProperties, i as ColorPropertyKey, j as ColorValue, m as DirectEditState, D as DragState, a as DropIndicator, x as DropTarget, E as ElementInfo, y as ElementLocator, ah as ExportContentProfile, z as FlexProperties, F as FlexPropertyKey, M as MeasurementLine, H as MeasurementState, ai as MovePlanContext, aj as ORIGINAL_STYLE_PROPS, R as ReactComponentFrame, J as SizingMode, K as SizingProperties, f as SizingPropertyKey, g as SizingValue, L as SpacingProperties, c as SpacingPropertyKey, q as TypographyProperties, T as TypographyPropertyKey, ak as borderPropertyToCSSMap, al as borderRadiusPropertyToCSSMap, Q as buildCommentExport, am as buildEditExport, an as buildElementContext, ao as buildExportInstruction, ap as buildMovePlan, aq as buildMovePlanContext, V as buildSessionExport, W as calculateDropPosition, X as calculateElementMeasurements, Y as calculateGuidelineMeasurements, Z as calculateParentMeasurements, ar as clamp, as as collapseExportShorthands, at as collapseSpacingShorthands, au as colorPropertyToCSSMap, _ as colorToTailwind, av as computeHoverHighlight, aw as computeIntendedIndex, ax as detectChildrenDirection, ay as detectSizingMode, $ as elementFromPointWithoutOverlays, az as ensureDirectTextSpanAtPoint, aA as findChildAtPoint, a0 as findContainerAtPoint, a1 as findLayoutContainerAtPoint, aB as findTextOwnerAtPoint, aC as findTextOwnerByRangeScan, aD as flexPropertyToCSSMap, aE as formatComponentTree, a2 as formatPropertyValue, aF as getAllComputedStyles, aG as getChildBriefInfo, a3 as getComputedBorderStyles, a4 as getComputedBoxShadow, a5 as getComputedColorStyles, aH as getComputedSizing, a6 as getComputedStyles, aI as getComputedTypography, aJ as getContextOnlyBlocks, a7 as getDimensionDisplay, aK as getElementDisplayName, a8 as getElementInfo, a9 as getElementLocator, aL as getElementSource, aM as getExportContentProfile, aa as getFlexDirection, aN as getLocatorHeader, aO as getMoveIntentForEdit, aP as getOriginalInlineStyles, aQ as getSelectionColors, aR as getSizingValue, aS as hasSessionEditChanges, ab as isFlexContainer, aT as isInFlowChild, aU as isInputFocused, ac as isLayoutContainer, aV as isTextElement, ad as parseColorValue, ae as parsePropertyValue, aW as partitionMultiSelectedEdits, aX as propertyToCSSMap, aY as resolveElementTarget, aZ as sizingPropertyToCSSMap, a_ as sizingToTailwind, a$ as sizingValueToCSS, af as stylesToTailwind, b0 as typographyPropertyToCSSMap } from './utils-Byovnuwg.js';
1
+ export { ag as AllComputedStyles, e as BorderProperties, d as BorderPropertyKey, s as BorderRadiusProperties, B as BorderRadiusPropertyKey, t as BorderStyle, C as CSSPropertyValue, u as ColorProperties, i as ColorPropertyKey, j as ColorValue, m as DirectEditState, D as DragState, a as DropIndicator, x as DropTarget, E as ElementInfo, y as ElementLocator, ah as ExportContentProfile, z as FlexProperties, F as FlexPropertyKey, M as MeasurementLine, H as MeasurementState, ai as MovePlanContext, aj as ORIGINAL_STYLE_PROPS, R as ReactComponentFrame, J as SizingMode, K as SizingProperties, f as SizingPropertyKey, g as SizingValue, L as SpacingProperties, c as SpacingPropertyKey, q as TypographyProperties, T as TypographyPropertyKey, ak as borderPropertyToCSSMap, al as borderRadiusPropertyToCSSMap, Q as buildCommentExport, am as buildEditExport, an as buildElementContext, ao as buildExportInstruction, ap as buildMovePlan, aq as buildMovePlanContext, V as buildSessionExport, W as calculateDropPosition, X as calculateElementMeasurements, Y as calculateGuidelineMeasurements, Z as calculateParentMeasurements, ar as clamp, as as collapseExportShorthands, at as collapseSpacingShorthands, au as colorPropertyToCSSMap, _ as colorToTailwind, av as computeHoverHighlight, aw as computeIntendedIndex, ax as detectChildrenDirection, ay as detectSizingMode, $ as elementFromPointWithoutOverlays, az as ensureDirectTextSpanAtPoint, aA as findChildAtPoint, a0 as findContainerAtPoint, a1 as findLayoutContainerAtPoint, aB as findTextOwnerAtPoint, aC as findTextOwnerByRangeScan, aD as flexPropertyToCSSMap, aE as formatComponentTree, a2 as formatPropertyValue, aF as getAllComputedStyles, aG as getChildBriefInfo, a3 as getComputedBorderStyles, a4 as getComputedBoxShadow, a5 as getComputedColorStyles, aH as getComputedSizing, a6 as getComputedStyles, aI as getComputedTypography, aJ as getContextOnlyBlocks, a7 as getDimensionDisplay, aK as getElementDisplayName, a8 as getElementInfo, a9 as getElementLocator, aL as getElementSource, aM as getExportContentProfile, aa as getFlexDirection, aN as getLocatorHeader, aO as getMoveIntentForEdit, aP as getOriginalInlineStyles, aQ as getSelectionColors, aR as getSizingValue, aS as hasSessionEditChanges, ab as isFlexContainer, aT as isInFlowChild, aU as isInputFocused, ac as isLayoutContainer, aV as isTextElement, ad as parseColorValue, ae as parsePropertyValue, aW as partitionMultiSelectedEdits, aX as propertyToCSSMap, aY as resolveElementTarget, aZ as sizingPropertyToCSSMap, a_ as sizingToTailwind, a$ as sizingValueToCSS, af as stylesToTailwind, b0 as typographyPropertyToCSSMap } from './utils-ovHeRo0g.js';