@xsolla/xui-radio-group 0.64.0-pr56.1768440195

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.
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+
3
+ interface RadioGroupContextProps {
4
+ value?: string;
5
+ onChange?: (value: string) => void;
6
+ size?: "s" | "m" | "l" | "xl";
7
+ disabled?: boolean;
8
+ }
9
+ declare const useRadioGroup: () => RadioGroupContextProps;
10
+ interface RadioGroupProps {
11
+ value?: string;
12
+ onChange?: (value: string) => void;
13
+ size?: "s" | "m" | "l" | "xl";
14
+ disabled?: boolean;
15
+ children: React.ReactNode;
16
+ flexDirection?: "row" | "column";
17
+ gap?: number;
18
+ }
19
+ declare const RadioGroup: React.FC<RadioGroupProps>;
20
+
21
+ export { RadioGroup, type RadioGroupContextProps, type RadioGroupProps, useRadioGroup };
@@ -0,0 +1,21 @@
1
+ import React from 'react';
2
+
3
+ interface RadioGroupContextProps {
4
+ value?: string;
5
+ onChange?: (value: string) => void;
6
+ size?: "s" | "m" | "l" | "xl";
7
+ disabled?: boolean;
8
+ }
9
+ declare const useRadioGroup: () => RadioGroupContextProps;
10
+ interface RadioGroupProps {
11
+ value?: string;
12
+ onChange?: (value: string) => void;
13
+ size?: "s" | "m" | "l" | "xl";
14
+ disabled?: boolean;
15
+ children: React.ReactNode;
16
+ flexDirection?: "row" | "column";
17
+ gap?: number;
18
+ }
19
+ declare const RadioGroup: React.FC<RadioGroupProps>;
20
+
21
+ export { RadioGroup, type RadioGroupContextProps, type RadioGroupProps, useRadioGroup };
@@ -0,0 +1,490 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+
30
+ // src/index.tsx
31
+ var index_exports = {};
32
+ __export(index_exports, {
33
+ RadioGroup: () => RadioGroup,
34
+ useRadioGroup: () => useRadioGroup
35
+ });
36
+ module.exports = __toCommonJS(index_exports);
37
+
38
+ // src/RadioGroup.tsx
39
+ var import_react4 = require("react");
40
+
41
+ // ../primitives-native/src/Box.tsx
42
+ var import_react_native = require("react-native");
43
+ var import_jsx_runtime = require("react/jsx-runtime");
44
+ var Box = ({
45
+ children,
46
+ onPress,
47
+ onLayout,
48
+ onMoveShouldSetResponder,
49
+ onResponderGrant,
50
+ onResponderMove,
51
+ onResponderRelease,
52
+ onResponderTerminate,
53
+ backgroundColor,
54
+ borderColor,
55
+ borderWidth,
56
+ borderBottomWidth,
57
+ borderBottomColor,
58
+ borderTopWidth,
59
+ borderTopColor,
60
+ borderLeftWidth,
61
+ borderLeftColor,
62
+ borderRightWidth,
63
+ borderRightColor,
64
+ borderRadius,
65
+ borderStyle,
66
+ height,
67
+ padding,
68
+ paddingHorizontal,
69
+ paddingVertical,
70
+ margin,
71
+ marginTop,
72
+ marginBottom,
73
+ marginLeft,
74
+ marginRight,
75
+ flexDirection,
76
+ alignItems,
77
+ justifyContent,
78
+ position,
79
+ top,
80
+ bottom,
81
+ left,
82
+ right,
83
+ width,
84
+ flex,
85
+ overflow,
86
+ zIndex,
87
+ hoverStyle,
88
+ pressStyle,
89
+ style,
90
+ "data-testid": dataTestId,
91
+ testID,
92
+ as,
93
+ src,
94
+ alt,
95
+ ...rest
96
+ }) => {
97
+ const getContainerStyle = (pressed) => ({
98
+ backgroundColor: pressed && pressStyle?.backgroundColor ? pressStyle.backgroundColor : backgroundColor,
99
+ borderColor,
100
+ borderWidth,
101
+ borderBottomWidth,
102
+ borderBottomColor,
103
+ borderTopWidth,
104
+ borderTopColor,
105
+ borderLeftWidth,
106
+ borderLeftColor,
107
+ borderRightWidth,
108
+ borderRightColor,
109
+ borderRadius,
110
+ borderStyle,
111
+ overflow,
112
+ zIndex,
113
+ height,
114
+ width,
115
+ padding,
116
+ paddingHorizontal,
117
+ paddingVertical,
118
+ margin,
119
+ marginTop,
120
+ marginBottom,
121
+ marginLeft,
122
+ marginRight,
123
+ flexDirection,
124
+ alignItems,
125
+ justifyContent,
126
+ position,
127
+ top,
128
+ bottom,
129
+ left,
130
+ right,
131
+ flex,
132
+ ...style
133
+ });
134
+ const finalTestID = dataTestId || testID;
135
+ const {
136
+ role,
137
+ tabIndex,
138
+ onKeyDown,
139
+ onKeyUp,
140
+ "aria-label": _ariaLabel,
141
+ "aria-labelledby": _ariaLabelledBy,
142
+ "aria-current": _ariaCurrent,
143
+ "aria-disabled": _ariaDisabled,
144
+ "aria-live": _ariaLive,
145
+ className,
146
+ "data-testid": _dataTestId,
147
+ ...nativeRest
148
+ } = rest;
149
+ if (as === "img" && src) {
150
+ const imageStyle = {
151
+ width,
152
+ height,
153
+ borderRadius,
154
+ position,
155
+ top,
156
+ bottom,
157
+ left,
158
+ right,
159
+ ...style
160
+ };
161
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
162
+ import_react_native.Image,
163
+ {
164
+ source: { uri: src },
165
+ style: imageStyle,
166
+ testID: finalTestID,
167
+ resizeMode: "cover",
168
+ ...nativeRest
169
+ }
170
+ );
171
+ }
172
+ if (onPress) {
173
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
174
+ import_react_native.Pressable,
175
+ {
176
+ onPress,
177
+ onLayout,
178
+ onMoveShouldSetResponder,
179
+ onResponderGrant,
180
+ onResponderMove,
181
+ onResponderRelease,
182
+ onResponderTerminate,
183
+ style: ({ pressed }) => getContainerStyle(pressed),
184
+ testID: finalTestID,
185
+ ...nativeRest,
186
+ children
187
+ }
188
+ );
189
+ }
190
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
191
+ import_react_native.View,
192
+ {
193
+ style: getContainerStyle(),
194
+ testID: finalTestID,
195
+ onLayout,
196
+ onMoveShouldSetResponder,
197
+ onResponderGrant,
198
+ onResponderMove,
199
+ onResponderRelease,
200
+ onResponderTerminate,
201
+ ...nativeRest,
202
+ children
203
+ }
204
+ );
205
+ };
206
+
207
+ // ../primitives-native/src/Text.tsx
208
+ var import_react_native2 = require("react-native");
209
+ var import_jsx_runtime2 = require("react/jsx-runtime");
210
+
211
+ // ../primitives-native/src/Spinner.tsx
212
+ var import_react_native3 = require("react-native");
213
+ var import_jsx_runtime3 = require("react/jsx-runtime");
214
+ var Spinner = ({
215
+ color,
216
+ size,
217
+ role,
218
+ "aria-label": ariaLabel,
219
+ "aria-live": ariaLive,
220
+ "aria-describedby": ariaDescribedBy,
221
+ testID
222
+ }) => {
223
+ return /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
224
+ import_react_native3.View,
225
+ {
226
+ accessible: true,
227
+ accessibilityRole: role === "status" ? "none" : void 0,
228
+ accessibilityLabel: ariaLabel,
229
+ accessibilityLiveRegion: ariaLive === "polite" ? "polite" : ariaLive === "assertive" ? "assertive" : "none",
230
+ testID,
231
+ children: /* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
232
+ import_react_native3.ActivityIndicator,
233
+ {
234
+ color,
235
+ size: typeof size === "number" ? size : "small"
236
+ }
237
+ )
238
+ }
239
+ );
240
+ };
241
+ Spinner.displayName = "Spinner";
242
+
243
+ // ../primitives-native/src/Icon.tsx
244
+ var import_react = __toESM(require("react"));
245
+ var import_react_native4 = require("react-native");
246
+ var import_jsx_runtime4 = require("react/jsx-runtime");
247
+
248
+ // ../primitives-native/src/Divider.tsx
249
+ var import_react_native5 = require("react-native");
250
+ var import_jsx_runtime5 = require("react/jsx-runtime");
251
+
252
+ // ../primitives-native/src/Input.tsx
253
+ var import_react2 = require("react");
254
+ var import_react_native6 = require("react-native");
255
+ var import_jsx_runtime6 = require("react/jsx-runtime");
256
+ var keyboardTypeMap = {
257
+ text: "default",
258
+ number: "numeric",
259
+ email: "email-address",
260
+ tel: "phone-pad",
261
+ url: "url",
262
+ decimal: "decimal-pad"
263
+ };
264
+ var inputModeToKeyboardType = {
265
+ none: "default",
266
+ text: "default",
267
+ decimal: "decimal-pad",
268
+ numeric: "number-pad",
269
+ tel: "phone-pad",
270
+ search: "default",
271
+ email: "email-address",
272
+ url: "url"
273
+ };
274
+ var autoCompleteToTextContentType = {
275
+ "one-time-code": "oneTimeCode",
276
+ email: "emailAddress",
277
+ username: "username",
278
+ password: "password",
279
+ "new-password": "newPassword",
280
+ tel: "telephoneNumber",
281
+ "postal-code": "postalCode",
282
+ name: "name"
283
+ };
284
+ var InputPrimitive = (0, import_react2.forwardRef)(
285
+ ({
286
+ value,
287
+ placeholder,
288
+ onChange,
289
+ onChangeText,
290
+ onFocus,
291
+ onBlur,
292
+ onKeyDown,
293
+ disabled,
294
+ secureTextEntry,
295
+ style,
296
+ color,
297
+ fontSize,
298
+ placeholderTextColor,
299
+ maxLength,
300
+ name,
301
+ type,
302
+ inputMode,
303
+ autoComplete,
304
+ id,
305
+ "aria-invalid": ariaInvalid,
306
+ "aria-describedby": ariaDescribedBy,
307
+ "aria-labelledby": ariaLabelledBy,
308
+ "aria-label": ariaLabel,
309
+ "aria-disabled": ariaDisabled,
310
+ "data-testid": dataTestId
311
+ }, ref) => {
312
+ const handleChangeText = (text) => {
313
+ onChangeText?.(text);
314
+ if (onChange) {
315
+ const syntheticEvent = {
316
+ target: { value: text },
317
+ currentTarget: { value: text },
318
+ type: "change",
319
+ nativeEvent: { text },
320
+ preventDefault: () => {
321
+ },
322
+ stopPropagation: () => {
323
+ },
324
+ isTrusted: false
325
+ };
326
+ onChange(syntheticEvent);
327
+ }
328
+ };
329
+ const keyboardType = inputMode ? inputModeToKeyboardType[inputMode] || "default" : type ? keyboardTypeMap[type] || "default" : "default";
330
+ const textContentType = autoComplete ? autoCompleteToTextContentType[autoComplete] : void 0;
331
+ return /* @__PURE__ */ (0, import_jsx_runtime6.jsx)(
332
+ import_react_native6.TextInput,
333
+ {
334
+ ref,
335
+ value,
336
+ placeholder,
337
+ onChangeText: handleChangeText,
338
+ onFocus,
339
+ onBlur,
340
+ onKeyPress: (e) => {
341
+ if (onKeyDown) {
342
+ onKeyDown({
343
+ key: e.nativeEvent.key,
344
+ preventDefault: () => {
345
+ }
346
+ });
347
+ }
348
+ },
349
+ editable: !disabled,
350
+ secureTextEntry: secureTextEntry || type === "password",
351
+ keyboardType,
352
+ textContentType,
353
+ style: [
354
+ {
355
+ color,
356
+ fontSize: typeof fontSize === "number" ? fontSize : void 0,
357
+ flex: 1,
358
+ padding: 0,
359
+ textAlign: style?.textAlign || "left"
360
+ },
361
+ style
362
+ ],
363
+ placeholderTextColor,
364
+ maxLength,
365
+ testID: dataTestId || id,
366
+ accessibilityLabel: ariaLabel,
367
+ accessibilityHint: ariaDescribedBy,
368
+ accessibilityState: {
369
+ disabled: disabled || ariaDisabled
370
+ },
371
+ accessible: true
372
+ }
373
+ );
374
+ }
375
+ );
376
+ InputPrimitive.displayName = "InputPrimitive";
377
+
378
+ // ../primitives-native/src/TextArea.tsx
379
+ var import_react3 = require("react");
380
+ var import_react_native7 = require("react-native");
381
+ var import_jsx_runtime7 = require("react/jsx-runtime");
382
+ var TextAreaPrimitive = (0, import_react3.forwardRef)(
383
+ ({
384
+ value,
385
+ placeholder,
386
+ onChange,
387
+ onChangeText,
388
+ onFocus,
389
+ onBlur,
390
+ onKeyDown,
391
+ disabled,
392
+ style,
393
+ color,
394
+ fontSize,
395
+ placeholderTextColor,
396
+ maxLength,
397
+ rows,
398
+ id,
399
+ "aria-invalid": ariaInvalid,
400
+ "aria-describedby": ariaDescribedBy,
401
+ "aria-labelledby": ariaLabelledBy,
402
+ "aria-label": ariaLabel,
403
+ "aria-disabled": ariaDisabled,
404
+ "data-testid": dataTestId
405
+ }, ref) => {
406
+ const handleChangeText = (text) => {
407
+ onChangeText?.(text);
408
+ if (onChange) {
409
+ const syntheticEvent = {
410
+ target: { value: text },
411
+ currentTarget: { value: text },
412
+ type: "change",
413
+ nativeEvent: { text },
414
+ preventDefault: () => {
415
+ },
416
+ stopPropagation: () => {
417
+ },
418
+ isTrusted: false
419
+ };
420
+ onChange(syntheticEvent);
421
+ }
422
+ };
423
+ return /* @__PURE__ */ (0, import_jsx_runtime7.jsx)(
424
+ import_react_native7.TextInput,
425
+ {
426
+ ref,
427
+ value,
428
+ placeholder,
429
+ onChangeText: handleChangeText,
430
+ onFocus,
431
+ onBlur,
432
+ onKeyPress: (e) => {
433
+ if (onKeyDown) {
434
+ onKeyDown({
435
+ key: e.nativeEvent.key,
436
+ preventDefault: () => {
437
+ }
438
+ });
439
+ }
440
+ },
441
+ editable: !disabled,
442
+ multiline: true,
443
+ numberOfLines: rows || 4,
444
+ style: [
445
+ {
446
+ color,
447
+ fontSize: typeof fontSize === "number" ? fontSize : void 0,
448
+ flex: 1,
449
+ padding: 0,
450
+ textAlignVertical: "top",
451
+ textAlign: style?.textAlign || "left"
452
+ },
453
+ style
454
+ ],
455
+ placeholderTextColor,
456
+ maxLength,
457
+ testID: dataTestId || id,
458
+ accessibilityLabel: ariaLabel,
459
+ accessibilityHint: ariaDescribedBy,
460
+ accessibilityState: {
461
+ disabled: disabled || ariaDisabled
462
+ },
463
+ accessible: true
464
+ }
465
+ );
466
+ }
467
+ );
468
+ TextAreaPrimitive.displayName = "TextAreaPrimitive";
469
+
470
+ // src/RadioGroup.tsx
471
+ var import_jsx_runtime8 = require("react/jsx-runtime");
472
+ var RadioGroupContext = (0, import_react4.createContext)({});
473
+ var useRadioGroup = () => (0, import_react4.useContext)(RadioGroupContext);
474
+ var RadioGroup = ({
475
+ value,
476
+ onChange,
477
+ size = "m",
478
+ disabled = false,
479
+ children,
480
+ flexDirection = "column",
481
+ gap = 12
482
+ }) => {
483
+ return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(RadioGroupContext.Provider, { value: { value, onChange, size, disabled }, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(Box, { flexDirection, gap, children }) });
484
+ };
485
+ // Annotate the CommonJS export names for ESM import in node:
486
+ 0 && (module.exports = {
487
+ RadioGroup,
488
+ useRadioGroup
489
+ });
490
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/index.tsx","../../src/RadioGroup.tsx","../../../primitives-native/src/Box.tsx","../../../primitives-native/src/Text.tsx","../../../primitives-native/src/Spinner.tsx","../../../primitives-native/src/Icon.tsx","../../../primitives-native/src/Divider.tsx","../../../primitives-native/src/Input.tsx","../../../primitives-native/src/TextArea.tsx"],"sourcesContent":["export * from \"./RadioGroup\";\n","import React, { createContext, useContext } from \"react\";\n// @ts-ignore - this will be resolved at build time\nimport { Box } from \"@xsolla/xui-primitives\";\n\nexport interface RadioGroupContextProps {\n value?: string;\n onChange?: (value: string) => void;\n size?: \"s\" | \"m\" | \"l\" | \"xl\";\n disabled?: boolean;\n}\n\nconst RadioGroupContext = createContext<RadioGroupContextProps>({});\n\nexport const useRadioGroup = () => useContext(RadioGroupContext);\n\nexport interface RadioGroupProps {\n value?: string;\n onChange?: (value: string) => void;\n size?: \"s\" | \"m\" | \"l\" | \"xl\";\n disabled?: boolean;\n children: React.ReactNode;\n flexDirection?: \"row\" | \"column\";\n gap?: number;\n}\n\nexport const RadioGroup: React.FC<RadioGroupProps> = ({\n value,\n onChange,\n size = \"m\",\n disabled = false,\n children,\n flexDirection = \"column\",\n gap = 12,\n}) => {\n return (\n <RadioGroupContext.Provider value={{ value, onChange, size, disabled }}>\n <Box flexDirection={flexDirection} gap={gap}>\n {children}\n </Box>\n </RadioGroupContext.Provider>\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 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 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 { Text as RNText, TextStyle, AccessibilityRole } from \"react-native\";\nimport { TextProps } from \"@xsolla/xui-primitives-core\";\n\n// Map web roles to React Native accessibility roles\nconst roleMap: Record<string, AccessibilityRole> = {\n alert: \"alert\",\n heading: \"header\",\n button: \"button\",\n link: \"link\",\n text: \"text\",\n};\n\nexport const Text: React.FC<TextProps> = ({\n children,\n color,\n fontSize,\n fontWeight,\n fontFamily,\n id,\n role,\n ...props\n}) => {\n // Extract the first font name from a comma-separated list (e.g. for web-style font stacks)\n let resolvedFontFamily = fontFamily\n ? fontFamily.split(\",\")[0].replace(/['\"]/g, \"\").trim()\n : undefined;\n\n // On native, if we don't have the custom font loaded, it's better to use the system font\n // to avoid rendering issues or missing text.\n if (resolvedFontFamily === \"Pilat Wide Bold\") {\n resolvedFontFamily = undefined;\n }\n\n const style: TextStyle = {\n 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 };\n\n // Map role to React Native accessibilityRole\n const accessibilityRole = role ? roleMap[role] : undefined;\n\n return (\n <RNText style={style} testID={id} accessibilityRole={accessibilityRole}>\n {children}\n </RNText>\n );\n};\n","import type React from \"react\";\nimport { ActivityIndicator, View } from \"react-native\";\nimport type { SpinnerProps } from \"@xsolla/xui-primitives-core\";\n\nexport const Spinner: React.FC<SpinnerProps> = ({\n color,\n size,\n role,\n \"aria-label\": ariaLabel,\n \"aria-live\": ariaLive,\n \"aria-describedby\": ariaDescribedBy,\n testID,\n}) => {\n return (\n <View\n accessible={true}\n accessibilityRole={role === \"status\" ? \"none\" : undefined}\n accessibilityLabel={ariaLabel}\n accessibilityLiveRegion={\n ariaLive === \"polite\"\n ? \"polite\"\n : ariaLive === \"assertive\"\n ? \"assertive\"\n : \"none\"\n }\n testID={testID}\n >\n <ActivityIndicator\n color={color}\n size={typeof size === \"number\" ? size : \"small\"}\n />\n </View>\n );\n};\n\nSpinner.displayName = \"Spinner\";\n","import React from \"react\";\nimport { View, ViewStyle } from \"react-native\";\nimport { IconProps } from \"@xsolla/xui-primitives-core\";\n\nexport const Icon: React.FC<IconProps> = ({ children, color, size }) => {\n const style: ViewStyle = {\n width: typeof size === \"number\" ? size : undefined,\n height: typeof size === \"number\" ? size : undefined,\n alignItems: \"center\",\n justifyContent: \"center\",\n };\n\n // On native, we try to pass the color down to children (like Text primitives)\n // to mimic the CSS inheritance behavior of the web version.\n const childrenWithProps = React.Children.map(children, (child) => {\n if (React.isValidElement(child)) {\n // @ts-ignore - passing color down to potential Text/Icon children\n return React.cloneElement(child, {\n color: child.props.color || color,\n // Also pass size if child seems to be an icon that needs it\n size: child.props.size || size,\n });\n }\n return child;\n });\n\n return <View style={style}>{childrenWithProps}</View>;\n};\n","import React from \"react\";\nimport { View, ViewStyle } from \"react-native\";\nimport { DividerProps } from \"@xsolla/xui-primitives-core\";\n\nexport const Divider: React.FC<DividerProps> = ({\n color,\n height,\n width,\n vertical,\n dashStroke,\n}) => {\n const style: ViewStyle = {\n backgroundColor: dashStroke\n ? \"transparent\"\n : color || \"rgba(255, 255, 255, 0.15)\",\n width: vertical ? (typeof width === \"number\" ? width : 1) : \"100%\",\n height: vertical ? \"100%\" : typeof height === \"number\" ? height : 1,\n ...(dashStroke && {\n borderStyle: \"dashed\",\n borderColor: color || \"rgba(255, 255, 255, 0.15)\",\n borderWidth: 0,\n ...(vertical\n ? { borderLeftWidth: typeof width === \"number\" ? width : 1 }\n : { borderTopWidth: typeof height === \"number\" ? height : 1 }),\n }),\n };\n\n return <View style={style} />;\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 placeholderTextColor,\n maxLength,\n name,\n type,\n inputMode,\n autoComplete,\n id,\n \"aria-invalid\": ariaInvalid,\n \"aria-describedby\": ariaDescribedBy,\n \"aria-labelledby\": ariaLabelledBy,\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 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 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","import React, { forwardRef } from \"react\";\nimport { TextInput as RNTextInput } from \"react-native\";\nimport { TextAreaPrimitiveProps } from \"@xsolla/xui-primitives-core\";\n\nexport const TextAreaPrimitive = forwardRef<\n RNTextInput,\n TextAreaPrimitiveProps\n>(\n (\n {\n value,\n placeholder,\n onChange,\n onChangeText,\n onFocus,\n onBlur,\n onKeyDown,\n disabled,\n style,\n color,\n fontSize,\n placeholderTextColor,\n maxLength,\n rows,\n id,\n \"aria-invalid\": ariaInvalid,\n \"aria-describedby\": ariaDescribedBy,\n \"aria-labelledby\": ariaLabelledBy,\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 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<HTMLTextAreaElement>;\n onChange(syntheticEvent);\n }\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 if (onKeyDown) {\n onKeyDown({\n key: e.nativeEvent.key,\n preventDefault: () => {},\n } as any);\n }\n }}\n editable={!disabled}\n multiline={true}\n numberOfLines={rows || 4}\n style={[\n {\n color,\n fontSize: typeof fontSize === \"number\" ? fontSize : undefined,\n flex: 1,\n padding: 0,\n textAlignVertical: \"top\",\n textAlign: (style as any)?.textAlign || \"left\",\n },\n style as any,\n ]}\n placeholderTextColor={placeholderTextColor}\n maxLength={maxLength}\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\nTextAreaPrimitive.displayName = \"TextAreaPrimitive\";\n"],"mappings":"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","names":["import_react","import_react_native","import_jsx_runtime","import_react_native","import_jsx_runtime","import_react_native","import_jsx_runtime","import_react_native","import_jsx_runtime","import_react","import_react_native","import_jsx_runtime","RNTextInput","import_react","import_react_native","import_jsx_runtime","RNTextInput","import_jsx_runtime"]}