package.dist.components.splitter.use-splitter.cjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of react Show documentation
Show all versions of react Show documentation
A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.
The newest version!
'use client';
'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const react$1 = require('@zag-js/react');
const splitter = require('@zag-js/splitter');
const react = require('react');
const useEnvironmentContext = require('../../providers/environment/use-environment-context.cjs');
const useLocaleContext = require('../../providers/locale/use-locale-context.cjs');
const useEvent = require('../../utils/use-event.cjs');
function _interopNamespaceDefault(e) {
const n = Object.create(null, { [Symbol.toStringTag]: { value: 'Module' } });
if (e) {
for (const k in e) {
if (k !== 'default') {
const d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: () => e[k]
});
}
}
}
n.default = e;
return Object.freeze(n);
}
const splitter__namespace = /*#__PURE__*/_interopNamespaceDefault(splitter);
const useSplitter = (props = {}) => {
const { getRootNode } = useEnvironmentContext.useEnvironmentContext();
const { dir } = useLocaleContext.useLocaleContext();
const initialContext = {
id: react.useId(),
dir,
getRootNode,
size: props.defaultSize,
...props
};
const context = {
...initialContext,
size: props.size,
onSizeChange: useEvent.useEvent(props.onSizeChange, { sync: true }),
onSizeChangeEnd: useEvent.useEvent(props.onSizeChangeEnd)
};
const [state, send] = react$1.useMachine(splitter__namespace.machine(initialContext), { context });
return splitter__namespace.connect(state, send, react$1.normalizeProps);
};
exports.useSplitter = useSplitter;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy