@xsolla/xui-input-pin 0.141.0 → 0.141.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/native/index.js CHANGED
@@ -27,7 +27,7 @@ module.exports = __toCommonJS(index_exports);
27
27
  // src/InputPin.tsx
28
28
  var import_react2 = require("react");
29
29
 
30
- // ../primitives-native/src/Box.tsx
30
+ // ../../foundation/primitives-native/src/Box.tsx
31
31
  var import_react_native = require("react-native");
32
32
  var import_jsx_runtime = require("react/jsx-runtime");
33
33
  var Box = ({
@@ -201,7 +201,7 @@ var Box = ({
201
201
  );
202
202
  };
203
203
 
204
- // ../primitives-native/src/Text.tsx
204
+ // ../../foundation/primitives-native/src/Text.tsx
205
205
  var import_react_native2 = require("react-native");
206
206
  var import_jsx_runtime2 = require("react/jsx-runtime");
207
207
  var roleMap = {
@@ -264,7 +264,7 @@ var Text = ({
264
264
  );
265
265
  };
266
266
 
267
- // ../primitives-native/src/Input.tsx
267
+ // ../../foundation/primitives-native/src/Input.tsx
268
268
  var import_react = require("react");
269
269
  var import_react_native3 = require("react-native");
270
270
  var import_jsx_runtime3 = require("react/jsx-runtime");
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/index.tsx","../../src/InputPin.tsx","../../../primitives-native/src/Box.tsx","../../../primitives-native/src/Text.tsx","../../../primitives-native/src/Input.tsx"],"sourcesContent":["export * from \"./InputPin\";\n","import React, { useState, useRef, useEffect, useCallback } from \"react\";\n// @ts-expect-error - this will be resolved at build time\nimport { Box, Text, InputPrimitive } from \"@xsolla/xui-primitives\";\nimport {\n useResolvedTheme,\n useId,\n type ThemeOverrideProps,\n} from \"@xsolla/xui-core\";\n\nexport interface OnInputPinCompleteProps {\n isComplete: boolean;\n value: string;\n}\n\nexport interface InputPinProps extends ThemeOverrideProps {\n /** Current value of the input pin */\n value?: string;\n /** Function that will be called when the input value changes */\n onChange?: (props: OnInputPinCompleteProps) => void;\n /** Function that will be called when the input is completed */\n onComplete?: (props: OnInputPinCompleteProps) => void;\n /** The length of the code to be input. Default is 4 */\n codeLength?: number;\n /** @deprecated Use codeLength instead */\n length?: number;\n /** Property for changing the size of the input */\n size?: \"xl\" | \"lg\" | \"md\" | \"sm\" | \"xs\";\n /** @deprecated Use disabled and error props instead */\n state?: \"default\" | \"hover\" | \"disable\" | \"error\";\n /** Property for disabling the control */\n disabled?: boolean;\n /** Property for displaying an error state */\n error?: boolean;\n /** Property for displaying a label above the input */\n label?: string;\n /** Property for displaying an error message */\n errorMessage?: string;\n /** @deprecated Use errorMessage instead */\n errorLabel?: string;\n /** Whether to hide the text (like a password field) */\n secureTextEntry?: boolean;\n /** Show dot placeholders in empty inputs */\n showPlaceholderDots?: boolean;\n /** Expands input cells to fill the width of the container */\n flexibleWidth?: boolean;\n /** Boolean value indicating if the input is filled or not */\n isComplete?: boolean;\n /** The current focused input index */\n currentFocus?: number;\n /** Function to add a ref to an input element */\n addRef?: (index: number) => (element: HTMLInputElement | null) => void;\n /** Test identifier for the component */\n testID?: string;\n /** Accessible label for screen readers (use when no visible label) */\n \"aria-label\"?: string;\n}\n\nexport const InputPin: React.FC<InputPinProps> = ({\n value = \"\",\n onChange,\n onComplete,\n codeLength,\n length = 4,\n size = \"md\",\n state: externalState,\n disabled: disabledProp,\n error: errorProp,\n label,\n errorMessage,\n errorLabel,\n secureTextEntry = false,\n showPlaceholderDots = true,\n flexibleWidth = false,\n isComplete: isCompleteProp,\n currentFocus,\n addRef,\n testID,\n \"aria-label\": ariaLabel,\n themeMode,\n themeProductContext,\n}) => {\n const { theme } = useResolvedTheme({ themeMode, themeProductContext });\n const uniqueId = useId();\n const [focusedIndex, setFocusedIndex] = useState<number | null>(null);\n const [internalValue, setInternalValue] = useState(value);\n\n // Support both codeLength (new) and length (deprecated)\n const actualLength = codeLength ?? length;\n\n // Support both errorMessage (new) and errorLabel (deprecated)\n const errorText = errorMessage ?? errorLabel;\n\n // Support both new props and deprecated state prop\n // Error state is true if error prop is set, or errorMessage is provided, or state is \"error\"\n const isError = errorProp ?? (!!errorText || externalState === \"error\");\n const isDisabled = disabledProp ?? externalState === \"disable\";\n const isHover = externalState === \"hover\";\n const sizeStyles = theme.sizing.inputPin(size);\n const inputColors = theme.colors.control.input;\n\n const inputs = useRef<(HTMLInputElement | null)[]>([]);\n\n // Sync internal value with external value\n useEffect(() => {\n setInternalValue(value);\n }, [value]);\n\n // Handle currentFocus prop\n useEffect(() => {\n if (\n currentFocus !== undefined &&\n currentFocus >= 0 &&\n currentFocus < actualLength\n ) {\n inputs.current[currentFocus]?.focus();\n }\n }, [currentFocus, actualLength]);\n\n // Calculate isComplete status\n const checkIsComplete = useCallback(\n (val: string) => val.length >= actualLength,\n [actualLength]\n );\n\n // IDs for accessibility\n const labelId = `${uniqueId}-label`;\n const errorId = `${uniqueId}-error`;\n\n const handleTextChange = (text: string, index: number) => {\n // Filter to only alphanumeric characters\n const sanitizedText = text.replace(/[^0-9a-zA-Z]/g, \"\");\n\n // Handle multi-character input (paste on React Native)\n if (sanitizedText.length > 1) {\n const pastedData = sanitizedText.slice(0, actualLength - index);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n // Fill in characters starting from current index\n for (let i = 0; i < pastedData.length && index + i < actualLength; i++) {\n newValue[index + i] = pastedData[i];\n }\n\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the next empty input or the last input\n const nextIndex = Math.min(index + pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n return;\n }\n\n // Handle single character input\n const char = sanitizedText.slice(-1);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n newValue[index] = char;\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n if (char && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handleKeyDown = (\n e: React.KeyboardEvent<HTMLInputElement>,\n index: number\n ) => {\n if (e.key === \"Backspace\") {\n if (!internalValue[index] && index > 0) {\n inputs.current[index - 1]?.focus();\n }\n } else if (e.key === \"ArrowLeft\" && index > 0) {\n inputs.current[index - 1]?.focus();\n } else if (e.key === \"ArrowRight\" && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handlePaste = (e: React.ClipboardEvent) => {\n e.preventDefault();\n const pastedData = e.clipboardData\n .getData(\"text\")\n .replace(/[^0-9a-zA-Z]/g, \"\")\n .slice(0, actualLength);\n setInternalValue(pastedData);\n\n const complete = checkIsComplete(pastedData);\n const changeProps = { isComplete: complete, value: pastedData };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the last filled input or the first empty one\n const nextIndex = Math.min(pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n };\n\n // Handler for storing refs that can be provided to addRef prop\n const handleRef = (index: number) => (element: HTMLInputElement | null) => {\n inputs.current[index] = element;\n addRef?.(index)(element);\n };\n\n const pinItems = Array.from({ length: actualLength }).map((_, index) => {\n const char = internalValue[index] || \"\";\n const isFocused = focusedIndex === index;\n\n let backgroundColor = inputColors.bg;\n let borderColor = inputColors.border;\n\n if (isDisabled) {\n backgroundColor = inputColors.bgDisable;\n borderColor = inputColors.borderDisable;\n } else if (isError) {\n borderColor = theme.colors.border.alert;\n backgroundColor = isFocused\n ? theme.colors.control.focus.bg\n : inputColors.bg;\n } else if (isFocused) {\n backgroundColor = theme.colors.control.focus.bg;\n borderColor = theme.colors.content.brand.secondary;\n } else if (isHover) {\n backgroundColor = inputColors.bgHover;\n borderColor = inputColors.borderHover;\n } else {\n backgroundColor = inputColors.bg;\n borderColor = inputColors.border;\n }\n\n const textColor = isDisabled ? inputColors.textDisable : inputColors.text;\n\n return (\n <Box\n key={index}\n width={flexibleWidth ? undefined : sizeStyles.size}\n height={sizeStyles.size}\n flex={flexibleWidth ? 1 : undefined}\n backgroundColor={backgroundColor}\n borderColor={borderColor}\n borderWidth={sizeStyles.borderWidth}\n borderRadius={sizeStyles.radius}\n alignItems=\"center\"\n justifyContent=\"center\"\n hoverStyle={\n !isDisabled && !isFocused && !isError\n ? {\n backgroundColor: inputColors.bgHover,\n borderColor: inputColors.borderHover,\n }\n : undefined\n }\n >\n <InputPrimitive\n ref={\n addRef\n ? handleRef(index)\n : (el: any) => (inputs.current[index] = el)\n }\n value={char}\n placeholder={showPlaceholderDots && !isFocused ? \"•\" : undefined}\n onChangeText={(text: string) => handleTextChange(text, index)}\n onFocus={() => setFocusedIndex(index)}\n onBlur={() => setFocusedIndex(null)}\n onKeyDown={(e: any) => handleKeyDown(e, index)}\n disabled={isDisabled}\n secureTextEntry={secureTextEntry}\n color={textColor}\n placeholderTextColor={inputColors.placeholder}\n fontSize={sizeStyles.fontSize}\n style={{ textAlign: \"center\" }}\n maxLength={1}\n inputMode=\"numeric\"\n autoComplete=\"one-time-code\"\n aria-label={\n ariaLabel\n ? `${ariaLabel} digit ${index + 1}`\n : `PIN digit ${index + 1}`\n }\n aria-invalid={isError}\n aria-describedby={isError && errorText ? errorId : undefined}\n data-testid={\n testID ? `${testID}-input-${index}` : `input-pin-input-${index}`\n }\n />\n </Box>\n );\n });\n\n return (\n <Box\n flexDirection=\"column\"\n gap={sizeStyles.fieldGap}\n data-testid={testID || \"input-pin\"}\n role=\"group\"\n aria-labelledby={label ? labelId : undefined}\n aria-label={!label && ariaLabel ? ariaLabel : undefined}\n >\n {label && (\n <Text\n id={labelId}\n color={theme.colors.content.secondary}\n fontSize={sizeStyles.fontSize - 2}\n fontWeight=\"500\"\n >\n {label}\n </Text>\n )}\n <Box\n flexDirection=\"row\"\n gap={sizeStyles.gap}\n onPaste={handlePaste}\n width={flexibleWidth ? \"100%\" : undefined}\n >\n {pinItems}\n </Box>\n {isError && errorText && (\n <Text\n id={errorId}\n role=\"alert\"\n color={theme.colors.content.alert.primary}\n fontSize={sizeStyles.fontSize - 2}\n >\n {errorText}\n </Text>\n )}\n </Box>\n );\n};\n","import React from \"react\";\nimport {\n View,\n Pressable,\n Image,\n ViewStyle,\n ImageStyle,\n DimensionValue,\n AnimatableNumericValue,\n} from \"react-native\";\nimport { BoxProps } from \"@xsolla/xui-primitives-core\";\n\nexport const Box: React.FC<BoxProps> = ({\n children,\n onPress,\n onLayout,\n onMoveShouldSetResponder,\n onResponderGrant,\n onResponderMove,\n onResponderRelease,\n onResponderTerminate,\n backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius,\n borderStyle,\n height,\n padding,\n paddingHorizontal,\n paddingVertical,\n margin,\n marginTop,\n marginBottom,\n marginLeft,\n marginRight,\n flexDirection,\n alignItems,\n justifyContent,\n position,\n top,\n bottom,\n left,\n right,\n width,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight,\n flex,\n overflow,\n zIndex,\n hoverStyle,\n pressStyle,\n style,\n \"data-testid\": dataTestId,\n testID,\n as,\n src,\n alt,\n ...rest\n}) => {\n const getContainerStyle = (pressed?: boolean): ViewStyle => ({\n backgroundColor:\n pressed && pressStyle?.backgroundColor\n ? pressStyle.backgroundColor\n : backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius: borderRadius as AnimatableNumericValue,\n borderStyle: borderStyle as ViewStyle[\"borderStyle\"],\n overflow,\n zIndex,\n height: height as DimensionValue,\n width: width as DimensionValue,\n minWidth: minWidth as DimensionValue,\n minHeight: minHeight as DimensionValue,\n maxWidth: maxWidth as DimensionValue,\n maxHeight: maxHeight as DimensionValue,\n padding: padding as DimensionValue,\n paddingHorizontal: paddingHorizontal as DimensionValue,\n paddingVertical: paddingVertical as DimensionValue,\n margin: margin as DimensionValue,\n marginTop: marginTop as DimensionValue,\n marginBottom: marginBottom as DimensionValue,\n marginLeft: marginLeft as DimensionValue,\n marginRight: marginRight as DimensionValue,\n flexDirection,\n alignItems,\n justifyContent,\n position: position as ViewStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n flex,\n ...(style as ViewStyle),\n });\n\n const finalTestID = dataTestId || testID;\n\n // Destructure and drop web-only props from rest before passing to RN components\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const {\n role,\n tabIndex,\n onKeyDown,\n onKeyUp,\n \"aria-label\": _ariaLabel,\n \"aria-labelledby\": _ariaLabelledBy,\n \"aria-current\": _ariaCurrent,\n \"aria-disabled\": _ariaDisabled,\n \"aria-live\": _ariaLive,\n className,\n \"data-testid\": _dataTestId,\n ...nativeRest\n } = rest as Record<string, unknown>;\n\n // Handle as=\"img\" for React Native\n if (as === \"img\" && src) {\n const imageStyle: ImageStyle = {\n width: width as DimensionValue,\n height: height as DimensionValue,\n borderRadius: borderRadius as number,\n position: position as ImageStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n ...(style as ImageStyle),\n };\n\n return (\n <Image\n source={{ uri: src }}\n style={imageStyle}\n testID={finalTestID}\n resizeMode=\"cover\"\n {...nativeRest}\n />\n );\n }\n\n if (onPress) {\n return (\n <Pressable\n onPress={onPress}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n style={({ pressed }) => getContainerStyle(pressed)}\n testID={finalTestID}\n {...nativeRest}\n >\n {children}\n </Pressable>\n );\n }\n\n return (\n <View\n style={getContainerStyle()}\n testID={finalTestID}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n {...nativeRest}\n >\n {children}\n </View>\n );\n};\n","import React from \"react\";\nimport {\n Text as RNText,\n TextStyle,\n AccessibilityRole,\n StyleSheet,\n} from \"react-native\";\nimport { TextProps } from \"@xsolla/xui-primitives-core\";\n\nconst roleMap: Record<string, AccessibilityRole> = {\n alert: \"alert\",\n heading: \"header\",\n button: \"button\",\n link: \"link\",\n text: \"text\",\n};\n\nconst parseNumericValue = (\n value: string | number | undefined\n): number | undefined => {\n if (value === undefined) return undefined;\n if (typeof value === \"number\") return value;\n const parsed = parseFloat(value);\n return isNaN(parsed) ? undefined : parsed;\n};\n\nexport const Text: React.FC<TextProps> = ({\n children,\n color,\n fontSize,\n fontWeight,\n fontFamily,\n textAlign,\n lineHeight,\n numberOfLines,\n id,\n role,\n style: styleProp,\n ...props\n}) => {\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n const incomingStyle = StyleSheet.flatten(styleProp) as TextStyle | undefined;\n\n const baseStyle: TextStyle = {\n color: color ?? incomingStyle?.color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontWeight: fontWeight as TextStyle[\"fontWeight\"],\n fontFamily: resolvedFontFamily,\n textDecorationLine: props.textDecoration as TextStyle[\"textDecorationLine\"],\n textAlign: textAlign ?? incomingStyle?.textAlign,\n lineHeight: parseNumericValue(lineHeight ?? incomingStyle?.lineHeight),\n marginTop: parseNumericValue(\n incomingStyle?.marginTop as number | string | undefined\n ),\n marginBottom: parseNumericValue(\n incomingStyle?.marginBottom as number | string | undefined\n ),\n };\n\n const accessibilityRole = role ? roleMap[role] : undefined;\n\n return (\n <RNText\n style={baseStyle}\n numberOfLines={numberOfLines}\n testID={id}\n accessibilityRole={accessibilityRole}\n >\n {children}\n </RNText>\n );\n};\n","import React, { forwardRef } from \"react\";\nimport { TextInput as RNTextInput } from \"react-native\";\nimport { InputPrimitiveProps } from \"@xsolla/xui-primitives-core\";\n\n// Map web input types to React Native keyboard types\nconst keyboardTypeMap: Record<string, any> = {\n text: \"default\",\n number: \"numeric\",\n email: \"email-address\",\n tel: \"phone-pad\",\n url: \"url\",\n decimal: \"decimal-pad\",\n};\n\n// Map web inputMode to React Native keyboard types\nconst inputModeToKeyboardType: Record<string, any> = {\n none: \"default\",\n text: \"default\",\n decimal: \"decimal-pad\",\n numeric: \"number-pad\",\n tel: \"phone-pad\",\n search: \"default\",\n email: \"email-address\",\n url: \"url\",\n};\n\n// Map web autoComplete to React Native textContentType (iOS)\nconst autoCompleteToTextContentType: Record<string, any> = {\n \"one-time-code\": \"oneTimeCode\",\n email: \"emailAddress\",\n username: \"username\",\n password: \"password\",\n \"new-password\": \"newPassword\",\n tel: \"telephoneNumber\",\n \"postal-code\": \"postalCode\",\n name: \"name\",\n};\n\nexport const InputPrimitive = forwardRef<RNTextInput, InputPrimitiveProps>(\n (\n {\n value,\n placeholder,\n onChange,\n onChangeText,\n onFocus,\n onBlur,\n onKeyDown,\n disabled,\n secureTextEntry,\n style,\n color,\n fontSize,\n fontFamily,\n placeholderTextColor,\n maxLength,\n type,\n inputMode,\n autoComplete,\n id,\n \"aria-describedby\": ariaDescribedBy,\n \"aria-label\": ariaLabel,\n \"aria-disabled\": ariaDisabled,\n \"data-testid\": dataTestId,\n },\n ref\n ) => {\n const handleChangeText = (text: string) => {\n onChangeText?.(text);\n\n // Create a synthetic event for onChange compatibility\n // Include nativeEvent and no-op methods to prevent runtime errors\n // when consumers expect DOM-like event behavior\n if (onChange) {\n const syntheticEvent = {\n target: { value: text },\n currentTarget: { value: text },\n type: \"change\",\n nativeEvent: { text },\n preventDefault: () => {},\n stopPropagation: () => {},\n isTrusted: false,\n } as unknown as React.ChangeEvent<HTMLInputElement>;\n onChange(syntheticEvent);\n }\n };\n\n // Determine keyboard type - inputMode takes precedence over type\n const keyboardType = inputMode\n ? inputModeToKeyboardType[inputMode] || \"default\"\n : type\n ? keyboardTypeMap[type] || \"default\"\n : \"default\";\n\n // Determine textContentType for iOS autofill\n const textContentType = autoComplete\n ? autoCompleteToTextContentType[autoComplete]\n : undefined;\n\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n return (\n <RNTextInput\n ref={ref}\n value={value}\n placeholder={placeholder}\n onChangeText={handleChangeText}\n onFocus={onFocus}\n onBlur={onBlur}\n onKeyPress={(e) => {\n // Map onKeyPress to onKeyDown for cross-platform compatibility\n // Include preventDefault to avoid runtime errors when consumers call it\n if (onKeyDown) {\n onKeyDown({\n key: e.nativeEvent.key,\n preventDefault: () => {},\n } as any);\n }\n }}\n editable={!disabled}\n secureTextEntry={secureTextEntry || type === \"password\"}\n keyboardType={keyboardType}\n textContentType={textContentType}\n style={[\n {\n color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontFamily: resolvedFontFamily,\n flex: 1,\n padding: 0,\n textAlign: (style as any)?.textAlign || \"left\",\n },\n style as any,\n ]}\n placeholderTextColor={placeholderTextColor}\n maxLength={maxLength}\n // React Native accessibility props\n testID={dataTestId || id}\n accessibilityLabel={ariaLabel}\n accessibilityHint={ariaDescribedBy}\n accessibilityState={{\n disabled: disabled || ariaDisabled,\n }}\n accessible={true}\n />\n );\n }\n);\n\nInputPrimitive.displayName = \"InputPrimitive\";\n"],"mappings":"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","names":["import_react","import_react_native","import_jsx_runtime","RNText","import_react_native","import_jsx_runtime","RNTextInput","import_jsx_runtime","newValue","updatedValue","complete","changeProps"]}
1
+ {"version":3,"sources":["../../src/index.tsx","../../src/InputPin.tsx","../../../../foundation/primitives-native/src/Box.tsx","../../../../foundation/primitives-native/src/Text.tsx","../../../../foundation/primitives-native/src/Input.tsx"],"sourcesContent":["export * from \"./InputPin\";\n","import React, { useState, useRef, useEffect, useCallback } from \"react\";\n// @ts-expect-error - this will be resolved at build time\nimport { Box, Text, InputPrimitive } from \"@xsolla/xui-primitives\";\nimport {\n useResolvedTheme,\n useId,\n type ThemeOverrideProps,\n} from \"@xsolla/xui-core\";\n\nexport interface OnInputPinCompleteProps {\n isComplete: boolean;\n value: string;\n}\n\nexport interface InputPinProps extends ThemeOverrideProps {\n /** Current value of the input pin */\n value?: string;\n /** Function that will be called when the input value changes */\n onChange?: (props: OnInputPinCompleteProps) => void;\n /** Function that will be called when the input is completed */\n onComplete?: (props: OnInputPinCompleteProps) => void;\n /** The length of the code to be input. Default is 4 */\n codeLength?: number;\n /** @deprecated Use codeLength instead */\n length?: number;\n /** Property for changing the size of the input */\n size?: \"xl\" | \"lg\" | \"md\" | \"sm\" | \"xs\";\n /** @deprecated Use disabled and error props instead */\n state?: \"default\" | \"hover\" | \"disable\" | \"error\";\n /** Property for disabling the control */\n disabled?: boolean;\n /** Property for displaying an error state */\n error?: boolean;\n /** Property for displaying a label above the input */\n label?: string;\n /** Property for displaying an error message */\n errorMessage?: string;\n /** @deprecated Use errorMessage instead */\n errorLabel?: string;\n /** Whether to hide the text (like a password field) */\n secureTextEntry?: boolean;\n /** Show dot placeholders in empty inputs */\n showPlaceholderDots?: boolean;\n /** Expands input cells to fill the width of the container */\n flexibleWidth?: boolean;\n /** Boolean value indicating if the input is filled or not */\n isComplete?: boolean;\n /** The current focused input index */\n currentFocus?: number;\n /** Function to add a ref to an input element */\n addRef?: (index: number) => (element: HTMLInputElement | null) => void;\n /** Test identifier for the component */\n testID?: string;\n /** Accessible label for screen readers (use when no visible label) */\n \"aria-label\"?: string;\n}\n\nexport const InputPin: React.FC<InputPinProps> = ({\n value = \"\",\n onChange,\n onComplete,\n codeLength,\n length = 4,\n size = \"md\",\n state: externalState,\n disabled: disabledProp,\n error: errorProp,\n label,\n errorMessage,\n errorLabel,\n secureTextEntry = false,\n showPlaceholderDots = true,\n flexibleWidth = false,\n isComplete: isCompleteProp,\n currentFocus,\n addRef,\n testID,\n \"aria-label\": ariaLabel,\n themeMode,\n themeProductContext,\n}) => {\n const { theme } = useResolvedTheme({ themeMode, themeProductContext });\n const uniqueId = useId();\n const [focusedIndex, setFocusedIndex] = useState<number | null>(null);\n const [internalValue, setInternalValue] = useState(value);\n\n // Support both codeLength (new) and length (deprecated)\n const actualLength = codeLength ?? length;\n\n // Support both errorMessage (new) and errorLabel (deprecated)\n const errorText = errorMessage ?? errorLabel;\n\n // Support both new props and deprecated state prop\n // Error state is true if error prop is set, or errorMessage is provided, or state is \"error\"\n const isError = errorProp ?? (!!errorText || externalState === \"error\");\n const isDisabled = disabledProp ?? externalState === \"disable\";\n const isHover = externalState === \"hover\";\n const sizeStyles = theme.sizing.inputPin(size);\n const inputColors = theme.colors.control.input;\n\n const inputs = useRef<(HTMLInputElement | null)[]>([]);\n\n // Sync internal value with external value\n useEffect(() => {\n setInternalValue(value);\n }, [value]);\n\n // Handle currentFocus prop\n useEffect(() => {\n if (\n currentFocus !== undefined &&\n currentFocus >= 0 &&\n currentFocus < actualLength\n ) {\n inputs.current[currentFocus]?.focus();\n }\n }, [currentFocus, actualLength]);\n\n // Calculate isComplete status\n const checkIsComplete = useCallback(\n (val: string) => val.length >= actualLength,\n [actualLength]\n );\n\n // IDs for accessibility\n const labelId = `${uniqueId}-label`;\n const errorId = `${uniqueId}-error`;\n\n const handleTextChange = (text: string, index: number) => {\n // Filter to only alphanumeric characters\n const sanitizedText = text.replace(/[^0-9a-zA-Z]/g, \"\");\n\n // Handle multi-character input (paste on React Native)\n if (sanitizedText.length > 1) {\n const pastedData = sanitizedText.slice(0, actualLength - index);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n // Fill in characters starting from current index\n for (let i = 0; i < pastedData.length && index + i < actualLength; i++) {\n newValue[index + i] = pastedData[i];\n }\n\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the next empty input or the last input\n const nextIndex = Math.min(index + pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n return;\n }\n\n // Handle single character input\n const char = sanitizedText.slice(-1);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n newValue[index] = char;\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n if (char && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handleKeyDown = (\n e: React.KeyboardEvent<HTMLInputElement>,\n index: number\n ) => {\n if (e.key === \"Backspace\") {\n if (!internalValue[index] && index > 0) {\n inputs.current[index - 1]?.focus();\n }\n } else if (e.key === \"ArrowLeft\" && index > 0) {\n inputs.current[index - 1]?.focus();\n } else if (e.key === \"ArrowRight\" && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handlePaste = (e: React.ClipboardEvent) => {\n e.preventDefault();\n const pastedData = e.clipboardData\n .getData(\"text\")\n .replace(/[^0-9a-zA-Z]/g, \"\")\n .slice(0, actualLength);\n setInternalValue(pastedData);\n\n const complete = checkIsComplete(pastedData);\n const changeProps = { isComplete: complete, value: pastedData };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the last filled input or the first empty one\n const nextIndex = Math.min(pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n };\n\n // Handler for storing refs that can be provided to addRef prop\n const handleRef = (index: number) => (element: HTMLInputElement | null) => {\n inputs.current[index] = element;\n addRef?.(index)(element);\n };\n\n const pinItems = Array.from({ length: actualLength }).map((_, index) => {\n const char = internalValue[index] || \"\";\n const isFocused = focusedIndex === index;\n\n let backgroundColor = inputColors.bg;\n let borderColor = inputColors.border;\n\n if (isDisabled) {\n backgroundColor = inputColors.bgDisable;\n borderColor = inputColors.borderDisable;\n } else if (isError) {\n borderColor = theme.colors.border.alert;\n backgroundColor = isFocused\n ? theme.colors.control.focus.bg\n : inputColors.bg;\n } else if (isFocused) {\n backgroundColor = theme.colors.control.focus.bg;\n borderColor = theme.colors.content.brand.secondary;\n } else if (isHover) {\n backgroundColor = inputColors.bgHover;\n borderColor = inputColors.borderHover;\n } else {\n backgroundColor = inputColors.bg;\n borderColor = inputColors.border;\n }\n\n const textColor = isDisabled ? inputColors.textDisable : inputColors.text;\n\n return (\n <Box\n key={index}\n width={flexibleWidth ? undefined : sizeStyles.size}\n height={sizeStyles.size}\n flex={flexibleWidth ? 1 : undefined}\n backgroundColor={backgroundColor}\n borderColor={borderColor}\n borderWidth={sizeStyles.borderWidth}\n borderRadius={sizeStyles.radius}\n alignItems=\"center\"\n justifyContent=\"center\"\n hoverStyle={\n !isDisabled && !isFocused && !isError\n ? {\n backgroundColor: inputColors.bgHover,\n borderColor: inputColors.borderHover,\n }\n : undefined\n }\n >\n <InputPrimitive\n ref={\n addRef\n ? handleRef(index)\n : (el: any) => (inputs.current[index] = el)\n }\n value={char}\n placeholder={showPlaceholderDots && !isFocused ? \"•\" : undefined}\n onChangeText={(text: string) => handleTextChange(text, index)}\n onFocus={() => setFocusedIndex(index)}\n onBlur={() => setFocusedIndex(null)}\n onKeyDown={(e: any) => handleKeyDown(e, index)}\n disabled={isDisabled}\n secureTextEntry={secureTextEntry}\n color={textColor}\n placeholderTextColor={inputColors.placeholder}\n fontSize={sizeStyles.fontSize}\n style={{ textAlign: \"center\" }}\n maxLength={1}\n inputMode=\"numeric\"\n autoComplete=\"one-time-code\"\n aria-label={\n ariaLabel\n ? `${ariaLabel} digit ${index + 1}`\n : `PIN digit ${index + 1}`\n }\n aria-invalid={isError}\n aria-describedby={isError && errorText ? errorId : undefined}\n data-testid={\n testID ? `${testID}-input-${index}` : `input-pin-input-${index}`\n }\n />\n </Box>\n );\n });\n\n return (\n <Box\n flexDirection=\"column\"\n gap={sizeStyles.fieldGap}\n data-testid={testID || \"input-pin\"}\n role=\"group\"\n aria-labelledby={label ? labelId : undefined}\n aria-label={!label && ariaLabel ? ariaLabel : undefined}\n >\n {label && (\n <Text\n id={labelId}\n color={theme.colors.content.secondary}\n fontSize={sizeStyles.fontSize - 2}\n fontWeight=\"500\"\n >\n {label}\n </Text>\n )}\n <Box\n flexDirection=\"row\"\n gap={sizeStyles.gap}\n onPaste={handlePaste}\n width={flexibleWidth ? \"100%\" : undefined}\n >\n {pinItems}\n </Box>\n {isError && errorText && (\n <Text\n id={errorId}\n role=\"alert\"\n color={theme.colors.content.alert.primary}\n fontSize={sizeStyles.fontSize - 2}\n >\n {errorText}\n </Text>\n )}\n </Box>\n );\n};\n","import React from \"react\";\nimport {\n View,\n Pressable,\n Image,\n ViewStyle,\n ImageStyle,\n DimensionValue,\n AnimatableNumericValue,\n} from \"react-native\";\nimport { BoxProps } from \"@xsolla/xui-primitives-core\";\n\nexport const Box: React.FC<BoxProps> = ({\n children,\n onPress,\n onLayout,\n onMoveShouldSetResponder,\n onResponderGrant,\n onResponderMove,\n onResponderRelease,\n onResponderTerminate,\n backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius,\n borderStyle,\n height,\n padding,\n paddingHorizontal,\n paddingVertical,\n margin,\n marginTop,\n marginBottom,\n marginLeft,\n marginRight,\n flexDirection,\n alignItems,\n justifyContent,\n position,\n top,\n bottom,\n left,\n right,\n width,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight,\n flex,\n overflow,\n zIndex,\n hoverStyle,\n pressStyle,\n style,\n \"data-testid\": dataTestId,\n testID,\n as,\n src,\n alt,\n ...rest\n}) => {\n const getContainerStyle = (pressed?: boolean): ViewStyle => ({\n backgroundColor:\n pressed && pressStyle?.backgroundColor\n ? pressStyle.backgroundColor\n : backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius: borderRadius as AnimatableNumericValue,\n borderStyle: borderStyle as ViewStyle[\"borderStyle\"],\n overflow,\n zIndex,\n height: height as DimensionValue,\n width: width as DimensionValue,\n minWidth: minWidth as DimensionValue,\n minHeight: minHeight as DimensionValue,\n maxWidth: maxWidth as DimensionValue,\n maxHeight: maxHeight as DimensionValue,\n padding: padding as DimensionValue,\n paddingHorizontal: paddingHorizontal as DimensionValue,\n paddingVertical: paddingVertical as DimensionValue,\n margin: margin as DimensionValue,\n marginTop: marginTop as DimensionValue,\n marginBottom: marginBottom as DimensionValue,\n marginLeft: marginLeft as DimensionValue,\n marginRight: marginRight as DimensionValue,\n flexDirection,\n alignItems,\n justifyContent,\n position: position as ViewStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n flex,\n ...(style as ViewStyle),\n });\n\n const finalTestID = dataTestId || testID;\n\n // Destructure and drop web-only props from rest before passing to RN components\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const {\n role,\n tabIndex,\n onKeyDown,\n onKeyUp,\n \"aria-label\": _ariaLabel,\n \"aria-labelledby\": _ariaLabelledBy,\n \"aria-current\": _ariaCurrent,\n \"aria-disabled\": _ariaDisabled,\n \"aria-live\": _ariaLive,\n className,\n \"data-testid\": _dataTestId,\n ...nativeRest\n } = rest as Record<string, unknown>;\n\n // Handle as=\"img\" for React Native\n if (as === \"img\" && src) {\n const imageStyle: ImageStyle = {\n width: width as DimensionValue,\n height: height as DimensionValue,\n borderRadius: borderRadius as number,\n position: position as ImageStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n ...(style as ImageStyle),\n };\n\n return (\n <Image\n source={{ uri: src }}\n style={imageStyle}\n testID={finalTestID}\n resizeMode=\"cover\"\n {...nativeRest}\n />\n );\n }\n\n if (onPress) {\n return (\n <Pressable\n onPress={onPress}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n style={({ pressed }) => getContainerStyle(pressed)}\n testID={finalTestID}\n {...nativeRest}\n >\n {children}\n </Pressable>\n );\n }\n\n return (\n <View\n style={getContainerStyle()}\n testID={finalTestID}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n {...nativeRest}\n >\n {children}\n </View>\n );\n};\n","import React from \"react\";\nimport {\n Text as RNText,\n TextStyle,\n AccessibilityRole,\n StyleSheet,\n} from \"react-native\";\nimport { TextProps } from \"@xsolla/xui-primitives-core\";\n\nconst roleMap: Record<string, AccessibilityRole> = {\n alert: \"alert\",\n heading: \"header\",\n button: \"button\",\n link: \"link\",\n text: \"text\",\n};\n\nconst parseNumericValue = (\n value: string | number | undefined\n): number | undefined => {\n if (value === undefined) return undefined;\n if (typeof value === \"number\") return value;\n const parsed = parseFloat(value);\n return isNaN(parsed) ? undefined : parsed;\n};\n\nexport const Text: React.FC<TextProps> = ({\n children,\n color,\n fontSize,\n fontWeight,\n fontFamily,\n textAlign,\n lineHeight,\n numberOfLines,\n id,\n role,\n style: styleProp,\n ...props\n}) => {\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n const incomingStyle = StyleSheet.flatten(styleProp) as TextStyle | undefined;\n\n const baseStyle: TextStyle = {\n color: color ?? incomingStyle?.color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontWeight: fontWeight as TextStyle[\"fontWeight\"],\n fontFamily: resolvedFontFamily,\n textDecorationLine: props.textDecoration as TextStyle[\"textDecorationLine\"],\n textAlign: textAlign ?? incomingStyle?.textAlign,\n lineHeight: parseNumericValue(lineHeight ?? incomingStyle?.lineHeight),\n marginTop: parseNumericValue(\n incomingStyle?.marginTop as number | string | undefined\n ),\n marginBottom: parseNumericValue(\n incomingStyle?.marginBottom as number | string | undefined\n ),\n };\n\n const accessibilityRole = role ? roleMap[role] : undefined;\n\n return (\n <RNText\n style={baseStyle}\n numberOfLines={numberOfLines}\n testID={id}\n accessibilityRole={accessibilityRole}\n >\n {children}\n </RNText>\n );\n};\n","import React, { forwardRef } from \"react\";\nimport { TextInput as RNTextInput } from \"react-native\";\nimport { InputPrimitiveProps } from \"@xsolla/xui-primitives-core\";\n\n// Map web input types to React Native keyboard types\nconst keyboardTypeMap: Record<string, any> = {\n text: \"default\",\n number: \"numeric\",\n email: \"email-address\",\n tel: \"phone-pad\",\n url: \"url\",\n decimal: \"decimal-pad\",\n};\n\n// Map web inputMode to React Native keyboard types\nconst inputModeToKeyboardType: Record<string, any> = {\n none: \"default\",\n text: \"default\",\n decimal: \"decimal-pad\",\n numeric: \"number-pad\",\n tel: \"phone-pad\",\n search: \"default\",\n email: \"email-address\",\n url: \"url\",\n};\n\n// Map web autoComplete to React Native textContentType (iOS)\nconst autoCompleteToTextContentType: Record<string, any> = {\n \"one-time-code\": \"oneTimeCode\",\n email: \"emailAddress\",\n username: \"username\",\n password: \"password\",\n \"new-password\": \"newPassword\",\n tel: \"telephoneNumber\",\n \"postal-code\": \"postalCode\",\n name: \"name\",\n};\n\nexport const InputPrimitive = forwardRef<RNTextInput, InputPrimitiveProps>(\n (\n {\n value,\n placeholder,\n onChange,\n onChangeText,\n onFocus,\n onBlur,\n onKeyDown,\n disabled,\n secureTextEntry,\n style,\n color,\n fontSize,\n fontFamily,\n placeholderTextColor,\n maxLength,\n type,\n inputMode,\n autoComplete,\n id,\n \"aria-describedby\": ariaDescribedBy,\n \"aria-label\": ariaLabel,\n \"aria-disabled\": ariaDisabled,\n \"data-testid\": dataTestId,\n },\n ref\n ) => {\n const handleChangeText = (text: string) => {\n onChangeText?.(text);\n\n // Create a synthetic event for onChange compatibility\n // Include nativeEvent and no-op methods to prevent runtime errors\n // when consumers expect DOM-like event behavior\n if (onChange) {\n const syntheticEvent = {\n target: { value: text },\n currentTarget: { value: text },\n type: \"change\",\n nativeEvent: { text },\n preventDefault: () => {},\n stopPropagation: () => {},\n isTrusted: false,\n } as unknown as React.ChangeEvent<HTMLInputElement>;\n onChange(syntheticEvent);\n }\n };\n\n // Determine keyboard type - inputMode takes precedence over type\n const keyboardType = inputMode\n ? inputModeToKeyboardType[inputMode] || \"default\"\n : type\n ? keyboardTypeMap[type] || \"default\"\n : \"default\";\n\n // Determine textContentType for iOS autofill\n const textContentType = autoComplete\n ? autoCompleteToTextContentType[autoComplete]\n : undefined;\n\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n return (\n <RNTextInput\n ref={ref}\n value={value}\n placeholder={placeholder}\n onChangeText={handleChangeText}\n onFocus={onFocus}\n onBlur={onBlur}\n onKeyPress={(e) => {\n // Map onKeyPress to onKeyDown for cross-platform compatibility\n // Include preventDefault to avoid runtime errors when consumers call it\n if (onKeyDown) {\n onKeyDown({\n key: e.nativeEvent.key,\n preventDefault: () => {},\n } as any);\n }\n }}\n editable={!disabled}\n secureTextEntry={secureTextEntry || type === \"password\"}\n keyboardType={keyboardType}\n textContentType={textContentType}\n style={[\n {\n color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontFamily: resolvedFontFamily,\n flex: 1,\n padding: 0,\n textAlign: (style as any)?.textAlign || \"left\",\n },\n style as any,\n ]}\n placeholderTextColor={placeholderTextColor}\n maxLength={maxLength}\n // React Native accessibility props\n testID={dataTestId || id}\n accessibilityLabel={ariaLabel}\n accessibilityHint={ariaDescribedBy}\n accessibilityState={{\n disabled: disabled || ariaDisabled,\n }}\n accessible={true}\n />\n );\n }\n);\n\nInputPrimitive.displayName = \"InputPrimitive\";\n"],"mappings":"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","names":["import_react","import_react_native","import_jsx_runtime","RNText","import_react_native","import_jsx_runtime","RNTextInput","import_jsx_runtime","newValue","updatedValue","complete","changeProps"]}
package/native/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  // src/InputPin.tsx
2
2
  import { useState, useRef, useEffect, useCallback } from "react";
3
3
 
4
- // ../primitives-native/src/Box.tsx
4
+ // ../../foundation/primitives-native/src/Box.tsx
5
5
  import {
6
6
  View,
7
7
  Pressable,
@@ -179,7 +179,7 @@ var Box = ({
179
179
  );
180
180
  };
181
181
 
182
- // ../primitives-native/src/Text.tsx
182
+ // ../../foundation/primitives-native/src/Text.tsx
183
183
  import {
184
184
  Text as RNText,
185
185
  StyleSheet
@@ -245,7 +245,7 @@ var Text = ({
245
245
  );
246
246
  };
247
247
 
248
- // ../primitives-native/src/Input.tsx
248
+ // ../../foundation/primitives-native/src/Input.tsx
249
249
  import { forwardRef } from "react";
250
250
  import { TextInput as RNTextInput } from "react-native";
251
251
  import { jsx as jsx3 } from "react/jsx-runtime";
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/InputPin.tsx","../../../primitives-native/src/Box.tsx","../../../primitives-native/src/Text.tsx","../../../primitives-native/src/Input.tsx"],"sourcesContent":["import React, { useState, useRef, useEffect, useCallback } from \"react\";\n// @ts-expect-error - this will be resolved at build time\nimport { Box, Text, InputPrimitive } from \"@xsolla/xui-primitives\";\nimport {\n useResolvedTheme,\n useId,\n type ThemeOverrideProps,\n} from \"@xsolla/xui-core\";\n\nexport interface OnInputPinCompleteProps {\n isComplete: boolean;\n value: string;\n}\n\nexport interface InputPinProps extends ThemeOverrideProps {\n /** Current value of the input pin */\n value?: string;\n /** Function that will be called when the input value changes */\n onChange?: (props: OnInputPinCompleteProps) => void;\n /** Function that will be called when the input is completed */\n onComplete?: (props: OnInputPinCompleteProps) => void;\n /** The length of the code to be input. Default is 4 */\n codeLength?: number;\n /** @deprecated Use codeLength instead */\n length?: number;\n /** Property for changing the size of the input */\n size?: \"xl\" | \"lg\" | \"md\" | \"sm\" | \"xs\";\n /** @deprecated Use disabled and error props instead */\n state?: \"default\" | \"hover\" | \"disable\" | \"error\";\n /** Property for disabling the control */\n disabled?: boolean;\n /** Property for displaying an error state */\n error?: boolean;\n /** Property for displaying a label above the input */\n label?: string;\n /** Property for displaying an error message */\n errorMessage?: string;\n /** @deprecated Use errorMessage instead */\n errorLabel?: string;\n /** Whether to hide the text (like a password field) */\n secureTextEntry?: boolean;\n /** Show dot placeholders in empty inputs */\n showPlaceholderDots?: boolean;\n /** Expands input cells to fill the width of the container */\n flexibleWidth?: boolean;\n /** Boolean value indicating if the input is filled or not */\n isComplete?: boolean;\n /** The current focused input index */\n currentFocus?: number;\n /** Function to add a ref to an input element */\n addRef?: (index: number) => (element: HTMLInputElement | null) => void;\n /** Test identifier for the component */\n testID?: string;\n /** Accessible label for screen readers (use when no visible label) */\n \"aria-label\"?: string;\n}\n\nexport const InputPin: React.FC<InputPinProps> = ({\n value = \"\",\n onChange,\n onComplete,\n codeLength,\n length = 4,\n size = \"md\",\n state: externalState,\n disabled: disabledProp,\n error: errorProp,\n label,\n errorMessage,\n errorLabel,\n secureTextEntry = false,\n showPlaceholderDots = true,\n flexibleWidth = false,\n isComplete: isCompleteProp,\n currentFocus,\n addRef,\n testID,\n \"aria-label\": ariaLabel,\n themeMode,\n themeProductContext,\n}) => {\n const { theme } = useResolvedTheme({ themeMode, themeProductContext });\n const uniqueId = useId();\n const [focusedIndex, setFocusedIndex] = useState<number | null>(null);\n const [internalValue, setInternalValue] = useState(value);\n\n // Support both codeLength (new) and length (deprecated)\n const actualLength = codeLength ?? length;\n\n // Support both errorMessage (new) and errorLabel (deprecated)\n const errorText = errorMessage ?? errorLabel;\n\n // Support both new props and deprecated state prop\n // Error state is true if error prop is set, or errorMessage is provided, or state is \"error\"\n const isError = errorProp ?? (!!errorText || externalState === \"error\");\n const isDisabled = disabledProp ?? externalState === \"disable\";\n const isHover = externalState === \"hover\";\n const sizeStyles = theme.sizing.inputPin(size);\n const inputColors = theme.colors.control.input;\n\n const inputs = useRef<(HTMLInputElement | null)[]>([]);\n\n // Sync internal value with external value\n useEffect(() => {\n setInternalValue(value);\n }, [value]);\n\n // Handle currentFocus prop\n useEffect(() => {\n if (\n currentFocus !== undefined &&\n currentFocus >= 0 &&\n currentFocus < actualLength\n ) {\n inputs.current[currentFocus]?.focus();\n }\n }, [currentFocus, actualLength]);\n\n // Calculate isComplete status\n const checkIsComplete = useCallback(\n (val: string) => val.length >= actualLength,\n [actualLength]\n );\n\n // IDs for accessibility\n const labelId = `${uniqueId}-label`;\n const errorId = `${uniqueId}-error`;\n\n const handleTextChange = (text: string, index: number) => {\n // Filter to only alphanumeric characters\n const sanitizedText = text.replace(/[^0-9a-zA-Z]/g, \"\");\n\n // Handle multi-character input (paste on React Native)\n if (sanitizedText.length > 1) {\n const pastedData = sanitizedText.slice(0, actualLength - index);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n // Fill in characters starting from current index\n for (let i = 0; i < pastedData.length && index + i < actualLength; i++) {\n newValue[index + i] = pastedData[i];\n }\n\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the next empty input or the last input\n const nextIndex = Math.min(index + pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n return;\n }\n\n // Handle single character input\n const char = sanitizedText.slice(-1);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n newValue[index] = char;\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n if (char && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handleKeyDown = (\n e: React.KeyboardEvent<HTMLInputElement>,\n index: number\n ) => {\n if (e.key === \"Backspace\") {\n if (!internalValue[index] && index > 0) {\n inputs.current[index - 1]?.focus();\n }\n } else if (e.key === \"ArrowLeft\" && index > 0) {\n inputs.current[index - 1]?.focus();\n } else if (e.key === \"ArrowRight\" && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handlePaste = (e: React.ClipboardEvent) => {\n e.preventDefault();\n const pastedData = e.clipboardData\n .getData(\"text\")\n .replace(/[^0-9a-zA-Z]/g, \"\")\n .slice(0, actualLength);\n setInternalValue(pastedData);\n\n const complete = checkIsComplete(pastedData);\n const changeProps = { isComplete: complete, value: pastedData };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the last filled input or the first empty one\n const nextIndex = Math.min(pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n };\n\n // Handler for storing refs that can be provided to addRef prop\n const handleRef = (index: number) => (element: HTMLInputElement | null) => {\n inputs.current[index] = element;\n addRef?.(index)(element);\n };\n\n const pinItems = Array.from({ length: actualLength }).map((_, index) => {\n const char = internalValue[index] || \"\";\n const isFocused = focusedIndex === index;\n\n let backgroundColor = inputColors.bg;\n let borderColor = inputColors.border;\n\n if (isDisabled) {\n backgroundColor = inputColors.bgDisable;\n borderColor = inputColors.borderDisable;\n } else if (isError) {\n borderColor = theme.colors.border.alert;\n backgroundColor = isFocused\n ? theme.colors.control.focus.bg\n : inputColors.bg;\n } else if (isFocused) {\n backgroundColor = theme.colors.control.focus.bg;\n borderColor = theme.colors.content.brand.secondary;\n } else if (isHover) {\n backgroundColor = inputColors.bgHover;\n borderColor = inputColors.borderHover;\n } else {\n backgroundColor = inputColors.bg;\n borderColor = inputColors.border;\n }\n\n const textColor = isDisabled ? inputColors.textDisable : inputColors.text;\n\n return (\n <Box\n key={index}\n width={flexibleWidth ? undefined : sizeStyles.size}\n height={sizeStyles.size}\n flex={flexibleWidth ? 1 : undefined}\n backgroundColor={backgroundColor}\n borderColor={borderColor}\n borderWidth={sizeStyles.borderWidth}\n borderRadius={sizeStyles.radius}\n alignItems=\"center\"\n justifyContent=\"center\"\n hoverStyle={\n !isDisabled && !isFocused && !isError\n ? {\n backgroundColor: inputColors.bgHover,\n borderColor: inputColors.borderHover,\n }\n : undefined\n }\n >\n <InputPrimitive\n ref={\n addRef\n ? handleRef(index)\n : (el: any) => (inputs.current[index] = el)\n }\n value={char}\n placeholder={showPlaceholderDots && !isFocused ? \"•\" : undefined}\n onChangeText={(text: string) => handleTextChange(text, index)}\n onFocus={() => setFocusedIndex(index)}\n onBlur={() => setFocusedIndex(null)}\n onKeyDown={(e: any) => handleKeyDown(e, index)}\n disabled={isDisabled}\n secureTextEntry={secureTextEntry}\n color={textColor}\n placeholderTextColor={inputColors.placeholder}\n fontSize={sizeStyles.fontSize}\n style={{ textAlign: \"center\" }}\n maxLength={1}\n inputMode=\"numeric\"\n autoComplete=\"one-time-code\"\n aria-label={\n ariaLabel\n ? `${ariaLabel} digit ${index + 1}`\n : `PIN digit ${index + 1}`\n }\n aria-invalid={isError}\n aria-describedby={isError && errorText ? errorId : undefined}\n data-testid={\n testID ? `${testID}-input-${index}` : `input-pin-input-${index}`\n }\n />\n </Box>\n );\n });\n\n return (\n <Box\n flexDirection=\"column\"\n gap={sizeStyles.fieldGap}\n data-testid={testID || \"input-pin\"}\n role=\"group\"\n aria-labelledby={label ? labelId : undefined}\n aria-label={!label && ariaLabel ? ariaLabel : undefined}\n >\n {label && (\n <Text\n id={labelId}\n color={theme.colors.content.secondary}\n fontSize={sizeStyles.fontSize - 2}\n fontWeight=\"500\"\n >\n {label}\n </Text>\n )}\n <Box\n flexDirection=\"row\"\n gap={sizeStyles.gap}\n onPaste={handlePaste}\n width={flexibleWidth ? \"100%\" : undefined}\n >\n {pinItems}\n </Box>\n {isError && errorText && (\n <Text\n id={errorId}\n role=\"alert\"\n color={theme.colors.content.alert.primary}\n fontSize={sizeStyles.fontSize - 2}\n >\n {errorText}\n </Text>\n )}\n </Box>\n );\n};\n","import React from \"react\";\nimport {\n View,\n Pressable,\n Image,\n ViewStyle,\n ImageStyle,\n DimensionValue,\n AnimatableNumericValue,\n} from \"react-native\";\nimport { BoxProps } from \"@xsolla/xui-primitives-core\";\n\nexport const Box: React.FC<BoxProps> = ({\n children,\n onPress,\n onLayout,\n onMoveShouldSetResponder,\n onResponderGrant,\n onResponderMove,\n onResponderRelease,\n onResponderTerminate,\n backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius,\n borderStyle,\n height,\n padding,\n paddingHorizontal,\n paddingVertical,\n margin,\n marginTop,\n marginBottom,\n marginLeft,\n marginRight,\n flexDirection,\n alignItems,\n justifyContent,\n position,\n top,\n bottom,\n left,\n right,\n width,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight,\n flex,\n overflow,\n zIndex,\n hoverStyle,\n pressStyle,\n style,\n \"data-testid\": dataTestId,\n testID,\n as,\n src,\n alt,\n ...rest\n}) => {\n const getContainerStyle = (pressed?: boolean): ViewStyle => ({\n backgroundColor:\n pressed && pressStyle?.backgroundColor\n ? pressStyle.backgroundColor\n : backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius: borderRadius as AnimatableNumericValue,\n borderStyle: borderStyle as ViewStyle[\"borderStyle\"],\n overflow,\n zIndex,\n height: height as DimensionValue,\n width: width as DimensionValue,\n minWidth: minWidth as DimensionValue,\n minHeight: minHeight as DimensionValue,\n maxWidth: maxWidth as DimensionValue,\n maxHeight: maxHeight as DimensionValue,\n padding: padding as DimensionValue,\n paddingHorizontal: paddingHorizontal as DimensionValue,\n paddingVertical: paddingVertical as DimensionValue,\n margin: margin as DimensionValue,\n marginTop: marginTop as DimensionValue,\n marginBottom: marginBottom as DimensionValue,\n marginLeft: marginLeft as DimensionValue,\n marginRight: marginRight as DimensionValue,\n flexDirection,\n alignItems,\n justifyContent,\n position: position as ViewStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n flex,\n ...(style as ViewStyle),\n });\n\n const finalTestID = dataTestId || testID;\n\n // Destructure and drop web-only props from rest before passing to RN components\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const {\n role,\n tabIndex,\n onKeyDown,\n onKeyUp,\n \"aria-label\": _ariaLabel,\n \"aria-labelledby\": _ariaLabelledBy,\n \"aria-current\": _ariaCurrent,\n \"aria-disabled\": _ariaDisabled,\n \"aria-live\": _ariaLive,\n className,\n \"data-testid\": _dataTestId,\n ...nativeRest\n } = rest as Record<string, unknown>;\n\n // Handle as=\"img\" for React Native\n if (as === \"img\" && src) {\n const imageStyle: ImageStyle = {\n width: width as DimensionValue,\n height: height as DimensionValue,\n borderRadius: borderRadius as number,\n position: position as ImageStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n ...(style as ImageStyle),\n };\n\n return (\n <Image\n source={{ uri: src }}\n style={imageStyle}\n testID={finalTestID}\n resizeMode=\"cover\"\n {...nativeRest}\n />\n );\n }\n\n if (onPress) {\n return (\n <Pressable\n onPress={onPress}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n style={({ pressed }) => getContainerStyle(pressed)}\n testID={finalTestID}\n {...nativeRest}\n >\n {children}\n </Pressable>\n );\n }\n\n return (\n <View\n style={getContainerStyle()}\n testID={finalTestID}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n {...nativeRest}\n >\n {children}\n </View>\n );\n};\n","import React from \"react\";\nimport {\n Text as RNText,\n TextStyle,\n AccessibilityRole,\n StyleSheet,\n} from \"react-native\";\nimport { TextProps } from \"@xsolla/xui-primitives-core\";\n\nconst roleMap: Record<string, AccessibilityRole> = {\n alert: \"alert\",\n heading: \"header\",\n button: \"button\",\n link: \"link\",\n text: \"text\",\n};\n\nconst parseNumericValue = (\n value: string | number | undefined\n): number | undefined => {\n if (value === undefined) return undefined;\n if (typeof value === \"number\") return value;\n const parsed = parseFloat(value);\n return isNaN(parsed) ? undefined : parsed;\n};\n\nexport const Text: React.FC<TextProps> = ({\n children,\n color,\n fontSize,\n fontWeight,\n fontFamily,\n textAlign,\n lineHeight,\n numberOfLines,\n id,\n role,\n style: styleProp,\n ...props\n}) => {\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n const incomingStyle = StyleSheet.flatten(styleProp) as TextStyle | undefined;\n\n const baseStyle: TextStyle = {\n color: color ?? incomingStyle?.color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontWeight: fontWeight as TextStyle[\"fontWeight\"],\n fontFamily: resolvedFontFamily,\n textDecorationLine: props.textDecoration as TextStyle[\"textDecorationLine\"],\n textAlign: textAlign ?? incomingStyle?.textAlign,\n lineHeight: parseNumericValue(lineHeight ?? incomingStyle?.lineHeight),\n marginTop: parseNumericValue(\n incomingStyle?.marginTop as number | string | undefined\n ),\n marginBottom: parseNumericValue(\n incomingStyle?.marginBottom as number | string | undefined\n ),\n };\n\n const accessibilityRole = role ? roleMap[role] : undefined;\n\n return (\n <RNText\n style={baseStyle}\n numberOfLines={numberOfLines}\n testID={id}\n accessibilityRole={accessibilityRole}\n >\n {children}\n </RNText>\n );\n};\n","import React, { forwardRef } from \"react\";\nimport { TextInput as RNTextInput } from \"react-native\";\nimport { InputPrimitiveProps } from \"@xsolla/xui-primitives-core\";\n\n// Map web input types to React Native keyboard types\nconst keyboardTypeMap: Record<string, any> = {\n text: \"default\",\n number: \"numeric\",\n email: \"email-address\",\n tel: \"phone-pad\",\n url: \"url\",\n decimal: \"decimal-pad\",\n};\n\n// Map web inputMode to React Native keyboard types\nconst inputModeToKeyboardType: Record<string, any> = {\n none: \"default\",\n text: \"default\",\n decimal: \"decimal-pad\",\n numeric: \"number-pad\",\n tel: \"phone-pad\",\n search: \"default\",\n email: \"email-address\",\n url: \"url\",\n};\n\n// Map web autoComplete to React Native textContentType (iOS)\nconst autoCompleteToTextContentType: Record<string, any> = {\n \"one-time-code\": \"oneTimeCode\",\n email: \"emailAddress\",\n username: \"username\",\n password: \"password\",\n \"new-password\": \"newPassword\",\n tel: \"telephoneNumber\",\n \"postal-code\": \"postalCode\",\n name: \"name\",\n};\n\nexport const InputPrimitive = forwardRef<RNTextInput, InputPrimitiveProps>(\n (\n {\n value,\n placeholder,\n onChange,\n onChangeText,\n onFocus,\n onBlur,\n onKeyDown,\n disabled,\n secureTextEntry,\n style,\n color,\n fontSize,\n fontFamily,\n placeholderTextColor,\n maxLength,\n type,\n inputMode,\n autoComplete,\n id,\n \"aria-describedby\": ariaDescribedBy,\n \"aria-label\": ariaLabel,\n \"aria-disabled\": ariaDisabled,\n \"data-testid\": dataTestId,\n },\n ref\n ) => {\n const handleChangeText = (text: string) => {\n onChangeText?.(text);\n\n // Create a synthetic event for onChange compatibility\n // Include nativeEvent and no-op methods to prevent runtime errors\n // when consumers expect DOM-like event behavior\n if (onChange) {\n const syntheticEvent = {\n target: { value: text },\n currentTarget: { value: text },\n type: \"change\",\n nativeEvent: { text },\n preventDefault: () => {},\n stopPropagation: () => {},\n isTrusted: false,\n } as unknown as React.ChangeEvent<HTMLInputElement>;\n onChange(syntheticEvent);\n }\n };\n\n // Determine keyboard type - inputMode takes precedence over type\n const keyboardType = inputMode\n ? inputModeToKeyboardType[inputMode] || \"default\"\n : type\n ? keyboardTypeMap[type] || \"default\"\n : \"default\";\n\n // Determine textContentType for iOS autofill\n const textContentType = autoComplete\n ? autoCompleteToTextContentType[autoComplete]\n : undefined;\n\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n return (\n <RNTextInput\n ref={ref}\n value={value}\n placeholder={placeholder}\n onChangeText={handleChangeText}\n onFocus={onFocus}\n onBlur={onBlur}\n onKeyPress={(e) => {\n // Map onKeyPress to onKeyDown for cross-platform compatibility\n // Include preventDefault to avoid runtime errors when consumers call it\n if (onKeyDown) {\n onKeyDown({\n key: e.nativeEvent.key,\n preventDefault: () => {},\n } as any);\n }\n }}\n editable={!disabled}\n secureTextEntry={secureTextEntry || type === \"password\"}\n keyboardType={keyboardType}\n textContentType={textContentType}\n style={[\n {\n color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontFamily: resolvedFontFamily,\n flex: 1,\n padding: 0,\n textAlign: (style as any)?.textAlign || \"left\",\n },\n style as any,\n ]}\n placeholderTextColor={placeholderTextColor}\n maxLength={maxLength}\n // React Native accessibility props\n testID={dataTestId || id}\n accessibilityLabel={ariaLabel}\n accessibilityHint={ariaDescribedBy}\n accessibilityState={{\n disabled: disabled || ariaDisabled,\n }}\n accessible={true}\n />\n );\n }\n);\n\nInputPrimitive.displayName = \"InputPrimitive\";\n"],"mappings":"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","names":["jsx","jsx","jsx","newValue","updatedValue","complete","changeProps"]}
1
+ {"version":3,"sources":["../../src/InputPin.tsx","../../../../foundation/primitives-native/src/Box.tsx","../../../../foundation/primitives-native/src/Text.tsx","../../../../foundation/primitives-native/src/Input.tsx"],"sourcesContent":["import React, { useState, useRef, useEffect, useCallback } from \"react\";\n// @ts-expect-error - this will be resolved at build time\nimport { Box, Text, InputPrimitive } from \"@xsolla/xui-primitives\";\nimport {\n useResolvedTheme,\n useId,\n type ThemeOverrideProps,\n} from \"@xsolla/xui-core\";\n\nexport interface OnInputPinCompleteProps {\n isComplete: boolean;\n value: string;\n}\n\nexport interface InputPinProps extends ThemeOverrideProps {\n /** Current value of the input pin */\n value?: string;\n /** Function that will be called when the input value changes */\n onChange?: (props: OnInputPinCompleteProps) => void;\n /** Function that will be called when the input is completed */\n onComplete?: (props: OnInputPinCompleteProps) => void;\n /** The length of the code to be input. Default is 4 */\n codeLength?: number;\n /** @deprecated Use codeLength instead */\n length?: number;\n /** Property for changing the size of the input */\n size?: \"xl\" | \"lg\" | \"md\" | \"sm\" | \"xs\";\n /** @deprecated Use disabled and error props instead */\n state?: \"default\" | \"hover\" | \"disable\" | \"error\";\n /** Property for disabling the control */\n disabled?: boolean;\n /** Property for displaying an error state */\n error?: boolean;\n /** Property for displaying a label above the input */\n label?: string;\n /** Property for displaying an error message */\n errorMessage?: string;\n /** @deprecated Use errorMessage instead */\n errorLabel?: string;\n /** Whether to hide the text (like a password field) */\n secureTextEntry?: boolean;\n /** Show dot placeholders in empty inputs */\n showPlaceholderDots?: boolean;\n /** Expands input cells to fill the width of the container */\n flexibleWidth?: boolean;\n /** Boolean value indicating if the input is filled or not */\n isComplete?: boolean;\n /** The current focused input index */\n currentFocus?: number;\n /** Function to add a ref to an input element */\n addRef?: (index: number) => (element: HTMLInputElement | null) => void;\n /** Test identifier for the component */\n testID?: string;\n /** Accessible label for screen readers (use when no visible label) */\n \"aria-label\"?: string;\n}\n\nexport const InputPin: React.FC<InputPinProps> = ({\n value = \"\",\n onChange,\n onComplete,\n codeLength,\n length = 4,\n size = \"md\",\n state: externalState,\n disabled: disabledProp,\n error: errorProp,\n label,\n errorMessage,\n errorLabel,\n secureTextEntry = false,\n showPlaceholderDots = true,\n flexibleWidth = false,\n isComplete: isCompleteProp,\n currentFocus,\n addRef,\n testID,\n \"aria-label\": ariaLabel,\n themeMode,\n themeProductContext,\n}) => {\n const { theme } = useResolvedTheme({ themeMode, themeProductContext });\n const uniqueId = useId();\n const [focusedIndex, setFocusedIndex] = useState<number | null>(null);\n const [internalValue, setInternalValue] = useState(value);\n\n // Support both codeLength (new) and length (deprecated)\n const actualLength = codeLength ?? length;\n\n // Support both errorMessage (new) and errorLabel (deprecated)\n const errorText = errorMessage ?? errorLabel;\n\n // Support both new props and deprecated state prop\n // Error state is true if error prop is set, or errorMessage is provided, or state is \"error\"\n const isError = errorProp ?? (!!errorText || externalState === \"error\");\n const isDisabled = disabledProp ?? externalState === \"disable\";\n const isHover = externalState === \"hover\";\n const sizeStyles = theme.sizing.inputPin(size);\n const inputColors = theme.colors.control.input;\n\n const inputs = useRef<(HTMLInputElement | null)[]>([]);\n\n // Sync internal value with external value\n useEffect(() => {\n setInternalValue(value);\n }, [value]);\n\n // Handle currentFocus prop\n useEffect(() => {\n if (\n currentFocus !== undefined &&\n currentFocus >= 0 &&\n currentFocus < actualLength\n ) {\n inputs.current[currentFocus]?.focus();\n }\n }, [currentFocus, actualLength]);\n\n // Calculate isComplete status\n const checkIsComplete = useCallback(\n (val: string) => val.length >= actualLength,\n [actualLength]\n );\n\n // IDs for accessibility\n const labelId = `${uniqueId}-label`;\n const errorId = `${uniqueId}-error`;\n\n const handleTextChange = (text: string, index: number) => {\n // Filter to only alphanumeric characters\n const sanitizedText = text.replace(/[^0-9a-zA-Z]/g, \"\");\n\n // Handle multi-character input (paste on React Native)\n if (sanitizedText.length > 1) {\n const pastedData = sanitizedText.slice(0, actualLength - index);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n // Fill in characters starting from current index\n for (let i = 0; i < pastedData.length && index + i < actualLength; i++) {\n newValue[index + i] = pastedData[i];\n }\n\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the next empty input or the last input\n const nextIndex = Math.min(index + pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n return;\n }\n\n // Handle single character input\n const char = sanitizedText.slice(-1);\n const newValue = internalValue.split(\"\");\n\n // Ensure the array has the correct length\n while (newValue.length < actualLength) {\n newValue.push(\"\");\n }\n\n newValue[index] = char;\n const updatedValue = newValue.slice(0, actualLength).join(\"\");\n setInternalValue(updatedValue);\n\n const complete = checkIsComplete(updatedValue);\n const changeProps = { isComplete: complete, value: updatedValue };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n if (char && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handleKeyDown = (\n e: React.KeyboardEvent<HTMLInputElement>,\n index: number\n ) => {\n if (e.key === \"Backspace\") {\n if (!internalValue[index] && index > 0) {\n inputs.current[index - 1]?.focus();\n }\n } else if (e.key === \"ArrowLeft\" && index > 0) {\n inputs.current[index - 1]?.focus();\n } else if (e.key === \"ArrowRight\" && index < actualLength - 1) {\n inputs.current[index + 1]?.focus();\n }\n };\n\n const handlePaste = (e: React.ClipboardEvent) => {\n e.preventDefault();\n const pastedData = e.clipboardData\n .getData(\"text\")\n .replace(/[^0-9a-zA-Z]/g, \"\")\n .slice(0, actualLength);\n setInternalValue(pastedData);\n\n const complete = checkIsComplete(pastedData);\n const changeProps = { isComplete: complete, value: pastedData };\n\n onChange?.(changeProps);\n\n if (complete) {\n onComplete?.(changeProps);\n }\n\n // Focus the last filled input or the first empty one\n const nextIndex = Math.min(pastedData.length, actualLength - 1);\n inputs.current[nextIndex]?.focus();\n };\n\n // Handler for storing refs that can be provided to addRef prop\n const handleRef = (index: number) => (element: HTMLInputElement | null) => {\n inputs.current[index] = element;\n addRef?.(index)(element);\n };\n\n const pinItems = Array.from({ length: actualLength }).map((_, index) => {\n const char = internalValue[index] || \"\";\n const isFocused = focusedIndex === index;\n\n let backgroundColor = inputColors.bg;\n let borderColor = inputColors.border;\n\n if (isDisabled) {\n backgroundColor = inputColors.bgDisable;\n borderColor = inputColors.borderDisable;\n } else if (isError) {\n borderColor = theme.colors.border.alert;\n backgroundColor = isFocused\n ? theme.colors.control.focus.bg\n : inputColors.bg;\n } else if (isFocused) {\n backgroundColor = theme.colors.control.focus.bg;\n borderColor = theme.colors.content.brand.secondary;\n } else if (isHover) {\n backgroundColor = inputColors.bgHover;\n borderColor = inputColors.borderHover;\n } else {\n backgroundColor = inputColors.bg;\n borderColor = inputColors.border;\n }\n\n const textColor = isDisabled ? inputColors.textDisable : inputColors.text;\n\n return (\n <Box\n key={index}\n width={flexibleWidth ? undefined : sizeStyles.size}\n height={sizeStyles.size}\n flex={flexibleWidth ? 1 : undefined}\n backgroundColor={backgroundColor}\n borderColor={borderColor}\n borderWidth={sizeStyles.borderWidth}\n borderRadius={sizeStyles.radius}\n alignItems=\"center\"\n justifyContent=\"center\"\n hoverStyle={\n !isDisabled && !isFocused && !isError\n ? {\n backgroundColor: inputColors.bgHover,\n borderColor: inputColors.borderHover,\n }\n : undefined\n }\n >\n <InputPrimitive\n ref={\n addRef\n ? handleRef(index)\n : (el: any) => (inputs.current[index] = el)\n }\n value={char}\n placeholder={showPlaceholderDots && !isFocused ? \"•\" : undefined}\n onChangeText={(text: string) => handleTextChange(text, index)}\n onFocus={() => setFocusedIndex(index)}\n onBlur={() => setFocusedIndex(null)}\n onKeyDown={(e: any) => handleKeyDown(e, index)}\n disabled={isDisabled}\n secureTextEntry={secureTextEntry}\n color={textColor}\n placeholderTextColor={inputColors.placeholder}\n fontSize={sizeStyles.fontSize}\n style={{ textAlign: \"center\" }}\n maxLength={1}\n inputMode=\"numeric\"\n autoComplete=\"one-time-code\"\n aria-label={\n ariaLabel\n ? `${ariaLabel} digit ${index + 1}`\n : `PIN digit ${index + 1}`\n }\n aria-invalid={isError}\n aria-describedby={isError && errorText ? errorId : undefined}\n data-testid={\n testID ? `${testID}-input-${index}` : `input-pin-input-${index}`\n }\n />\n </Box>\n );\n });\n\n return (\n <Box\n flexDirection=\"column\"\n gap={sizeStyles.fieldGap}\n data-testid={testID || \"input-pin\"}\n role=\"group\"\n aria-labelledby={label ? labelId : undefined}\n aria-label={!label && ariaLabel ? ariaLabel : undefined}\n >\n {label && (\n <Text\n id={labelId}\n color={theme.colors.content.secondary}\n fontSize={sizeStyles.fontSize - 2}\n fontWeight=\"500\"\n >\n {label}\n </Text>\n )}\n <Box\n flexDirection=\"row\"\n gap={sizeStyles.gap}\n onPaste={handlePaste}\n width={flexibleWidth ? \"100%\" : undefined}\n >\n {pinItems}\n </Box>\n {isError && errorText && (\n <Text\n id={errorId}\n role=\"alert\"\n color={theme.colors.content.alert.primary}\n fontSize={sizeStyles.fontSize - 2}\n >\n {errorText}\n </Text>\n )}\n </Box>\n );\n};\n","import React from \"react\";\nimport {\n View,\n Pressable,\n Image,\n ViewStyle,\n ImageStyle,\n DimensionValue,\n AnimatableNumericValue,\n} from \"react-native\";\nimport { BoxProps } from \"@xsolla/xui-primitives-core\";\n\nexport const Box: React.FC<BoxProps> = ({\n children,\n onPress,\n onLayout,\n onMoveShouldSetResponder,\n onResponderGrant,\n onResponderMove,\n onResponderRelease,\n onResponderTerminate,\n backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius,\n borderStyle,\n height,\n padding,\n paddingHorizontal,\n paddingVertical,\n margin,\n marginTop,\n marginBottom,\n marginLeft,\n marginRight,\n flexDirection,\n alignItems,\n justifyContent,\n position,\n top,\n bottom,\n left,\n right,\n width,\n minWidth,\n minHeight,\n maxWidth,\n maxHeight,\n flex,\n overflow,\n zIndex,\n hoverStyle,\n pressStyle,\n style,\n \"data-testid\": dataTestId,\n testID,\n as,\n src,\n alt,\n ...rest\n}) => {\n const getContainerStyle = (pressed?: boolean): ViewStyle => ({\n backgroundColor:\n pressed && pressStyle?.backgroundColor\n ? pressStyle.backgroundColor\n : backgroundColor,\n borderColor,\n borderWidth,\n borderBottomWidth,\n borderBottomColor,\n borderTopWidth,\n borderTopColor,\n borderLeftWidth,\n borderLeftColor,\n borderRightWidth,\n borderRightColor,\n borderRadius: borderRadius as AnimatableNumericValue,\n borderStyle: borderStyle as ViewStyle[\"borderStyle\"],\n overflow,\n zIndex,\n height: height as DimensionValue,\n width: width as DimensionValue,\n minWidth: minWidth as DimensionValue,\n minHeight: minHeight as DimensionValue,\n maxWidth: maxWidth as DimensionValue,\n maxHeight: maxHeight as DimensionValue,\n padding: padding as DimensionValue,\n paddingHorizontal: paddingHorizontal as DimensionValue,\n paddingVertical: paddingVertical as DimensionValue,\n margin: margin as DimensionValue,\n marginTop: marginTop as DimensionValue,\n marginBottom: marginBottom as DimensionValue,\n marginLeft: marginLeft as DimensionValue,\n marginRight: marginRight as DimensionValue,\n flexDirection,\n alignItems,\n justifyContent,\n position: position as ViewStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n flex,\n ...(style as ViewStyle),\n });\n\n const finalTestID = dataTestId || testID;\n\n // Destructure and drop web-only props from rest before passing to RN components\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const {\n role,\n tabIndex,\n onKeyDown,\n onKeyUp,\n \"aria-label\": _ariaLabel,\n \"aria-labelledby\": _ariaLabelledBy,\n \"aria-current\": _ariaCurrent,\n \"aria-disabled\": _ariaDisabled,\n \"aria-live\": _ariaLive,\n className,\n \"data-testid\": _dataTestId,\n ...nativeRest\n } = rest as Record<string, unknown>;\n\n // Handle as=\"img\" for React Native\n if (as === \"img\" && src) {\n const imageStyle: ImageStyle = {\n width: width as DimensionValue,\n height: height as DimensionValue,\n borderRadius: borderRadius as number,\n position: position as ImageStyle[\"position\"],\n top: top as DimensionValue,\n bottom: bottom as DimensionValue,\n left: left as DimensionValue,\n right: right as DimensionValue,\n ...(style as ImageStyle),\n };\n\n return (\n <Image\n source={{ uri: src }}\n style={imageStyle}\n testID={finalTestID}\n resizeMode=\"cover\"\n {...nativeRest}\n />\n );\n }\n\n if (onPress) {\n return (\n <Pressable\n onPress={onPress}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n style={({ pressed }) => getContainerStyle(pressed)}\n testID={finalTestID}\n {...nativeRest}\n >\n {children}\n </Pressable>\n );\n }\n\n return (\n <View\n style={getContainerStyle()}\n testID={finalTestID}\n onLayout={onLayout}\n onMoveShouldSetResponder={onMoveShouldSetResponder}\n onResponderGrant={onResponderGrant}\n onResponderMove={onResponderMove}\n onResponderRelease={onResponderRelease}\n onResponderTerminate={onResponderTerminate}\n {...nativeRest}\n >\n {children}\n </View>\n );\n};\n","import React from \"react\";\nimport {\n Text as RNText,\n TextStyle,\n AccessibilityRole,\n StyleSheet,\n} from \"react-native\";\nimport { TextProps } from \"@xsolla/xui-primitives-core\";\n\nconst roleMap: Record<string, AccessibilityRole> = {\n alert: \"alert\",\n heading: \"header\",\n button: \"button\",\n link: \"link\",\n text: \"text\",\n};\n\nconst parseNumericValue = (\n value: string | number | undefined\n): number | undefined => {\n if (value === undefined) return undefined;\n if (typeof value === \"number\") return value;\n const parsed = parseFloat(value);\n return isNaN(parsed) ? undefined : parsed;\n};\n\nexport const Text: React.FC<TextProps> = ({\n children,\n color,\n fontSize,\n fontWeight,\n fontFamily,\n textAlign,\n lineHeight,\n numberOfLines,\n id,\n role,\n style: styleProp,\n ...props\n}) => {\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n const incomingStyle = StyleSheet.flatten(styleProp) as TextStyle | undefined;\n\n const baseStyle: TextStyle = {\n color: color ?? incomingStyle?.color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontWeight: fontWeight as TextStyle[\"fontWeight\"],\n fontFamily: resolvedFontFamily,\n textDecorationLine: props.textDecoration as TextStyle[\"textDecorationLine\"],\n textAlign: textAlign ?? incomingStyle?.textAlign,\n lineHeight: parseNumericValue(lineHeight ?? incomingStyle?.lineHeight),\n marginTop: parseNumericValue(\n incomingStyle?.marginTop as number | string | undefined\n ),\n marginBottom: parseNumericValue(\n incomingStyle?.marginBottom as number | string | undefined\n ),\n };\n\n const accessibilityRole = role ? roleMap[role] : undefined;\n\n return (\n <RNText\n style={baseStyle}\n numberOfLines={numberOfLines}\n testID={id}\n accessibilityRole={accessibilityRole}\n >\n {children}\n </RNText>\n );\n};\n","import React, { forwardRef } from \"react\";\nimport { TextInput as RNTextInput } from \"react-native\";\nimport { InputPrimitiveProps } from \"@xsolla/xui-primitives-core\";\n\n// Map web input types to React Native keyboard types\nconst keyboardTypeMap: Record<string, any> = {\n text: \"default\",\n number: \"numeric\",\n email: \"email-address\",\n tel: \"phone-pad\",\n url: \"url\",\n decimal: \"decimal-pad\",\n};\n\n// Map web inputMode to React Native keyboard types\nconst inputModeToKeyboardType: Record<string, any> = {\n none: \"default\",\n text: \"default\",\n decimal: \"decimal-pad\",\n numeric: \"number-pad\",\n tel: \"phone-pad\",\n search: \"default\",\n email: \"email-address\",\n url: \"url\",\n};\n\n// Map web autoComplete to React Native textContentType (iOS)\nconst autoCompleteToTextContentType: Record<string, any> = {\n \"one-time-code\": \"oneTimeCode\",\n email: \"emailAddress\",\n username: \"username\",\n password: \"password\",\n \"new-password\": \"newPassword\",\n tel: \"telephoneNumber\",\n \"postal-code\": \"postalCode\",\n name: \"name\",\n};\n\nexport const InputPrimitive = forwardRef<RNTextInput, InputPrimitiveProps>(\n (\n {\n value,\n placeholder,\n onChange,\n onChangeText,\n onFocus,\n onBlur,\n onKeyDown,\n disabled,\n secureTextEntry,\n style,\n color,\n fontSize,\n fontFamily,\n placeholderTextColor,\n maxLength,\n type,\n inputMode,\n autoComplete,\n id,\n \"aria-describedby\": ariaDescribedBy,\n \"aria-label\": ariaLabel,\n \"aria-disabled\": ariaDisabled,\n \"data-testid\": dataTestId,\n },\n ref\n ) => {\n const handleChangeText = (text: string) => {\n onChangeText?.(text);\n\n // Create a synthetic event for onChange compatibility\n // Include nativeEvent and no-op methods to prevent runtime errors\n // when consumers expect DOM-like event behavior\n if (onChange) {\n const syntheticEvent = {\n target: { value: text },\n currentTarget: { value: text },\n type: \"change\",\n nativeEvent: { text },\n preventDefault: () => {},\n stopPropagation: () => {},\n isTrusted: false,\n } as unknown as React.ChangeEvent<HTMLInputElement>;\n onChange(syntheticEvent);\n }\n };\n\n // Determine keyboard type - inputMode takes precedence over type\n const keyboardType = inputMode\n ? inputModeToKeyboardType[inputMode] || \"default\"\n : type\n ? keyboardTypeMap[type] || \"default\"\n : \"default\";\n\n // Determine textContentType for iOS autofill\n const textContentType = autoComplete\n ? autoCompleteToTextContentType[autoComplete]\n : undefined;\n\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n if (\n resolvedFontFamily === \"Pilat Wide\" ||\n resolvedFontFamily === \"Pilat Wide Bold\" ||\n resolvedFontFamily === \"Aktiv Grotesk\"\n ) {\n resolvedFontFamily = undefined;\n }\n\n return (\n <RNTextInput\n ref={ref}\n value={value}\n placeholder={placeholder}\n onChangeText={handleChangeText}\n onFocus={onFocus}\n onBlur={onBlur}\n onKeyPress={(e) => {\n // Map onKeyPress to onKeyDown for cross-platform compatibility\n // Include preventDefault to avoid runtime errors when consumers call it\n if (onKeyDown) {\n onKeyDown({\n key: e.nativeEvent.key,\n preventDefault: () => {},\n } as any);\n }\n }}\n editable={!disabled}\n secureTextEntry={secureTextEntry || type === \"password\"}\n keyboardType={keyboardType}\n textContentType={textContentType}\n style={[\n {\n color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n fontFamily: resolvedFontFamily,\n flex: 1,\n padding: 0,\n textAlign: (style as any)?.textAlign || \"left\",\n },\n style as any,\n ]}\n placeholderTextColor={placeholderTextColor}\n maxLength={maxLength}\n // React Native accessibility props\n testID={dataTestId || id}\n accessibilityLabel={ariaLabel}\n accessibilityHint={ariaDescribedBy}\n accessibilityState={{\n disabled: disabled || ariaDisabled,\n }}\n accessible={true}\n />\n );\n }\n);\n\nInputPrimitive.displayName = \"InputPrimitive\";\n"],"mappings":"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","names":["jsx","jsx","jsx","newValue","updatedValue","complete","changeProps"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xsolla/xui-input-pin",
3
- "version": "0.141.0",
3
+ "version": "0.141.1",
4
4
  "main": "./web/index.js",
5
5
  "module": "./web/index.mjs",
6
6
  "types": "./web/index.d.ts",
@@ -13,9 +13,9 @@
13
13
  "test:coverage": "vitest run --coverage"
14
14
  },
15
15
  "dependencies": {
16
- "@xsolla/xui-button": "0.141.0",
17
- "@xsolla/xui-core": "0.141.0",
18
- "@xsolla/xui-primitives-core": "0.141.0"
16
+ "@xsolla/xui-button": "0.141.1",
17
+ "@xsolla/xui-core": "0.141.1",
18
+ "@xsolla/xui-primitives-core": "0.141.1"
19
19
  },
20
20
  "peerDependencies": {
21
21
  "react": ">=16.8.0",
package/web/index.js CHANGED
@@ -37,14 +37,14 @@ module.exports = __toCommonJS(index_exports);
37
37
  // src/InputPin.tsx
38
38
  var import_react4 = require("react");
39
39
 
40
- // ../primitives-web/src/Box.tsx
40
+ // ../../foundation/primitives-web/src/Box.tsx
41
41
  var import_react2 = __toESM(require("react"));
42
42
  var import_styled_components = __toESM(require("styled-components"));
43
43
 
44
- // ../primitives-web/src/filterDOMProps.ts
44
+ // ../../foundation/primitives-web/src/filterDOMProps.ts
45
45
  var import_react = __toESM(require("react"));
46
46
 
47
- // ../../node_modules/@emotion/memoize/dist/memoize.esm.js
47
+ // ../../../node_modules/@emotion/memoize/dist/memoize.esm.js
48
48
  function memoize(fn) {
49
49
  var cache = {};
50
50
  return function(arg) {
@@ -54,7 +54,7 @@ function memoize(fn) {
54
54
  }
55
55
  var memoize_esm_default = memoize;
56
56
 
57
- // ../../node_modules/@emotion/is-prop-valid/dist/is-prop-valid.esm.js
57
+ // ../../../node_modules/@emotion/is-prop-valid/dist/is-prop-valid.esm.js
58
58
  var reactPropsRegex = /^((children|dangerouslySetInnerHTML|key|ref|autoFocus|defaultValue|defaultChecked|innerHTML|suppressContentEditableWarning|suppressHydrationWarning|valueLink|accept|acceptCharset|accessKey|action|allow|allowUserMedia|allowPaymentRequest|allowFullScreen|allowTransparency|alt|async|autoComplete|autoPlay|capture|cellPadding|cellSpacing|challenge|charSet|checked|cite|classID|className|cols|colSpan|content|contentEditable|contextMenu|controls|controlsList|coords|crossOrigin|data|dateTime|decoding|default|defer|dir|disabled|disablePictureInPicture|download|draggable|encType|form|formAction|formEncType|formMethod|formNoValidate|formTarget|frameBorder|headers|height|hidden|high|href|hrefLang|htmlFor|httpEquiv|id|inputMode|integrity|is|keyParams|keyType|kind|label|lang|list|loading|loop|low|marginHeight|marginWidth|max|maxLength|media|mediaGroup|method|min|minLength|multiple|muted|name|nonce|noValidate|open|optimum|pattern|placeholder|playsInline|poster|preload|profile|radioGroup|readOnly|referrerPolicy|rel|required|reversed|role|rows|rowSpan|sandbox|scope|scoped|scrolling|seamless|selected|shape|size|sizes|slot|span|spellCheck|src|srcDoc|srcLang|srcSet|start|step|style|summary|tabIndex|target|title|type|useMap|value|width|wmode|wrap|about|datatype|inlist|prefix|property|resource|typeof|vocab|autoCapitalize|autoCorrect|autoSave|color|inert|itemProp|itemScope|itemType|itemID|itemRef|on|results|security|unselectable|accentHeight|accumulate|additive|alignmentBaseline|allowReorder|alphabetic|amplitude|arabicForm|ascent|attributeName|attributeType|autoReverse|azimuth|baseFrequency|baselineShift|baseProfile|bbox|begin|bias|by|calcMode|capHeight|clip|clipPathUnits|clipPath|clipRule|colorInterpolation|colorInterpolationFilters|colorProfile|colorRendering|contentScriptType|contentStyleType|cursor|cx|cy|d|decelerate|descent|diffuseConstant|direction|display|divisor|dominantBaseline|dur|dx|dy|edgeMode|elevation|enableBackground|end|exponent|externalResourcesRequired|fill|fillOpacity|fillRule|filter|filterRes|filterUnits|floodColor|floodOpacity|focusable|fontFamily|fontSize|fontSizeAdjust|fontStretch|fontStyle|fontVariant|fontWeight|format|from|fr|fx|fy|g1|g2|glyphName|glyphOrientationHorizontal|glyphOrientationVertical|glyphRef|gradientTransform|gradientUnits|hanging|horizAdvX|horizOriginX|ideographic|imageRendering|in|in2|intercept|k|k1|k2|k3|k4|kernelMatrix|kernelUnitLength|kerning|keyPoints|keySplines|keyTimes|lengthAdjust|letterSpacing|lightingColor|limitingConeAngle|local|markerEnd|markerMid|markerStart|markerHeight|markerUnits|markerWidth|mask|maskContentUnits|maskUnits|mathematical|mode|numOctaves|offset|opacity|operator|order|orient|orientation|origin|overflow|overlinePosition|overlineThickness|panose1|paintOrder|pathLength|patternContentUnits|patternTransform|patternUnits|pointerEvents|points|pointsAtX|pointsAtY|pointsAtZ|preserveAlpha|preserveAspectRatio|primitiveUnits|r|radius|refX|refY|renderingIntent|repeatCount|repeatDur|requiredExtensions|requiredFeatures|restart|result|rotate|rx|ry|scale|seed|shapeRendering|slope|spacing|specularConstant|specularExponent|speed|spreadMethod|startOffset|stdDeviation|stemh|stemv|stitchTiles|stopColor|stopOpacity|strikethroughPosition|strikethroughThickness|string|stroke|strokeDasharray|strokeDashoffset|strokeLinecap|strokeLinejoin|strokeMiterlimit|strokeOpacity|strokeWidth|surfaceScale|systemLanguage|tableValues|targetX|targetY|textAnchor|textDecoration|textRendering|textLength|to|transform|u1|u2|underlinePosition|underlineThickness|unicode|unicodeBidi|unicodeRange|unitsPerEm|vAlphabetic|vHanging|vIdeographic|vMathematical|values|vectorEffect|version|vertAdvY|vertOriginX|vertOriginY|viewBox|viewTarget|visibility|widths|wordSpacing|writingMode|x|xHeight|x1|x2|xChannelSelector|xlinkActuate|xlinkArcrole|xlinkHref|xlinkRole|xlinkShow|xlinkTitle|xlinkType|xmlBase|xmlns|xmlnsXlink|xmlLang|xmlSpace|y|y1|y2|yChannelSelector|z|zoomAndPan|for|class|autofocus)|(([Dd][Aa][Tt][Aa]|[Aa][Rr][Ii][Aa]|x)-.*))$/;
59
59
  var index = memoize_esm_default(
60
60
  function(prop) {
@@ -64,7 +64,7 @@ var index = memoize_esm_default(
64
64
  );
65
65
  var is_prop_valid_esm_default = index;
66
66
 
67
- // ../primitives-web/src/filterDOMProps.ts
67
+ // ../../foundation/primitives-web/src/filterDOMProps.ts
68
68
  var ADDITIONAL_BLOCKED_PROPS = /* @__PURE__ */ new Set([
69
69
  // RN-only event handlers (pass isPropValid's on* pattern)
70
70
  "onPress",
@@ -110,7 +110,7 @@ function createFilteredElement(defaultTag) {
110
110
  return Component;
111
111
  }
112
112
 
113
- // ../primitives-web/src/Box.tsx
113
+ // ../../foundation/primitives-web/src/Box.tsx
114
114
  var import_jsx_runtime = require("react/jsx-runtime");
115
115
  var FilteredDiv = createFilteredElement("div");
116
116
  var StyledBox = (0, import_styled_components.default)(FilteredDiv)`
@@ -283,7 +283,7 @@ var Box = import_react2.default.forwardRef(
283
283
  );
284
284
  Box.displayName = "Box";
285
285
 
286
- // ../primitives-web/src/Text.tsx
286
+ // ../../foundation/primitives-web/src/Text.tsx
287
287
  var import_styled_components2 = __toESM(require("styled-components"));
288
288
  var import_jsx_runtime2 = require("react/jsx-runtime");
289
289
  var FilteredSpan = createFilteredElement("span");
@@ -317,7 +317,7 @@ var Text = ({
317
317
  );
318
318
  };
319
319
 
320
- // ../primitives-web/src/Input.tsx
320
+ // ../../foundation/primitives-web/src/Input.tsx
321
321
  var import_react3 = require("react");
322
322
  var import_styled_components3 = __toESM(require("styled-components"));
323
323
  var import_jsx_runtime3 = require("react/jsx-runtime");