@ark-ui/react
Version:
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
20 lines (15 loc) • 1.03 kB
JavaScript
'use client';
;
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const jsxRuntime = require('react/jsx-runtime');
const createSplitProps = require('../../utils/create-split-props.cjs');
const useTreeViewContext = require('./use-tree-view-context.cjs');
const useTreeViewNodeContext = require('./use-tree-view-node-context.cjs');
const useTreeViewNodePropsContext = require('./use-tree-view-node-props-context.cjs');
function TreeViewNodeProvider(props) {
const [nodeProps, localProps] = createSplitProps.createSplitProps()(props, ["indexPath", "node"]);
const treeView = useTreeViewContext.useTreeViewContext();
const nodeState = treeView.getNodeState(nodeProps);
return /* @__PURE__ */ jsxRuntime.jsx(useTreeViewNodeContext.TreeViewNodeStateProvider, { value: nodeState, children: /* @__PURE__ */ jsxRuntime.jsx(useTreeViewNodePropsContext.TreeViewNodePropsProvider, { value: nodeProps, children: localProps.children }) });
}
exports.TreeViewNodeProvider = TreeViewNodeProvider;