UNPKG

@porsche-design-system/components-react

Version:

Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.

30 lines (26 loc) 1.55 kB
"use client"; 'use strict'; var jsxRuntime = require('react/jsx-runtime'); var react = require('react'); var hooks = require('../../hooks.cjs'); var utils = require('../../utils.cjs'); const PPinCode = /*#__PURE__*/ react.forwardRef(({ compact = false, description = '', disabled = false, form, hideLabel = false, label = '', length = 4, loading = false, message = '', name, onBlur, onChange, onUpdate, required = false, state = 'none', theme, type = 'number', value = '', className, ...rest }, ref) => { const elementRef = react.useRef(undefined); hooks.useEventCallback(elementRef, 'blur', onBlur); hooks.useEventCallback(elementRef, 'change', onChange); hooks.useEventCallback(elementRef, 'update', onUpdate); const WebComponentTag = hooks.usePrefix('p-pin-code'); const propsToSync = [compact, description, disabled, form, hideLabel, label, length, loading, message, name, required, state, theme || hooks.useTheme(), type, value]; hooks.useBrowserLayoutEffect(() => { const { current } = elementRef; ['compact', 'description', 'disabled', 'form', 'hideLabel', 'label', 'length', 'loading', 'message', 'name', 'required', 'state', 'theme', 'type', 'value'].forEach((propName, i) => (current[propName] = propsToSync[i])); }, propsToSync); const props = { ...rest, class: hooks.useMergedClass(elementRef, className), ref: utils.syncRef(elementRef, ref) }; // @ts-ignore return jsxRuntime.jsx(WebComponentTag, { ...props }); }); exports.PPinCode = PPinCode;