@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/web/index.mjs
CHANGED
|
@@ -417,11 +417,13 @@ var InputPrimitive = forwardRef(
|
|
|
417
417
|
);
|
|
418
418
|
InputPrimitive.displayName = "InputPrimitive";
|
|
419
419
|
|
|
420
|
+
// ../primitives-web/src/index.tsx
|
|
421
|
+
var isWeb = true;
|
|
422
|
+
|
|
420
423
|
// src/InputPhone.tsx
|
|
421
424
|
import {
|
|
422
425
|
useResolvedTheme,
|
|
423
|
-
useId
|
|
424
|
-
isWeb
|
|
426
|
+
useId
|
|
425
427
|
} from "@xsolla/xui-core";
|
|
426
428
|
|
|
427
429
|
// ../icons-base/src/BaseIcon.tsx
|