@xaui/native 0.9.1-alpha.10 → 0.9.1-alpha.12
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/dist/{chunk-7XGOXTGT.js → chunk-5TKZV7IC.js} +3 -19
- package/dist/chunk-CTULMYVI.cjs +545 -0
- package/dist/{chunk-X2K2FX3W.js → chunk-EMXBFHIP.js} +20 -0
- package/dist/{chunk-2FEDC7U5.cjs → chunk-ESOOMXV4.cjs} +33 -49
- package/dist/{chunk-3QBT3Q65.cjs → chunk-FDUI4IAM.cjs} +22 -2
- package/dist/chunk-GZIOB63O.cjs +1044 -0
- package/dist/chunk-KLHHV4RU.js +1010 -0
- package/dist/chunk-SKVKAJ5Y.js +507 -0
- package/dist/components/button/index.cjs +4 -4
- package/dist/components/button/index.d.cts +147 -8
- package/dist/components/button/index.d.ts +147 -8
- package/dist/components/button/index.js +3 -3
- package/dist/{create-recipe-Dn9kj5Rs.d.ts → create-recipe-3OPwcC6P.d.ts} +81 -21
- package/dist/{create-recipe-BjSP0zL_.d.cts → create-recipe-oiLAlJ4u.d.cts} +81 -21
- package/dist/index.cjs +28 -8
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +32 -12
- package/dist/system/index.cjs +24 -4
- package/dist/system/index.d.cts +159 -31
- package/dist/system/index.d.ts +159 -31
- package/dist/system/index.js +31 -11
- package/dist/theme/index.cjs +3 -3
- package/dist/theme/index.js +2 -2
- package/package.json +8 -8
- package/dist/chunk-66OVPWF4.js +0 -716
- package/dist/chunk-7D262JCJ.cjs +0 -716
- package/dist/chunk-EQGTD5F6.js +0 -353
- package/dist/chunk-ERCOAOO6.cjs +0 -353
- /package/dist/{chunk-LMUPNKPH.cjs → chunk-2FOEFUPM.cjs} +0 -0
- /package/dist/{chunk-3TIDEII6.js → chunk-TO6DAGFB.js} +0 -0
package/dist/theme/index.js
CHANGED
|
@@ -9,14 +9,14 @@ import {
|
|
|
9
9
|
primitives,
|
|
10
10
|
sourceKeys,
|
|
11
11
|
tokens
|
|
12
|
-
} from "../chunk-
|
|
12
|
+
} from "../chunk-5TKZV7IC.js";
|
|
13
13
|
import {
|
|
14
14
|
ThemeContext,
|
|
15
15
|
deriveTint,
|
|
16
16
|
useColorMode,
|
|
17
17
|
useThemeColor,
|
|
18
18
|
useXAUITheme
|
|
19
|
-
} from "../chunk-
|
|
19
|
+
} from "../chunk-EMXBFHIP.js";
|
|
20
20
|
export {
|
|
21
21
|
ThemeContext,
|
|
22
22
|
XAUIProvider,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xaui/native",
|
|
3
|
-
"version": "0.9.1-alpha.
|
|
3
|
+
"version": "0.9.1-alpha.12",
|
|
4
4
|
"description": "Composition-first React Native UI components with native animations powered by Reanimated",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react-native",
|
|
@@ -92,20 +92,20 @@
|
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@types/react": "^19.
|
|
96
|
-
"react": "19.
|
|
97
|
-
"react-native": "0.83.
|
|
95
|
+
"@types/react": "^19.2.0",
|
|
96
|
+
"react": "19.2.0",
|
|
97
|
+
"react-native": "0.83.10",
|
|
98
98
|
"react-native-gesture-handler": "^2.28.0",
|
|
99
|
-
"react-native-reanimated": "
|
|
99
|
+
"react-native-reanimated": "4.2.1",
|
|
100
100
|
"react-native-safe-area-context": "^5.6.0",
|
|
101
|
-
"react-native-svg": "
|
|
102
|
-
"react-native-worklets": "
|
|
101
|
+
"react-native-svg": "15.15.3",
|
|
102
|
+
"react-native-worklets": "0.7.4",
|
|
103
103
|
"tsup": "^8.5.1",
|
|
104
104
|
"typescript": "^5.9.3"
|
|
105
105
|
},
|
|
106
106
|
"module": "./dist/index.js",
|
|
107
107
|
"scripts": {
|
|
108
|
-
"build": "rm -rf dist && tsup --config tsup.config.ts",
|
|
108
|
+
"build": "rm -rf dist && tsup --config tsup.config.ts && node ../../tooling/workletize/workletize.mjs dist",
|
|
109
109
|
"dev": "tsup --config tsup.config.ts --watch",
|
|
110
110
|
"test": "vitest",
|
|
111
111
|
"lint": "eslint src/",
|