package.dist.components.qr-code.use-qr-code.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 qrcode = require('@zag-js/qr-code');
const react$1 = require('@zag-js/react');
const react = require('react');
const useEnvironmentContext = require('../../providers/environment/use-environment-context.cjs');
const useLocaleContext = require('../../providers/locale/use-locale-context.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 qrcode__namespace = /*#__PURE__*/_interopNamespaceDefault(qrcode);
const useQrCode = (props = {}) => {
const { getRootNode } = useEnvironmentContext.useEnvironmentContext();
const { dir } = useLocaleContext.useLocaleContext();
const context = {
id: react.useId(),
dir,
getRootNode,
...props
};
const [state, send] = react$1.useMachine(qrcode__namespace.machine(context), { context });
return qrcode__namespace.connect(state, send, react$1.normalizeProps);
};
exports.useQrCode = useQrCode;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy