@xaui/native 0.9.1-alpha.26 → 0.9.1-alpha.28

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.
Files changed (57) hide show
  1. package/dist/chunk-3YN7JQ55.js +342 -0
  2. package/dist/{chunk-PQHC65AG.js → chunk-56KVKM27.js} +15 -15
  3. package/dist/chunk-5A4M6X5B.cjs +289 -0
  4. package/dist/{chunk-BULNTP5N.cjs → chunk-63TWVWHG.cjs} +9 -45
  5. package/dist/chunk-7EIHHOHP.cjs +42 -0
  6. package/dist/{chunk-WVCAFORA.cjs → chunk-CQRUNV6S.cjs} +15 -15
  7. package/dist/chunk-E6EFYPJR.cjs +41 -0
  8. package/dist/chunk-EYJEUXXC.js +98 -0
  9. package/dist/chunk-F6W3JQ7K.js +42 -0
  10. package/dist/chunk-LKB3RIR2.js +289 -0
  11. package/dist/{chunk-I6UCYAO2.js → chunk-N4UJYDOW.js} +23 -56
  12. package/dist/chunk-V6DGGDHF.cjs +342 -0
  13. package/dist/components/alert/index.cjs +1 -1
  14. package/dist/components/alert/index.d.cts +1 -1
  15. package/dist/components/alert/index.d.ts +1 -1
  16. package/dist/components/alert/index.js +1 -1
  17. package/dist/components/button/index.cjs +3 -3
  18. package/dist/components/button/index.d.cts +1 -1
  19. package/dist/components/button/index.d.ts +1 -1
  20. package/dist/components/button/index.js +2 -2
  21. package/dist/components/card/index.d.cts +1 -1
  22. package/dist/components/card/index.d.ts +1 -1
  23. package/dist/components/checkbox/index.cjs +24 -0
  24. package/dist/components/checkbox/index.d.cts +1136 -0
  25. package/dist/components/checkbox/index.d.ts +1136 -0
  26. package/dist/components/checkbox/index.js +24 -0
  27. package/dist/components/chip/index.cjs +3 -3
  28. package/dist/components/chip/index.d.cts +1 -1
  29. package/dist/components/chip/index.d.ts +1 -1
  30. package/dist/components/chip/index.js +2 -2
  31. package/dist/components/input/index.d.cts +3 -3
  32. package/dist/components/input/index.d.ts +3 -3
  33. package/dist/components/input-otp/index.cjs +3 -2
  34. package/dist/components/input-otp/index.d.cts +3 -3
  35. package/dist/components/input-otp/index.d.ts +3 -3
  36. package/dist/components/input-otp/index.js +2 -1
  37. package/dist/components/radio/index.cjs +24 -0
  38. package/dist/components/radio/index.d.cts +1102 -0
  39. package/dist/components/radio/index.d.ts +1102 -0
  40. package/dist/components/radio/index.js +24 -0
  41. package/dist/components/typography/index.d.cts +1 -1
  42. package/dist/components/typography/index.d.ts +1 -1
  43. package/dist/{create-recipe-dBN_ewZc.d.cts → create-recipe-CWvI5ot3.d.cts} +8 -1
  44. package/dist/{create-recipe-C4JkINrA.d.ts → create-recipe-DUo8doTt.d.ts} +8 -1
  45. package/dist/index.cjs +45 -11
  46. package/dist/index.d.cts +4 -2
  47. package/dist/index.d.ts +4 -2
  48. package/dist/index.js +50 -16
  49. package/dist/system/index.cjs +7 -3
  50. package/dist/system/index.d.cts +36 -3
  51. package/dist/system/index.d.ts +36 -3
  52. package/dist/system/index.js +6 -2
  53. package/package.json +21 -1
  54. package/dist/{chunk-3WISQT22.js → chunk-EHARM2EN.js} +3 -3
  55. package/dist/{chunk-I7G77Q65.cjs → chunk-H7DVR52Z.cjs} +2 -2
  56. /package/dist/{chunk-6HXWQ5AU.cjs → chunk-VZGBEGDV.cjs} +0 -0
  57. /package/dist/{chunk-AKXG43S4.js → chunk-Y4BPKSD3.js} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaui/native",
3
- "version": "0.9.1-alpha.26",
3
+ "version": "0.9.1-alpha.28",
4
4
  "description": "Composition-first React Native UI components with native animations powered by Reanimated",
5
5
  "keywords": [
6
6
  "react-native",
@@ -57,6 +57,16 @@
57
57
  "default": "./dist/components/card/index.cjs"
58
58
  }
59
59
  },
60
+ "./checkbox": {
61
+ "import": {
62
+ "types": "./dist/components/checkbox/index.d.ts",
63
+ "default": "./dist/components/checkbox/index.js"
64
+ },
65
+ "require": {
66
+ "types": "./dist/components/checkbox/index.d.cts",
67
+ "default": "./dist/components/checkbox/index.cjs"
68
+ }
69
+ },
60
70
  "./chip": {
61
71
  "import": {
62
72
  "types": "./dist/components/chip/index.d.ts",
@@ -97,6 +107,16 @@
97
107
  "default": "./dist/components/input-otp/index.cjs"
98
108
  }
99
109
  },
110
+ "./radio": {
111
+ "import": {
112
+ "types": "./dist/components/radio/index.d.ts",
113
+ "default": "./dist/components/radio/index.js"
114
+ },
115
+ "require": {
116
+ "types": "./dist/components/radio/index.d.cts",
117
+ "default": "./dist/components/radio/index.cjs"
118
+ }
119
+ },
100
120
  "./text-area": {
101
121
  "import": {
102
122
  "types": "./dist/components/text-area/index.d.ts",
@@ -6,12 +6,12 @@ import {
6
6
  PressableFeedback,
7
7
  usePressState
8
8
  } from "./chunk-4HELPMAK.js";
9
- import {
10
- Icon
11
- } from "./chunk-ICR42HHG.js";
12
9
  import {
13
10
  warnDev
14
11
  } from "./chunk-EGLLDKN6.js";
12
+ import {
13
+ Icon
14
+ } from "./chunk-ICR42HHG.js";
15
15
  import {
16
16
  createRecipe,
17
17
  radiusAxis
@@ -8,10 +8,10 @@ var _chunkJ2JJLKLGcjs = require('./chunk-J2JJLKLG.cjs');
8
8
  var _chunkIG4Q3WQOcjs = require('./chunk-IG4Q3WQO.cjs');
9
9
 
10
10
 
11
- var _chunkB4W2XNBPcjs = require('./chunk-B4W2XNBP.cjs');
11
+ var _chunkEJQCQPETcjs = require('./chunk-EJQCQPET.cjs');
12
12
 
13
13
 
14
- var _chunkEJQCQPETcjs = require('./chunk-EJQCQPET.cjs');
14
+ var _chunkB4W2XNBPcjs = require('./chunk-B4W2XNBP.cjs');
15
15
 
16
16
 
17
17
 
File without changes
File without changes