@particle-network/ui-native 0.4.2-beta.10 → 0.4.2-beta.11

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.
@@ -59,7 +59,13 @@ const UXNumberInput = /*#__PURE__*/ forwardRef((props, ref)=>{
59
59
  controlledValue
60
60
  ]);
61
61
  const numberFormatter = useMemo(()=>{
62
- if (formatOptions) return new Intl.NumberFormat(void 0, formatOptions);
62
+ if (formatOptions) {
63
+ const restFormatOptions = {
64
+ ...formatOptions
65
+ };
66
+ delete restFormatOptions.signDisplay;
67
+ return new Intl.NumberFormat(void 0, restFormatOptions);
68
+ }
63
69
  return null;
64
70
  }, [
65
71
  formatOptions
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@particle-network/ui-native",
3
- "version": "0.4.2-beta.10",
3
+ "version": "0.4.2-beta.11",
4
4
  "main": "./entry.js",
5
5
  "react-native": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -59,13 +59,13 @@
59
59
  "@rsbuild/core": "^1.5.0",
60
60
  "@rsbuild/plugin-react": "^1.3.5",
61
61
  "@rslib/core": "^0.12.2",
62
- "@storybook/addon-docs": "^9.1.6",
63
- "@storybook/addon-ondevice-actions": "^9.1.2",
64
- "@storybook/addon-ondevice-backgrounds": "^9.1.2",
65
- "@storybook/addon-ondevice-controls": "^9.1.2",
66
- "@storybook/addon-ondevice-notes": "^9.1.2",
67
- "@storybook/react-native": "^9.1.2",
68
- "@storybook/react-native-web-vite": "^9.1.6",
62
+ "@storybook/addon-docs": "^10.0.0",
63
+ "@storybook/addon-ondevice-actions": "^10.0.0",
64
+ "@storybook/addon-ondevice-backgrounds": "^10.0.0",
65
+ "@storybook/addon-ondevice-controls": "^10.0.0",
66
+ "@storybook/addon-ondevice-notes": "^10.0.0",
67
+ "@storybook/react-native": "^10.0.0",
68
+ "@storybook/react-native-web-vite": "^10.0.0",
69
69
  "@types/react": "^19.1.10",
70
70
  "babel-plugin-module-resolver": "^5.0.2",
71
71
  "babel-plugin-react-docgen-typescript": "^1.5.1",
@@ -84,13 +84,13 @@
84
84
  "react-native-svg": "15.12.1",
85
85
  "react-native-web": "^0.21.1",
86
86
  "serve": "^14.2.5",
87
- "storybook": "^9.1.6",
87
+ "storybook": "^10.0.0",
88
88
  "unfetch": "^4.2.0",
89
89
  "vite": "^6.3.5",
90
90
  "zustand": "^5.0.8",
91
+ "@particle-network/eslint-config": "0.3.0",
91
92
  "@particle-network/icons": "0.4.2-beta.7",
92
- "@particle-network/lintstaged-config": "0.1.0",
93
- "@particle-network/eslint-config": "0.3.0"
93
+ "@particle-network/lintstaged-config": "0.1.0"
94
94
  },
95
95
  "overrides": {
96
96
  "react-docgen-typescript": "2.2.2",