@xsolla/xui-input-phone 0.138.0 → 0.138.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 +5 -2
- package/native/index.js.map +1 -1
- package/native/index.mjs +4 -2
- package/native/index.mjs.map +1 -1
- package/package.json +3 -3
- package/web/index.js +5 -2
- package/web/index.js.map +1 -1
- package/web/index.mjs +4 -2
- package/web/index.mjs.map +1 -1
package/native/index.mjs
CHANGED
|
@@ -397,11 +397,13 @@ var InputPrimitive = forwardRef(
|
|
|
397
397
|
);
|
|
398
398
|
InputPrimitive.displayName = "InputPrimitive";
|
|
399
399
|
|
|
400
|
+
// ../primitives-native/src/index.tsx
|
|
401
|
+
var isWeb = false;
|
|
402
|
+
|
|
400
403
|
// src/InputPhone.tsx
|
|
401
404
|
import {
|
|
402
405
|
useResolvedTheme,
|
|
403
|
-
useId
|
|
404
|
-
isWeb
|
|
406
|
+
useId
|
|
405
407
|
} from "@xsolla/xui-core";
|
|
406
408
|
|
|
407
409
|
// ../icons-base/src/BaseIcon.tsx
|