@windrun-huaiin/third-ui 5.13.4 → 5.13.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/fuma/mdx/index.d.mts +5 -1
- package/dist/fuma/mdx/index.d.ts +5 -1
- package/dist/fuma/mdx/index.js +2713 -325
- package/dist/fuma/mdx/index.js.map +1 -1
- package/dist/fuma/mdx/index.mjs +2714 -326
- package/dist/fuma/mdx/index.mjs.map +1 -1
- package/dist/fuma/server.js +2471 -210
- package/dist/fuma/server.js.map +1 -1
- package/dist/fuma/server.mjs +2468 -207
- package/dist/fuma/server.mjs.map +1 -1
- package/dist/lib/server.d.mts +148 -0
- package/dist/lib/server.d.ts +148 -0
- package/package.json +2 -2
- package/src/fuma/mdx/mermaid.tsx +141 -3
package/dist/fuma/server.mjs
CHANGED
|
@@ -901,7 +901,7 @@ var require_acorn = __commonJS({
|
|
|
901
901
|
this.privateNameStack = [];
|
|
902
902
|
};
|
|
903
903
|
var prototypeAccessors2 = { inFunction: { configurable: true }, inGenerator: { configurable: true }, inAsync: { configurable: true }, canAwait: { configurable: true }, allowSuper: { configurable: true }, allowDirectSuper: { configurable: true }, treatFunctionsAsVar: { configurable: true }, allowNewDotTarget: { configurable: true }, inClassStaticBlock: { configurable: true } };
|
|
904
|
-
Parser3.prototype.parse = function
|
|
904
|
+
Parser3.prototype.parse = function parse6() {
|
|
905
905
|
var node2 = this.options.program || this.startNode();
|
|
906
906
|
this.nextToken();
|
|
907
907
|
return this.parseTopLevel(node2);
|
|
@@ -961,7 +961,7 @@ var require_acorn = __commonJS({
|
|
|
961
961
|
}
|
|
962
962
|
return cls;
|
|
963
963
|
};
|
|
964
|
-
Parser3.parse = function
|
|
964
|
+
Parser3.parse = function parse6(input, options) {
|
|
965
965
|
return new this(options, input).parse();
|
|
966
966
|
};
|
|
967
967
|
Parser3.parseExpressionAt = function parseExpressionAt3(input, pos, options) {
|
|
@@ -3761,7 +3761,7 @@ var require_acorn = __commonJS({
|
|
|
3761
3761
|
}
|
|
3762
3762
|
}
|
|
3763
3763
|
};
|
|
3764
|
-
var
|
|
3764
|
+
var Node4 = function Node5(parser, pos, loc) {
|
|
3765
3765
|
this.type = "";
|
|
3766
3766
|
this.start = pos;
|
|
3767
3767
|
this.end = 0;
|
|
@@ -3777,10 +3777,10 @@ var require_acorn = __commonJS({
|
|
|
3777
3777
|
};
|
|
3778
3778
|
var pp$22 = Parser3.prototype;
|
|
3779
3779
|
pp$22.startNode = function() {
|
|
3780
|
-
return new
|
|
3780
|
+
return new Node4(this, this.start, this.startLoc);
|
|
3781
3781
|
};
|
|
3782
3782
|
pp$22.startNodeAt = function(pos, loc) {
|
|
3783
|
-
return new
|
|
3783
|
+
return new Node4(this, pos, loc);
|
|
3784
3784
|
};
|
|
3785
3785
|
function finishNodeAt2(node2, type, pos, loc) {
|
|
3786
3786
|
node2.type = type;
|
|
@@ -3800,7 +3800,7 @@ var require_acorn = __commonJS({
|
|
|
3800
3800
|
return finishNodeAt2.call(this, node2, type, pos, loc);
|
|
3801
3801
|
};
|
|
3802
3802
|
pp$22.copyNode = function(node2) {
|
|
3803
|
-
var newNode = new
|
|
3803
|
+
var newNode = new Node4(this, node2.start, this.startLoc);
|
|
3804
3804
|
for (var prop in node2) {
|
|
3805
3805
|
newNode[prop] = node2[prop];
|
|
3806
3806
|
}
|
|
@@ -4998,11 +4998,11 @@ var require_acorn = __commonJS({
|
|
|
4998
4998
|
return result;
|
|
4999
4999
|
};
|
|
5000
5000
|
pp$12.regexp_classString = function(state) {
|
|
5001
|
-
var
|
|
5001
|
+
var count3 = 0;
|
|
5002
5002
|
while (this.regexp_eatClassSetCharacter(state)) {
|
|
5003
|
-
|
|
5003
|
+
count3++;
|
|
5004
5004
|
}
|
|
5005
|
-
return
|
|
5005
|
+
return count3 === 1 ? CharSetOk2 : CharSetString2;
|
|
5006
5006
|
};
|
|
5007
5007
|
pp$12.regexp_eatClassSetCharacter = function(state) {
|
|
5008
5008
|
var start2 = state.pos;
|
|
@@ -6009,7 +6009,7 @@ var require_acorn = __commonJS({
|
|
|
6009
6009
|
Position: Position3,
|
|
6010
6010
|
SourceLocation: SourceLocation3,
|
|
6011
6011
|
getLineInfo: getLineInfo2,
|
|
6012
|
-
Node:
|
|
6012
|
+
Node: Node4,
|
|
6013
6013
|
TokenType: TokenType3,
|
|
6014
6014
|
tokTypes: types$12,
|
|
6015
6015
|
keywordTypes: keywords2,
|
|
@@ -6023,7 +6023,7 @@ var require_acorn = __commonJS({
|
|
|
6023
6023
|
lineBreakG: lineBreakG2,
|
|
6024
6024
|
nonASCIIwhitespace: nonASCIIwhitespace2
|
|
6025
6025
|
};
|
|
6026
|
-
function
|
|
6026
|
+
function parse5(input, options) {
|
|
6027
6027
|
return Parser3.parse(input, options);
|
|
6028
6028
|
}
|
|
6029
6029
|
function parseExpressionAt2(input, pos, options) {
|
|
@@ -6032,7 +6032,7 @@ var require_acorn = __commonJS({
|
|
|
6032
6032
|
function tokenizer2(input, options) {
|
|
6033
6033
|
return Parser3.tokenizer(input, options);
|
|
6034
6034
|
}
|
|
6035
|
-
exports2.Node =
|
|
6035
|
+
exports2.Node = Node4;
|
|
6036
6036
|
exports2.Parser = Parser3;
|
|
6037
6037
|
exports2.Position = Position3;
|
|
6038
6038
|
exports2.SourceLocation = SourceLocation3;
|
|
@@ -6048,7 +6048,7 @@ var require_acorn = __commonJS({
|
|
|
6048
6048
|
exports2.lineBreak = lineBreak2;
|
|
6049
6049
|
exports2.lineBreakG = lineBreakG2;
|
|
6050
6050
|
exports2.nonASCIIwhitespace = nonASCIIwhitespace2;
|
|
6051
|
-
exports2.parse =
|
|
6051
|
+
exports2.parse = parse5;
|
|
6052
6052
|
exports2.parseExpressionAt = parseExpressionAt2;
|
|
6053
6053
|
exports2.tokContexts = types2;
|
|
6054
6054
|
exports2.tokTypes = types$12;
|
|
@@ -6231,12 +6231,12 @@ var require_acorn_jsx = __commonJS({
|
|
|
6231
6231
|
return this.finishToken(tt.string, out);
|
|
6232
6232
|
}
|
|
6233
6233
|
jsx_readEntity() {
|
|
6234
|
-
let str = "",
|
|
6234
|
+
let str = "", count3 = 0, entity;
|
|
6235
6235
|
let ch = this.input[this.pos];
|
|
6236
6236
|
if (ch !== "&")
|
|
6237
6237
|
this.raise(this.pos, "Entity must start with an ampersand");
|
|
6238
6238
|
let startPos = ++this.pos;
|
|
6239
|
-
while (this.pos < this.input.length &&
|
|
6239
|
+
while (this.pos < this.input.length && count3++ < 10) {
|
|
6240
6240
|
ch = this.input[this.pos++];
|
|
6241
6241
|
if (ch === ";") {
|
|
6242
6242
|
if (str[0] === "#") {
|
|
@@ -6582,7 +6582,7 @@ var require_format = __commonJS({
|
|
|
6582
6582
|
|
|
6583
6583
|
// src/fuma/fuma-page-genarator.tsx
|
|
6584
6584
|
import { DocsBody, DocsDescription, DocsPage, DocsTitle } from "fumadocs-ui/page";
|
|
6585
|
-
import { cloneElement as
|
|
6585
|
+
import { cloneElement as cloneElement4 } from "react";
|
|
6586
6586
|
|
|
6587
6587
|
// ../base-ui/src/assets/github.tsx
|
|
6588
6588
|
import React from "react";
|
|
@@ -9225,162 +9225,2286 @@ var globalLucideIcons = __spreadValues(__spreadValues({}, styledLimitedIconsPart
|
|
|
9225
9225
|
|
|
9226
9226
|
// src/fuma/mdx/mermaid.tsx
|
|
9227
9227
|
import { useTheme } from "next-themes";
|
|
9228
|
-
import { useEffect, useId, useState } from "react";
|
|
9229
|
-
import { jsx as jsx33, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
9228
|
+
import { useCallback as useCallback7, useEffect as useEffect15, useId as useId2, useRef as useRef11, useState as useState10 } from "react";
|
|
9230
9229
|
|
|
9231
|
-
// src/
|
|
9232
|
-
import
|
|
9233
|
-
import { useState as useState2 } from "react";
|
|
9234
|
-
import Zoom from "react-medium-image-zoom";
|
|
9235
|
-
import { jsx as jsx34 } from "react/jsx-runtime";
|
|
9230
|
+
// ../base-ui/src/ui/alert-dialog.tsx
|
|
9231
|
+
import * as React57 from "react";
|
|
9236
9232
|
|
|
9237
|
-
//
|
|
9238
|
-
import
|
|
9233
|
+
// ../../node_modules/.pnpm/@radix-ui+react-alert-dialog@1.1.14_@types+react-dom@19.1.3_@types+react@19.1.2__@types_c6ff7006a888f63e36d2502e019661c3/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs
|
|
9234
|
+
import * as React55 from "react";
|
|
9239
9235
|
|
|
9240
|
-
//
|
|
9236
|
+
// ../../node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-context/dist/index.mjs
|
|
9237
|
+
import * as React33 from "react";
|
|
9238
|
+
import { jsx as jsx33 } from "react/jsx-runtime";
|
|
9239
|
+
function createContext2(rootComponentName, defaultContext) {
|
|
9240
|
+
const Context = React33.createContext(defaultContext);
|
|
9241
|
+
const Provider = (props) => {
|
|
9242
|
+
const _a = props, { children } = _a, context = __objRest(_a, ["children"]);
|
|
9243
|
+
const value2 = React33.useMemo(() => context, Object.values(context));
|
|
9244
|
+
return /* @__PURE__ */ jsx33(Context.Provider, { value: value2, children });
|
|
9245
|
+
};
|
|
9246
|
+
Provider.displayName = rootComponentName + "Provider";
|
|
9247
|
+
function useContext22(consumerName) {
|
|
9248
|
+
const context = React33.useContext(Context);
|
|
9249
|
+
if (context) return context;
|
|
9250
|
+
if (defaultContext !== void 0) return defaultContext;
|
|
9251
|
+
throw new Error(`\`${consumerName}\` must be used within \`${rootComponentName}\``);
|
|
9252
|
+
}
|
|
9253
|
+
return [Provider, useContext22];
|
|
9254
|
+
}
|
|
9255
|
+
function createContextScope(scopeName, createContextScopeDeps = []) {
|
|
9256
|
+
let defaultContexts = [];
|
|
9257
|
+
function createContext32(rootComponentName, defaultContext) {
|
|
9258
|
+
const BaseContext = React33.createContext(defaultContext);
|
|
9259
|
+
const index2 = defaultContexts.length;
|
|
9260
|
+
defaultContexts = [...defaultContexts, defaultContext];
|
|
9261
|
+
const Provider = (props) => {
|
|
9262
|
+
var _b;
|
|
9263
|
+
const _a = props, { scope, children } = _a, context = __objRest(_a, ["scope", "children"]);
|
|
9264
|
+
const Context = ((_b = scope == null ? void 0 : scope[scopeName]) == null ? void 0 : _b[index2]) || BaseContext;
|
|
9265
|
+
const value2 = React33.useMemo(() => context, Object.values(context));
|
|
9266
|
+
return /* @__PURE__ */ jsx33(Context.Provider, { value: value2, children });
|
|
9267
|
+
};
|
|
9268
|
+
Provider.displayName = rootComponentName + "Provider";
|
|
9269
|
+
function useContext22(consumerName, scope) {
|
|
9270
|
+
var _a;
|
|
9271
|
+
const Context = ((_a = scope == null ? void 0 : scope[scopeName]) == null ? void 0 : _a[index2]) || BaseContext;
|
|
9272
|
+
const context = React33.useContext(Context);
|
|
9273
|
+
if (context) return context;
|
|
9274
|
+
if (defaultContext !== void 0) return defaultContext;
|
|
9275
|
+
throw new Error(`\`${consumerName}\` must be used within \`${rootComponentName}\``);
|
|
9276
|
+
}
|
|
9277
|
+
return [Provider, useContext22];
|
|
9278
|
+
}
|
|
9279
|
+
const createScope = () => {
|
|
9280
|
+
const scopeContexts = defaultContexts.map((defaultContext) => {
|
|
9281
|
+
return React33.createContext(defaultContext);
|
|
9282
|
+
});
|
|
9283
|
+
return function useScope(scope) {
|
|
9284
|
+
const contexts = (scope == null ? void 0 : scope[scopeName]) || scopeContexts;
|
|
9285
|
+
return React33.useMemo(
|
|
9286
|
+
() => ({ [`__scope${scopeName}`]: __spreadProps(__spreadValues({}, scope), { [scopeName]: contexts }) }),
|
|
9287
|
+
[scope, contexts]
|
|
9288
|
+
);
|
|
9289
|
+
};
|
|
9290
|
+
};
|
|
9291
|
+
createScope.scopeName = scopeName;
|
|
9292
|
+
return [createContext32, composeContextScopes(createScope, ...createContextScopeDeps)];
|
|
9293
|
+
}
|
|
9294
|
+
function composeContextScopes(...scopes) {
|
|
9295
|
+
const baseScope = scopes[0];
|
|
9296
|
+
if (scopes.length === 1) return baseScope;
|
|
9297
|
+
const createScope = () => {
|
|
9298
|
+
const scopeHooks = scopes.map((createScope2) => ({
|
|
9299
|
+
useScope: createScope2(),
|
|
9300
|
+
scopeName: createScope2.scopeName
|
|
9301
|
+
}));
|
|
9302
|
+
return function useComposedScopes(overrideScopes) {
|
|
9303
|
+
const nextScopes = scopeHooks.reduce((nextScopes2, { useScope, scopeName }) => {
|
|
9304
|
+
const scopeProps = useScope(overrideScopes);
|
|
9305
|
+
const currentScope = scopeProps[`__scope${scopeName}`];
|
|
9306
|
+
return __spreadValues(__spreadValues({}, nextScopes2), currentScope);
|
|
9307
|
+
}, {});
|
|
9308
|
+
return React33.useMemo(() => ({ [`__scope${baseScope.scopeName}`]: nextScopes }), [nextScopes]);
|
|
9309
|
+
};
|
|
9310
|
+
};
|
|
9311
|
+
createScope.scopeName = baseScope.scopeName;
|
|
9312
|
+
return createScope;
|
|
9313
|
+
}
|
|
9314
|
+
|
|
9315
|
+
// ../../node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-compose-refs/dist/index.mjs
|
|
9316
|
+
import * as React34 from "react";
|
|
9317
|
+
function setRef(ref2, value2) {
|
|
9318
|
+
if (typeof ref2 === "function") {
|
|
9319
|
+
return ref2(value2);
|
|
9320
|
+
} else if (ref2 !== null && ref2 !== void 0) {
|
|
9321
|
+
ref2.current = value2;
|
|
9322
|
+
}
|
|
9323
|
+
}
|
|
9324
|
+
function composeRefs(...refs) {
|
|
9325
|
+
return (node2) => {
|
|
9326
|
+
let hasCleanup = false;
|
|
9327
|
+
const cleanups = refs.map((ref2) => {
|
|
9328
|
+
const cleanup = setRef(ref2, node2);
|
|
9329
|
+
if (!hasCleanup && typeof cleanup == "function") {
|
|
9330
|
+
hasCleanup = true;
|
|
9331
|
+
}
|
|
9332
|
+
return cleanup;
|
|
9333
|
+
});
|
|
9334
|
+
if (hasCleanup) {
|
|
9335
|
+
return () => {
|
|
9336
|
+
for (let i = 0; i < cleanups.length; i++) {
|
|
9337
|
+
const cleanup = cleanups[i];
|
|
9338
|
+
if (typeof cleanup == "function") {
|
|
9339
|
+
cleanup();
|
|
9340
|
+
} else {
|
|
9341
|
+
setRef(refs[i], null);
|
|
9342
|
+
}
|
|
9343
|
+
}
|
|
9344
|
+
};
|
|
9345
|
+
}
|
|
9346
|
+
};
|
|
9347
|
+
}
|
|
9348
|
+
function useComposedRefs(...refs) {
|
|
9349
|
+
return React34.useCallback(composeRefs(...refs), refs);
|
|
9350
|
+
}
|
|
9351
|
+
|
|
9352
|
+
// ../../node_modules/.pnpm/@radix-ui+react-dialog@1.1.14_@types+react-dom@19.1.3_@types+react@19.1.2__@types+react_848f83211ce5e4d8275fe0d3e11a9387/node_modules/@radix-ui/react-dialog/dist/index.mjs
|
|
9353
|
+
import * as React54 from "react";
|
|
9354
|
+
|
|
9355
|
+
// ../../node_modules/.pnpm/@radix-ui+primitive@1.1.2/node_modules/@radix-ui/primitive/dist/index.mjs
|
|
9356
|
+
function composeEventHandlers(originalEventHandler, ourEventHandler, { checkForDefaultPrevented = true } = {}) {
|
|
9357
|
+
return function handleEvent(event) {
|
|
9358
|
+
originalEventHandler == null ? void 0 : originalEventHandler(event);
|
|
9359
|
+
if (checkForDefaultPrevented === false || !event.defaultPrevented) {
|
|
9360
|
+
return ourEventHandler == null ? void 0 : ourEventHandler(event);
|
|
9361
|
+
}
|
|
9362
|
+
};
|
|
9363
|
+
}
|
|
9364
|
+
|
|
9365
|
+
// ../../node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-id/dist/index.mjs
|
|
9366
|
+
import * as React36 from "react";
|
|
9367
|
+
|
|
9368
|
+
// ../../node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs
|
|
9369
|
+
import * as React35 from "react";
|
|
9370
|
+
var useLayoutEffect2 = (globalThis == null ? void 0 : globalThis.document) ? React35.useLayoutEffect : () => {
|
|
9371
|
+
};
|
|
9372
|
+
|
|
9373
|
+
// ../../node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-id/dist/index.mjs
|
|
9374
|
+
var useReactId = React36[" useId ".trim().toString()] || (() => void 0);
|
|
9375
|
+
var count = 0;
|
|
9376
|
+
function useId(deterministicId) {
|
|
9377
|
+
const [id, setId] = React36.useState(useReactId());
|
|
9378
|
+
useLayoutEffect2(() => {
|
|
9379
|
+
if (!deterministicId) setId((reactId) => reactId != null ? reactId : String(count++));
|
|
9380
|
+
}, [deterministicId]);
|
|
9381
|
+
return deterministicId || (id ? `radix-${id}` : "");
|
|
9382
|
+
}
|
|
9383
|
+
|
|
9384
|
+
// ../../node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs
|
|
9385
|
+
import * as React37 from "react";
|
|
9386
|
+
import * as React210 from "react";
|
|
9387
|
+
var useInsertionEffect = React37[" useInsertionEffect ".trim().toString()] || useLayoutEffect2;
|
|
9388
|
+
function useControllableState({
|
|
9389
|
+
prop,
|
|
9390
|
+
defaultProp,
|
|
9391
|
+
onChange = () => {
|
|
9392
|
+
},
|
|
9393
|
+
caller
|
|
9394
|
+
}) {
|
|
9395
|
+
const [uncontrolledProp, setUncontrolledProp, onChangeRef] = useUncontrolledState({
|
|
9396
|
+
defaultProp,
|
|
9397
|
+
onChange
|
|
9398
|
+
});
|
|
9399
|
+
const isControlled = prop !== void 0;
|
|
9400
|
+
const value2 = isControlled ? prop : uncontrolledProp;
|
|
9401
|
+
if (true) {
|
|
9402
|
+
const isControlledRef = React37.useRef(prop !== void 0);
|
|
9403
|
+
React37.useEffect(() => {
|
|
9404
|
+
const wasControlled = isControlledRef.current;
|
|
9405
|
+
if (wasControlled !== isControlled) {
|
|
9406
|
+
const from = wasControlled ? "controlled" : "uncontrolled";
|
|
9407
|
+
const to = isControlled ? "controlled" : "uncontrolled";
|
|
9408
|
+
console.warn(
|
|
9409
|
+
`${caller} is changing from ${from} to ${to}. Components should not switch from controlled to uncontrolled (or vice versa). Decide between using a controlled or uncontrolled value for the lifetime of the component.`
|
|
9410
|
+
);
|
|
9411
|
+
}
|
|
9412
|
+
isControlledRef.current = isControlled;
|
|
9413
|
+
}, [isControlled, caller]);
|
|
9414
|
+
}
|
|
9415
|
+
const setValue = React37.useCallback(
|
|
9416
|
+
(nextValue) => {
|
|
9417
|
+
var _a;
|
|
9418
|
+
if (isControlled) {
|
|
9419
|
+
const value22 = isFunction(nextValue) ? nextValue(prop) : nextValue;
|
|
9420
|
+
if (value22 !== prop) {
|
|
9421
|
+
(_a = onChangeRef.current) == null ? void 0 : _a.call(onChangeRef, value22);
|
|
9422
|
+
}
|
|
9423
|
+
} else {
|
|
9424
|
+
setUncontrolledProp(nextValue);
|
|
9425
|
+
}
|
|
9426
|
+
},
|
|
9427
|
+
[isControlled, prop, setUncontrolledProp, onChangeRef]
|
|
9428
|
+
);
|
|
9429
|
+
return [value2, setValue];
|
|
9430
|
+
}
|
|
9431
|
+
function useUncontrolledState({
|
|
9432
|
+
defaultProp,
|
|
9433
|
+
onChange
|
|
9434
|
+
}) {
|
|
9435
|
+
const [value2, setValue] = React37.useState(defaultProp);
|
|
9436
|
+
const prevValueRef = React37.useRef(value2);
|
|
9437
|
+
const onChangeRef = React37.useRef(onChange);
|
|
9438
|
+
useInsertionEffect(() => {
|
|
9439
|
+
onChangeRef.current = onChange;
|
|
9440
|
+
}, [onChange]);
|
|
9441
|
+
React37.useEffect(() => {
|
|
9442
|
+
var _a;
|
|
9443
|
+
if (prevValueRef.current !== value2) {
|
|
9444
|
+
(_a = onChangeRef.current) == null ? void 0 : _a.call(onChangeRef, value2);
|
|
9445
|
+
prevValueRef.current = value2;
|
|
9446
|
+
}
|
|
9447
|
+
}, [value2, prevValueRef]);
|
|
9448
|
+
return [value2, setValue, onChangeRef];
|
|
9449
|
+
}
|
|
9450
|
+
function isFunction(value2) {
|
|
9451
|
+
return typeof value2 === "function";
|
|
9452
|
+
}
|
|
9453
|
+
var SYNC_STATE = Symbol("RADIX:SYNC_STATE");
|
|
9454
|
+
|
|
9455
|
+
// ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.10_@types+react-dom@19.1.3_@types+react@19.1.2__@_048ea5800fbfacb7489e4b7d728b493c/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
|
|
9456
|
+
import * as React42 from "react";
|
|
9457
|
+
|
|
9458
|
+
// ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.1.3_@types+react@19.1.2__@types+rea_43250ccbc78c27b15284efcf829a65d5/node_modules/@radix-ui/react-primitive/dist/index.mjs
|
|
9459
|
+
import * as React39 from "react";
|
|
9460
|
+
import * as ReactDOM from "react-dom";
|
|
9461
|
+
|
|
9462
|
+
// ../../node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-slot/dist/index.mjs
|
|
9463
|
+
import * as React38 from "react";
|
|
9464
|
+
import { Fragment as Fragment2, jsx as jsx34 } from "react/jsx-runtime";
|
|
9465
|
+
// @__NO_SIDE_EFFECTS__
|
|
9466
|
+
function createSlot(ownerName) {
|
|
9467
|
+
const SlotClone = /* @__PURE__ */ createSlotClone(ownerName);
|
|
9468
|
+
const Slot22 = React38.forwardRef((props, forwardedRef) => {
|
|
9469
|
+
const _a = props, { children } = _a, slotProps = __objRest(_a, ["children"]);
|
|
9470
|
+
const childrenArray = React38.Children.toArray(children);
|
|
9471
|
+
const slottable = childrenArray.find(isSlottable);
|
|
9472
|
+
if (slottable) {
|
|
9473
|
+
const newElement = slottable.props.children;
|
|
9474
|
+
const newChildren = childrenArray.map((child) => {
|
|
9475
|
+
if (child === slottable) {
|
|
9476
|
+
if (React38.Children.count(newElement) > 1) return React38.Children.only(null);
|
|
9477
|
+
return React38.isValidElement(newElement) ? newElement.props.children : null;
|
|
9478
|
+
} else {
|
|
9479
|
+
return child;
|
|
9480
|
+
}
|
|
9481
|
+
});
|
|
9482
|
+
return /* @__PURE__ */ jsx34(SlotClone, __spreadProps(__spreadValues({}, slotProps), { ref: forwardedRef, children: React38.isValidElement(newElement) ? React38.cloneElement(newElement, void 0, newChildren) : null }));
|
|
9483
|
+
}
|
|
9484
|
+
return /* @__PURE__ */ jsx34(SlotClone, __spreadProps(__spreadValues({}, slotProps), { ref: forwardedRef, children }));
|
|
9485
|
+
});
|
|
9486
|
+
Slot22.displayName = `${ownerName}.Slot`;
|
|
9487
|
+
return Slot22;
|
|
9488
|
+
}
|
|
9489
|
+
var Slot = /* @__PURE__ */ createSlot("Slot");
|
|
9490
|
+
// @__NO_SIDE_EFFECTS__
|
|
9491
|
+
function createSlotClone(ownerName) {
|
|
9492
|
+
const SlotClone = React38.forwardRef((props, forwardedRef) => {
|
|
9493
|
+
const _a = props, { children } = _a, slotProps = __objRest(_a, ["children"]);
|
|
9494
|
+
if (React38.isValidElement(children)) {
|
|
9495
|
+
const childrenRef = getElementRef(children);
|
|
9496
|
+
const props2 = mergeProps(slotProps, children.props);
|
|
9497
|
+
if (children.type !== React38.Fragment) {
|
|
9498
|
+
props2.ref = forwardedRef ? composeRefs(forwardedRef, childrenRef) : childrenRef;
|
|
9499
|
+
}
|
|
9500
|
+
return React38.cloneElement(children, props2);
|
|
9501
|
+
}
|
|
9502
|
+
return React38.Children.count(children) > 1 ? React38.Children.only(null) : null;
|
|
9503
|
+
});
|
|
9504
|
+
SlotClone.displayName = `${ownerName}.SlotClone`;
|
|
9505
|
+
return SlotClone;
|
|
9506
|
+
}
|
|
9507
|
+
var SLOTTABLE_IDENTIFIER = Symbol("radix.slottable");
|
|
9508
|
+
// @__NO_SIDE_EFFECTS__
|
|
9509
|
+
function createSlottable(ownerName) {
|
|
9510
|
+
const Slottable2 = ({ children }) => {
|
|
9511
|
+
return /* @__PURE__ */ jsx34(Fragment2, { children });
|
|
9512
|
+
};
|
|
9513
|
+
Slottable2.displayName = `${ownerName}.Slottable`;
|
|
9514
|
+
Slottable2.__radixId = SLOTTABLE_IDENTIFIER;
|
|
9515
|
+
return Slottable2;
|
|
9516
|
+
}
|
|
9517
|
+
function isSlottable(child) {
|
|
9518
|
+
return React38.isValidElement(child) && typeof child.type === "function" && "__radixId" in child.type && child.type.__radixId === SLOTTABLE_IDENTIFIER;
|
|
9519
|
+
}
|
|
9520
|
+
function mergeProps(slotProps, childProps) {
|
|
9521
|
+
const overrideProps = __spreadValues({}, childProps);
|
|
9522
|
+
for (const propName in childProps) {
|
|
9523
|
+
const slotPropValue = slotProps[propName];
|
|
9524
|
+
const childPropValue = childProps[propName];
|
|
9525
|
+
const isHandler = /^on[A-Z]/.test(propName);
|
|
9526
|
+
if (isHandler) {
|
|
9527
|
+
if (slotPropValue && childPropValue) {
|
|
9528
|
+
overrideProps[propName] = (...args) => {
|
|
9529
|
+
const result = childPropValue(...args);
|
|
9530
|
+
slotPropValue(...args);
|
|
9531
|
+
return result;
|
|
9532
|
+
};
|
|
9533
|
+
} else if (slotPropValue) {
|
|
9534
|
+
overrideProps[propName] = slotPropValue;
|
|
9535
|
+
}
|
|
9536
|
+
} else if (propName === "style") {
|
|
9537
|
+
overrideProps[propName] = __spreadValues(__spreadValues({}, slotPropValue), childPropValue);
|
|
9538
|
+
} else if (propName === "className") {
|
|
9539
|
+
overrideProps[propName] = [slotPropValue, childPropValue].filter(Boolean).join(" ");
|
|
9540
|
+
}
|
|
9541
|
+
}
|
|
9542
|
+
return __spreadValues(__spreadValues({}, slotProps), overrideProps);
|
|
9543
|
+
}
|
|
9544
|
+
function getElementRef(element) {
|
|
9545
|
+
var _a, _b;
|
|
9546
|
+
let getter = (_a = Object.getOwnPropertyDescriptor(element.props, "ref")) == null ? void 0 : _a.get;
|
|
9547
|
+
let mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
|
|
9548
|
+
if (mayWarn) {
|
|
9549
|
+
return element.ref;
|
|
9550
|
+
}
|
|
9551
|
+
getter = (_b = Object.getOwnPropertyDescriptor(element, "ref")) == null ? void 0 : _b.get;
|
|
9552
|
+
mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
|
|
9553
|
+
if (mayWarn) {
|
|
9554
|
+
return element.props.ref;
|
|
9555
|
+
}
|
|
9556
|
+
return element.props.ref || element.ref;
|
|
9557
|
+
}
|
|
9558
|
+
|
|
9559
|
+
// ../../node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.1.3_@types+react@19.1.2__@types+rea_43250ccbc78c27b15284efcf829a65d5/node_modules/@radix-ui/react-primitive/dist/index.mjs
|
|
9560
|
+
import { jsx as jsx35 } from "react/jsx-runtime";
|
|
9561
|
+
var NODES = [
|
|
9562
|
+
"a",
|
|
9563
|
+
"button",
|
|
9564
|
+
"div",
|
|
9565
|
+
"form",
|
|
9566
|
+
"h2",
|
|
9567
|
+
"h3",
|
|
9568
|
+
"img",
|
|
9569
|
+
"input",
|
|
9570
|
+
"label",
|
|
9571
|
+
"li",
|
|
9572
|
+
"nav",
|
|
9573
|
+
"ol",
|
|
9574
|
+
"p",
|
|
9575
|
+
"select",
|
|
9576
|
+
"span",
|
|
9577
|
+
"svg",
|
|
9578
|
+
"ul"
|
|
9579
|
+
];
|
|
9580
|
+
var Primitive = NODES.reduce((primitive, node2) => {
|
|
9581
|
+
const Slot3 = createSlot(`Primitive.${node2}`);
|
|
9582
|
+
const Node4 = React39.forwardRef((props, forwardedRef) => {
|
|
9583
|
+
const _a = props, { asChild } = _a, primitiveProps = __objRest(_a, ["asChild"]);
|
|
9584
|
+
const Comp = asChild ? Slot3 : node2;
|
|
9585
|
+
if (typeof window !== "undefined") {
|
|
9586
|
+
window[Symbol.for("radix-ui")] = true;
|
|
9587
|
+
}
|
|
9588
|
+
return /* @__PURE__ */ jsx35(Comp, __spreadProps(__spreadValues({}, primitiveProps), { ref: forwardedRef }));
|
|
9589
|
+
});
|
|
9590
|
+
Node4.displayName = `Primitive.${node2}`;
|
|
9591
|
+
return __spreadProps(__spreadValues({}, primitive), { [node2]: Node4 });
|
|
9592
|
+
}, {});
|
|
9593
|
+
function dispatchDiscreteCustomEvent(target, event) {
|
|
9594
|
+
if (target) ReactDOM.flushSync(() => target.dispatchEvent(event));
|
|
9595
|
+
}
|
|
9596
|
+
|
|
9597
|
+
// ../../node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs
|
|
9598
|
+
import * as React40 from "react";
|
|
9599
|
+
function useCallbackRef(callback) {
|
|
9600
|
+
const callbackRef = React40.useRef(callback);
|
|
9601
|
+
React40.useEffect(() => {
|
|
9602
|
+
callbackRef.current = callback;
|
|
9603
|
+
});
|
|
9604
|
+
return React40.useMemo(() => (...args) => {
|
|
9605
|
+
var _a;
|
|
9606
|
+
return (_a = callbackRef.current) == null ? void 0 : _a.call(callbackRef, ...args);
|
|
9607
|
+
}, []);
|
|
9608
|
+
}
|
|
9609
|
+
|
|
9610
|
+
// ../../node_modules/.pnpm/@radix-ui+react-use-escape-keydown@1.1.1_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-use-escape-keydown/dist/index.mjs
|
|
9611
|
+
import * as React41 from "react";
|
|
9612
|
+
function useEscapeKeydown(onEscapeKeyDownProp, ownerDocument = globalThis == null ? void 0 : globalThis.document) {
|
|
9613
|
+
const onEscapeKeyDown = useCallbackRef(onEscapeKeyDownProp);
|
|
9614
|
+
React41.useEffect(() => {
|
|
9615
|
+
const handleKeyDown = (event) => {
|
|
9616
|
+
if (event.key === "Escape") {
|
|
9617
|
+
onEscapeKeyDown(event);
|
|
9618
|
+
}
|
|
9619
|
+
};
|
|
9620
|
+
ownerDocument.addEventListener("keydown", handleKeyDown, { capture: true });
|
|
9621
|
+
return () => ownerDocument.removeEventListener("keydown", handleKeyDown, { capture: true });
|
|
9622
|
+
}, [onEscapeKeyDown, ownerDocument]);
|
|
9623
|
+
}
|
|
9624
|
+
|
|
9625
|
+
// ../../node_modules/.pnpm/@radix-ui+react-dismissable-layer@1.1.10_@types+react-dom@19.1.3_@types+react@19.1.2__@_048ea5800fbfacb7489e4b7d728b493c/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs
|
|
9241
9626
|
import { jsx as jsx36 } from "react/jsx-runtime";
|
|
9627
|
+
var DISMISSABLE_LAYER_NAME = "DismissableLayer";
|
|
9628
|
+
var CONTEXT_UPDATE = "dismissableLayer.update";
|
|
9629
|
+
var POINTER_DOWN_OUTSIDE = "dismissableLayer.pointerDownOutside";
|
|
9630
|
+
var FOCUS_OUTSIDE = "dismissableLayer.focusOutside";
|
|
9631
|
+
var originalBodyPointerEvents;
|
|
9632
|
+
var DismissableLayerContext = React42.createContext({
|
|
9633
|
+
layers: /* @__PURE__ */ new Set(),
|
|
9634
|
+
layersWithOutsidePointerEventsDisabled: /* @__PURE__ */ new Set(),
|
|
9635
|
+
branches: /* @__PURE__ */ new Set()
|
|
9636
|
+
});
|
|
9637
|
+
var DismissableLayer = React42.forwardRef(
|
|
9638
|
+
(props, forwardedRef) => {
|
|
9639
|
+
var _b;
|
|
9640
|
+
const _a = props, {
|
|
9641
|
+
disableOutsidePointerEvents = false,
|
|
9642
|
+
onEscapeKeyDown,
|
|
9643
|
+
onPointerDownOutside,
|
|
9644
|
+
onFocusOutside,
|
|
9645
|
+
onInteractOutside,
|
|
9646
|
+
onDismiss
|
|
9647
|
+
} = _a, layerProps = __objRest(_a, [
|
|
9648
|
+
"disableOutsidePointerEvents",
|
|
9649
|
+
"onEscapeKeyDown",
|
|
9650
|
+
"onPointerDownOutside",
|
|
9651
|
+
"onFocusOutside",
|
|
9652
|
+
"onInteractOutside",
|
|
9653
|
+
"onDismiss"
|
|
9654
|
+
]);
|
|
9655
|
+
const context = React42.useContext(DismissableLayerContext);
|
|
9656
|
+
const [node2, setNode] = React42.useState(null);
|
|
9657
|
+
const ownerDocument = (_b = node2 == null ? void 0 : node2.ownerDocument) != null ? _b : globalThis == null ? void 0 : globalThis.document;
|
|
9658
|
+
const [, force] = React42.useState({});
|
|
9659
|
+
const composedRefs = useComposedRefs(forwardedRef, (node22) => setNode(node22));
|
|
9660
|
+
const layers = Array.from(context.layers);
|
|
9661
|
+
const [highestLayerWithOutsidePointerEventsDisabled] = [...context.layersWithOutsidePointerEventsDisabled].slice(-1);
|
|
9662
|
+
const highestLayerWithOutsidePointerEventsDisabledIndex = layers.indexOf(highestLayerWithOutsidePointerEventsDisabled);
|
|
9663
|
+
const index2 = node2 ? layers.indexOf(node2) : -1;
|
|
9664
|
+
const isBodyPointerEventsDisabled = context.layersWithOutsidePointerEventsDisabled.size > 0;
|
|
9665
|
+
const isPointerEventsEnabled = index2 >= highestLayerWithOutsidePointerEventsDisabledIndex;
|
|
9666
|
+
const pointerDownOutside = usePointerDownOutside((event) => {
|
|
9667
|
+
const target = event.target;
|
|
9668
|
+
const isPointerDownOnBranch = [...context.branches].some((branch) => branch.contains(target));
|
|
9669
|
+
if (!isPointerEventsEnabled || isPointerDownOnBranch) return;
|
|
9670
|
+
onPointerDownOutside == null ? void 0 : onPointerDownOutside(event);
|
|
9671
|
+
onInteractOutside == null ? void 0 : onInteractOutside(event);
|
|
9672
|
+
if (!event.defaultPrevented) onDismiss == null ? void 0 : onDismiss();
|
|
9673
|
+
}, ownerDocument);
|
|
9674
|
+
const focusOutside = useFocusOutside((event) => {
|
|
9675
|
+
const target = event.target;
|
|
9676
|
+
const isFocusInBranch = [...context.branches].some((branch) => branch.contains(target));
|
|
9677
|
+
if (isFocusInBranch) return;
|
|
9678
|
+
onFocusOutside == null ? void 0 : onFocusOutside(event);
|
|
9679
|
+
onInteractOutside == null ? void 0 : onInteractOutside(event);
|
|
9680
|
+
if (!event.defaultPrevented) onDismiss == null ? void 0 : onDismiss();
|
|
9681
|
+
}, ownerDocument);
|
|
9682
|
+
useEscapeKeydown((event) => {
|
|
9683
|
+
const isHighestLayer = index2 === context.layers.size - 1;
|
|
9684
|
+
if (!isHighestLayer) return;
|
|
9685
|
+
onEscapeKeyDown == null ? void 0 : onEscapeKeyDown(event);
|
|
9686
|
+
if (!event.defaultPrevented && onDismiss) {
|
|
9687
|
+
event.preventDefault();
|
|
9688
|
+
onDismiss();
|
|
9689
|
+
}
|
|
9690
|
+
}, ownerDocument);
|
|
9691
|
+
React42.useEffect(() => {
|
|
9692
|
+
if (!node2) return;
|
|
9693
|
+
if (disableOutsidePointerEvents) {
|
|
9694
|
+
if (context.layersWithOutsidePointerEventsDisabled.size === 0) {
|
|
9695
|
+
originalBodyPointerEvents = ownerDocument.body.style.pointerEvents;
|
|
9696
|
+
ownerDocument.body.style.pointerEvents = "none";
|
|
9697
|
+
}
|
|
9698
|
+
context.layersWithOutsidePointerEventsDisabled.add(node2);
|
|
9699
|
+
}
|
|
9700
|
+
context.layers.add(node2);
|
|
9701
|
+
dispatchUpdate();
|
|
9702
|
+
return () => {
|
|
9703
|
+
if (disableOutsidePointerEvents && context.layersWithOutsidePointerEventsDisabled.size === 1) {
|
|
9704
|
+
ownerDocument.body.style.pointerEvents = originalBodyPointerEvents;
|
|
9705
|
+
}
|
|
9706
|
+
};
|
|
9707
|
+
}, [node2, ownerDocument, disableOutsidePointerEvents, context]);
|
|
9708
|
+
React42.useEffect(() => {
|
|
9709
|
+
return () => {
|
|
9710
|
+
if (!node2) return;
|
|
9711
|
+
context.layers.delete(node2);
|
|
9712
|
+
context.layersWithOutsidePointerEventsDisabled.delete(node2);
|
|
9713
|
+
dispatchUpdate();
|
|
9714
|
+
};
|
|
9715
|
+
}, [node2, context]);
|
|
9716
|
+
React42.useEffect(() => {
|
|
9717
|
+
const handleUpdate = () => force({});
|
|
9718
|
+
document.addEventListener(CONTEXT_UPDATE, handleUpdate);
|
|
9719
|
+
return () => document.removeEventListener(CONTEXT_UPDATE, handleUpdate);
|
|
9720
|
+
}, []);
|
|
9721
|
+
return /* @__PURE__ */ jsx36(
|
|
9722
|
+
Primitive.div,
|
|
9723
|
+
__spreadProps(__spreadValues({}, layerProps), {
|
|
9724
|
+
ref: composedRefs,
|
|
9725
|
+
style: __spreadValues({
|
|
9726
|
+
pointerEvents: isBodyPointerEventsDisabled ? isPointerEventsEnabled ? "auto" : "none" : void 0
|
|
9727
|
+
}, props.style),
|
|
9728
|
+
onFocusCapture: composeEventHandlers(props.onFocusCapture, focusOutside.onFocusCapture),
|
|
9729
|
+
onBlurCapture: composeEventHandlers(props.onBlurCapture, focusOutside.onBlurCapture),
|
|
9730
|
+
onPointerDownCapture: composeEventHandlers(
|
|
9731
|
+
props.onPointerDownCapture,
|
|
9732
|
+
pointerDownOutside.onPointerDownCapture
|
|
9733
|
+
)
|
|
9734
|
+
})
|
|
9735
|
+
);
|
|
9736
|
+
}
|
|
9737
|
+
);
|
|
9738
|
+
DismissableLayer.displayName = DISMISSABLE_LAYER_NAME;
|
|
9739
|
+
var BRANCH_NAME = "DismissableLayerBranch";
|
|
9740
|
+
var DismissableLayerBranch = React42.forwardRef((props, forwardedRef) => {
|
|
9741
|
+
const context = React42.useContext(DismissableLayerContext);
|
|
9742
|
+
const ref2 = React42.useRef(null);
|
|
9743
|
+
const composedRefs = useComposedRefs(forwardedRef, ref2);
|
|
9744
|
+
React42.useEffect(() => {
|
|
9745
|
+
const node2 = ref2.current;
|
|
9746
|
+
if (node2) {
|
|
9747
|
+
context.branches.add(node2);
|
|
9748
|
+
return () => {
|
|
9749
|
+
context.branches.delete(node2);
|
|
9750
|
+
};
|
|
9751
|
+
}
|
|
9752
|
+
}, [context.branches]);
|
|
9753
|
+
return /* @__PURE__ */ jsx36(Primitive.div, __spreadProps(__spreadValues({}, props), { ref: composedRefs }));
|
|
9754
|
+
});
|
|
9755
|
+
DismissableLayerBranch.displayName = BRANCH_NAME;
|
|
9756
|
+
function usePointerDownOutside(onPointerDownOutside, ownerDocument = globalThis == null ? void 0 : globalThis.document) {
|
|
9757
|
+
const handlePointerDownOutside = useCallbackRef(onPointerDownOutside);
|
|
9758
|
+
const isPointerInsideReactTreeRef = React42.useRef(false);
|
|
9759
|
+
const handleClickRef = React42.useRef(() => {
|
|
9760
|
+
});
|
|
9761
|
+
React42.useEffect(() => {
|
|
9762
|
+
const handlePointerDown = (event) => {
|
|
9763
|
+
if (event.target && !isPointerInsideReactTreeRef.current) {
|
|
9764
|
+
let handleAndDispatchPointerDownOutsideEvent2 = function() {
|
|
9765
|
+
handleAndDispatchCustomEvent(
|
|
9766
|
+
POINTER_DOWN_OUTSIDE,
|
|
9767
|
+
handlePointerDownOutside,
|
|
9768
|
+
eventDetail,
|
|
9769
|
+
{ discrete: true }
|
|
9770
|
+
);
|
|
9771
|
+
};
|
|
9772
|
+
var handleAndDispatchPointerDownOutsideEvent = handleAndDispatchPointerDownOutsideEvent2;
|
|
9773
|
+
const eventDetail = { originalEvent: event };
|
|
9774
|
+
if (event.pointerType === "touch") {
|
|
9775
|
+
ownerDocument.removeEventListener("click", handleClickRef.current);
|
|
9776
|
+
handleClickRef.current = handleAndDispatchPointerDownOutsideEvent2;
|
|
9777
|
+
ownerDocument.addEventListener("click", handleClickRef.current, { once: true });
|
|
9778
|
+
} else {
|
|
9779
|
+
handleAndDispatchPointerDownOutsideEvent2();
|
|
9780
|
+
}
|
|
9781
|
+
} else {
|
|
9782
|
+
ownerDocument.removeEventListener("click", handleClickRef.current);
|
|
9783
|
+
}
|
|
9784
|
+
isPointerInsideReactTreeRef.current = false;
|
|
9785
|
+
};
|
|
9786
|
+
const timerId = window.setTimeout(() => {
|
|
9787
|
+
ownerDocument.addEventListener("pointerdown", handlePointerDown);
|
|
9788
|
+
}, 0);
|
|
9789
|
+
return () => {
|
|
9790
|
+
window.clearTimeout(timerId);
|
|
9791
|
+
ownerDocument.removeEventListener("pointerdown", handlePointerDown);
|
|
9792
|
+
ownerDocument.removeEventListener("click", handleClickRef.current);
|
|
9793
|
+
};
|
|
9794
|
+
}, [ownerDocument, handlePointerDownOutside]);
|
|
9795
|
+
return {
|
|
9796
|
+
// ensures we check React component tree (not just DOM tree)
|
|
9797
|
+
onPointerDownCapture: () => isPointerInsideReactTreeRef.current = true
|
|
9798
|
+
};
|
|
9799
|
+
}
|
|
9800
|
+
function useFocusOutside(onFocusOutside, ownerDocument = globalThis == null ? void 0 : globalThis.document) {
|
|
9801
|
+
const handleFocusOutside = useCallbackRef(onFocusOutside);
|
|
9802
|
+
const isFocusInsideReactTreeRef = React42.useRef(false);
|
|
9803
|
+
React42.useEffect(() => {
|
|
9804
|
+
const handleFocus = (event) => {
|
|
9805
|
+
if (event.target && !isFocusInsideReactTreeRef.current) {
|
|
9806
|
+
const eventDetail = { originalEvent: event };
|
|
9807
|
+
handleAndDispatchCustomEvent(FOCUS_OUTSIDE, handleFocusOutside, eventDetail, {
|
|
9808
|
+
discrete: false
|
|
9809
|
+
});
|
|
9810
|
+
}
|
|
9811
|
+
};
|
|
9812
|
+
ownerDocument.addEventListener("focusin", handleFocus);
|
|
9813
|
+
return () => ownerDocument.removeEventListener("focusin", handleFocus);
|
|
9814
|
+
}, [ownerDocument, handleFocusOutside]);
|
|
9815
|
+
return {
|
|
9816
|
+
onFocusCapture: () => isFocusInsideReactTreeRef.current = true,
|
|
9817
|
+
onBlurCapture: () => isFocusInsideReactTreeRef.current = false
|
|
9818
|
+
};
|
|
9819
|
+
}
|
|
9820
|
+
function dispatchUpdate() {
|
|
9821
|
+
const event = new CustomEvent(CONTEXT_UPDATE);
|
|
9822
|
+
document.dispatchEvent(event);
|
|
9823
|
+
}
|
|
9824
|
+
function handleAndDispatchCustomEvent(name2, handler2, detail, { discrete }) {
|
|
9825
|
+
const target = detail.originalEvent.target;
|
|
9826
|
+
const event = new CustomEvent(name2, { bubbles: false, cancelable: true, detail });
|
|
9827
|
+
if (handler2) target.addEventListener(name2, handler2, { once: true });
|
|
9828
|
+
if (discrete) {
|
|
9829
|
+
dispatchDiscreteCustomEvent(target, event);
|
|
9830
|
+
} else {
|
|
9831
|
+
target.dispatchEvent(event);
|
|
9832
|
+
}
|
|
9833
|
+
}
|
|
9834
|
+
|
|
9835
|
+
// ../../node_modules/.pnpm/@radix-ui+react-focus-scope@1.1.7_@types+react-dom@19.1.3_@types+react@19.1.2__@types+r_1ff7b04b7c975087a2da2b1568ac976e/node_modules/@radix-ui/react-focus-scope/dist/index.mjs
|
|
9836
|
+
import * as React43 from "react";
|
|
9837
|
+
import { jsx as jsx37 } from "react/jsx-runtime";
|
|
9838
|
+
var AUTOFOCUS_ON_MOUNT = "focusScope.autoFocusOnMount";
|
|
9839
|
+
var AUTOFOCUS_ON_UNMOUNT = "focusScope.autoFocusOnUnmount";
|
|
9840
|
+
var EVENT_OPTIONS = { bubbles: false, cancelable: true };
|
|
9841
|
+
var FOCUS_SCOPE_NAME = "FocusScope";
|
|
9842
|
+
var FocusScope = React43.forwardRef((props, forwardedRef) => {
|
|
9843
|
+
const _a = props, {
|
|
9844
|
+
loop = false,
|
|
9845
|
+
trapped = false,
|
|
9846
|
+
onMountAutoFocus: onMountAutoFocusProp,
|
|
9847
|
+
onUnmountAutoFocus: onUnmountAutoFocusProp
|
|
9848
|
+
} = _a, scopeProps = __objRest(_a, [
|
|
9849
|
+
"loop",
|
|
9850
|
+
"trapped",
|
|
9851
|
+
"onMountAutoFocus",
|
|
9852
|
+
"onUnmountAutoFocus"
|
|
9853
|
+
]);
|
|
9854
|
+
const [container, setContainer] = React43.useState(null);
|
|
9855
|
+
const onMountAutoFocus = useCallbackRef(onMountAutoFocusProp);
|
|
9856
|
+
const onUnmountAutoFocus = useCallbackRef(onUnmountAutoFocusProp);
|
|
9857
|
+
const lastFocusedElementRef = React43.useRef(null);
|
|
9858
|
+
const composedRefs = useComposedRefs(forwardedRef, (node2) => setContainer(node2));
|
|
9859
|
+
const focusScope = React43.useRef({
|
|
9860
|
+
paused: false,
|
|
9861
|
+
pause() {
|
|
9862
|
+
this.paused = true;
|
|
9863
|
+
},
|
|
9864
|
+
resume() {
|
|
9865
|
+
this.paused = false;
|
|
9866
|
+
}
|
|
9867
|
+
}).current;
|
|
9868
|
+
React43.useEffect(() => {
|
|
9869
|
+
if (trapped) {
|
|
9870
|
+
let handleFocusIn2 = function(event) {
|
|
9871
|
+
if (focusScope.paused || !container) return;
|
|
9872
|
+
const target = event.target;
|
|
9873
|
+
if (container.contains(target)) {
|
|
9874
|
+
lastFocusedElementRef.current = target;
|
|
9875
|
+
} else {
|
|
9876
|
+
focus(lastFocusedElementRef.current, { select: true });
|
|
9877
|
+
}
|
|
9878
|
+
}, handleFocusOut2 = function(event) {
|
|
9879
|
+
if (focusScope.paused || !container) return;
|
|
9880
|
+
const relatedTarget = event.relatedTarget;
|
|
9881
|
+
if (relatedTarget === null) return;
|
|
9882
|
+
if (!container.contains(relatedTarget)) {
|
|
9883
|
+
focus(lastFocusedElementRef.current, { select: true });
|
|
9884
|
+
}
|
|
9885
|
+
}, handleMutations2 = function(mutations) {
|
|
9886
|
+
const focusedElement = document.activeElement;
|
|
9887
|
+
if (focusedElement !== document.body) return;
|
|
9888
|
+
for (const mutation of mutations) {
|
|
9889
|
+
if (mutation.removedNodes.length > 0) focus(container);
|
|
9890
|
+
}
|
|
9891
|
+
};
|
|
9892
|
+
var handleFocusIn = handleFocusIn2, handleFocusOut = handleFocusOut2, handleMutations = handleMutations2;
|
|
9893
|
+
document.addEventListener("focusin", handleFocusIn2);
|
|
9894
|
+
document.addEventListener("focusout", handleFocusOut2);
|
|
9895
|
+
const mutationObserver = new MutationObserver(handleMutations2);
|
|
9896
|
+
if (container) mutationObserver.observe(container, { childList: true, subtree: true });
|
|
9897
|
+
return () => {
|
|
9898
|
+
document.removeEventListener("focusin", handleFocusIn2);
|
|
9899
|
+
document.removeEventListener("focusout", handleFocusOut2);
|
|
9900
|
+
mutationObserver.disconnect();
|
|
9901
|
+
};
|
|
9902
|
+
}
|
|
9903
|
+
}, [trapped, container, focusScope.paused]);
|
|
9904
|
+
React43.useEffect(() => {
|
|
9905
|
+
if (container) {
|
|
9906
|
+
focusScopesStack.add(focusScope);
|
|
9907
|
+
const previouslyFocusedElement = document.activeElement;
|
|
9908
|
+
const hasFocusedCandidate = container.contains(previouslyFocusedElement);
|
|
9909
|
+
if (!hasFocusedCandidate) {
|
|
9910
|
+
const mountEvent = new CustomEvent(AUTOFOCUS_ON_MOUNT, EVENT_OPTIONS);
|
|
9911
|
+
container.addEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
|
|
9912
|
+
container.dispatchEvent(mountEvent);
|
|
9913
|
+
if (!mountEvent.defaultPrevented) {
|
|
9914
|
+
focusFirst(removeLinks(getTabbableCandidates(container)), { select: true });
|
|
9915
|
+
if (document.activeElement === previouslyFocusedElement) {
|
|
9916
|
+
focus(container);
|
|
9917
|
+
}
|
|
9918
|
+
}
|
|
9919
|
+
}
|
|
9920
|
+
return () => {
|
|
9921
|
+
container.removeEventListener(AUTOFOCUS_ON_MOUNT, onMountAutoFocus);
|
|
9922
|
+
setTimeout(() => {
|
|
9923
|
+
const unmountEvent = new CustomEvent(AUTOFOCUS_ON_UNMOUNT, EVENT_OPTIONS);
|
|
9924
|
+
container.addEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
|
|
9925
|
+
container.dispatchEvent(unmountEvent);
|
|
9926
|
+
if (!unmountEvent.defaultPrevented) {
|
|
9927
|
+
focus(previouslyFocusedElement != null ? previouslyFocusedElement : document.body, { select: true });
|
|
9928
|
+
}
|
|
9929
|
+
container.removeEventListener(AUTOFOCUS_ON_UNMOUNT, onUnmountAutoFocus);
|
|
9930
|
+
focusScopesStack.remove(focusScope);
|
|
9931
|
+
}, 0);
|
|
9932
|
+
};
|
|
9933
|
+
}
|
|
9934
|
+
}, [container, onMountAutoFocus, onUnmountAutoFocus, focusScope]);
|
|
9935
|
+
const handleKeyDown = React43.useCallback(
|
|
9936
|
+
(event) => {
|
|
9937
|
+
if (!loop && !trapped) return;
|
|
9938
|
+
if (focusScope.paused) return;
|
|
9939
|
+
const isTabKey = event.key === "Tab" && !event.altKey && !event.ctrlKey && !event.metaKey;
|
|
9940
|
+
const focusedElement = document.activeElement;
|
|
9941
|
+
if (isTabKey && focusedElement) {
|
|
9942
|
+
const container2 = event.currentTarget;
|
|
9943
|
+
const [first, last] = getTabbableEdges(container2);
|
|
9944
|
+
const hasTabbableElementsInside = first && last;
|
|
9945
|
+
if (!hasTabbableElementsInside) {
|
|
9946
|
+
if (focusedElement === container2) event.preventDefault();
|
|
9947
|
+
} else {
|
|
9948
|
+
if (!event.shiftKey && focusedElement === last) {
|
|
9949
|
+
event.preventDefault();
|
|
9950
|
+
if (loop) focus(first, { select: true });
|
|
9951
|
+
} else if (event.shiftKey && focusedElement === first) {
|
|
9952
|
+
event.preventDefault();
|
|
9953
|
+
if (loop) focus(last, { select: true });
|
|
9954
|
+
}
|
|
9955
|
+
}
|
|
9956
|
+
}
|
|
9957
|
+
},
|
|
9958
|
+
[loop, trapped, focusScope.paused]
|
|
9959
|
+
);
|
|
9960
|
+
return /* @__PURE__ */ jsx37(Primitive.div, __spreadProps(__spreadValues({ tabIndex: -1 }, scopeProps), { ref: composedRefs, onKeyDown: handleKeyDown }));
|
|
9961
|
+
});
|
|
9962
|
+
FocusScope.displayName = FOCUS_SCOPE_NAME;
|
|
9963
|
+
function focusFirst(candidates, { select = false } = {}) {
|
|
9964
|
+
const previouslyFocusedElement = document.activeElement;
|
|
9965
|
+
for (const candidate of candidates) {
|
|
9966
|
+
focus(candidate, { select });
|
|
9967
|
+
if (document.activeElement !== previouslyFocusedElement) return;
|
|
9968
|
+
}
|
|
9969
|
+
}
|
|
9970
|
+
function getTabbableEdges(container) {
|
|
9971
|
+
const candidates = getTabbableCandidates(container);
|
|
9972
|
+
const first = findVisible(candidates, container);
|
|
9973
|
+
const last = findVisible(candidates.reverse(), container);
|
|
9974
|
+
return [first, last];
|
|
9975
|
+
}
|
|
9976
|
+
function getTabbableCandidates(container) {
|
|
9977
|
+
const nodes = [];
|
|
9978
|
+
const walker = document.createTreeWalker(container, NodeFilter.SHOW_ELEMENT, {
|
|
9979
|
+
acceptNode: (node2) => {
|
|
9980
|
+
const isHiddenInput = node2.tagName === "INPUT" && node2.type === "hidden";
|
|
9981
|
+
if (node2.disabled || node2.hidden || isHiddenInput) return NodeFilter.FILTER_SKIP;
|
|
9982
|
+
return node2.tabIndex >= 0 ? NodeFilter.FILTER_ACCEPT : NodeFilter.FILTER_SKIP;
|
|
9983
|
+
}
|
|
9984
|
+
});
|
|
9985
|
+
while (walker.nextNode()) nodes.push(walker.currentNode);
|
|
9986
|
+
return nodes;
|
|
9987
|
+
}
|
|
9988
|
+
function findVisible(elements, container) {
|
|
9989
|
+
for (const element of elements) {
|
|
9990
|
+
if (!isHidden(element, { upTo: container })) return element;
|
|
9991
|
+
}
|
|
9992
|
+
}
|
|
9993
|
+
function isHidden(node2, { upTo }) {
|
|
9994
|
+
if (getComputedStyle(node2).visibility === "hidden") return true;
|
|
9995
|
+
while (node2) {
|
|
9996
|
+
if (upTo !== void 0 && node2 === upTo) return false;
|
|
9997
|
+
if (getComputedStyle(node2).display === "none") return true;
|
|
9998
|
+
node2 = node2.parentElement;
|
|
9999
|
+
}
|
|
10000
|
+
return false;
|
|
10001
|
+
}
|
|
10002
|
+
function isSelectableInput(element) {
|
|
10003
|
+
return element instanceof HTMLInputElement && "select" in element;
|
|
10004
|
+
}
|
|
10005
|
+
function focus(element, { select = false } = {}) {
|
|
10006
|
+
if (element && element.focus) {
|
|
10007
|
+
const previouslyFocusedElement = document.activeElement;
|
|
10008
|
+
element.focus({ preventScroll: true });
|
|
10009
|
+
if (element !== previouslyFocusedElement && isSelectableInput(element) && select)
|
|
10010
|
+
element.select();
|
|
10011
|
+
}
|
|
10012
|
+
}
|
|
10013
|
+
var focusScopesStack = createFocusScopesStack();
|
|
10014
|
+
function createFocusScopesStack() {
|
|
10015
|
+
let stack = [];
|
|
10016
|
+
return {
|
|
10017
|
+
add(focusScope) {
|
|
10018
|
+
const activeFocusScope = stack[0];
|
|
10019
|
+
if (focusScope !== activeFocusScope) {
|
|
10020
|
+
activeFocusScope == null ? void 0 : activeFocusScope.pause();
|
|
10021
|
+
}
|
|
10022
|
+
stack = arrayRemove(stack, focusScope);
|
|
10023
|
+
stack.unshift(focusScope);
|
|
10024
|
+
},
|
|
10025
|
+
remove(focusScope) {
|
|
10026
|
+
var _a;
|
|
10027
|
+
stack = arrayRemove(stack, focusScope);
|
|
10028
|
+
(_a = stack[0]) == null ? void 0 : _a.resume();
|
|
10029
|
+
}
|
|
10030
|
+
};
|
|
10031
|
+
}
|
|
10032
|
+
function arrayRemove(array, item) {
|
|
10033
|
+
const updatedArray = [...array];
|
|
10034
|
+
const index2 = updatedArray.indexOf(item);
|
|
10035
|
+
if (index2 !== -1) {
|
|
10036
|
+
updatedArray.splice(index2, 1);
|
|
10037
|
+
}
|
|
10038
|
+
return updatedArray;
|
|
10039
|
+
}
|
|
10040
|
+
function removeLinks(items) {
|
|
10041
|
+
return items.filter((item) => item.tagName !== "A");
|
|
10042
|
+
}
|
|
10043
|
+
|
|
10044
|
+
// ../../node_modules/.pnpm/@radix-ui+react-portal@1.1.9_@types+react-dom@19.1.3_@types+react@19.1.2__@types+react@_a0745de0839b0b019298ec068509a840/node_modules/@radix-ui/react-portal/dist/index.mjs
|
|
10045
|
+
import * as React44 from "react";
|
|
10046
|
+
import ReactDOM2 from "react-dom";
|
|
10047
|
+
import { jsx as jsx38 } from "react/jsx-runtime";
|
|
10048
|
+
var PORTAL_NAME = "Portal";
|
|
10049
|
+
var Portal = React44.forwardRef((props, forwardedRef) => {
|
|
10050
|
+
var _b;
|
|
10051
|
+
const _a = props, { container: containerProp } = _a, portalProps = __objRest(_a, ["container"]);
|
|
10052
|
+
const [mounted, setMounted] = React44.useState(false);
|
|
10053
|
+
useLayoutEffect2(() => setMounted(true), []);
|
|
10054
|
+
const container = containerProp || mounted && ((_b = globalThis == null ? void 0 : globalThis.document) == null ? void 0 : _b.body);
|
|
10055
|
+
return container ? ReactDOM2.createPortal(/* @__PURE__ */ jsx38(Primitive.div, __spreadProps(__spreadValues({}, portalProps), { ref: forwardedRef })), container) : null;
|
|
10056
|
+
});
|
|
10057
|
+
Portal.displayName = PORTAL_NAME;
|
|
10058
|
+
|
|
10059
|
+
// ../../node_modules/.pnpm/@radix-ui+react-presence@1.1.4_@types+react-dom@19.1.3_@types+react@19.1.2__@types+reac_dbbe976722e7c3e02883ea31c3bbbf14/node_modules/@radix-ui/react-presence/dist/index.mjs
|
|
10060
|
+
import * as React211 from "react";
|
|
10061
|
+
import * as React45 from "react";
|
|
10062
|
+
function useStateMachine(initialState, machine) {
|
|
10063
|
+
return React45.useReducer((state, event) => {
|
|
10064
|
+
const nextState = machine[state][event];
|
|
10065
|
+
return nextState != null ? nextState : state;
|
|
10066
|
+
}, initialState);
|
|
10067
|
+
}
|
|
10068
|
+
var Presence = (props) => {
|
|
10069
|
+
const { present, children } = props;
|
|
10070
|
+
const presence = usePresence(present);
|
|
10071
|
+
const child = typeof children === "function" ? children({ present: presence.isPresent }) : React211.Children.only(children);
|
|
10072
|
+
const ref2 = useComposedRefs(presence.ref, getElementRef2(child));
|
|
10073
|
+
const forceMount = typeof children === "function";
|
|
10074
|
+
return forceMount || presence.isPresent ? React211.cloneElement(child, { ref: ref2 }) : null;
|
|
10075
|
+
};
|
|
10076
|
+
Presence.displayName = "Presence";
|
|
10077
|
+
function usePresence(present) {
|
|
10078
|
+
const [node2, setNode] = React211.useState();
|
|
10079
|
+
const stylesRef = React211.useRef(null);
|
|
10080
|
+
const prevPresentRef = React211.useRef(present);
|
|
10081
|
+
const prevAnimationNameRef = React211.useRef("none");
|
|
10082
|
+
const initialState = present ? "mounted" : "unmounted";
|
|
10083
|
+
const [state, send] = useStateMachine(initialState, {
|
|
10084
|
+
mounted: {
|
|
10085
|
+
UNMOUNT: "unmounted",
|
|
10086
|
+
ANIMATION_OUT: "unmountSuspended"
|
|
10087
|
+
},
|
|
10088
|
+
unmountSuspended: {
|
|
10089
|
+
MOUNT: "mounted",
|
|
10090
|
+
ANIMATION_END: "unmounted"
|
|
10091
|
+
},
|
|
10092
|
+
unmounted: {
|
|
10093
|
+
MOUNT: "mounted"
|
|
10094
|
+
}
|
|
10095
|
+
});
|
|
10096
|
+
React211.useEffect(() => {
|
|
10097
|
+
const currentAnimationName = getAnimationName(stylesRef.current);
|
|
10098
|
+
prevAnimationNameRef.current = state === "mounted" ? currentAnimationName : "none";
|
|
10099
|
+
}, [state]);
|
|
10100
|
+
useLayoutEffect2(() => {
|
|
10101
|
+
const styles = stylesRef.current;
|
|
10102
|
+
const wasPresent = prevPresentRef.current;
|
|
10103
|
+
const hasPresentChanged = wasPresent !== present;
|
|
10104
|
+
if (hasPresentChanged) {
|
|
10105
|
+
const prevAnimationName = prevAnimationNameRef.current;
|
|
10106
|
+
const currentAnimationName = getAnimationName(styles);
|
|
10107
|
+
if (present) {
|
|
10108
|
+
send("MOUNT");
|
|
10109
|
+
} else if (currentAnimationName === "none" || (styles == null ? void 0 : styles.display) === "none") {
|
|
10110
|
+
send("UNMOUNT");
|
|
10111
|
+
} else {
|
|
10112
|
+
const isAnimating = prevAnimationName !== currentAnimationName;
|
|
10113
|
+
if (wasPresent && isAnimating) {
|
|
10114
|
+
send("ANIMATION_OUT");
|
|
10115
|
+
} else {
|
|
10116
|
+
send("UNMOUNT");
|
|
10117
|
+
}
|
|
10118
|
+
}
|
|
10119
|
+
prevPresentRef.current = present;
|
|
10120
|
+
}
|
|
10121
|
+
}, [present, send]);
|
|
10122
|
+
useLayoutEffect2(() => {
|
|
10123
|
+
var _a;
|
|
10124
|
+
if (node2) {
|
|
10125
|
+
let timeoutId;
|
|
10126
|
+
const ownerWindow = (_a = node2.ownerDocument.defaultView) != null ? _a : window;
|
|
10127
|
+
const handleAnimationEnd = (event) => {
|
|
10128
|
+
const currentAnimationName = getAnimationName(stylesRef.current);
|
|
10129
|
+
const isCurrentAnimation = currentAnimationName.includes(event.animationName);
|
|
10130
|
+
if (event.target === node2 && isCurrentAnimation) {
|
|
10131
|
+
send("ANIMATION_END");
|
|
10132
|
+
if (!prevPresentRef.current) {
|
|
10133
|
+
const currentFillMode = node2.style.animationFillMode;
|
|
10134
|
+
node2.style.animationFillMode = "forwards";
|
|
10135
|
+
timeoutId = ownerWindow.setTimeout(() => {
|
|
10136
|
+
if (node2.style.animationFillMode === "forwards") {
|
|
10137
|
+
node2.style.animationFillMode = currentFillMode;
|
|
10138
|
+
}
|
|
10139
|
+
});
|
|
10140
|
+
}
|
|
10141
|
+
}
|
|
10142
|
+
};
|
|
10143
|
+
const handleAnimationStart = (event) => {
|
|
10144
|
+
if (event.target === node2) {
|
|
10145
|
+
prevAnimationNameRef.current = getAnimationName(stylesRef.current);
|
|
10146
|
+
}
|
|
10147
|
+
};
|
|
10148
|
+
node2.addEventListener("animationstart", handleAnimationStart);
|
|
10149
|
+
node2.addEventListener("animationcancel", handleAnimationEnd);
|
|
10150
|
+
node2.addEventListener("animationend", handleAnimationEnd);
|
|
10151
|
+
return () => {
|
|
10152
|
+
ownerWindow.clearTimeout(timeoutId);
|
|
10153
|
+
node2.removeEventListener("animationstart", handleAnimationStart);
|
|
10154
|
+
node2.removeEventListener("animationcancel", handleAnimationEnd);
|
|
10155
|
+
node2.removeEventListener("animationend", handleAnimationEnd);
|
|
10156
|
+
};
|
|
10157
|
+
} else {
|
|
10158
|
+
send("ANIMATION_END");
|
|
10159
|
+
}
|
|
10160
|
+
}, [node2, send]);
|
|
10161
|
+
return {
|
|
10162
|
+
isPresent: ["mounted", "unmountSuspended"].includes(state),
|
|
10163
|
+
ref: React211.useCallback((node22) => {
|
|
10164
|
+
stylesRef.current = node22 ? getComputedStyle(node22) : null;
|
|
10165
|
+
setNode(node22);
|
|
10166
|
+
}, [])
|
|
10167
|
+
};
|
|
10168
|
+
}
|
|
10169
|
+
function getAnimationName(styles) {
|
|
10170
|
+
return (styles == null ? void 0 : styles.animationName) || "none";
|
|
10171
|
+
}
|
|
10172
|
+
function getElementRef2(element) {
|
|
10173
|
+
var _a, _b;
|
|
10174
|
+
let getter = (_a = Object.getOwnPropertyDescriptor(element.props, "ref")) == null ? void 0 : _a.get;
|
|
10175
|
+
let mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
|
|
10176
|
+
if (mayWarn) {
|
|
10177
|
+
return element.ref;
|
|
10178
|
+
}
|
|
10179
|
+
getter = (_b = Object.getOwnPropertyDescriptor(element, "ref")) == null ? void 0 : _b.get;
|
|
10180
|
+
mayWarn = getter && "isReactWarning" in getter && getter.isReactWarning;
|
|
10181
|
+
if (mayWarn) {
|
|
10182
|
+
return element.props.ref;
|
|
10183
|
+
}
|
|
10184
|
+
return element.props.ref || element.ref;
|
|
10185
|
+
}
|
|
9242
10186
|
|
|
9243
|
-
//
|
|
9244
|
-
import
|
|
9245
|
-
|
|
9246
|
-
function
|
|
9247
|
-
|
|
10187
|
+
// ../../node_modules/.pnpm/@radix-ui+react-focus-guards@1.1.2_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-focus-guards/dist/index.mjs
|
|
10188
|
+
import * as React46 from "react";
|
|
10189
|
+
var count2 = 0;
|
|
10190
|
+
function useFocusGuards() {
|
|
10191
|
+
React46.useEffect(() => {
|
|
10192
|
+
var _a, _b;
|
|
10193
|
+
const edgeGuards = document.querySelectorAll("[data-radix-focus-guard]");
|
|
10194
|
+
document.body.insertAdjacentElement("afterbegin", (_a = edgeGuards[0]) != null ? _a : createFocusGuard());
|
|
10195
|
+
document.body.insertAdjacentElement("beforeend", (_b = edgeGuards[1]) != null ? _b : createFocusGuard());
|
|
10196
|
+
count2++;
|
|
10197
|
+
return () => {
|
|
10198
|
+
if (count2 === 1) {
|
|
10199
|
+
document.querySelectorAll("[data-radix-focus-guard]").forEach((node2) => node2.remove());
|
|
10200
|
+
}
|
|
10201
|
+
count2--;
|
|
10202
|
+
};
|
|
10203
|
+
}, []);
|
|
10204
|
+
}
|
|
10205
|
+
function createFocusGuard() {
|
|
10206
|
+
const element = document.createElement("span");
|
|
10207
|
+
element.setAttribute("data-radix-focus-guard", "");
|
|
10208
|
+
element.tabIndex = 0;
|
|
10209
|
+
element.style.outline = "none";
|
|
10210
|
+
element.style.opacity = "0";
|
|
10211
|
+
element.style.position = "fixed";
|
|
10212
|
+
element.style.pointerEvents = "none";
|
|
10213
|
+
return element;
|
|
10214
|
+
}
|
|
10215
|
+
|
|
10216
|
+
// ../../node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs
|
|
10217
|
+
var __assign = function() {
|
|
10218
|
+
__assign = Object.assign || function __assign2(t) {
|
|
10219
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
10220
|
+
s = arguments[i];
|
|
10221
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
10222
|
+
}
|
|
10223
|
+
return t;
|
|
10224
|
+
};
|
|
10225
|
+
return __assign.apply(this, arguments);
|
|
10226
|
+
};
|
|
10227
|
+
function __rest(s, e) {
|
|
10228
|
+
var t = {};
|
|
10229
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
10230
|
+
t[p] = s[p];
|
|
10231
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
10232
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
10233
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
10234
|
+
t[p[i]] = s[p[i]];
|
|
10235
|
+
}
|
|
10236
|
+
return t;
|
|
10237
|
+
}
|
|
10238
|
+
function __spreadArray(to, from, pack) {
|
|
10239
|
+
if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
|
|
10240
|
+
if (ar || !(i in from)) {
|
|
10241
|
+
if (!ar) ar = Array.prototype.slice.call(from, 0, i);
|
|
10242
|
+
ar[i] = from[i];
|
|
10243
|
+
}
|
|
10244
|
+
}
|
|
10245
|
+
return to.concat(ar || Array.prototype.slice.call(from));
|
|
10246
|
+
}
|
|
10247
|
+
|
|
10248
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/Combination.js
|
|
10249
|
+
import * as React53 from "react";
|
|
10250
|
+
|
|
10251
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/UI.js
|
|
10252
|
+
import * as React49 from "react";
|
|
10253
|
+
|
|
10254
|
+
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll-bar/dist/es2015/constants.js
|
|
10255
|
+
var zeroRightClassName = "right-scroll-bar-position";
|
|
10256
|
+
var fullWidthClassName = "width-before-scroll-bar";
|
|
10257
|
+
var noScrollbarsClassName = "with-scroll-bars-hidden";
|
|
10258
|
+
var removedBarSizeVariable = "--removed-body-scroll-bar-size";
|
|
10259
|
+
|
|
10260
|
+
// ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.1.2_react@19.1.0/node_modules/use-callback-ref/dist/es2015/assignRef.js
|
|
10261
|
+
function assignRef(ref2, value2) {
|
|
10262
|
+
if (typeof ref2 === "function") {
|
|
10263
|
+
ref2(value2);
|
|
10264
|
+
} else if (ref2) {
|
|
10265
|
+
ref2.current = value2;
|
|
10266
|
+
}
|
|
10267
|
+
return ref2;
|
|
10268
|
+
}
|
|
10269
|
+
|
|
10270
|
+
// ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.1.2_react@19.1.0/node_modules/use-callback-ref/dist/es2015/useRef.js
|
|
10271
|
+
import { useState as useState7 } from "react";
|
|
10272
|
+
function useCallbackRef2(initialValue, callback) {
|
|
10273
|
+
var ref2 = useState7(function() {
|
|
10274
|
+
return {
|
|
10275
|
+
// value
|
|
10276
|
+
value: initialValue,
|
|
10277
|
+
// last callback
|
|
10278
|
+
callback,
|
|
10279
|
+
// "memoized" public interface
|
|
10280
|
+
facade: {
|
|
10281
|
+
get current() {
|
|
10282
|
+
return ref2.value;
|
|
10283
|
+
},
|
|
10284
|
+
set current(value2) {
|
|
10285
|
+
var last = ref2.value;
|
|
10286
|
+
if (last !== value2) {
|
|
10287
|
+
ref2.value = value2;
|
|
10288
|
+
ref2.callback(value2, last);
|
|
10289
|
+
}
|
|
10290
|
+
}
|
|
10291
|
+
}
|
|
10292
|
+
};
|
|
10293
|
+
})[0];
|
|
10294
|
+
ref2.callback = callback;
|
|
10295
|
+
return ref2.facade;
|
|
10296
|
+
}
|
|
10297
|
+
|
|
10298
|
+
// ../../node_modules/.pnpm/use-callback-ref@1.3.3_@types+react@19.1.2_react@19.1.0/node_modules/use-callback-ref/dist/es2015/useMergeRef.js
|
|
10299
|
+
import * as React47 from "react";
|
|
10300
|
+
var useIsomorphicLayoutEffect = typeof window !== "undefined" ? React47.useLayoutEffect : React47.useEffect;
|
|
10301
|
+
var currentValues = /* @__PURE__ */ new WeakMap();
|
|
10302
|
+
function useMergeRefs(refs, defaultValue) {
|
|
10303
|
+
var callbackRef = useCallbackRef2(defaultValue || null, function(newValue) {
|
|
10304
|
+
return refs.forEach(function(ref2) {
|
|
10305
|
+
return assignRef(ref2, newValue);
|
|
10306
|
+
});
|
|
10307
|
+
});
|
|
10308
|
+
useIsomorphicLayoutEffect(function() {
|
|
10309
|
+
var oldValue = currentValues.get(callbackRef);
|
|
10310
|
+
if (oldValue) {
|
|
10311
|
+
var prevRefs_1 = new Set(oldValue);
|
|
10312
|
+
var nextRefs_1 = new Set(refs);
|
|
10313
|
+
var current_1 = callbackRef.current;
|
|
10314
|
+
prevRefs_1.forEach(function(ref2) {
|
|
10315
|
+
if (!nextRefs_1.has(ref2)) {
|
|
10316
|
+
assignRef(ref2, null);
|
|
10317
|
+
}
|
|
10318
|
+
});
|
|
10319
|
+
nextRefs_1.forEach(function(ref2) {
|
|
10320
|
+
if (!prevRefs_1.has(ref2)) {
|
|
10321
|
+
assignRef(ref2, current_1);
|
|
10322
|
+
}
|
|
10323
|
+
});
|
|
10324
|
+
}
|
|
10325
|
+
currentValues.set(callbackRef, refs);
|
|
10326
|
+
}, [refs]);
|
|
10327
|
+
return callbackRef;
|
|
10328
|
+
}
|
|
10329
|
+
|
|
10330
|
+
// ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.1.2_react@19.1.0/node_modules/use-sidecar/dist/es2015/medium.js
|
|
10331
|
+
function ItoI(a) {
|
|
10332
|
+
return a;
|
|
10333
|
+
}
|
|
10334
|
+
function innerCreateMedium(defaults, middleware) {
|
|
10335
|
+
if (middleware === void 0) {
|
|
10336
|
+
middleware = ItoI;
|
|
10337
|
+
}
|
|
10338
|
+
var buffer = [];
|
|
10339
|
+
var assigned = false;
|
|
10340
|
+
var medium = {
|
|
10341
|
+
read: function() {
|
|
10342
|
+
if (assigned) {
|
|
10343
|
+
throw new Error("Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.");
|
|
10344
|
+
}
|
|
10345
|
+
if (buffer.length) {
|
|
10346
|
+
return buffer[buffer.length - 1];
|
|
10347
|
+
}
|
|
10348
|
+
return defaults;
|
|
10349
|
+
},
|
|
10350
|
+
useMedium: function(data2) {
|
|
10351
|
+
var item = middleware(data2, assigned);
|
|
10352
|
+
buffer.push(item);
|
|
10353
|
+
return function() {
|
|
10354
|
+
buffer = buffer.filter(function(x) {
|
|
10355
|
+
return x !== item;
|
|
10356
|
+
});
|
|
10357
|
+
};
|
|
10358
|
+
},
|
|
10359
|
+
assignSyncMedium: function(cb) {
|
|
10360
|
+
assigned = true;
|
|
10361
|
+
while (buffer.length) {
|
|
10362
|
+
var cbs = buffer;
|
|
10363
|
+
buffer = [];
|
|
10364
|
+
cbs.forEach(cb);
|
|
10365
|
+
}
|
|
10366
|
+
buffer = {
|
|
10367
|
+
push: function(x) {
|
|
10368
|
+
return cb(x);
|
|
10369
|
+
},
|
|
10370
|
+
filter: function() {
|
|
10371
|
+
return buffer;
|
|
10372
|
+
}
|
|
10373
|
+
};
|
|
10374
|
+
},
|
|
10375
|
+
assignMedium: function(cb) {
|
|
10376
|
+
assigned = true;
|
|
10377
|
+
var pendingQueue = [];
|
|
10378
|
+
if (buffer.length) {
|
|
10379
|
+
var cbs = buffer;
|
|
10380
|
+
buffer = [];
|
|
10381
|
+
cbs.forEach(cb);
|
|
10382
|
+
pendingQueue = buffer;
|
|
10383
|
+
}
|
|
10384
|
+
var executeQueue = function() {
|
|
10385
|
+
var cbs2 = pendingQueue;
|
|
10386
|
+
pendingQueue = [];
|
|
10387
|
+
cbs2.forEach(cb);
|
|
10388
|
+
};
|
|
10389
|
+
var cycle = function() {
|
|
10390
|
+
return Promise.resolve().then(executeQueue);
|
|
10391
|
+
};
|
|
10392
|
+
cycle();
|
|
10393
|
+
buffer = {
|
|
10394
|
+
push: function(x) {
|
|
10395
|
+
pendingQueue.push(x);
|
|
10396
|
+
cycle();
|
|
10397
|
+
},
|
|
10398
|
+
filter: function(filter) {
|
|
10399
|
+
pendingQueue = pendingQueue.filter(filter);
|
|
10400
|
+
return buffer;
|
|
10401
|
+
}
|
|
10402
|
+
};
|
|
10403
|
+
}
|
|
10404
|
+
};
|
|
10405
|
+
return medium;
|
|
10406
|
+
}
|
|
10407
|
+
function createSidecarMedium(options) {
|
|
10408
|
+
if (options === void 0) {
|
|
10409
|
+
options = {};
|
|
10410
|
+
}
|
|
10411
|
+
var medium = innerCreateMedium(null);
|
|
10412
|
+
medium.options = __assign({ async: true, ssr: false }, options);
|
|
10413
|
+
return medium;
|
|
10414
|
+
}
|
|
10415
|
+
|
|
10416
|
+
// ../../node_modules/.pnpm/use-sidecar@1.1.3_@types+react@19.1.2_react@19.1.0/node_modules/use-sidecar/dist/es2015/exports.js
|
|
10417
|
+
import * as React48 from "react";
|
|
10418
|
+
var SideCar = function(_a) {
|
|
10419
|
+
var sideCar = _a.sideCar, rest = __rest(_a, ["sideCar"]);
|
|
10420
|
+
if (!sideCar) {
|
|
10421
|
+
throw new Error("Sidecar: please provide `sideCar` property to import the right car");
|
|
10422
|
+
}
|
|
10423
|
+
var Target = sideCar.read();
|
|
10424
|
+
if (!Target) {
|
|
10425
|
+
throw new Error("Sidecar medium not found");
|
|
10426
|
+
}
|
|
10427
|
+
return React48.createElement(Target, __assign({}, rest));
|
|
10428
|
+
};
|
|
10429
|
+
SideCar.isSideCarExport = true;
|
|
10430
|
+
function exportSidecar(medium, exported) {
|
|
10431
|
+
medium.useMedium(exported);
|
|
10432
|
+
return SideCar;
|
|
10433
|
+
}
|
|
10434
|
+
|
|
10435
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/medium.js
|
|
10436
|
+
var effectCar = createSidecarMedium();
|
|
10437
|
+
|
|
10438
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/UI.js
|
|
10439
|
+
var nothing = function() {
|
|
10440
|
+
return;
|
|
10441
|
+
};
|
|
10442
|
+
var RemoveScroll = React49.forwardRef(function(props, parentRef) {
|
|
10443
|
+
var ref2 = React49.useRef(null);
|
|
10444
|
+
var _a = React49.useState({
|
|
10445
|
+
onScrollCapture: nothing,
|
|
10446
|
+
onWheelCapture: nothing,
|
|
10447
|
+
onTouchMoveCapture: nothing
|
|
10448
|
+
}), callbacks = _a[0], setCallbacks = _a[1];
|
|
10449
|
+
var forwardProps = props.forwardProps, children = props.children, className = props.className, removeScrollBar = props.removeScrollBar, enabled = props.enabled, shards = props.shards, sideCar = props.sideCar, noRelative = props.noRelative, noIsolation = props.noIsolation, inert = props.inert, allowPinchZoom = props.allowPinchZoom, _b = props.as, Container = _b === void 0 ? "div" : _b, gapMode = props.gapMode, rest = __rest(props, ["forwardProps", "children", "className", "removeScrollBar", "enabled", "shards", "sideCar", "noRelative", "noIsolation", "inert", "allowPinchZoom", "as", "gapMode"]);
|
|
10450
|
+
var SideCar2 = sideCar;
|
|
10451
|
+
var containerRef = useMergeRefs([ref2, parentRef]);
|
|
10452
|
+
var containerProps = __assign(__assign({}, rest), callbacks);
|
|
10453
|
+
return React49.createElement(
|
|
10454
|
+
React49.Fragment,
|
|
10455
|
+
null,
|
|
10456
|
+
enabled && React49.createElement(SideCar2, { sideCar: effectCar, removeScrollBar, shards, noRelative, noIsolation, inert, setCallbacks, allowPinchZoom: !!allowPinchZoom, lockRef: ref2, gapMode }),
|
|
10457
|
+
forwardProps ? React49.cloneElement(React49.Children.only(children), __assign(__assign({}, containerProps), { ref: containerRef })) : React49.createElement(Container, __assign({}, containerProps, { className, ref: containerRef }), children)
|
|
10458
|
+
);
|
|
10459
|
+
});
|
|
10460
|
+
RemoveScroll.defaultProps = {
|
|
10461
|
+
enabled: true,
|
|
10462
|
+
removeScrollBar: true,
|
|
10463
|
+
inert: false
|
|
10464
|
+
};
|
|
10465
|
+
RemoveScroll.classNames = {
|
|
10466
|
+
fullWidth: fullWidthClassName,
|
|
10467
|
+
zeroRight: zeroRightClassName
|
|
10468
|
+
};
|
|
10469
|
+
|
|
10470
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
|
|
10471
|
+
import * as React52 from "react";
|
|
10472
|
+
|
|
10473
|
+
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll-bar/dist/es2015/component.js
|
|
10474
|
+
import * as React51 from "react";
|
|
10475
|
+
|
|
10476
|
+
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.1.2_react@19.1.0/node_modules/react-style-singleton/dist/es2015/hook.js
|
|
10477
|
+
import * as React50 from "react";
|
|
10478
|
+
|
|
10479
|
+
// ../../node_modules/.pnpm/get-nonce@1.0.1/node_modules/get-nonce/dist/es2015/index.js
|
|
10480
|
+
var currentNonce;
|
|
10481
|
+
var getNonce = function() {
|
|
10482
|
+
if (currentNonce) {
|
|
10483
|
+
return currentNonce;
|
|
10484
|
+
}
|
|
10485
|
+
if (typeof __webpack_nonce__ !== "undefined") {
|
|
10486
|
+
return __webpack_nonce__;
|
|
10487
|
+
}
|
|
10488
|
+
return void 0;
|
|
10489
|
+
};
|
|
10490
|
+
|
|
10491
|
+
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.1.2_react@19.1.0/node_modules/react-style-singleton/dist/es2015/singleton.js
|
|
10492
|
+
function makeStyleTag() {
|
|
10493
|
+
if (!document)
|
|
10494
|
+
return null;
|
|
10495
|
+
var tag = document.createElement("style");
|
|
10496
|
+
tag.type = "text/css";
|
|
10497
|
+
var nonce = getNonce();
|
|
10498
|
+
if (nonce) {
|
|
10499
|
+
tag.setAttribute("nonce", nonce);
|
|
10500
|
+
}
|
|
10501
|
+
return tag;
|
|
10502
|
+
}
|
|
10503
|
+
function injectStyles(tag, css) {
|
|
10504
|
+
if (tag.styleSheet) {
|
|
10505
|
+
tag.styleSheet.cssText = css;
|
|
10506
|
+
} else {
|
|
10507
|
+
tag.appendChild(document.createTextNode(css));
|
|
10508
|
+
}
|
|
10509
|
+
}
|
|
10510
|
+
function insertStyleTag(tag) {
|
|
10511
|
+
var head = document.head || document.getElementsByTagName("head")[0];
|
|
10512
|
+
head.appendChild(tag);
|
|
10513
|
+
}
|
|
10514
|
+
var stylesheetSingleton = function() {
|
|
10515
|
+
var counter = 0;
|
|
10516
|
+
var stylesheet = null;
|
|
10517
|
+
return {
|
|
10518
|
+
add: function(style) {
|
|
10519
|
+
if (counter == 0) {
|
|
10520
|
+
if (stylesheet = makeStyleTag()) {
|
|
10521
|
+
injectStyles(stylesheet, style);
|
|
10522
|
+
insertStyleTag(stylesheet);
|
|
10523
|
+
}
|
|
10524
|
+
}
|
|
10525
|
+
counter++;
|
|
10526
|
+
},
|
|
10527
|
+
remove: function() {
|
|
10528
|
+
counter--;
|
|
10529
|
+
if (!counter && stylesheet) {
|
|
10530
|
+
stylesheet.parentNode && stylesheet.parentNode.removeChild(stylesheet);
|
|
10531
|
+
stylesheet = null;
|
|
10532
|
+
}
|
|
10533
|
+
}
|
|
10534
|
+
};
|
|
10535
|
+
};
|
|
10536
|
+
|
|
10537
|
+
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.1.2_react@19.1.0/node_modules/react-style-singleton/dist/es2015/hook.js
|
|
10538
|
+
var styleHookSingleton = function() {
|
|
10539
|
+
var sheet = stylesheetSingleton();
|
|
10540
|
+
return function(styles, isDynamic) {
|
|
10541
|
+
React50.useEffect(function() {
|
|
10542
|
+
sheet.add(styles);
|
|
10543
|
+
return function() {
|
|
10544
|
+
sheet.remove();
|
|
10545
|
+
};
|
|
10546
|
+
}, [styles && isDynamic]);
|
|
10547
|
+
};
|
|
10548
|
+
};
|
|
10549
|
+
|
|
10550
|
+
// ../../node_modules/.pnpm/react-style-singleton@2.2.3_@types+react@19.1.2_react@19.1.0/node_modules/react-style-singleton/dist/es2015/component.js
|
|
10551
|
+
var styleSingleton = function() {
|
|
10552
|
+
var useStyle = styleHookSingleton();
|
|
10553
|
+
var Sheet = function(_a) {
|
|
10554
|
+
var styles = _a.styles, dynamic = _a.dynamic;
|
|
10555
|
+
useStyle(styles, dynamic);
|
|
10556
|
+
return null;
|
|
10557
|
+
};
|
|
10558
|
+
return Sheet;
|
|
10559
|
+
};
|
|
10560
|
+
|
|
10561
|
+
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll-bar/dist/es2015/utils.js
|
|
10562
|
+
var zeroGap = {
|
|
10563
|
+
left: 0,
|
|
10564
|
+
top: 0,
|
|
10565
|
+
right: 0,
|
|
10566
|
+
gap: 0
|
|
10567
|
+
};
|
|
10568
|
+
var parse = function(x) {
|
|
10569
|
+
return parseInt(x || "", 10) || 0;
|
|
10570
|
+
};
|
|
10571
|
+
var getOffset = function(gapMode) {
|
|
10572
|
+
var cs = window.getComputedStyle(document.body);
|
|
10573
|
+
var left = cs[gapMode === "padding" ? "paddingLeft" : "marginLeft"];
|
|
10574
|
+
var top = cs[gapMode === "padding" ? "paddingTop" : "marginTop"];
|
|
10575
|
+
var right = cs[gapMode === "padding" ? "paddingRight" : "marginRight"];
|
|
10576
|
+
return [parse(left), parse(top), parse(right)];
|
|
10577
|
+
};
|
|
10578
|
+
var getGapWidth = function(gapMode) {
|
|
10579
|
+
if (gapMode === void 0) {
|
|
10580
|
+
gapMode = "margin";
|
|
10581
|
+
}
|
|
10582
|
+
if (typeof window === "undefined") {
|
|
10583
|
+
return zeroGap;
|
|
10584
|
+
}
|
|
10585
|
+
var offsets = getOffset(gapMode);
|
|
10586
|
+
var documentWidth = document.documentElement.clientWidth;
|
|
10587
|
+
var windowWidth = window.innerWidth;
|
|
10588
|
+
return {
|
|
10589
|
+
left: offsets[0],
|
|
10590
|
+
top: offsets[1],
|
|
10591
|
+
right: offsets[2],
|
|
10592
|
+
gap: Math.max(0, windowWidth - documentWidth + offsets[2] - offsets[0])
|
|
10593
|
+
};
|
|
10594
|
+
};
|
|
10595
|
+
|
|
10596
|
+
// ../../node_modules/.pnpm/react-remove-scroll-bar@2.3.8_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll-bar/dist/es2015/component.js
|
|
10597
|
+
var Style = styleSingleton();
|
|
10598
|
+
var lockAttribute = "data-scroll-locked";
|
|
10599
|
+
var getStyles = function(_a, allowRelative, gapMode, important) {
|
|
10600
|
+
var left = _a.left, top = _a.top, right = _a.right, gap = _a.gap;
|
|
10601
|
+
if (gapMode === void 0) {
|
|
10602
|
+
gapMode = "margin";
|
|
10603
|
+
}
|
|
10604
|
+
return "\n .".concat(noScrollbarsClassName, " {\n overflow: hidden ").concat(important, ";\n padding-right: ").concat(gap, "px ").concat(important, ";\n }\n body[").concat(lockAttribute, "] {\n overflow: hidden ").concat(important, ";\n overscroll-behavior: contain;\n ").concat([
|
|
10605
|
+
allowRelative && "position: relative ".concat(important, ";"),
|
|
10606
|
+
gapMode === "margin" && "\n padding-left: ".concat(left, "px;\n padding-top: ").concat(top, "px;\n padding-right: ").concat(right, "px;\n margin-left:0;\n margin-top:0;\n margin-right: ").concat(gap, "px ").concat(important, ";\n "),
|
|
10607
|
+
gapMode === "padding" && "padding-right: ".concat(gap, "px ").concat(important, ";")
|
|
10608
|
+
].filter(Boolean).join(""), "\n }\n \n .").concat(zeroRightClassName, " {\n right: ").concat(gap, "px ").concat(important, ";\n }\n \n .").concat(fullWidthClassName, " {\n margin-right: ").concat(gap, "px ").concat(important, ";\n }\n \n .").concat(zeroRightClassName, " .").concat(zeroRightClassName, " {\n right: 0 ").concat(important, ";\n }\n \n .").concat(fullWidthClassName, " .").concat(fullWidthClassName, " {\n margin-right: 0 ").concat(important, ";\n }\n \n body[").concat(lockAttribute, "] {\n ").concat(removedBarSizeVariable, ": ").concat(gap, "px;\n }\n");
|
|
10609
|
+
};
|
|
10610
|
+
var getCurrentUseCounter = function() {
|
|
10611
|
+
var counter = parseInt(document.body.getAttribute(lockAttribute) || "0", 10);
|
|
10612
|
+
return isFinite(counter) ? counter : 0;
|
|
10613
|
+
};
|
|
10614
|
+
var useLockAttribute = function() {
|
|
10615
|
+
React51.useEffect(function() {
|
|
10616
|
+
document.body.setAttribute(lockAttribute, (getCurrentUseCounter() + 1).toString());
|
|
10617
|
+
return function() {
|
|
10618
|
+
var newCounter = getCurrentUseCounter() - 1;
|
|
10619
|
+
if (newCounter <= 0) {
|
|
10620
|
+
document.body.removeAttribute(lockAttribute);
|
|
10621
|
+
} else {
|
|
10622
|
+
document.body.setAttribute(lockAttribute, newCounter.toString());
|
|
10623
|
+
}
|
|
10624
|
+
};
|
|
10625
|
+
}, []);
|
|
10626
|
+
};
|
|
10627
|
+
var RemoveScrollBar = function(_a) {
|
|
10628
|
+
var noRelative = _a.noRelative, noImportant = _a.noImportant, _b = _a.gapMode, gapMode = _b === void 0 ? "margin" : _b;
|
|
10629
|
+
useLockAttribute();
|
|
10630
|
+
var gap = React51.useMemo(function() {
|
|
10631
|
+
return getGapWidth(gapMode);
|
|
10632
|
+
}, [gapMode]);
|
|
10633
|
+
return React51.createElement(Style, { styles: getStyles(gap, !noRelative, gapMode, !noImportant ? "!important" : "") });
|
|
10634
|
+
};
|
|
10635
|
+
|
|
10636
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/aggresiveCapture.js
|
|
10637
|
+
var passiveSupported = false;
|
|
10638
|
+
if (typeof window !== "undefined") {
|
|
10639
|
+
try {
|
|
10640
|
+
options = Object.defineProperty({}, "passive", {
|
|
10641
|
+
get: function() {
|
|
10642
|
+
passiveSupported = true;
|
|
10643
|
+
return true;
|
|
10644
|
+
}
|
|
10645
|
+
});
|
|
10646
|
+
window.addEventListener("test", options, options);
|
|
10647
|
+
window.removeEventListener("test", options, options);
|
|
10648
|
+
} catch (err) {
|
|
10649
|
+
passiveSupported = false;
|
|
10650
|
+
}
|
|
10651
|
+
}
|
|
10652
|
+
var options;
|
|
10653
|
+
var nonPassive = passiveSupported ? { passive: false } : false;
|
|
10654
|
+
|
|
10655
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/handleScroll.js
|
|
10656
|
+
var alwaysContainsScroll = function(node2) {
|
|
10657
|
+
return node2.tagName === "TEXTAREA";
|
|
10658
|
+
};
|
|
10659
|
+
var elementCanBeScrolled = function(node2, overflow) {
|
|
10660
|
+
if (!(node2 instanceof Element)) {
|
|
10661
|
+
return false;
|
|
10662
|
+
}
|
|
10663
|
+
var styles = window.getComputedStyle(node2);
|
|
10664
|
+
return (
|
|
10665
|
+
// not-not-scrollable
|
|
10666
|
+
styles[overflow] !== "hidden" && // contains scroll inside self
|
|
10667
|
+
!(styles.overflowY === styles.overflowX && !alwaysContainsScroll(node2) && styles[overflow] === "visible")
|
|
10668
|
+
);
|
|
10669
|
+
};
|
|
10670
|
+
var elementCouldBeVScrolled = function(node2) {
|
|
10671
|
+
return elementCanBeScrolled(node2, "overflowY");
|
|
10672
|
+
};
|
|
10673
|
+
var elementCouldBeHScrolled = function(node2) {
|
|
10674
|
+
return elementCanBeScrolled(node2, "overflowX");
|
|
10675
|
+
};
|
|
10676
|
+
var locationCouldBeScrolled = function(axis, node2) {
|
|
10677
|
+
var ownerDocument = node2.ownerDocument;
|
|
10678
|
+
var current2 = node2;
|
|
10679
|
+
do {
|
|
10680
|
+
if (typeof ShadowRoot !== "undefined" && current2 instanceof ShadowRoot) {
|
|
10681
|
+
current2 = current2.host;
|
|
10682
|
+
}
|
|
10683
|
+
var isScrollable = elementCouldBeScrolled(axis, current2);
|
|
10684
|
+
if (isScrollable) {
|
|
10685
|
+
var _a = getScrollVariables(axis, current2), scrollHeight = _a[1], clientHeight = _a[2];
|
|
10686
|
+
if (scrollHeight > clientHeight) {
|
|
10687
|
+
return true;
|
|
10688
|
+
}
|
|
10689
|
+
}
|
|
10690
|
+
current2 = current2.parentNode;
|
|
10691
|
+
} while (current2 && current2 !== ownerDocument.body);
|
|
10692
|
+
return false;
|
|
10693
|
+
};
|
|
10694
|
+
var getVScrollVariables = function(_a) {
|
|
10695
|
+
var scrollTop = _a.scrollTop, scrollHeight = _a.scrollHeight, clientHeight = _a.clientHeight;
|
|
10696
|
+
return [
|
|
10697
|
+
scrollTop,
|
|
10698
|
+
scrollHeight,
|
|
10699
|
+
clientHeight
|
|
10700
|
+
];
|
|
10701
|
+
};
|
|
10702
|
+
var getHScrollVariables = function(_a) {
|
|
10703
|
+
var scrollLeft = _a.scrollLeft, scrollWidth = _a.scrollWidth, clientWidth = _a.clientWidth;
|
|
10704
|
+
return [
|
|
10705
|
+
scrollLeft,
|
|
10706
|
+
scrollWidth,
|
|
10707
|
+
clientWidth
|
|
10708
|
+
];
|
|
10709
|
+
};
|
|
10710
|
+
var elementCouldBeScrolled = function(axis, node2) {
|
|
10711
|
+
return axis === "v" ? elementCouldBeVScrolled(node2) : elementCouldBeHScrolled(node2);
|
|
10712
|
+
};
|
|
10713
|
+
var getScrollVariables = function(axis, node2) {
|
|
10714
|
+
return axis === "v" ? getVScrollVariables(node2) : getHScrollVariables(node2);
|
|
10715
|
+
};
|
|
10716
|
+
var getDirectionFactor = function(axis, direction) {
|
|
10717
|
+
return axis === "h" && direction === "rtl" ? -1 : 1;
|
|
10718
|
+
};
|
|
10719
|
+
var handleScroll = function(axis, endTarget, event, sourceDelta, noOverscroll) {
|
|
10720
|
+
var directionFactor = getDirectionFactor(axis, window.getComputedStyle(endTarget).direction);
|
|
10721
|
+
var delta = directionFactor * sourceDelta;
|
|
10722
|
+
var target = event.target;
|
|
10723
|
+
var targetInLock = endTarget.contains(target);
|
|
10724
|
+
var shouldCancelScroll = false;
|
|
10725
|
+
var isDeltaPositive = delta > 0;
|
|
10726
|
+
var availableScroll = 0;
|
|
10727
|
+
var availableScrollTop = 0;
|
|
10728
|
+
do {
|
|
10729
|
+
if (!target) {
|
|
10730
|
+
break;
|
|
10731
|
+
}
|
|
10732
|
+
var _a = getScrollVariables(axis, target), position2 = _a[0], scroll_1 = _a[1], capacity = _a[2];
|
|
10733
|
+
var elementScroll = scroll_1 - capacity - directionFactor * position2;
|
|
10734
|
+
if (position2 || elementScroll) {
|
|
10735
|
+
if (elementCouldBeScrolled(axis, target)) {
|
|
10736
|
+
availableScroll += elementScroll;
|
|
10737
|
+
availableScrollTop += position2;
|
|
10738
|
+
}
|
|
10739
|
+
}
|
|
10740
|
+
var parent_1 = target.parentNode;
|
|
10741
|
+
target = parent_1 && parent_1.nodeType === Node.DOCUMENT_FRAGMENT_NODE ? parent_1.host : parent_1;
|
|
10742
|
+
} while (
|
|
10743
|
+
// portaled content
|
|
10744
|
+
!targetInLock && target !== document.body || // self content
|
|
10745
|
+
targetInLock && (endTarget.contains(target) || endTarget === target)
|
|
10746
|
+
);
|
|
10747
|
+
if (isDeltaPositive && (noOverscroll && Math.abs(availableScroll) < 1 || !noOverscroll && delta > availableScroll)) {
|
|
10748
|
+
shouldCancelScroll = true;
|
|
10749
|
+
} else if (!isDeltaPositive && (noOverscroll && Math.abs(availableScrollTop) < 1 || !noOverscroll && -delta > availableScrollTop)) {
|
|
10750
|
+
shouldCancelScroll = true;
|
|
10751
|
+
}
|
|
10752
|
+
return shouldCancelScroll;
|
|
10753
|
+
};
|
|
10754
|
+
|
|
10755
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/SideEffect.js
|
|
10756
|
+
var getTouchXY = function(event) {
|
|
10757
|
+
return "changedTouches" in event ? [event.changedTouches[0].clientX, event.changedTouches[0].clientY] : [0, 0];
|
|
10758
|
+
};
|
|
10759
|
+
var getDeltaXY = function(event) {
|
|
10760
|
+
return [event.deltaX, event.deltaY];
|
|
10761
|
+
};
|
|
10762
|
+
var extractRef = function(ref2) {
|
|
10763
|
+
return ref2 && "current" in ref2 ? ref2.current : ref2;
|
|
10764
|
+
};
|
|
10765
|
+
var deltaCompare = function(x, y) {
|
|
10766
|
+
return x[0] === y[0] && x[1] === y[1];
|
|
10767
|
+
};
|
|
10768
|
+
var generateStyle = function(id) {
|
|
10769
|
+
return "\n .block-interactivity-".concat(id, " {pointer-events: none;}\n .allow-interactivity-").concat(id, " {pointer-events: all;}\n");
|
|
10770
|
+
};
|
|
10771
|
+
var idCounter = 0;
|
|
10772
|
+
var lockStack = [];
|
|
10773
|
+
function RemoveScrollSideCar(props) {
|
|
10774
|
+
var shouldPreventQueue = React52.useRef([]);
|
|
10775
|
+
var touchStartRef = React52.useRef([0, 0]);
|
|
10776
|
+
var activeAxis = React52.useRef();
|
|
10777
|
+
var id = React52.useState(idCounter++)[0];
|
|
10778
|
+
var Style2 = React52.useState(styleSingleton)[0];
|
|
10779
|
+
var lastProps = React52.useRef(props);
|
|
10780
|
+
React52.useEffect(function() {
|
|
10781
|
+
lastProps.current = props;
|
|
10782
|
+
}, [props]);
|
|
10783
|
+
React52.useEffect(function() {
|
|
10784
|
+
if (props.inert) {
|
|
10785
|
+
document.body.classList.add("block-interactivity-".concat(id));
|
|
10786
|
+
var allow_1 = __spreadArray([props.lockRef.current], (props.shards || []).map(extractRef), true).filter(Boolean);
|
|
10787
|
+
allow_1.forEach(function(el) {
|
|
10788
|
+
return el.classList.add("allow-interactivity-".concat(id));
|
|
10789
|
+
});
|
|
10790
|
+
return function() {
|
|
10791
|
+
document.body.classList.remove("block-interactivity-".concat(id));
|
|
10792
|
+
allow_1.forEach(function(el) {
|
|
10793
|
+
return el.classList.remove("allow-interactivity-".concat(id));
|
|
10794
|
+
});
|
|
10795
|
+
};
|
|
10796
|
+
}
|
|
10797
|
+
return;
|
|
10798
|
+
}, [props.inert, props.lockRef.current, props.shards]);
|
|
10799
|
+
var shouldCancelEvent = React52.useCallback(function(event, parent) {
|
|
10800
|
+
if ("touches" in event && event.touches.length === 2 || event.type === "wheel" && event.ctrlKey) {
|
|
10801
|
+
return !lastProps.current.allowPinchZoom;
|
|
10802
|
+
}
|
|
10803
|
+
var touch = getTouchXY(event);
|
|
10804
|
+
var touchStart = touchStartRef.current;
|
|
10805
|
+
var deltaX = "deltaX" in event ? event.deltaX : touchStart[0] - touch[0];
|
|
10806
|
+
var deltaY = "deltaY" in event ? event.deltaY : touchStart[1] - touch[1];
|
|
10807
|
+
var currentAxis;
|
|
10808
|
+
var target = event.target;
|
|
10809
|
+
var moveDirection = Math.abs(deltaX) > Math.abs(deltaY) ? "h" : "v";
|
|
10810
|
+
if ("touches" in event && moveDirection === "h" && target.type === "range") {
|
|
10811
|
+
return false;
|
|
10812
|
+
}
|
|
10813
|
+
var canBeScrolledInMainDirection = locationCouldBeScrolled(moveDirection, target);
|
|
10814
|
+
if (!canBeScrolledInMainDirection) {
|
|
10815
|
+
return true;
|
|
10816
|
+
}
|
|
10817
|
+
if (canBeScrolledInMainDirection) {
|
|
10818
|
+
currentAxis = moveDirection;
|
|
10819
|
+
} else {
|
|
10820
|
+
currentAxis = moveDirection === "v" ? "h" : "v";
|
|
10821
|
+
canBeScrolledInMainDirection = locationCouldBeScrolled(moveDirection, target);
|
|
10822
|
+
}
|
|
10823
|
+
if (!canBeScrolledInMainDirection) {
|
|
10824
|
+
return false;
|
|
10825
|
+
}
|
|
10826
|
+
if (!activeAxis.current && "changedTouches" in event && (deltaX || deltaY)) {
|
|
10827
|
+
activeAxis.current = currentAxis;
|
|
10828
|
+
}
|
|
10829
|
+
if (!currentAxis) {
|
|
10830
|
+
return true;
|
|
10831
|
+
}
|
|
10832
|
+
var cancelingAxis = activeAxis.current || currentAxis;
|
|
10833
|
+
return handleScroll(cancelingAxis, parent, event, cancelingAxis === "h" ? deltaX : deltaY, true);
|
|
10834
|
+
}, []);
|
|
10835
|
+
var shouldPrevent = React52.useCallback(function(_event) {
|
|
10836
|
+
var event = _event;
|
|
10837
|
+
if (!lockStack.length || lockStack[lockStack.length - 1] !== Style2) {
|
|
10838
|
+
return;
|
|
10839
|
+
}
|
|
10840
|
+
var delta = "deltaY" in event ? getDeltaXY(event) : getTouchXY(event);
|
|
10841
|
+
var sourceEvent = shouldPreventQueue.current.filter(function(e) {
|
|
10842
|
+
return e.name === event.type && (e.target === event.target || event.target === e.shadowParent) && deltaCompare(e.delta, delta);
|
|
10843
|
+
})[0];
|
|
10844
|
+
if (sourceEvent && sourceEvent.should) {
|
|
10845
|
+
if (event.cancelable) {
|
|
10846
|
+
event.preventDefault();
|
|
10847
|
+
}
|
|
10848
|
+
return;
|
|
10849
|
+
}
|
|
10850
|
+
if (!sourceEvent) {
|
|
10851
|
+
var shardNodes = (lastProps.current.shards || []).map(extractRef).filter(Boolean).filter(function(node2) {
|
|
10852
|
+
return node2.contains(event.target);
|
|
10853
|
+
});
|
|
10854
|
+
var shouldStop = shardNodes.length > 0 ? shouldCancelEvent(event, shardNodes[0]) : !lastProps.current.noIsolation;
|
|
10855
|
+
if (shouldStop) {
|
|
10856
|
+
if (event.cancelable) {
|
|
10857
|
+
event.preventDefault();
|
|
10858
|
+
}
|
|
10859
|
+
}
|
|
10860
|
+
}
|
|
10861
|
+
}, []);
|
|
10862
|
+
var shouldCancel = React52.useCallback(function(name2, delta, target, should) {
|
|
10863
|
+
var event = { name: name2, delta, target, should, shadowParent: getOutermostShadowParent(target) };
|
|
10864
|
+
shouldPreventQueue.current.push(event);
|
|
10865
|
+
setTimeout(function() {
|
|
10866
|
+
shouldPreventQueue.current = shouldPreventQueue.current.filter(function(e) {
|
|
10867
|
+
return e !== event;
|
|
10868
|
+
});
|
|
10869
|
+
}, 1);
|
|
10870
|
+
}, []);
|
|
10871
|
+
var scrollTouchStart = React52.useCallback(function(event) {
|
|
10872
|
+
touchStartRef.current = getTouchXY(event);
|
|
10873
|
+
activeAxis.current = void 0;
|
|
10874
|
+
}, []);
|
|
10875
|
+
var scrollWheel = React52.useCallback(function(event) {
|
|
10876
|
+
shouldCancel(event.type, getDeltaXY(event), event.target, shouldCancelEvent(event, props.lockRef.current));
|
|
10877
|
+
}, []);
|
|
10878
|
+
var scrollTouchMove = React52.useCallback(function(event) {
|
|
10879
|
+
shouldCancel(event.type, getTouchXY(event), event.target, shouldCancelEvent(event, props.lockRef.current));
|
|
10880
|
+
}, []);
|
|
10881
|
+
React52.useEffect(function() {
|
|
10882
|
+
lockStack.push(Style2);
|
|
10883
|
+
props.setCallbacks({
|
|
10884
|
+
onScrollCapture: scrollWheel,
|
|
10885
|
+
onWheelCapture: scrollWheel,
|
|
10886
|
+
onTouchMoveCapture: scrollTouchMove
|
|
10887
|
+
});
|
|
10888
|
+
document.addEventListener("wheel", shouldPrevent, nonPassive);
|
|
10889
|
+
document.addEventListener("touchmove", shouldPrevent, nonPassive);
|
|
10890
|
+
document.addEventListener("touchstart", scrollTouchStart, nonPassive);
|
|
10891
|
+
return function() {
|
|
10892
|
+
lockStack = lockStack.filter(function(inst) {
|
|
10893
|
+
return inst !== Style2;
|
|
10894
|
+
});
|
|
10895
|
+
document.removeEventListener("wheel", shouldPrevent, nonPassive);
|
|
10896
|
+
document.removeEventListener("touchmove", shouldPrevent, nonPassive);
|
|
10897
|
+
document.removeEventListener("touchstart", scrollTouchStart, nonPassive);
|
|
10898
|
+
};
|
|
10899
|
+
}, []);
|
|
10900
|
+
var removeScrollBar = props.removeScrollBar, inert = props.inert;
|
|
10901
|
+
return React52.createElement(
|
|
10902
|
+
React52.Fragment,
|
|
10903
|
+
null,
|
|
10904
|
+
inert ? React52.createElement(Style2, { styles: generateStyle(id) }) : null,
|
|
10905
|
+
removeScrollBar ? React52.createElement(RemoveScrollBar, { noRelative: props.noRelative, gapMode: props.gapMode }) : null
|
|
10906
|
+
);
|
|
10907
|
+
}
|
|
10908
|
+
function getOutermostShadowParent(node2) {
|
|
10909
|
+
var shadowParent = null;
|
|
10910
|
+
while (node2 !== null) {
|
|
10911
|
+
if (node2 instanceof ShadowRoot) {
|
|
10912
|
+
shadowParent = node2.host;
|
|
10913
|
+
node2 = node2.host;
|
|
10914
|
+
}
|
|
10915
|
+
node2 = node2.parentNode;
|
|
10916
|
+
}
|
|
10917
|
+
return shadowParent;
|
|
9248
10918
|
}
|
|
9249
10919
|
|
|
9250
|
-
//
|
|
9251
|
-
|
|
9252
|
-
import { jsx as jsx37, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
9253
|
-
|
|
9254
|
-
// ../base-ui/src/ui/button.tsx
|
|
9255
|
-
import * as React35 from "react";
|
|
10920
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/sidecar.js
|
|
10921
|
+
var sidecar_default = exportSidecar(effectCar, RemoveScrollSideCar);
|
|
9256
10922
|
|
|
9257
|
-
// ../../node_modules/.pnpm
|
|
9258
|
-
|
|
10923
|
+
// ../../node_modules/.pnpm/react-remove-scroll@2.7.1_@types+react@19.1.2_react@19.1.0/node_modules/react-remove-scroll/dist/es2015/Combination.js
|
|
10924
|
+
var ReactRemoveScroll = React53.forwardRef(function(props, ref2) {
|
|
10925
|
+
return React53.createElement(RemoveScroll, __assign({}, props, { ref: ref2, sideCar: sidecar_default }));
|
|
10926
|
+
});
|
|
10927
|
+
ReactRemoveScroll.classNames = RemoveScroll.classNames;
|
|
10928
|
+
var Combination_default = ReactRemoveScroll;
|
|
9259
10929
|
|
|
9260
|
-
// ../../node_modules/.pnpm
|
|
9261
|
-
|
|
9262
|
-
|
|
9263
|
-
|
|
9264
|
-
return ref2(value2);
|
|
9265
|
-
} else if (ref2 !== null && ref2 !== void 0) {
|
|
9266
|
-
ref2.current = value2;
|
|
10930
|
+
// ../../node_modules/.pnpm/aria-hidden@1.2.6/node_modules/aria-hidden/dist/es2015/index.js
|
|
10931
|
+
var getDefaultParent = function(originalTarget) {
|
|
10932
|
+
if (typeof document === "undefined") {
|
|
10933
|
+
return null;
|
|
9267
10934
|
}
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
|
|
9276
|
-
|
|
9277
|
-
|
|
9278
|
-
|
|
9279
|
-
|
|
9280
|
-
|
|
9281
|
-
|
|
9282
|
-
const cleanup = cleanups[i];
|
|
9283
|
-
if (typeof cleanup == "function") {
|
|
9284
|
-
cleanup();
|
|
9285
|
-
} else {
|
|
9286
|
-
setRef(refs[i], null);
|
|
9287
|
-
}
|
|
9288
|
-
}
|
|
9289
|
-
};
|
|
10935
|
+
var sampleTarget = Array.isArray(originalTarget) ? originalTarget[0] : originalTarget;
|
|
10936
|
+
return sampleTarget.ownerDocument.body;
|
|
10937
|
+
};
|
|
10938
|
+
var counterMap = /* @__PURE__ */ new WeakMap();
|
|
10939
|
+
var uncontrolledNodes = /* @__PURE__ */ new WeakMap();
|
|
10940
|
+
var markerMap = {};
|
|
10941
|
+
var lockCount = 0;
|
|
10942
|
+
var unwrapHost = function(node2) {
|
|
10943
|
+
return node2 && (node2.host || unwrapHost(node2.parentNode));
|
|
10944
|
+
};
|
|
10945
|
+
var correctTargets = function(parent, targets) {
|
|
10946
|
+
return targets.map(function(target) {
|
|
10947
|
+
if (parent.contains(target)) {
|
|
10948
|
+
return target;
|
|
9290
10949
|
}
|
|
9291
|
-
|
|
9292
|
-
|
|
9293
|
-
|
|
9294
|
-
// ../../node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.1.2_react@19.1.0/node_modules/@radix-ui/react-slot/dist/index.mjs
|
|
9295
|
-
import { Fragment as Fragment2, jsx as jsx38 } from "react/jsx-runtime";
|
|
9296
|
-
// @__NO_SIDE_EFFECTS__
|
|
9297
|
-
function createSlot(ownerName) {
|
|
9298
|
-
const SlotClone = /* @__PURE__ */ createSlotClone(ownerName);
|
|
9299
|
-
const Slot2 = React34.forwardRef((props, forwardedRef) => {
|
|
9300
|
-
const _a = props, { children } = _a, slotProps = __objRest(_a, ["children"]);
|
|
9301
|
-
const childrenArray = React34.Children.toArray(children);
|
|
9302
|
-
const slottable = childrenArray.find(isSlottable);
|
|
9303
|
-
if (slottable) {
|
|
9304
|
-
const newElement = slottable.props.children;
|
|
9305
|
-
const newChildren = childrenArray.map((child) => {
|
|
9306
|
-
if (child === slottable) {
|
|
9307
|
-
if (React34.Children.count(newElement) > 1) return React34.Children.only(null);
|
|
9308
|
-
return React34.isValidElement(newElement) ? newElement.props.children : null;
|
|
9309
|
-
} else {
|
|
9310
|
-
return child;
|
|
9311
|
-
}
|
|
9312
|
-
});
|
|
9313
|
-
return /* @__PURE__ */ jsx38(SlotClone, __spreadProps(__spreadValues({}, slotProps), { ref: forwardedRef, children: React34.isValidElement(newElement) ? React34.cloneElement(newElement, void 0, newChildren) : null }));
|
|
10950
|
+
var correctedTarget = unwrapHost(target);
|
|
10951
|
+
if (correctedTarget && parent.contains(correctedTarget)) {
|
|
10952
|
+
return correctedTarget;
|
|
9314
10953
|
}
|
|
9315
|
-
|
|
10954
|
+
console.error("aria-hidden", target, "in not contained inside", parent, ". Doing nothing");
|
|
10955
|
+
return null;
|
|
10956
|
+
}).filter(function(x) {
|
|
10957
|
+
return Boolean(x);
|
|
9316
10958
|
});
|
|
9317
|
-
|
|
9318
|
-
|
|
9319
|
-
|
|
9320
|
-
|
|
9321
|
-
|
|
9322
|
-
|
|
9323
|
-
|
|
9324
|
-
|
|
9325
|
-
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
10959
|
+
};
|
|
10960
|
+
var applyAttributeToOthers = function(originalTarget, parentNode, markerName, controlAttribute) {
|
|
10961
|
+
var targets = correctTargets(parentNode, Array.isArray(originalTarget) ? originalTarget : [originalTarget]);
|
|
10962
|
+
if (!markerMap[markerName]) {
|
|
10963
|
+
markerMap[markerName] = /* @__PURE__ */ new WeakMap();
|
|
10964
|
+
}
|
|
10965
|
+
var markerCounter = markerMap[markerName];
|
|
10966
|
+
var hiddenNodes = [];
|
|
10967
|
+
var elementsToKeep = /* @__PURE__ */ new Set();
|
|
10968
|
+
var elementsToStop = new Set(targets);
|
|
10969
|
+
var keep = function(el) {
|
|
10970
|
+
if (!el || elementsToKeep.has(el)) {
|
|
10971
|
+
return;
|
|
10972
|
+
}
|
|
10973
|
+
elementsToKeep.add(el);
|
|
10974
|
+
keep(el.parentNode);
|
|
10975
|
+
};
|
|
10976
|
+
targets.forEach(keep);
|
|
10977
|
+
var deep = function(parent) {
|
|
10978
|
+
if (!parent || elementsToStop.has(parent)) {
|
|
10979
|
+
return;
|
|
10980
|
+
}
|
|
10981
|
+
Array.prototype.forEach.call(parent.children, function(node2) {
|
|
10982
|
+
if (elementsToKeep.has(node2)) {
|
|
10983
|
+
deep(node2);
|
|
10984
|
+
} else {
|
|
10985
|
+
try {
|
|
10986
|
+
var attr = node2.getAttribute(controlAttribute);
|
|
10987
|
+
var alreadyHidden = attr !== null && attr !== "false";
|
|
10988
|
+
var counterValue = (counterMap.get(node2) || 0) + 1;
|
|
10989
|
+
var markerValue = (markerCounter.get(node2) || 0) + 1;
|
|
10990
|
+
counterMap.set(node2, counterValue);
|
|
10991
|
+
markerCounter.set(node2, markerValue);
|
|
10992
|
+
hiddenNodes.push(node2);
|
|
10993
|
+
if (counterValue === 1 && alreadyHidden) {
|
|
10994
|
+
uncontrolledNodes.set(node2, true);
|
|
10995
|
+
}
|
|
10996
|
+
if (markerValue === 1) {
|
|
10997
|
+
node2.setAttribute(markerName, "true");
|
|
10998
|
+
}
|
|
10999
|
+
if (!alreadyHidden) {
|
|
11000
|
+
node2.setAttribute(controlAttribute, "true");
|
|
11001
|
+
}
|
|
11002
|
+
} catch (e) {
|
|
11003
|
+
console.error("aria-hidden: cannot operate on ", node2, e);
|
|
11004
|
+
}
|
|
11005
|
+
}
|
|
11006
|
+
});
|
|
11007
|
+
};
|
|
11008
|
+
deep(parentNode);
|
|
11009
|
+
elementsToKeep.clear();
|
|
11010
|
+
lockCount++;
|
|
11011
|
+
return function() {
|
|
11012
|
+
hiddenNodes.forEach(function(node2) {
|
|
11013
|
+
var counterValue = counterMap.get(node2) - 1;
|
|
11014
|
+
var markerValue = markerCounter.get(node2) - 1;
|
|
11015
|
+
counterMap.set(node2, counterValue);
|
|
11016
|
+
markerCounter.set(node2, markerValue);
|
|
11017
|
+
if (!counterValue) {
|
|
11018
|
+
if (!uncontrolledNodes.has(node2)) {
|
|
11019
|
+
node2.removeAttribute(controlAttribute);
|
|
11020
|
+
}
|
|
11021
|
+
uncontrolledNodes.delete(node2);
|
|
11022
|
+
}
|
|
11023
|
+
if (!markerValue) {
|
|
11024
|
+
node2.removeAttribute(markerName);
|
|
9330
11025
|
}
|
|
9331
|
-
|
|
11026
|
+
});
|
|
11027
|
+
lockCount--;
|
|
11028
|
+
if (!lockCount) {
|
|
11029
|
+
counterMap = /* @__PURE__ */ new WeakMap();
|
|
11030
|
+
counterMap = /* @__PURE__ */ new WeakMap();
|
|
11031
|
+
uncontrolledNodes = /* @__PURE__ */ new WeakMap();
|
|
11032
|
+
markerMap = {};
|
|
9332
11033
|
}
|
|
9333
|
-
|
|
11034
|
+
};
|
|
11035
|
+
};
|
|
11036
|
+
var hideOthers = function(originalTarget, parentNode, markerName) {
|
|
11037
|
+
if (markerName === void 0) {
|
|
11038
|
+
markerName = "data-aria-hidden";
|
|
11039
|
+
}
|
|
11040
|
+
var targets = Array.from(Array.isArray(originalTarget) ? originalTarget : [originalTarget]);
|
|
11041
|
+
var activeParentNode = parentNode || getDefaultParent(originalTarget);
|
|
11042
|
+
if (!activeParentNode) {
|
|
11043
|
+
return function() {
|
|
11044
|
+
return null;
|
|
11045
|
+
};
|
|
11046
|
+
}
|
|
11047
|
+
targets.push.apply(targets, Array.from(activeParentNode.querySelectorAll("[aria-live], script")));
|
|
11048
|
+
return applyAttributeToOthers(targets, activeParentNode, markerName, "aria-hidden");
|
|
11049
|
+
};
|
|
11050
|
+
|
|
11051
|
+
// ../../node_modules/.pnpm/@radix-ui+react-dialog@1.1.14_@types+react-dom@19.1.3_@types+react@19.1.2__@types+react_848f83211ce5e4d8275fe0d3e11a9387/node_modules/@radix-ui/react-dialog/dist/index.mjs
|
|
11052
|
+
import { Fragment as Fragment5, jsx as jsx39, jsxs as jsxs10 } from "react/jsx-runtime";
|
|
11053
|
+
var DIALOG_NAME = "Dialog";
|
|
11054
|
+
var [createDialogContext, createDialogScope] = createContextScope(DIALOG_NAME);
|
|
11055
|
+
var [DialogProvider, useDialogContext] = createDialogContext(DIALOG_NAME);
|
|
11056
|
+
var Dialog = (props) => {
|
|
11057
|
+
const {
|
|
11058
|
+
__scopeDialog,
|
|
11059
|
+
children,
|
|
11060
|
+
open: openProp,
|
|
11061
|
+
defaultOpen,
|
|
11062
|
+
onOpenChange,
|
|
11063
|
+
modal = true
|
|
11064
|
+
} = props;
|
|
11065
|
+
const triggerRef = React54.useRef(null);
|
|
11066
|
+
const contentRef = React54.useRef(null);
|
|
11067
|
+
const [open, setOpen] = useControllableState({
|
|
11068
|
+
prop: openProp,
|
|
11069
|
+
defaultProp: defaultOpen != null ? defaultOpen : false,
|
|
11070
|
+
onChange: onOpenChange,
|
|
11071
|
+
caller: DIALOG_NAME
|
|
9334
11072
|
});
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
|
|
9349
|
-
if (slotPropValue && childPropValue) {
|
|
9350
|
-
overrideProps[propName] = (...args) => {
|
|
9351
|
-
const result = childPropValue(...args);
|
|
9352
|
-
slotPropValue(...args);
|
|
9353
|
-
return result;
|
|
9354
|
-
};
|
|
9355
|
-
} else if (slotPropValue) {
|
|
9356
|
-
overrideProps[propName] = slotPropValue;
|
|
9357
|
-
}
|
|
9358
|
-
} else if (propName === "style") {
|
|
9359
|
-
overrideProps[propName] = __spreadValues(__spreadValues({}, slotPropValue), childPropValue);
|
|
9360
|
-
} else if (propName === "className") {
|
|
9361
|
-
overrideProps[propName] = [slotPropValue, childPropValue].filter(Boolean).join(" ");
|
|
11073
|
+
return /* @__PURE__ */ jsx39(
|
|
11074
|
+
DialogProvider,
|
|
11075
|
+
{
|
|
11076
|
+
scope: __scopeDialog,
|
|
11077
|
+
triggerRef,
|
|
11078
|
+
contentRef,
|
|
11079
|
+
contentId: useId(),
|
|
11080
|
+
titleId: useId(),
|
|
11081
|
+
descriptionId: useId(),
|
|
11082
|
+
open,
|
|
11083
|
+
onOpenChange: setOpen,
|
|
11084
|
+
onOpenToggle: React54.useCallback(() => setOpen((prevOpen) => !prevOpen), [setOpen]),
|
|
11085
|
+
modal,
|
|
11086
|
+
children
|
|
9362
11087
|
}
|
|
11088
|
+
);
|
|
11089
|
+
};
|
|
11090
|
+
Dialog.displayName = DIALOG_NAME;
|
|
11091
|
+
var TRIGGER_NAME = "DialogTrigger";
|
|
11092
|
+
var DialogTrigger = React54.forwardRef(
|
|
11093
|
+
(props, forwardedRef) => {
|
|
11094
|
+
const _a = props, { __scopeDialog } = _a, triggerProps = __objRest(_a, ["__scopeDialog"]);
|
|
11095
|
+
const context = useDialogContext(TRIGGER_NAME, __scopeDialog);
|
|
11096
|
+
const composedTriggerRef = useComposedRefs(forwardedRef, context.triggerRef);
|
|
11097
|
+
return /* @__PURE__ */ jsx39(
|
|
11098
|
+
Primitive.button,
|
|
11099
|
+
__spreadProps(__spreadValues({
|
|
11100
|
+
type: "button",
|
|
11101
|
+
"aria-haspopup": "dialog",
|
|
11102
|
+
"aria-expanded": context.open,
|
|
11103
|
+
"aria-controls": context.contentId,
|
|
11104
|
+
"data-state": getState(context.open)
|
|
11105
|
+
}, triggerProps), {
|
|
11106
|
+
ref: composedTriggerRef,
|
|
11107
|
+
onClick: composeEventHandlers(props.onClick, context.onOpenToggle)
|
|
11108
|
+
})
|
|
11109
|
+
);
|
|
9363
11110
|
}
|
|
9364
|
-
|
|
9365
|
-
|
|
9366
|
-
|
|
9367
|
-
|
|
9368
|
-
|
|
9369
|
-
|
|
9370
|
-
|
|
9371
|
-
|
|
11111
|
+
);
|
|
11112
|
+
DialogTrigger.displayName = TRIGGER_NAME;
|
|
11113
|
+
var PORTAL_NAME2 = "DialogPortal";
|
|
11114
|
+
var [PortalProvider, usePortalContext] = createDialogContext(PORTAL_NAME2, {
|
|
11115
|
+
forceMount: void 0
|
|
11116
|
+
});
|
|
11117
|
+
var DialogPortal = (props) => {
|
|
11118
|
+
const { __scopeDialog, forceMount, children, container } = props;
|
|
11119
|
+
const context = useDialogContext(PORTAL_NAME2, __scopeDialog);
|
|
11120
|
+
return /* @__PURE__ */ jsx39(PortalProvider, { scope: __scopeDialog, forceMount, children: React54.Children.map(children, (child) => /* @__PURE__ */ jsx39(Presence, { present: forceMount || context.open, children: /* @__PURE__ */ jsx39(Portal, { asChild: true, container, children: child }) })) });
|
|
11121
|
+
};
|
|
11122
|
+
DialogPortal.displayName = PORTAL_NAME2;
|
|
11123
|
+
var OVERLAY_NAME = "DialogOverlay";
|
|
11124
|
+
var DialogOverlay = React54.forwardRef(
|
|
11125
|
+
(props, forwardedRef) => {
|
|
11126
|
+
const portalContext = usePortalContext(OVERLAY_NAME, props.__scopeDialog);
|
|
11127
|
+
const _a = props, { forceMount = portalContext.forceMount } = _a, overlayProps = __objRest(_a, ["forceMount"]);
|
|
11128
|
+
const context = useDialogContext(OVERLAY_NAME, props.__scopeDialog);
|
|
11129
|
+
return context.modal ? /* @__PURE__ */ jsx39(Presence, { present: forceMount || context.open, children: /* @__PURE__ */ jsx39(DialogOverlayImpl, __spreadProps(__spreadValues({}, overlayProps), { ref: forwardedRef })) }) : null;
|
|
9372
11130
|
}
|
|
9373
|
-
|
|
9374
|
-
|
|
9375
|
-
|
|
9376
|
-
|
|
11131
|
+
);
|
|
11132
|
+
DialogOverlay.displayName = OVERLAY_NAME;
|
|
11133
|
+
var Slot2 = createSlot("DialogOverlay.RemoveScroll");
|
|
11134
|
+
var DialogOverlayImpl = React54.forwardRef(
|
|
11135
|
+
(props, forwardedRef) => {
|
|
11136
|
+
const _a = props, { __scopeDialog } = _a, overlayProps = __objRest(_a, ["__scopeDialog"]);
|
|
11137
|
+
const context = useDialogContext(OVERLAY_NAME, __scopeDialog);
|
|
11138
|
+
return (
|
|
11139
|
+
// Make sure `Content` is scrollable even when it doesn't live inside `RemoveScroll`
|
|
11140
|
+
// ie. when `Overlay` and `Content` are siblings
|
|
11141
|
+
/* @__PURE__ */ jsx39(Combination_default, { as: Slot2, allowPinchZoom: true, shards: [context.contentRef], children: /* @__PURE__ */ jsx39(
|
|
11142
|
+
Primitive.div,
|
|
11143
|
+
__spreadProps(__spreadValues({
|
|
11144
|
+
"data-state": getState(context.open)
|
|
11145
|
+
}, overlayProps), {
|
|
11146
|
+
ref: forwardedRef,
|
|
11147
|
+
style: __spreadValues({ pointerEvents: "auto" }, overlayProps.style)
|
|
11148
|
+
})
|
|
11149
|
+
) })
|
|
11150
|
+
);
|
|
9377
11151
|
}
|
|
9378
|
-
|
|
11152
|
+
);
|
|
11153
|
+
var CONTENT_NAME = "DialogContent";
|
|
11154
|
+
var DialogContent = React54.forwardRef(
|
|
11155
|
+
(props, forwardedRef) => {
|
|
11156
|
+
const portalContext = usePortalContext(CONTENT_NAME, props.__scopeDialog);
|
|
11157
|
+
const _a = props, { forceMount = portalContext.forceMount } = _a, contentProps = __objRest(_a, ["forceMount"]);
|
|
11158
|
+
const context = useDialogContext(CONTENT_NAME, props.__scopeDialog);
|
|
11159
|
+
return /* @__PURE__ */ jsx39(Presence, { present: forceMount || context.open, children: context.modal ? /* @__PURE__ */ jsx39(DialogContentModal, __spreadProps(__spreadValues({}, contentProps), { ref: forwardedRef })) : /* @__PURE__ */ jsx39(DialogContentNonModal, __spreadProps(__spreadValues({}, contentProps), { ref: forwardedRef })) });
|
|
11160
|
+
}
|
|
11161
|
+
);
|
|
11162
|
+
DialogContent.displayName = CONTENT_NAME;
|
|
11163
|
+
var DialogContentModal = React54.forwardRef(
|
|
11164
|
+
(props, forwardedRef) => {
|
|
11165
|
+
const context = useDialogContext(CONTENT_NAME, props.__scopeDialog);
|
|
11166
|
+
const contentRef = React54.useRef(null);
|
|
11167
|
+
const composedRefs = useComposedRefs(forwardedRef, context.contentRef, contentRef);
|
|
11168
|
+
React54.useEffect(() => {
|
|
11169
|
+
const content3 = contentRef.current;
|
|
11170
|
+
if (content3) return hideOthers(content3);
|
|
11171
|
+
}, []);
|
|
11172
|
+
return /* @__PURE__ */ jsx39(
|
|
11173
|
+
DialogContentImpl,
|
|
11174
|
+
__spreadProps(__spreadValues({}, props), {
|
|
11175
|
+
ref: composedRefs,
|
|
11176
|
+
trapFocus: context.open,
|
|
11177
|
+
disableOutsidePointerEvents: true,
|
|
11178
|
+
onCloseAutoFocus: composeEventHandlers(props.onCloseAutoFocus, (event) => {
|
|
11179
|
+
var _a;
|
|
11180
|
+
event.preventDefault();
|
|
11181
|
+
(_a = context.triggerRef.current) == null ? void 0 : _a.focus();
|
|
11182
|
+
}),
|
|
11183
|
+
onPointerDownOutside: composeEventHandlers(props.onPointerDownOutside, (event) => {
|
|
11184
|
+
const originalEvent = event.detail.originalEvent;
|
|
11185
|
+
const ctrlLeftClick = originalEvent.button === 0 && originalEvent.ctrlKey === true;
|
|
11186
|
+
const isRightClick = originalEvent.button === 2 || ctrlLeftClick;
|
|
11187
|
+
if (isRightClick) event.preventDefault();
|
|
11188
|
+
}),
|
|
11189
|
+
onFocusOutside: composeEventHandlers(
|
|
11190
|
+
props.onFocusOutside,
|
|
11191
|
+
(event) => event.preventDefault()
|
|
11192
|
+
)
|
|
11193
|
+
})
|
|
11194
|
+
);
|
|
11195
|
+
}
|
|
11196
|
+
);
|
|
11197
|
+
var DialogContentNonModal = React54.forwardRef(
|
|
11198
|
+
(props, forwardedRef) => {
|
|
11199
|
+
const context = useDialogContext(CONTENT_NAME, props.__scopeDialog);
|
|
11200
|
+
const hasInteractedOutsideRef = React54.useRef(false);
|
|
11201
|
+
const hasPointerDownOutsideRef = React54.useRef(false);
|
|
11202
|
+
return /* @__PURE__ */ jsx39(
|
|
11203
|
+
DialogContentImpl,
|
|
11204
|
+
__spreadProps(__spreadValues({}, props), {
|
|
11205
|
+
ref: forwardedRef,
|
|
11206
|
+
trapFocus: false,
|
|
11207
|
+
disableOutsidePointerEvents: false,
|
|
11208
|
+
onCloseAutoFocus: (event) => {
|
|
11209
|
+
var _a, _b;
|
|
11210
|
+
(_a = props.onCloseAutoFocus) == null ? void 0 : _a.call(props, event);
|
|
11211
|
+
if (!event.defaultPrevented) {
|
|
11212
|
+
if (!hasInteractedOutsideRef.current) (_b = context.triggerRef.current) == null ? void 0 : _b.focus();
|
|
11213
|
+
event.preventDefault();
|
|
11214
|
+
}
|
|
11215
|
+
hasInteractedOutsideRef.current = false;
|
|
11216
|
+
hasPointerDownOutsideRef.current = false;
|
|
11217
|
+
},
|
|
11218
|
+
onInteractOutside: (event) => {
|
|
11219
|
+
var _a, _b;
|
|
11220
|
+
(_a = props.onInteractOutside) == null ? void 0 : _a.call(props, event);
|
|
11221
|
+
if (!event.defaultPrevented) {
|
|
11222
|
+
hasInteractedOutsideRef.current = true;
|
|
11223
|
+
if (event.detail.originalEvent.type === "pointerdown") {
|
|
11224
|
+
hasPointerDownOutsideRef.current = true;
|
|
11225
|
+
}
|
|
11226
|
+
}
|
|
11227
|
+
const target = event.target;
|
|
11228
|
+
const targetIsTrigger = (_b = context.triggerRef.current) == null ? void 0 : _b.contains(target);
|
|
11229
|
+
if (targetIsTrigger) event.preventDefault();
|
|
11230
|
+
if (event.detail.originalEvent.type === "focusin" && hasPointerDownOutsideRef.current) {
|
|
11231
|
+
event.preventDefault();
|
|
11232
|
+
}
|
|
11233
|
+
}
|
|
11234
|
+
})
|
|
11235
|
+
);
|
|
11236
|
+
}
|
|
11237
|
+
);
|
|
11238
|
+
var DialogContentImpl = React54.forwardRef(
|
|
11239
|
+
(props, forwardedRef) => {
|
|
11240
|
+
const _a = props, { __scopeDialog, trapFocus, onOpenAutoFocus, onCloseAutoFocus } = _a, contentProps = __objRest(_a, ["__scopeDialog", "trapFocus", "onOpenAutoFocus", "onCloseAutoFocus"]);
|
|
11241
|
+
const context = useDialogContext(CONTENT_NAME, __scopeDialog);
|
|
11242
|
+
const contentRef = React54.useRef(null);
|
|
11243
|
+
const composedRefs = useComposedRefs(forwardedRef, contentRef);
|
|
11244
|
+
useFocusGuards();
|
|
11245
|
+
return /* @__PURE__ */ jsxs10(Fragment5, { children: [
|
|
11246
|
+
/* @__PURE__ */ jsx39(
|
|
11247
|
+
FocusScope,
|
|
11248
|
+
{
|
|
11249
|
+
asChild: true,
|
|
11250
|
+
loop: true,
|
|
11251
|
+
trapped: trapFocus,
|
|
11252
|
+
onMountAutoFocus: onOpenAutoFocus,
|
|
11253
|
+
onUnmountAutoFocus: onCloseAutoFocus,
|
|
11254
|
+
children: /* @__PURE__ */ jsx39(
|
|
11255
|
+
DismissableLayer,
|
|
11256
|
+
__spreadProps(__spreadValues({
|
|
11257
|
+
role: "dialog",
|
|
11258
|
+
id: context.contentId,
|
|
11259
|
+
"aria-describedby": context.descriptionId,
|
|
11260
|
+
"aria-labelledby": context.titleId,
|
|
11261
|
+
"data-state": getState(context.open)
|
|
11262
|
+
}, contentProps), {
|
|
11263
|
+
ref: composedRefs,
|
|
11264
|
+
onDismiss: () => context.onOpenChange(false)
|
|
11265
|
+
})
|
|
11266
|
+
)
|
|
11267
|
+
}
|
|
11268
|
+
),
|
|
11269
|
+
/* @__PURE__ */ jsxs10(Fragment5, { children: [
|
|
11270
|
+
/* @__PURE__ */ jsx39(TitleWarning, { titleId: context.titleId }),
|
|
11271
|
+
/* @__PURE__ */ jsx39(DescriptionWarning, { contentRef, descriptionId: context.descriptionId })
|
|
11272
|
+
] })
|
|
11273
|
+
] });
|
|
11274
|
+
}
|
|
11275
|
+
);
|
|
11276
|
+
var TITLE_NAME = "DialogTitle";
|
|
11277
|
+
var DialogTitle = React54.forwardRef(
|
|
11278
|
+
(props, forwardedRef) => {
|
|
11279
|
+
const _a = props, { __scopeDialog } = _a, titleProps = __objRest(_a, ["__scopeDialog"]);
|
|
11280
|
+
const context = useDialogContext(TITLE_NAME, __scopeDialog);
|
|
11281
|
+
return /* @__PURE__ */ jsx39(Primitive.h2, __spreadProps(__spreadValues({ id: context.titleId }, titleProps), { ref: forwardedRef }));
|
|
11282
|
+
}
|
|
11283
|
+
);
|
|
11284
|
+
DialogTitle.displayName = TITLE_NAME;
|
|
11285
|
+
var DESCRIPTION_NAME = "DialogDescription";
|
|
11286
|
+
var DialogDescription = React54.forwardRef(
|
|
11287
|
+
(props, forwardedRef) => {
|
|
11288
|
+
const _a = props, { __scopeDialog } = _a, descriptionProps = __objRest(_a, ["__scopeDialog"]);
|
|
11289
|
+
const context = useDialogContext(DESCRIPTION_NAME, __scopeDialog);
|
|
11290
|
+
return /* @__PURE__ */ jsx39(Primitive.p, __spreadProps(__spreadValues({ id: context.descriptionId }, descriptionProps), { ref: forwardedRef }));
|
|
11291
|
+
}
|
|
11292
|
+
);
|
|
11293
|
+
DialogDescription.displayName = DESCRIPTION_NAME;
|
|
11294
|
+
var CLOSE_NAME = "DialogClose";
|
|
11295
|
+
var DialogClose = React54.forwardRef(
|
|
11296
|
+
(props, forwardedRef) => {
|
|
11297
|
+
const _a = props, { __scopeDialog } = _a, closeProps = __objRest(_a, ["__scopeDialog"]);
|
|
11298
|
+
const context = useDialogContext(CLOSE_NAME, __scopeDialog);
|
|
11299
|
+
return /* @__PURE__ */ jsx39(
|
|
11300
|
+
Primitive.button,
|
|
11301
|
+
__spreadProps(__spreadValues({
|
|
11302
|
+
type: "button"
|
|
11303
|
+
}, closeProps), {
|
|
11304
|
+
ref: forwardedRef,
|
|
11305
|
+
onClick: composeEventHandlers(props.onClick, () => context.onOpenChange(false))
|
|
11306
|
+
})
|
|
11307
|
+
);
|
|
11308
|
+
}
|
|
11309
|
+
);
|
|
11310
|
+
DialogClose.displayName = CLOSE_NAME;
|
|
11311
|
+
function getState(open) {
|
|
11312
|
+
return open ? "open" : "closed";
|
|
11313
|
+
}
|
|
11314
|
+
var TITLE_WARNING_NAME = "DialogTitleWarning";
|
|
11315
|
+
var [WarningProvider, useWarningContext] = createContext2(TITLE_WARNING_NAME, {
|
|
11316
|
+
contentName: CONTENT_NAME,
|
|
11317
|
+
titleName: TITLE_NAME,
|
|
11318
|
+
docsSlug: "dialog"
|
|
11319
|
+
});
|
|
11320
|
+
var TitleWarning = ({ titleId }) => {
|
|
11321
|
+
const titleWarningContext = useWarningContext(TITLE_WARNING_NAME);
|
|
11322
|
+
const MESSAGE = `\`${titleWarningContext.contentName}\` requires a \`${titleWarningContext.titleName}\` for the component to be accessible for screen reader users.
|
|
11323
|
+
|
|
11324
|
+
If you want to hide the \`${titleWarningContext.titleName}\`, you can wrap it with our VisuallyHidden component.
|
|
11325
|
+
|
|
11326
|
+
For more information, see https://radix-ui.com/primitives/docs/components/${titleWarningContext.docsSlug}`;
|
|
11327
|
+
React54.useEffect(() => {
|
|
11328
|
+
if (titleId) {
|
|
11329
|
+
const hasTitle = document.getElementById(titleId);
|
|
11330
|
+
if (!hasTitle) console.error(MESSAGE);
|
|
11331
|
+
}
|
|
11332
|
+
}, [MESSAGE, titleId]);
|
|
11333
|
+
return null;
|
|
11334
|
+
};
|
|
11335
|
+
var DESCRIPTION_WARNING_NAME = "DialogDescriptionWarning";
|
|
11336
|
+
var DescriptionWarning = ({ contentRef, descriptionId }) => {
|
|
11337
|
+
const descriptionWarningContext = useWarningContext(DESCRIPTION_WARNING_NAME);
|
|
11338
|
+
const MESSAGE = `Warning: Missing \`Description\` or \`aria-describedby={undefined}\` for {${descriptionWarningContext.contentName}}.`;
|
|
11339
|
+
React54.useEffect(() => {
|
|
11340
|
+
var _a;
|
|
11341
|
+
const describedById = (_a = contentRef.current) == null ? void 0 : _a.getAttribute("aria-describedby");
|
|
11342
|
+
if (descriptionId && describedById) {
|
|
11343
|
+
const hasDescription = document.getElementById(descriptionId);
|
|
11344
|
+
if (!hasDescription) console.warn(MESSAGE);
|
|
11345
|
+
}
|
|
11346
|
+
}, [MESSAGE, contentRef, descriptionId]);
|
|
11347
|
+
return null;
|
|
11348
|
+
};
|
|
11349
|
+
var Root = Dialog;
|
|
11350
|
+
var Trigger = DialogTrigger;
|
|
11351
|
+
var Portal2 = DialogPortal;
|
|
11352
|
+
var Overlay = DialogOverlay;
|
|
11353
|
+
var Content = DialogContent;
|
|
11354
|
+
var Title = DialogTitle;
|
|
11355
|
+
var Description = DialogDescription;
|
|
11356
|
+
var Close = DialogClose;
|
|
11357
|
+
|
|
11358
|
+
// ../../node_modules/.pnpm/@radix-ui+react-alert-dialog@1.1.14_@types+react-dom@19.1.3_@types+react@19.1.2__@types_c6ff7006a888f63e36d2502e019661c3/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs
|
|
11359
|
+
import { jsx as jsx40, jsxs as jsxs11 } from "react/jsx-runtime";
|
|
11360
|
+
var ROOT_NAME = "AlertDialog";
|
|
11361
|
+
var [createAlertDialogContext, createAlertDialogScope] = createContextScope(ROOT_NAME, [
|
|
11362
|
+
createDialogScope
|
|
11363
|
+
]);
|
|
11364
|
+
var useDialogScope = createDialogScope();
|
|
11365
|
+
var AlertDialog = (props) => {
|
|
11366
|
+
const _a = props, { __scopeAlertDialog } = _a, alertDialogProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11367
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11368
|
+
return /* @__PURE__ */ jsx40(Root, __spreadProps(__spreadValues(__spreadValues({}, dialogScope), alertDialogProps), { modal: true }));
|
|
11369
|
+
};
|
|
11370
|
+
AlertDialog.displayName = ROOT_NAME;
|
|
11371
|
+
var TRIGGER_NAME2 = "AlertDialogTrigger";
|
|
11372
|
+
var AlertDialogTrigger = React55.forwardRef(
|
|
11373
|
+
(props, forwardedRef) => {
|
|
11374
|
+
const _a = props, { __scopeAlertDialog } = _a, triggerProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11375
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11376
|
+
return /* @__PURE__ */ jsx40(Trigger, __spreadProps(__spreadValues(__spreadValues({}, dialogScope), triggerProps), { ref: forwardedRef }));
|
|
11377
|
+
}
|
|
11378
|
+
);
|
|
11379
|
+
AlertDialogTrigger.displayName = TRIGGER_NAME2;
|
|
11380
|
+
var PORTAL_NAME3 = "AlertDialogPortal";
|
|
11381
|
+
var AlertDialogPortal = (props) => {
|
|
11382
|
+
const _a = props, { __scopeAlertDialog } = _a, portalProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11383
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11384
|
+
return /* @__PURE__ */ jsx40(Portal2, __spreadValues(__spreadValues({}, dialogScope), portalProps));
|
|
11385
|
+
};
|
|
11386
|
+
AlertDialogPortal.displayName = PORTAL_NAME3;
|
|
11387
|
+
var OVERLAY_NAME2 = "AlertDialogOverlay";
|
|
11388
|
+
var AlertDialogOverlay = React55.forwardRef(
|
|
11389
|
+
(props, forwardedRef) => {
|
|
11390
|
+
const _a = props, { __scopeAlertDialog } = _a, overlayProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11391
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11392
|
+
return /* @__PURE__ */ jsx40(Overlay, __spreadProps(__spreadValues(__spreadValues({}, dialogScope), overlayProps), { ref: forwardedRef }));
|
|
11393
|
+
}
|
|
11394
|
+
);
|
|
11395
|
+
AlertDialogOverlay.displayName = OVERLAY_NAME2;
|
|
11396
|
+
var CONTENT_NAME2 = "AlertDialogContent";
|
|
11397
|
+
var [AlertDialogContentProvider, useAlertDialogContentContext] = createAlertDialogContext(CONTENT_NAME2);
|
|
11398
|
+
var Slottable = createSlottable("AlertDialogContent");
|
|
11399
|
+
var AlertDialogContent = React55.forwardRef(
|
|
11400
|
+
(props, forwardedRef) => {
|
|
11401
|
+
const _a = props, { __scopeAlertDialog, children } = _a, contentProps = __objRest(_a, ["__scopeAlertDialog", "children"]);
|
|
11402
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11403
|
+
const contentRef = React55.useRef(null);
|
|
11404
|
+
const composedRefs = useComposedRefs(forwardedRef, contentRef);
|
|
11405
|
+
const cancelRef = React55.useRef(null);
|
|
11406
|
+
return /* @__PURE__ */ jsx40(
|
|
11407
|
+
WarningProvider,
|
|
11408
|
+
{
|
|
11409
|
+
contentName: CONTENT_NAME2,
|
|
11410
|
+
titleName: TITLE_NAME2,
|
|
11411
|
+
docsSlug: "alert-dialog",
|
|
11412
|
+
children: /* @__PURE__ */ jsx40(AlertDialogContentProvider, { scope: __scopeAlertDialog, cancelRef, children: /* @__PURE__ */ jsxs11(
|
|
11413
|
+
Content,
|
|
11414
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
11415
|
+
role: "alertdialog"
|
|
11416
|
+
}, dialogScope), contentProps), {
|
|
11417
|
+
ref: composedRefs,
|
|
11418
|
+
onOpenAutoFocus: composeEventHandlers(contentProps.onOpenAutoFocus, (event) => {
|
|
11419
|
+
var _a2;
|
|
11420
|
+
event.preventDefault();
|
|
11421
|
+
(_a2 = cancelRef.current) == null ? void 0 : _a2.focus({ preventScroll: true });
|
|
11422
|
+
}),
|
|
11423
|
+
onPointerDownOutside: (event) => event.preventDefault(),
|
|
11424
|
+
onInteractOutside: (event) => event.preventDefault(),
|
|
11425
|
+
children: [
|
|
11426
|
+
/* @__PURE__ */ jsx40(Slottable, { children }),
|
|
11427
|
+
/* @__PURE__ */ jsx40(DescriptionWarning2, { contentRef })
|
|
11428
|
+
]
|
|
11429
|
+
})
|
|
11430
|
+
) })
|
|
11431
|
+
}
|
|
11432
|
+
);
|
|
11433
|
+
}
|
|
11434
|
+
);
|
|
11435
|
+
AlertDialogContent.displayName = CONTENT_NAME2;
|
|
11436
|
+
var TITLE_NAME2 = "AlertDialogTitle";
|
|
11437
|
+
var AlertDialogTitle = React55.forwardRef(
|
|
11438
|
+
(props, forwardedRef) => {
|
|
11439
|
+
const _a = props, { __scopeAlertDialog } = _a, titleProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11440
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11441
|
+
return /* @__PURE__ */ jsx40(Title, __spreadProps(__spreadValues(__spreadValues({}, dialogScope), titleProps), { ref: forwardedRef }));
|
|
11442
|
+
}
|
|
11443
|
+
);
|
|
11444
|
+
AlertDialogTitle.displayName = TITLE_NAME2;
|
|
11445
|
+
var DESCRIPTION_NAME2 = "AlertDialogDescription";
|
|
11446
|
+
var AlertDialogDescription = React55.forwardRef((props, forwardedRef) => {
|
|
11447
|
+
const _a = props, { __scopeAlertDialog } = _a, descriptionProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11448
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11449
|
+
return /* @__PURE__ */ jsx40(Description, __spreadProps(__spreadValues(__spreadValues({}, dialogScope), descriptionProps), { ref: forwardedRef }));
|
|
11450
|
+
});
|
|
11451
|
+
AlertDialogDescription.displayName = DESCRIPTION_NAME2;
|
|
11452
|
+
var ACTION_NAME = "AlertDialogAction";
|
|
11453
|
+
var AlertDialogAction = React55.forwardRef(
|
|
11454
|
+
(props, forwardedRef) => {
|
|
11455
|
+
const _a = props, { __scopeAlertDialog } = _a, actionProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11456
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11457
|
+
return /* @__PURE__ */ jsx40(Close, __spreadProps(__spreadValues(__spreadValues({}, dialogScope), actionProps), { ref: forwardedRef }));
|
|
11458
|
+
}
|
|
11459
|
+
);
|
|
11460
|
+
AlertDialogAction.displayName = ACTION_NAME;
|
|
11461
|
+
var CANCEL_NAME = "AlertDialogCancel";
|
|
11462
|
+
var AlertDialogCancel = React55.forwardRef(
|
|
11463
|
+
(props, forwardedRef) => {
|
|
11464
|
+
const _a = props, { __scopeAlertDialog } = _a, cancelProps = __objRest(_a, ["__scopeAlertDialog"]);
|
|
11465
|
+
const { cancelRef } = useAlertDialogContentContext(CANCEL_NAME, __scopeAlertDialog);
|
|
11466
|
+
const dialogScope = useDialogScope(__scopeAlertDialog);
|
|
11467
|
+
const ref2 = useComposedRefs(forwardedRef, cancelRef);
|
|
11468
|
+
return /* @__PURE__ */ jsx40(Close, __spreadProps(__spreadValues(__spreadValues({}, dialogScope), cancelProps), { ref: ref2 }));
|
|
11469
|
+
}
|
|
11470
|
+
);
|
|
11471
|
+
AlertDialogCancel.displayName = CANCEL_NAME;
|
|
11472
|
+
var DescriptionWarning2 = ({ contentRef }) => {
|
|
11473
|
+
const MESSAGE = `\`${CONTENT_NAME2}\` requires a description for the component to be accessible for screen reader users.
|
|
11474
|
+
|
|
11475
|
+
You can add a description to the \`${CONTENT_NAME2}\` by passing a \`${DESCRIPTION_NAME2}\` component as a child, which also benefits sighted users by adding visible context to the dialog.
|
|
11476
|
+
|
|
11477
|
+
Alternatively, you can use your own component as a description by assigning it an \`id\` and passing the same value to the \`aria-describedby\` prop in \`${CONTENT_NAME2}\`. If the description is confusing or duplicative for sighted users, you can use the \`@radix-ui/react-visually-hidden\` primitive as a wrapper around your description component.
|
|
11478
|
+
|
|
11479
|
+
For more information, see https://radix-ui.com/primitives/docs/components/alert-dialog`;
|
|
11480
|
+
React55.useEffect(() => {
|
|
11481
|
+
var _a;
|
|
11482
|
+
const hasDescription = document.getElementById(
|
|
11483
|
+
(_a = contentRef.current) == null ? void 0 : _a.getAttribute("aria-describedby")
|
|
11484
|
+
);
|
|
11485
|
+
if (!hasDescription) console.warn(MESSAGE);
|
|
11486
|
+
}, [MESSAGE, contentRef]);
|
|
11487
|
+
return null;
|
|
11488
|
+
};
|
|
11489
|
+
var Portal22 = AlertDialogPortal;
|
|
11490
|
+
var Overlay2 = AlertDialogOverlay;
|
|
11491
|
+
var Content2 = AlertDialogContent;
|
|
11492
|
+
var Action = AlertDialogAction;
|
|
11493
|
+
var Cancel = AlertDialogCancel;
|
|
11494
|
+
var Title2 = AlertDialogTitle;
|
|
11495
|
+
var Description2 = AlertDialogDescription;
|
|
11496
|
+
|
|
11497
|
+
// ../lib/src/utils.ts
|
|
11498
|
+
import { clsx } from "clsx";
|
|
11499
|
+
import { twMerge } from "tailwind-merge";
|
|
11500
|
+
function cn(...inputs) {
|
|
11501
|
+
return twMerge(clsx(inputs));
|
|
9379
11502
|
}
|
|
9380
11503
|
|
|
9381
11504
|
// ../base-ui/src/ui/button.tsx
|
|
11505
|
+
import * as React56 from "react";
|
|
9382
11506
|
import { cva } from "class-variance-authority";
|
|
9383
|
-
import { jsx as
|
|
11507
|
+
import { jsx as jsx41, jsxs as jsxs12 } from "react/jsx-runtime";
|
|
9384
11508
|
var buttonVariants = cva(
|
|
9385
11509
|
"inline-flex items-center gap-2 whitespace-nowrap rounded-md text-sm ring-offset-background transition-colors focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
|
|
9386
11510
|
{
|
|
@@ -9406,12 +11530,12 @@ var buttonVariants = cva(
|
|
|
9406
11530
|
}
|
|
9407
11531
|
}
|
|
9408
11532
|
);
|
|
9409
|
-
var Button =
|
|
11533
|
+
var Button = React56.forwardRef(
|
|
9410
11534
|
(_a, ref2) => {
|
|
9411
11535
|
var _b = _a, { className, variant, size, asChild = false, loading = false, children } = _b, props = __objRest(_b, ["className", "variant", "size", "asChild", "loading", "children"]);
|
|
9412
11536
|
const Comp = asChild ? Slot : "button";
|
|
9413
11537
|
if (asChild) {
|
|
9414
|
-
return /* @__PURE__ */
|
|
11538
|
+
return /* @__PURE__ */ jsx41(
|
|
9415
11539
|
Comp,
|
|
9416
11540
|
__spreadProps(__spreadValues({
|
|
9417
11541
|
className: cn(buttonVariants({ variant, size, className })),
|
|
@@ -9422,7 +11546,7 @@ var Button = React35.forwardRef(
|
|
|
9422
11546
|
})
|
|
9423
11547
|
);
|
|
9424
11548
|
}
|
|
9425
|
-
return /* @__PURE__ */
|
|
11549
|
+
return /* @__PURE__ */ jsxs12(
|
|
9426
11550
|
Comp,
|
|
9427
11551
|
__spreadProps(__spreadValues({
|
|
9428
11552
|
className: cn(buttonVariants({ variant, size, className })),
|
|
@@ -9431,7 +11555,7 @@ var Button = React35.forwardRef(
|
|
|
9431
11555
|
}, props), {
|
|
9432
11556
|
children: [
|
|
9433
11557
|
children,
|
|
9434
|
-
loading && /* @__PURE__ */
|
|
11558
|
+
loading && /* @__PURE__ */ jsx41(globalLucideIcons.Loader2, { className: "ml-2 h-4 w-4 animate-spin" })
|
|
9435
11559
|
]
|
|
9436
11560
|
})
|
|
9437
11561
|
);
|
|
@@ -9439,33 +11563,170 @@ var Button = React35.forwardRef(
|
|
|
9439
11563
|
);
|
|
9440
11564
|
Button.displayName = "Button";
|
|
9441
11565
|
|
|
11566
|
+
// ../base-ui/src/ui/alert-dialog.tsx
|
|
11567
|
+
import { jsx as jsx42, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
11568
|
+
var AlertDialogPortal2 = Portal22;
|
|
11569
|
+
var AlertDialogOverlay2 = React57.forwardRef((_a, ref2) => {
|
|
11570
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
11571
|
+
return /* @__PURE__ */ jsx42(
|
|
11572
|
+
Overlay2,
|
|
11573
|
+
__spreadProps(__spreadValues({
|
|
11574
|
+
className: cn(
|
|
11575
|
+
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
11576
|
+
className
|
|
11577
|
+
)
|
|
11578
|
+
}, props), {
|
|
11579
|
+
ref: ref2
|
|
11580
|
+
})
|
|
11581
|
+
);
|
|
11582
|
+
});
|
|
11583
|
+
AlertDialogOverlay2.displayName = Overlay2.displayName;
|
|
11584
|
+
var AlertDialogContent2 = React57.forwardRef((_a, ref2) => {
|
|
11585
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
11586
|
+
return /* @__PURE__ */ jsxs13(AlertDialogPortal2, { children: [
|
|
11587
|
+
/* @__PURE__ */ jsx42(AlertDialogOverlay2, {}),
|
|
11588
|
+
/* @__PURE__ */ jsx42(
|
|
11589
|
+
Content2,
|
|
11590
|
+
__spreadValues({
|
|
11591
|
+
ref: ref2,
|
|
11592
|
+
className: cn(
|
|
11593
|
+
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
11594
|
+
className
|
|
11595
|
+
)
|
|
11596
|
+
}, props)
|
|
11597
|
+
)
|
|
11598
|
+
] });
|
|
11599
|
+
});
|
|
11600
|
+
AlertDialogContent2.displayName = Content2.displayName;
|
|
11601
|
+
var AlertDialogHeader = (_a) => {
|
|
11602
|
+
var _b = _a, {
|
|
11603
|
+
className
|
|
11604
|
+
} = _b, props = __objRest(_b, [
|
|
11605
|
+
"className"
|
|
11606
|
+
]);
|
|
11607
|
+
return /* @__PURE__ */ jsx42(
|
|
11608
|
+
"div",
|
|
11609
|
+
__spreadValues({
|
|
11610
|
+
className: cn(
|
|
11611
|
+
"flex flex-col space-y-2 text-center sm:text-left",
|
|
11612
|
+
className
|
|
11613
|
+
)
|
|
11614
|
+
}, props)
|
|
11615
|
+
);
|
|
11616
|
+
};
|
|
11617
|
+
AlertDialogHeader.displayName = "AlertDialogHeader";
|
|
11618
|
+
var AlertDialogFooter = (_a) => {
|
|
11619
|
+
var _b = _a, {
|
|
11620
|
+
className
|
|
11621
|
+
} = _b, props = __objRest(_b, [
|
|
11622
|
+
"className"
|
|
11623
|
+
]);
|
|
11624
|
+
return /* @__PURE__ */ jsx42(
|
|
11625
|
+
"div",
|
|
11626
|
+
__spreadValues({
|
|
11627
|
+
className: cn(
|
|
11628
|
+
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
11629
|
+
className
|
|
11630
|
+
)
|
|
11631
|
+
}, props)
|
|
11632
|
+
);
|
|
11633
|
+
};
|
|
11634
|
+
AlertDialogFooter.displayName = "AlertDialogFooter";
|
|
11635
|
+
var AlertDialogTitle2 = React57.forwardRef((_a, ref2) => {
|
|
11636
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
11637
|
+
return /* @__PURE__ */ jsx42(
|
|
11638
|
+
Title2,
|
|
11639
|
+
__spreadValues({
|
|
11640
|
+
ref: ref2,
|
|
11641
|
+
className: cn("text-lg font-semibold", className)
|
|
11642
|
+
}, props)
|
|
11643
|
+
);
|
|
11644
|
+
});
|
|
11645
|
+
AlertDialogTitle2.displayName = Title2.displayName;
|
|
11646
|
+
var AlertDialogDescription2 = React57.forwardRef((_a, ref2) => {
|
|
11647
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
11648
|
+
return /* @__PURE__ */ jsx42(
|
|
11649
|
+
Description2,
|
|
11650
|
+
__spreadValues({
|
|
11651
|
+
ref: ref2,
|
|
11652
|
+
className: cn("text-sm text-muted-foreground", className)
|
|
11653
|
+
}, props)
|
|
11654
|
+
);
|
|
11655
|
+
});
|
|
11656
|
+
AlertDialogDescription2.displayName = Description2.displayName;
|
|
11657
|
+
var AlertDialogAction2 = React57.forwardRef((_a, ref2) => {
|
|
11658
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
11659
|
+
return /* @__PURE__ */ jsx42(
|
|
11660
|
+
Action,
|
|
11661
|
+
__spreadValues({
|
|
11662
|
+
ref: ref2,
|
|
11663
|
+
className: cn(buttonVariants(), className)
|
|
11664
|
+
}, props)
|
|
11665
|
+
);
|
|
11666
|
+
});
|
|
11667
|
+
AlertDialogAction2.displayName = Action.displayName;
|
|
11668
|
+
var AlertDialogCancel2 = React57.forwardRef((_a, ref2) => {
|
|
11669
|
+
var _b = _a, { className } = _b, props = __objRest(_b, ["className"]);
|
|
11670
|
+
return /* @__PURE__ */ jsx42(
|
|
11671
|
+
Cancel,
|
|
11672
|
+
__spreadValues({
|
|
11673
|
+
ref: ref2,
|
|
11674
|
+
className: cn(
|
|
11675
|
+
buttonVariants({ variant: "outline" }),
|
|
11676
|
+
"mt-2 sm:mt-0",
|
|
11677
|
+
className
|
|
11678
|
+
)
|
|
11679
|
+
}, props)
|
|
11680
|
+
);
|
|
11681
|
+
});
|
|
11682
|
+
AlertDialogCancel2.displayName = Cancel.displayName;
|
|
11683
|
+
|
|
11684
|
+
// src/fuma/mdx/mermaid.tsx
|
|
11685
|
+
import { jsx as jsx43, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
11686
|
+
|
|
11687
|
+
// src/fuma/mdx/image-zoom.tsx
|
|
11688
|
+
import { Image } from "fumadocs-core/framework";
|
|
11689
|
+
import { useState as useState11 } from "react";
|
|
11690
|
+
import Zoom from "react-medium-image-zoom";
|
|
11691
|
+
import { jsx as jsx44 } from "react/jsx-runtime";
|
|
11692
|
+
|
|
11693
|
+
// src/fuma/mdx/trophy-card.tsx
|
|
11694
|
+
import { jsx as jsx45, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
11695
|
+
|
|
11696
|
+
// src/fuma/mdx/image-grid.tsx
|
|
11697
|
+
import { jsx as jsx46 } from "react/jsx-runtime";
|
|
11698
|
+
|
|
11699
|
+
// src/fuma/mdx/zia-card.tsx
|
|
11700
|
+
import Link2 from "next/link";
|
|
11701
|
+
import { jsx as jsx47, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
11702
|
+
|
|
9442
11703
|
// src/fuma/mdx/gradient-button.tsx
|
|
9443
11704
|
import Link3 from "next/link";
|
|
9444
|
-
import
|
|
9445
|
-
import { Fragment as
|
|
11705
|
+
import React58, { useState as useState12 } from "react";
|
|
11706
|
+
import { Fragment as Fragment6, jsx as jsx48, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
9446
11707
|
|
|
9447
11708
|
// src/fuma/mdx/toc-base.tsx
|
|
9448
|
-
import { useState as
|
|
11709
|
+
import { useState as useState13 } from "react";
|
|
9449
11710
|
import { useParams } from "next/navigation";
|
|
9450
11711
|
import { useCopyButton } from "fumadocs-ui/utils/use-copy-button";
|
|
9451
11712
|
import Link4 from "fumadocs-core/link";
|
|
9452
|
-
import { Fragment as
|
|
11713
|
+
import { Fragment as Fragment7, jsx as jsx49, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
9453
11714
|
function EditOnGitHub({ url }) {
|
|
9454
|
-
return /* @__PURE__ */
|
|
11715
|
+
return /* @__PURE__ */ jsxs18(
|
|
9455
11716
|
Link4,
|
|
9456
11717
|
{
|
|
9457
11718
|
className: "flex items-center gap-x-2 text-stone-600 hover:text-stone-500 dark:text-stone-400 dark:hover:text-stone-300 text-sm",
|
|
9458
11719
|
href: url,
|
|
9459
11720
|
children: [
|
|
9460
|
-
/* @__PURE__ */
|
|
11721
|
+
/* @__PURE__ */ jsx49(globalLucideIcons.GitHub, {}),
|
|
9461
11722
|
"Edit this page on GitHub"
|
|
9462
11723
|
]
|
|
9463
11724
|
}
|
|
9464
11725
|
);
|
|
9465
11726
|
}
|
|
9466
11727
|
function LastUpdatedDate({ date }) {
|
|
9467
|
-
return /* @__PURE__ */
|
|
9468
|
-
/* @__PURE__ */
|
|
11728
|
+
return /* @__PURE__ */ jsxs18("div", { className: "flex items-center gap-x-2 text-stone-600 dark:text-stone-400 text-sm", children: [
|
|
11729
|
+
/* @__PURE__ */ jsx49(globalLucideIcons.LastUpdated, {}),
|
|
9469
11730
|
"Lastest on ",
|
|
9470
11731
|
date ? date : "Ages ago"
|
|
9471
11732
|
] });
|
|
@@ -9476,8 +11737,8 @@ import { useTranslations } from "next-intl";
|
|
|
9476
11737
|
|
|
9477
11738
|
// src/fuma/mdx/banner.tsx
|
|
9478
11739
|
import { cva as cva2 } from "class-variance-authority";
|
|
9479
|
-
import { useEffect as
|
|
9480
|
-
import { Fragment as
|
|
11740
|
+
import { useEffect as useEffect16, useState as useState14 } from "react";
|
|
11741
|
+
import { Fragment as Fragment8, jsx as jsx50, jsxs as jsxs19 } from "react/jsx-runtime";
|
|
9481
11742
|
var buttonVariants2 = cva2(
|
|
9482
11743
|
"inline-flex items-center justify-center rounded-md p-2 text-sm font-medium transition-colors duration-100 disabled:pointer-events-none disabled:opacity-50",
|
|
9483
11744
|
{
|
|
@@ -9498,39 +11759,39 @@ var buttonVariants2 = cva2(
|
|
|
9498
11759
|
);
|
|
9499
11760
|
|
|
9500
11761
|
// src/fuma/mdx/fuma-banner-suit.tsx
|
|
9501
|
-
import { Fragment as
|
|
11762
|
+
import { Fragment as Fragment9, jsx as jsx51 } from "react/jsx-runtime";
|
|
9502
11763
|
|
|
9503
11764
|
// src/fuma/mdx/fuma-github-info.tsx
|
|
9504
|
-
import { useEffect as
|
|
9505
|
-
import { jsx as
|
|
11765
|
+
import { useEffect as useEffect17, useState as useState15 } from "react";
|
|
11766
|
+
import { jsx as jsx52, jsxs as jsxs20 } from "react/jsx-runtime";
|
|
9506
11767
|
|
|
9507
11768
|
// src/fuma/mdx/site-x.tsx
|
|
9508
11769
|
import { useTranslations as useTranslations2 } from "next-intl";
|
|
9509
|
-
import { jsx as
|
|
11770
|
+
import { jsx as jsx53 } from "react/jsx-runtime";
|
|
9510
11771
|
|
|
9511
11772
|
// src/fuma/mdx/zia-file.tsx
|
|
9512
|
-
import { useState as
|
|
11773
|
+
import { useState as useState16 } from "react";
|
|
9513
11774
|
import {
|
|
9514
11775
|
Collapsible,
|
|
9515
11776
|
CollapsibleContent,
|
|
9516
11777
|
CollapsibleTrigger
|
|
9517
11778
|
} from "fumadocs-ui/components/ui/collapsible";
|
|
9518
11779
|
import Link5 from "next/link";
|
|
9519
|
-
import { jsx as
|
|
11780
|
+
import { jsx as jsx54, jsxs as jsxs21 } from "react/jsx-runtime";
|
|
9520
11781
|
|
|
9521
11782
|
// src/fuma/mdx/toc-footer-wrapper.tsx
|
|
9522
|
-
import { jsx as
|
|
11783
|
+
import { jsx as jsx55, jsxs as jsxs22 } from "react/jsx-runtime";
|
|
9523
11784
|
function TocFooterWrapper({ lastModified, editPath, githubBaseUrl, copyButtonComponent }) {
|
|
9524
11785
|
const showEdit = githubBaseUrl && editPath;
|
|
9525
|
-
return /* @__PURE__ */
|
|
9526
|
-
/* @__PURE__ */
|
|
11786
|
+
return /* @__PURE__ */ jsxs22("div", { className: "flex flex-col gap-y-2 items-start m-4", children: [
|
|
11787
|
+
/* @__PURE__ */ jsx55(LastUpdatedDate, { date: lastModified }),
|
|
9527
11788
|
copyButtonComponent,
|
|
9528
|
-
showEdit && /* @__PURE__ */
|
|
11789
|
+
showEdit && /* @__PURE__ */ jsx55(EditOnGitHub, { url: `${githubBaseUrl}${editPath}` })
|
|
9529
11790
|
] });
|
|
9530
11791
|
}
|
|
9531
11792
|
|
|
9532
11793
|
// src/fuma/fuma-page-genarator.tsx
|
|
9533
|
-
import { jsx as
|
|
11794
|
+
import { jsx as jsx56, jsxs as jsxs23 } from "react/jsx-runtime";
|
|
9534
11795
|
function createFumaPage({
|
|
9535
11796
|
sourceKey,
|
|
9536
11797
|
mdxContentSource,
|
|
@@ -9547,20 +11808,20 @@ function createFumaPage({
|
|
|
9547
11808
|
const { slug, locale } = yield params;
|
|
9548
11809
|
const page = mdxContentSource.getPage(slug, locale);
|
|
9549
11810
|
if (!page) {
|
|
9550
|
-
return /* @__PURE__ */
|
|
11811
|
+
return /* @__PURE__ */ jsx56(FallbackPage, { siteIcon });
|
|
9551
11812
|
}
|
|
9552
11813
|
const path2 = githubBaseUrl ? `${mdxSourceDir}/${page.file.path}` : void 0;
|
|
9553
|
-
const tocFooterElement = /* @__PURE__ */
|
|
11814
|
+
const tocFooterElement = /* @__PURE__ */ jsx56(
|
|
9554
11815
|
TocFooterWrapper,
|
|
9555
11816
|
{
|
|
9556
11817
|
lastModified: page.data.date,
|
|
9557
|
-
copyButtonComponent: copyButtonComponent ?
|
|
11818
|
+
copyButtonComponent: copyButtonComponent ? cloneElement4(copyButtonComponent, { sourceKey }) : void 0,
|
|
9558
11819
|
editPath: path2,
|
|
9559
11820
|
githubBaseUrl
|
|
9560
11821
|
}
|
|
9561
11822
|
);
|
|
9562
11823
|
const MDX = page.data.body;
|
|
9563
|
-
return /* @__PURE__ */
|
|
11824
|
+
return /* @__PURE__ */ jsxs23(
|
|
9564
11825
|
DocsPage,
|
|
9565
11826
|
{
|
|
9566
11827
|
tableOfContent: { style: "clerk", single: false, footer: tocFooterElement },
|
|
@@ -9569,9 +11830,9 @@ function createFumaPage({
|
|
|
9569
11830
|
full: page.data.full,
|
|
9570
11831
|
article: { className: "max-sm:pb-16" },
|
|
9571
11832
|
children: [
|
|
9572
|
-
/* @__PURE__ */
|
|
9573
|
-
/* @__PURE__ */
|
|
9574
|
-
/* @__PURE__ */
|
|
11833
|
+
/* @__PURE__ */ jsx56(DocsTitle, { children: page.data.title }),
|
|
11834
|
+
/* @__PURE__ */ jsx56(DocsDescription, { className: "mb-2", children: page.data.description }),
|
|
11835
|
+
/* @__PURE__ */ jsx56(DocsBody, { className: "text-fd-foreground/80", children: /* @__PURE__ */ jsx56(MDX, { components: getMDXComponents() }) })
|
|
9575
11836
|
]
|
|
9576
11837
|
}
|
|
9577
11838
|
);
|
|
@@ -13021,9 +15282,9 @@ var SpliceBuffer = class {
|
|
|
13021
15282
|
* Any removed items.
|
|
13022
15283
|
*/
|
|
13023
15284
|
splice(start2, deleteCount, items) {
|
|
13024
|
-
const
|
|
15285
|
+
const count3 = deleteCount || 0;
|
|
13025
15286
|
this.setCursor(Math.trunc(start2));
|
|
13026
|
-
const removed = this.right.splice(this.right.length -
|
|
15287
|
+
const removed = this.right.splice(this.right.length - count3, Number.POSITIVE_INFINITY);
|
|
13027
15288
|
if (items) chunkedPush(this.left, items);
|
|
13028
15289
|
return removed.reverse();
|
|
13029
15290
|
}
|
|
@@ -15641,7 +17902,7 @@ function serializeChunks(chunks, expandTabs) {
|
|
|
15641
17902
|
}
|
|
15642
17903
|
|
|
15643
17904
|
// ../../node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js
|
|
15644
|
-
function
|
|
17905
|
+
function parse2(options) {
|
|
15645
17906
|
const settings = options || {};
|
|
15646
17907
|
const constructs2 = (
|
|
15647
17908
|
/** @type {FullNormalizedExtension} */
|
|
@@ -15803,7 +18064,7 @@ function fromMarkdown(value2, encoding, options) {
|
|
|
15803
18064
|
options = encoding;
|
|
15804
18065
|
encoding = void 0;
|
|
15805
18066
|
}
|
|
15806
|
-
return compiler(options)(postprocess(
|
|
18067
|
+
return compiler(options)(postprocess(parse2(options).document().write(preprocess()(value2, encoding, true))));
|
|
15807
18068
|
}
|
|
15808
18069
|
function compiler(options) {
|
|
15809
18070
|
const config = {
|
|
@@ -16642,18 +18903,18 @@ function longestStreak(value2, substring) {
|
|
|
16642
18903
|
const source = String(value2);
|
|
16643
18904
|
let index2 = source.indexOf(substring);
|
|
16644
18905
|
let expected = index2;
|
|
16645
|
-
let
|
|
18906
|
+
let count3 = 0;
|
|
16646
18907
|
let max = 0;
|
|
16647
18908
|
if (typeof substring !== "string") {
|
|
16648
18909
|
throw new TypeError("Expected substring");
|
|
16649
18910
|
}
|
|
16650
18911
|
while (index2 !== -1) {
|
|
16651
18912
|
if (index2 === expected) {
|
|
16652
|
-
if (++
|
|
16653
|
-
max =
|
|
18913
|
+
if (++count3 > max) {
|
|
18914
|
+
max = count3;
|
|
16654
18915
|
}
|
|
16655
18916
|
} else {
|
|
16656
|
-
|
|
18917
|
+
count3 = 1;
|
|
16657
18918
|
}
|
|
16658
18919
|
expected = index2 + substring.length;
|
|
16659
18920
|
index2 = source.indexOf(substring, expected);
|
|
@@ -18276,7 +20537,7 @@ function wrap(middleware, callback) {
|
|
|
18276
20537
|
}
|
|
18277
20538
|
}
|
|
18278
20539
|
|
|
18279
|
-
// ../../node_modules/.pnpm/vfile-message@4.0.
|
|
20540
|
+
// ../../node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js
|
|
18280
20541
|
var VFileMessage = class extends Error {
|
|
18281
20542
|
/**
|
|
18282
20543
|
* Create a message for `reason`.
|
|
@@ -18383,7 +20644,7 @@ var VFileMessage = class extends Error {
|
|
|
18383
20644
|
this.cause = options.cause || void 0;
|
|
18384
20645
|
this.column = start2 ? start2.column : void 0;
|
|
18385
20646
|
this.fatal = void 0;
|
|
18386
|
-
this.file;
|
|
20647
|
+
this.file = "";
|
|
18387
20648
|
this.message = reason;
|
|
18388
20649
|
this.line = start2 ? start2.line : void 0;
|
|
18389
20650
|
this.name = stringifyPosition(options.place) || "1:1";
|
|
@@ -18392,10 +20653,10 @@ var VFileMessage = class extends Error {
|
|
|
18392
20653
|
this.ruleId = options.ruleId || void 0;
|
|
18393
20654
|
this.source = options.source || void 0;
|
|
18394
20655
|
this.stack = legacyCause && options.cause && typeof options.cause.stack === "string" ? options.cause.stack : "";
|
|
18395
|
-
this.actual;
|
|
18396
|
-
this.expected;
|
|
18397
|
-
this.note;
|
|
18398
|
-
this.url;
|
|
20656
|
+
this.actual = void 0;
|
|
20657
|
+
this.expected = void 0;
|
|
20658
|
+
this.note = void 0;
|
|
20659
|
+
this.url = void 0;
|
|
18399
20660
|
}
|
|
18400
20661
|
};
|
|
18401
20662
|
VFileMessage.prototype.file = "";
|
|
@@ -19559,13 +21820,13 @@ function ccount(value2, character) {
|
|
|
19559
21820
|
if (typeof character !== "string") {
|
|
19560
21821
|
throw new TypeError("Expected character");
|
|
19561
21822
|
}
|
|
19562
|
-
let
|
|
21823
|
+
let count3 = 0;
|
|
19563
21824
|
let index2 = source.indexOf(character);
|
|
19564
21825
|
while (index2 !== -1) {
|
|
19565
|
-
|
|
21826
|
+
count3++;
|
|
19566
21827
|
index2 = source.indexOf(character, index2 + character.length);
|
|
19567
21828
|
}
|
|
19568
|
-
return
|
|
21829
|
+
return count3;
|
|
19569
21830
|
}
|
|
19570
21831
|
|
|
19571
21832
|
// ../../node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js
|
|
@@ -23182,7 +25443,7 @@ var Parser = function Parser2(options, input, startPos) {
|
|
|
23182
25443
|
this.privateNameStack = [];
|
|
23183
25444
|
};
|
|
23184
25445
|
var prototypeAccessors = { inFunction: { configurable: true }, inGenerator: { configurable: true }, inAsync: { configurable: true }, canAwait: { configurable: true }, allowSuper: { configurable: true }, allowDirectSuper: { configurable: true }, treatFunctionsAsVar: { configurable: true }, allowNewDotTarget: { configurable: true }, inClassStaticBlock: { configurable: true } };
|
|
23185
|
-
Parser.prototype.parse = function
|
|
25446
|
+
Parser.prototype.parse = function parse3() {
|
|
23186
25447
|
var node2 = this.options.program || this.startNode();
|
|
23187
25448
|
this.nextToken();
|
|
23188
25449
|
return this.parseTopLevel(node2);
|
|
@@ -23242,7 +25503,7 @@ Parser.extend = function extend2() {
|
|
|
23242
25503
|
}
|
|
23243
25504
|
return cls;
|
|
23244
25505
|
};
|
|
23245
|
-
Parser.parse = function
|
|
25506
|
+
Parser.parse = function parse4(input, options) {
|
|
23246
25507
|
return new this(options, input).parse();
|
|
23247
25508
|
};
|
|
23248
25509
|
Parser.parseExpressionAt = function parseExpressionAt(input, pos, options) {
|
|
@@ -26045,7 +28306,7 @@ pp$3.currentThisScope = function() {
|
|
|
26045
28306
|
}
|
|
26046
28307
|
}
|
|
26047
28308
|
};
|
|
26048
|
-
var
|
|
28309
|
+
var Node2 = function Node3(parser, pos, loc) {
|
|
26049
28310
|
this.type = "";
|
|
26050
28311
|
this.start = pos;
|
|
26051
28312
|
this.end = 0;
|
|
@@ -26061,10 +28322,10 @@ var Node = function Node2(parser, pos, loc) {
|
|
|
26061
28322
|
};
|
|
26062
28323
|
var pp$2 = Parser.prototype;
|
|
26063
28324
|
pp$2.startNode = function() {
|
|
26064
|
-
return new
|
|
28325
|
+
return new Node2(this, this.start, this.startLoc);
|
|
26065
28326
|
};
|
|
26066
28327
|
pp$2.startNodeAt = function(pos, loc) {
|
|
26067
|
-
return new
|
|
28328
|
+
return new Node2(this, pos, loc);
|
|
26068
28329
|
};
|
|
26069
28330
|
function finishNodeAt(node2, type, pos, loc) {
|
|
26070
28331
|
node2.type = type;
|
|
@@ -26084,7 +28345,7 @@ pp$2.finishNodeAt = function(node2, type, pos, loc) {
|
|
|
26084
28345
|
return finishNodeAt.call(this, node2, type, pos, loc);
|
|
26085
28346
|
};
|
|
26086
28347
|
pp$2.copyNode = function(node2) {
|
|
26087
|
-
var newNode = new
|
|
28348
|
+
var newNode = new Node2(this, node2.start, this.startLoc);
|
|
26088
28349
|
for (var prop in node2) {
|
|
26089
28350
|
newNode[prop] = node2[prop];
|
|
26090
28351
|
}
|
|
@@ -27285,11 +29546,11 @@ pp$1.regexp_classStringDisjunctionContents = function(state) {
|
|
|
27285
29546
|
return result;
|
|
27286
29547
|
};
|
|
27287
29548
|
pp$1.regexp_classString = function(state) {
|
|
27288
|
-
var
|
|
29549
|
+
var count3 = 0;
|
|
27289
29550
|
while (this.regexp_eatClassSetCharacter(state)) {
|
|
27290
|
-
|
|
29551
|
+
count3++;
|
|
27291
29552
|
}
|
|
27292
|
-
return
|
|
29553
|
+
return count3 === 1 ? CharSetOk : CharSetString;
|
|
27293
29554
|
};
|
|
27294
29555
|
pp$1.regexp_eatClassSetCharacter = function(state) {
|
|
27295
29556
|
var start2 = state.pos;
|
|
@@ -28296,7 +30557,7 @@ Parser.acorn = {
|
|
|
28296
30557
|
Position,
|
|
28297
30558
|
SourceLocation,
|
|
28298
30559
|
getLineInfo,
|
|
28299
|
-
Node,
|
|
30560
|
+
Node: Node2,
|
|
28300
30561
|
TokenType,
|
|
28301
30562
|
tokTypes: types$1,
|
|
28302
30563
|
keywordTypes: keywords,
|