v1.0 with SW PWA enabled
This commit is contained in:
187
frontend/node_modules/@radix-ui/react-collapsible/dist/index.js
generated
vendored
Normal file
187
frontend/node_modules/@radix-ui/react-collapsible/dist/index.js
generated
vendored
Normal file
@ -0,0 +1,187 @@
|
||||
"use strict";
|
||||
"use client";
|
||||
var __create = Object.create;
|
||||
var __defProp = Object.defineProperty;
|
||||
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
||||
var __getOwnPropNames = Object.getOwnPropertyNames;
|
||||
var __getProtoOf = Object.getPrototypeOf;
|
||||
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
var __export = (target, all) => {
|
||||
for (var name in all)
|
||||
__defProp(target, name, { get: all[name], enumerable: true });
|
||||
};
|
||||
var __copyProps = (to, from, except, desc) => {
|
||||
if (from && typeof from === "object" || typeof from === "function") {
|
||||
for (let key of __getOwnPropNames(from))
|
||||
if (!__hasOwnProp.call(to, key) && key !== except)
|
||||
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
||||
}
|
||||
return to;
|
||||
};
|
||||
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
||||
// If the importer is in node compatibility mode or this is not an ESM
|
||||
// file that has been converted to a CommonJS file using a Babel-
|
||||
// compatible transform (i.e. "__esModule" has not been set), then set
|
||||
// "default" to the CommonJS "module.exports" for node compatibility.
|
||||
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
||||
mod
|
||||
));
|
||||
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
||||
|
||||
// src/index.ts
|
||||
var index_exports = {};
|
||||
__export(index_exports, {
|
||||
Collapsible: () => Collapsible,
|
||||
CollapsibleContent: () => CollapsibleContent,
|
||||
CollapsibleTrigger: () => CollapsibleTrigger,
|
||||
Content: () => Content,
|
||||
Root: () => Root,
|
||||
Trigger: () => Trigger,
|
||||
createCollapsibleScope: () => createCollapsibleScope
|
||||
});
|
||||
module.exports = __toCommonJS(index_exports);
|
||||
|
||||
// src/collapsible.tsx
|
||||
var React = __toESM(require("react"));
|
||||
var import_primitive = require("@radix-ui/primitive");
|
||||
var import_react_context = require("@radix-ui/react-context");
|
||||
var import_react_use_controllable_state = require("@radix-ui/react-use-controllable-state");
|
||||
var import_react_use_layout_effect = require("@radix-ui/react-use-layout-effect");
|
||||
var import_react_compose_refs = require("@radix-ui/react-compose-refs");
|
||||
var import_react_primitive = require("@radix-ui/react-primitive");
|
||||
var import_react_presence = require("@radix-ui/react-presence");
|
||||
var import_react_id = require("@radix-ui/react-id");
|
||||
var import_jsx_runtime = require("react/jsx-runtime");
|
||||
var COLLAPSIBLE_NAME = "Collapsible";
|
||||
var [createCollapsibleContext, createCollapsibleScope] = (0, import_react_context.createContextScope)(COLLAPSIBLE_NAME);
|
||||
var [CollapsibleProvider, useCollapsibleContext] = createCollapsibleContext(COLLAPSIBLE_NAME);
|
||||
var Collapsible = React.forwardRef(
|
||||
(props, forwardedRef) => {
|
||||
const {
|
||||
__scopeCollapsible,
|
||||
open: openProp,
|
||||
defaultOpen,
|
||||
disabled,
|
||||
onOpenChange,
|
||||
...collapsibleProps
|
||||
} = props;
|
||||
const [open, setOpen] = (0, import_react_use_controllable_state.useControllableState)({
|
||||
prop: openProp,
|
||||
defaultProp: defaultOpen ?? false,
|
||||
onChange: onOpenChange,
|
||||
caller: COLLAPSIBLE_NAME
|
||||
});
|
||||
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
||||
CollapsibleProvider,
|
||||
{
|
||||
scope: __scopeCollapsible,
|
||||
disabled,
|
||||
contentId: (0, import_react_id.useId)(),
|
||||
open,
|
||||
onOpenToggle: React.useCallback(() => setOpen((prevOpen) => !prevOpen), [setOpen]),
|
||||
children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
||||
import_react_primitive.Primitive.div,
|
||||
{
|
||||
"data-state": getState(open),
|
||||
"data-disabled": disabled ? "" : void 0,
|
||||
...collapsibleProps,
|
||||
ref: forwardedRef
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
Collapsible.displayName = COLLAPSIBLE_NAME;
|
||||
var TRIGGER_NAME = "CollapsibleTrigger";
|
||||
var CollapsibleTrigger = React.forwardRef(
|
||||
(props, forwardedRef) => {
|
||||
const { __scopeCollapsible, ...triggerProps } = props;
|
||||
const context = useCollapsibleContext(TRIGGER_NAME, __scopeCollapsible);
|
||||
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
||||
import_react_primitive.Primitive.button,
|
||||
{
|
||||
type: "button",
|
||||
"aria-controls": context.contentId,
|
||||
"aria-expanded": context.open || false,
|
||||
"data-state": getState(context.open),
|
||||
"data-disabled": context.disabled ? "" : void 0,
|
||||
disabled: context.disabled,
|
||||
...triggerProps,
|
||||
ref: forwardedRef,
|
||||
onClick: (0, import_primitive.composeEventHandlers)(props.onClick, context.onOpenToggle)
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
||||
CollapsibleTrigger.displayName = TRIGGER_NAME;
|
||||
var CONTENT_NAME = "CollapsibleContent";
|
||||
var CollapsibleContent = React.forwardRef(
|
||||
(props, forwardedRef) => {
|
||||
const { forceMount, ...contentProps } = props;
|
||||
const context = useCollapsibleContext(CONTENT_NAME, props.__scopeCollapsible);
|
||||
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_react_presence.Presence, { present: forceMount || context.open, children: ({ present }) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(CollapsibleContentImpl, { ...contentProps, ref: forwardedRef, present }) });
|
||||
}
|
||||
);
|
||||
CollapsibleContent.displayName = CONTENT_NAME;
|
||||
var CollapsibleContentImpl = React.forwardRef((props, forwardedRef) => {
|
||||
const { __scopeCollapsible, present, children, ...contentProps } = props;
|
||||
const context = useCollapsibleContext(CONTENT_NAME, __scopeCollapsible);
|
||||
const [isPresent, setIsPresent] = React.useState(present);
|
||||
const ref = React.useRef(null);
|
||||
const composedRefs = (0, import_react_compose_refs.useComposedRefs)(forwardedRef, ref);
|
||||
const heightRef = React.useRef(0);
|
||||
const height = heightRef.current;
|
||||
const widthRef = React.useRef(0);
|
||||
const width = widthRef.current;
|
||||
const isOpen = context.open || isPresent;
|
||||
const isMountAnimationPreventedRef = React.useRef(isOpen);
|
||||
const originalStylesRef = React.useRef(void 0);
|
||||
React.useEffect(() => {
|
||||
const rAF = requestAnimationFrame(() => isMountAnimationPreventedRef.current = false);
|
||||
return () => cancelAnimationFrame(rAF);
|
||||
}, []);
|
||||
(0, import_react_use_layout_effect.useLayoutEffect)(() => {
|
||||
const node = ref.current;
|
||||
if (node) {
|
||||
originalStylesRef.current = originalStylesRef.current || {
|
||||
transitionDuration: node.style.transitionDuration,
|
||||
animationName: node.style.animationName
|
||||
};
|
||||
node.style.transitionDuration = "0s";
|
||||
node.style.animationName = "none";
|
||||
const rect = node.getBoundingClientRect();
|
||||
heightRef.current = rect.height;
|
||||
widthRef.current = rect.width;
|
||||
if (!isMountAnimationPreventedRef.current) {
|
||||
node.style.transitionDuration = originalStylesRef.current.transitionDuration;
|
||||
node.style.animationName = originalStylesRef.current.animationName;
|
||||
}
|
||||
setIsPresent(present);
|
||||
}
|
||||
}, [context.open, present]);
|
||||
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
||||
import_react_primitive.Primitive.div,
|
||||
{
|
||||
"data-state": getState(context.open),
|
||||
"data-disabled": context.disabled ? "" : void 0,
|
||||
id: context.contentId,
|
||||
hidden: !isOpen,
|
||||
...contentProps,
|
||||
ref: composedRefs,
|
||||
style: {
|
||||
[`--radix-collapsible-content-height`]: height ? `${height}px` : void 0,
|
||||
[`--radix-collapsible-content-width`]: width ? `${width}px` : void 0,
|
||||
...props.style
|
||||
},
|
||||
children: isOpen && children
|
||||
}
|
||||
);
|
||||
});
|
||||
function getState(open) {
|
||||
return open ? "open" : "closed";
|
||||
}
|
||||
var Root = Collapsible;
|
||||
var Trigger = CollapsibleTrigger;
|
||||
var Content = CollapsibleContent;
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user