react-native-unistyles 2.10.0 → 3.0.0-alpha.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (792) hide show
  1. package/README.md +1 -1
  2. package/{react-native-unistyles.podspec → Unistyles.podspec} +13 -5
  3. package/android/CMakeLists.txt +35 -17
  4. package/android/build.gradle +4 -2
  5. package/android/src/main/cxx/cpp-adapter.cpp +82 -65
  6. package/android/src/main/java/com/unistyles/UnistylesPackage.kt +19 -9
  7. package/cxx/common/Breakpoints.h +43 -0
  8. package/cxx/common/Constants.h +11 -0
  9. package/cxx/common/Helpers.h +185 -0
  10. package/cxx/core/HostStyle.cpp +63 -0
  11. package/cxx/core/HostStyle.h +28 -0
  12. package/cxx/core/MediaQueries.cpp +87 -0
  13. package/cxx/core/MediaQueries.h +47 -0
  14. package/cxx/core/StyleSheet.h +31 -0
  15. package/cxx/core/StyleSheetRegistry.cpp +42 -0
  16. package/cxx/core/StyleSheetRegistry.h +26 -0
  17. package/cxx/core/Unistyle.h +75 -0
  18. package/cxx/core/UnistyleData.h +23 -0
  19. package/cxx/core/UnistyleWrapper.cpp +5 -0
  20. package/cxx/core/UnistyleWrapper.h +50 -0
  21. package/cxx/core/UnistylesCommitHook.cpp +54 -0
  22. package/cxx/core/UnistylesCommitHook.h +32 -0
  23. package/cxx/core/UnistylesCommitShadowNode.h +39 -0
  24. package/cxx/core/UnistylesMountHook.cpp +40 -0
  25. package/cxx/core/UnistylesMountHook.h +30 -0
  26. package/cxx/core/UnistylesRegistry.cpp +162 -0
  27. package/cxx/core/UnistylesRegistry.h +61 -0
  28. package/cxx/core/UnistylesState.cpp +95 -0
  29. package/cxx/core/UnistylesState.h +50 -0
  30. package/cxx/hybridObjects/HybridNavigationBar.cpp +17 -0
  31. package/cxx/hybridObjects/HybridNavigationBar.h +19 -0
  32. package/cxx/hybridObjects/HybridShadowRegistry.cpp +33 -0
  33. package/cxx/hybridObjects/HybridShadowRegistry.h +33 -0
  34. package/cxx/hybridObjects/HybridStatusBar.cpp +17 -0
  35. package/cxx/hybridObjects/HybridStatusBar.h +19 -0
  36. package/cxx/hybridObjects/HybridStyleSheet.cpp +241 -0
  37. package/cxx/hybridObjects/HybridStyleSheet.h +64 -0
  38. package/cxx/hybridObjects/HybridUnistylesRuntime.cpp +218 -0
  39. package/cxx/hybridObjects/HybridUnistylesRuntime.h +72 -0
  40. package/cxx/parser/Parser.cpp +642 -0
  41. package/cxx/parser/Parser.h +49 -0
  42. package/cxx/shadowTree/ShadowLeafUpdate.h +13 -0
  43. package/cxx/shadowTree/ShadowTreeManager.cpp +124 -0
  44. package/cxx/shadowTree/ShadowTreeManager.h +23 -0
  45. package/ios/Equatable.swift +64 -0
  46. package/ios/Extensions.swift +11 -0
  47. package/ios/NativePlatform+ios.swift +291 -0
  48. package/ios/NativePlatform.swift +17 -0
  49. package/ios/NativePlatformListener+ios.swift +41 -0
  50. package/ios/Unistyles.h +3 -0
  51. package/ios/UnistylesModuleOnLoad.h +13 -0
  52. package/ios/UnistylesModuleOnLoad.mm +58 -0
  53. package/lib/commonjs/common.js +1 -58
  54. package/lib/commonjs/common.js.map +1 -1
  55. package/lib/commonjs/index.js +27 -66
  56. package/lib/commonjs/index.js.map +1 -1
  57. package/lib/commonjs/{utils/mq.js → mq.js} +12 -2
  58. package/lib/commonjs/mq.js.map +1 -0
  59. package/lib/commonjs/package.json +1 -0
  60. package/lib/commonjs/specs/NativePlatform/NativePlatform.nitro.js +25 -0
  61. package/lib/commonjs/specs/NativePlatform/NativePlatform.nitro.js.map +1 -0
  62. package/lib/commonjs/specs/NativePlatform/index.js +13 -0
  63. package/lib/commonjs/specs/NativePlatform/index.js.map +1 -0
  64. package/lib/commonjs/specs/NavigtionBar/UnistylesNavigationBar.nitro.js +6 -0
  65. package/lib/commonjs/specs/NavigtionBar/UnistylesNavigationBar.nitro.js.map +1 -0
  66. package/lib/commonjs/specs/NavigtionBar/index.js +17 -0
  67. package/lib/commonjs/specs/NavigtionBar/index.js.map +1 -0
  68. package/lib/commonjs/{types/plugin.js → specs/ShadowRegistry/ShadowRegistry.nitro.js} +1 -1
  69. package/lib/commonjs/specs/ShadowRegistry/ShadowRegistry.nitro.js.map +1 -0
  70. package/lib/commonjs/specs/ShadowRegistry/index.js +30 -0
  71. package/lib/commonjs/specs/ShadowRegistry/index.js.map +1 -0
  72. package/lib/commonjs/specs/ShadowRegistry/types.js +2 -0
  73. package/lib/commonjs/specs/ShadowRegistry/types.js.map +1 -0
  74. package/lib/commonjs/{types/normalizer.js → specs/StatusBar/UnistylesStatusBar.nitro.js} +1 -1
  75. package/lib/commonjs/specs/StatusBar/UnistylesStatusBar.nitro.js.map +1 -0
  76. package/lib/commonjs/specs/StatusBar/index.js +33 -0
  77. package/lib/commonjs/specs/StatusBar/index.js.map +1 -0
  78. package/lib/commonjs/specs/StyleSheet/UnistylesStyleSheet.nitro.js +6 -0
  79. package/lib/commonjs/specs/StyleSheet/UnistylesStyleSheet.nitro.js.map +1 -0
  80. package/lib/commonjs/specs/StyleSheet/index.js +18 -0
  81. package/lib/commonjs/specs/StyleSheet/index.js.map +1 -0
  82. package/lib/commonjs/specs/TurboUnistyles/NativeTurboUnistyles.js +8 -0
  83. package/lib/commonjs/specs/TurboUnistyles/NativeTurboUnistyles.js.map +1 -0
  84. package/lib/commonjs/specs/TurboUnistyles/index.js +4 -0
  85. package/lib/commonjs/specs/TurboUnistyles/index.js.map +1 -0
  86. package/lib/commonjs/{types/unistyles.js → specs/UnistylesRuntime/UnistylesRuntime.nitro.js} +1 -1
  87. package/lib/commonjs/specs/UnistylesRuntime/UnistylesRuntime.nitro.js.map +1 -0
  88. package/lib/commonjs/specs/UnistylesRuntime/index.js +26 -0
  89. package/lib/commonjs/specs/UnistylesRuntime/index.js.map +1 -0
  90. package/lib/commonjs/specs/index.js +47 -0
  91. package/lib/commonjs/specs/index.js.map +1 -0
  92. package/lib/commonjs/specs/index.web.js +24 -0
  93. package/lib/commonjs/specs/index.web.js.map +1 -0
  94. package/lib/commonjs/specs/types.js +24 -0
  95. package/lib/commonjs/specs/types.js.map +1 -0
  96. package/lib/commonjs/types/accessibility.js +37 -0
  97. package/lib/commonjs/types/accessibility.js.map +1 -0
  98. package/lib/commonjs/types/index.js +16 -30
  99. package/lib/commonjs/types/index.js.map +1 -1
  100. package/lib/commonjs/types/stylesheet.js +3 -0
  101. package/lib/commonjs/types/stylesheet.js.map +1 -1
  102. package/lib/commonjs/types/variants.js +4 -0
  103. package/lib/commonjs/web/convert/boxShadow.js +77 -0
  104. package/lib/commonjs/web/convert/boxShadow.js.map +1 -0
  105. package/lib/commonjs/web/convert/breakpoint.js +25 -0
  106. package/lib/commonjs/web/convert/breakpoint.js.map +1 -0
  107. package/lib/commonjs/web/convert/index.js +76 -0
  108. package/lib/commonjs/web/convert/index.js.map +1 -0
  109. package/lib/commonjs/web/convert/module.d.js.map +1 -0
  110. package/lib/commonjs/web/convert/shadow.js +68 -0
  111. package/lib/commonjs/web/convert/shadow.js.map +1 -0
  112. package/lib/commonjs/web/convert/style.js +89 -0
  113. package/lib/commonjs/web/convert/style.js.map +1 -0
  114. package/lib/commonjs/web/convert/textShadow.js +73 -0
  115. package/lib/commonjs/web/convert/textShadow.js.map +1 -0
  116. package/lib/commonjs/web/convert/transform.js +72 -0
  117. package/lib/commonjs/web/convert/transform.js.map +1 -0
  118. package/lib/commonjs/web/convert/types.js +9 -0
  119. package/lib/commonjs/web/convert/types.js.map +1 -0
  120. package/lib/commonjs/web/convert/utils.js +55 -0
  121. package/lib/commonjs/web/convert/utils.js.map +1 -0
  122. package/lib/commonjs/web/create.js +89 -0
  123. package/lib/commonjs/web/create.js.map +1 -0
  124. package/lib/commonjs/web/index.js +51 -0
  125. package/lib/commonjs/web/index.js.map +1 -0
  126. package/lib/commonjs/web/listener/index.js +13 -0
  127. package/lib/commonjs/web/listener/index.js.map +1 -0
  128. package/lib/commonjs/web/listener/listener.js +36 -0
  129. package/lib/commonjs/web/listener/listener.js.map +1 -0
  130. package/lib/commonjs/web/mock.js +37 -0
  131. package/lib/commonjs/web/mock.js.map +1 -0
  132. package/lib/commonjs/web/mq.js +23 -0
  133. package/lib/commonjs/web/mq.js.map +1 -0
  134. package/lib/commonjs/web/pseudo.js +11 -0
  135. package/lib/commonjs/web/pseudo.js.map +1 -0
  136. package/lib/commonjs/web/registry.js +37 -0
  137. package/lib/commonjs/web/registry.js.map +1 -0
  138. package/lib/commonjs/web/runtime.js +164 -0
  139. package/lib/commonjs/web/runtime.js.map +1 -0
  140. package/lib/commonjs/web/state.js +121 -0
  141. package/lib/commonjs/web/state.js.map +1 -0
  142. package/lib/commonjs/web/utils.js +78 -0
  143. package/lib/commonjs/web/utils.js.map +1 -0
  144. package/lib/commonjs/web/variants/getVariants.js +39 -0
  145. package/lib/commonjs/web/variants/getVariants.js.map +1 -0
  146. package/lib/commonjs/web/variants/index.js +28 -0
  147. package/lib/commonjs/web/variants/index.js.map +1 -0
  148. package/lib/commonjs/web/variants/useVariants.js +75 -0
  149. package/lib/commonjs/web/variants/useVariants.js.map +1 -0
  150. package/lib/module/common.js +2 -56
  151. package/lib/module/common.js.map +1 -1
  152. package/lib/module/global.js +1 -1
  153. package/lib/module/index.js +12 -29
  154. package/lib/module/index.js.map +1 -1
  155. package/lib/module/{utils/mq.js → mq.js} +14 -2
  156. package/lib/module/mq.js.map +1 -0
  157. package/lib/module/package.json +1 -0
  158. package/lib/module/specs/NativePlatform/NativePlatform.nitro.js +23 -0
  159. package/lib/module/specs/NativePlatform/NativePlatform.nitro.js.map +1 -0
  160. package/lib/module/specs/NativePlatform/index.js +4 -0
  161. package/lib/module/specs/NativePlatform/index.js.map +1 -0
  162. package/lib/module/specs/NavigtionBar/UnistylesNavigationBar.nitro.js +4 -0
  163. package/lib/module/specs/NavigtionBar/UnistylesNavigationBar.nitro.js.map +1 -0
  164. package/lib/module/specs/NavigtionBar/index.js +12 -0
  165. package/lib/module/specs/NavigtionBar/index.js.map +1 -0
  166. package/lib/module/specs/ShadowRegistry/ShadowRegistry.nitro.js +4 -0
  167. package/lib/module/specs/ShadowRegistry/ShadowRegistry.nitro.js.map +1 -0
  168. package/lib/module/specs/ShadowRegistry/index.js +26 -0
  169. package/lib/module/specs/ShadowRegistry/index.js.map +1 -0
  170. package/lib/module/specs/ShadowRegistry/types.js +2 -0
  171. package/lib/module/specs/ShadowRegistry/types.js.map +1 -0
  172. package/lib/module/specs/StatusBar/UnistylesStatusBar.nitro.js +4 -0
  173. package/lib/module/specs/StatusBar/UnistylesStatusBar.nitro.js.map +1 -0
  174. package/lib/module/specs/StatusBar/index.js +28 -0
  175. package/lib/module/specs/StatusBar/index.js.map +1 -0
  176. package/lib/module/specs/StyleSheet/UnistylesStyleSheet.nitro.js +4 -0
  177. package/lib/module/specs/StyleSheet/UnistylesStyleSheet.nitro.js.map +1 -0
  178. package/lib/module/specs/StyleSheet/index.js +14 -0
  179. package/lib/module/specs/StyleSheet/index.js.map +1 -0
  180. package/lib/module/specs/TurboUnistyles/NativeTurboUnistyles.js +9 -0
  181. package/lib/module/specs/TurboUnistyles/NativeTurboUnistyles.js.map +1 -0
  182. package/lib/module/specs/TurboUnistyles/index.js +4 -0
  183. package/lib/module/specs/TurboUnistyles/index.js.map +1 -0
  184. package/lib/module/specs/UnistylesRuntime/UnistylesRuntime.nitro.js +4 -0
  185. package/lib/module/specs/UnistylesRuntime/UnistylesRuntime.nitro.js.map +1 -0
  186. package/lib/module/specs/UnistylesRuntime/index.js +22 -0
  187. package/lib/module/specs/UnistylesRuntime/index.js.map +1 -0
  188. package/lib/module/specs/index.js +10 -0
  189. package/lib/module/specs/index.js.map +1 -0
  190. package/lib/module/specs/index.web.js +5 -0
  191. package/lib/module/specs/index.web.js.map +1 -0
  192. package/lib/module/specs/types.js +20 -0
  193. package/lib/module/specs/types.js.map +1 -0
  194. package/lib/module/types/accessibility.js +33 -0
  195. package/lib/module/types/accessibility.js.map +1 -0
  196. package/lib/module/types/breakpoints.js +2 -0
  197. package/lib/module/types/common.js +1 -1
  198. package/lib/module/types/core.js +2 -0
  199. package/lib/module/types/index.js +3 -3
  200. package/lib/module/types/index.js.map +1 -1
  201. package/lib/module/types/stylesheet.js +5 -0
  202. package/lib/module/types/stylesheet.js.map +1 -1
  203. package/lib/module/types/variants.js +2 -0
  204. package/lib/module/web/convert/boxShadow.js +72 -0
  205. package/lib/module/web/convert/boxShadow.js.map +1 -0
  206. package/lib/module/web/convert/breakpoint.js +20 -0
  207. package/lib/module/web/convert/breakpoint.js.map +1 -0
  208. package/lib/module/web/convert/index.js +71 -0
  209. package/lib/module/web/convert/index.js.map +1 -0
  210. package/lib/module/web/convert/module.d.js +2 -0
  211. package/lib/module/web/convert/module.d.js.map +1 -0
  212. package/lib/module/web/convert/shadow.js +63 -0
  213. package/lib/module/web/convert/shadow.js.map +1 -0
  214. package/lib/module/web/convert/style.js +84 -0
  215. package/lib/module/web/convert/style.js.map +1 -0
  216. package/lib/module/web/convert/textShadow.js +68 -0
  217. package/lib/module/web/convert/textShadow.js.map +1 -0
  218. package/lib/module/web/convert/transform.js +67 -0
  219. package/lib/module/web/convert/transform.js.map +1 -0
  220. package/lib/module/web/convert/types.js +5 -0
  221. package/lib/module/web/convert/types.js.map +1 -0
  222. package/lib/module/web/convert/utils.js +43 -0
  223. package/lib/module/web/convert/utils.js.map +1 -0
  224. package/lib/module/web/create.js +84 -0
  225. package/lib/module/web/create.js.map +1 -0
  226. package/lib/module/web/index.js +24 -0
  227. package/lib/module/web/index.js.map +1 -0
  228. package/lib/module/web/listener/index.js +4 -0
  229. package/lib/module/web/listener/index.js.map +1 -0
  230. package/lib/module/web/listener/listener.js +31 -0
  231. package/lib/module/web/listener/listener.js.map +1 -0
  232. package/lib/module/web/mock.js +33 -0
  233. package/lib/module/web/mock.js.map +1 -0
  234. package/lib/module/web/mq.js +17 -0
  235. package/lib/module/web/mq.js.map +1 -0
  236. package/lib/module/web/pseudo.js +6 -0
  237. package/lib/module/web/pseudo.js.map +1 -0
  238. package/lib/module/web/registry.js +33 -0
  239. package/lib/module/web/registry.js.map +1 -0
  240. package/lib/module/web/runtime.js +160 -0
  241. package/lib/module/web/runtime.js.map +1 -0
  242. package/lib/module/web/state.js +117 -0
  243. package/lib/module/web/state.js.map +1 -0
  244. package/lib/module/web/utils.js +65 -0
  245. package/lib/module/web/utils.js.map +1 -0
  246. package/lib/module/web/variants/getVariants.js +34 -0
  247. package/lib/module/web/variants/getVariants.js.map +1 -0
  248. package/lib/module/web/variants/index.js +5 -0
  249. package/lib/module/web/variants/index.js.map +1 -0
  250. package/lib/module/web/variants/useVariants.js +70 -0
  251. package/lib/module/web/variants/useVariants.js.map +1 -0
  252. package/lib/typescript/example/App.d.ts +4 -0
  253. package/lib/typescript/example/App.d.ts.map +1 -0
  254. package/lib/typescript/example/Typography.d.ts +12 -0
  255. package/lib/typescript/example/Typography.d.ts.map +1 -0
  256. package/lib/typescript/example/unistyles.d.ts +63 -0
  257. package/lib/typescript/example/unistyles.d.ts.map +1 -0
  258. package/lib/typescript/expo-example/App.d.ts +4 -0
  259. package/lib/typescript/expo-example/App.d.ts.map +1 -0
  260. package/lib/typescript/expo-example/unistyles.d.ts +63 -0
  261. package/lib/typescript/expo-example/unistyles.d.ts.map +1 -0
  262. package/lib/typescript/src/common.d.ts +0 -50
  263. package/lib/typescript/src/common.d.ts.map +1 -1
  264. package/lib/typescript/src/index.d.ts +3 -76
  265. package/lib/typescript/src/index.d.ts.map +1 -1
  266. package/lib/typescript/src/{utils/mq.d.ts → mq.d.ts} +2 -2
  267. package/lib/typescript/src/mq.d.ts.map +1 -0
  268. package/lib/typescript/src/specs/NativePlatform/NativePlatform.nitro.d.ts +57 -0
  269. package/lib/typescript/src/specs/NativePlatform/NativePlatform.nitro.d.ts.map +1 -0
  270. package/lib/typescript/src/specs/NativePlatform/index.d.ts +3 -0
  271. package/lib/typescript/src/specs/NativePlatform/index.d.ts.map +1 -0
  272. package/lib/typescript/src/specs/NavigtionBar/UnistylesNavigationBar.nitro.d.ts +11 -0
  273. package/lib/typescript/src/specs/NavigtionBar/UnistylesNavigationBar.nitro.d.ts.map +1 -0
  274. package/lib/typescript/src/specs/NavigtionBar/index.d.ts +11 -0
  275. package/lib/typescript/src/specs/NavigtionBar/index.d.ts.map +1 -0
  276. package/lib/typescript/src/specs/ShadowRegistry/ShadowRegistry.nitro.d.ts +7 -0
  277. package/lib/typescript/src/specs/ShadowRegistry/ShadowRegistry.nitro.d.ts.map +1 -0
  278. package/lib/typescript/src/specs/ShadowRegistry/index.d.ts +12 -0
  279. package/lib/typescript/src/specs/ShadowRegistry/index.d.ts.map +1 -0
  280. package/lib/typescript/src/specs/ShadowRegistry/types.d.ts +27 -0
  281. package/lib/typescript/src/specs/ShadowRegistry/types.d.ts.map +1 -0
  282. package/lib/typescript/src/specs/StatusBar/UnistylesStatusBar.nitro.d.ts +11 -0
  283. package/lib/typescript/src/specs/StatusBar/UnistylesStatusBar.nitro.d.ts.map +1 -0
  284. package/lib/typescript/src/specs/StatusBar/index.d.ts +15 -0
  285. package/lib/typescript/src/specs/StatusBar/index.d.ts.map +1 -0
  286. package/lib/typescript/src/specs/StyleSheet/UnistylesStyleSheet.nitro.d.ts +9 -0
  287. package/lib/typescript/src/specs/StyleSheet/UnistylesStyleSheet.nitro.d.ts.map +1 -0
  288. package/lib/typescript/src/specs/StyleSheet/index.d.ts +29 -0
  289. package/lib/typescript/src/specs/StyleSheet/index.d.ts.map +1 -0
  290. package/lib/typescript/src/specs/TurboUnistyles/NativeTurboUnistyles.d.ts +2 -0
  291. package/lib/typescript/src/specs/TurboUnistyles/NativeTurboUnistyles.d.ts.map +1 -0
  292. package/lib/typescript/src/specs/TurboUnistyles/index.d.ts +2 -0
  293. package/lib/typescript/src/specs/TurboUnistyles/index.d.ts.map +1 -0
  294. package/lib/typescript/src/specs/UnistylesRuntime/UnistylesRuntime.nitro.d.ts +41 -0
  295. package/lib/typescript/src/specs/UnistylesRuntime/UnistylesRuntime.nitro.d.ts.map +1 -0
  296. package/lib/typescript/src/specs/UnistylesRuntime/index.d.ts +25 -0
  297. package/lib/typescript/src/specs/UnistylesRuntime/index.d.ts.map +1 -0
  298. package/lib/typescript/src/specs/index.d.ts +10 -0
  299. package/lib/typescript/src/specs/index.d.ts.map +1 -0
  300. package/lib/typescript/src/specs/index.web.d.ts +4 -0
  301. package/lib/typescript/src/specs/index.web.d.ts.map +1 -0
  302. package/lib/typescript/src/specs/types.d.ts +32 -0
  303. package/lib/typescript/src/specs/types.d.ts.map +1 -0
  304. package/lib/typescript/src/types/accessibility.d.ts +28 -0
  305. package/lib/typescript/src/types/accessibility.d.ts.map +1 -0
  306. package/lib/typescript/src/types/breakpoints.d.ts +12 -5
  307. package/lib/typescript/src/types/breakpoints.d.ts.map +1 -1
  308. package/lib/typescript/src/types/common.d.ts +1 -0
  309. package/lib/typescript/src/types/common.d.ts.map +1 -1
  310. package/lib/typescript/src/types/index.d.ts +2 -5
  311. package/lib/typescript/src/types/index.d.ts.map +1 -1
  312. package/lib/typescript/src/types/stylesheet.d.ts +31 -9
  313. package/lib/typescript/src/types/stylesheet.d.ts.map +1 -1
  314. package/lib/typescript/src/types/variants.d.ts +5 -8
  315. package/lib/typescript/src/types/variants.d.ts.map +1 -1
  316. package/lib/typescript/src/web/convert/boxShadow.d.ts +3 -0
  317. package/lib/typescript/src/web/convert/boxShadow.d.ts.map +1 -0
  318. package/lib/typescript/src/web/convert/breakpoint.d.ts +3 -0
  319. package/lib/typescript/src/web/convert/breakpoint.d.ts.map +1 -0
  320. package/lib/typescript/src/web/convert/index.d.ts +4 -0
  321. package/lib/typescript/src/web/convert/index.d.ts.map +1 -0
  322. package/lib/typescript/src/web/convert/shadow.d.ts +2 -0
  323. package/lib/typescript/src/web/convert/shadow.d.ts.map +1 -0
  324. package/lib/typescript/src/web/convert/style.d.ts +3 -0
  325. package/lib/typescript/src/web/convert/style.d.ts.map +1 -0
  326. package/lib/typescript/src/web/convert/textShadow.d.ts +3 -0
  327. package/lib/typescript/src/web/convert/textShadow.d.ts.map +1 -0
  328. package/lib/typescript/src/web/convert/transform.d.ts +5 -0
  329. package/lib/typescript/src/web/convert/transform.d.ts.map +1 -0
  330. package/lib/typescript/src/web/convert/types.d.ts +13 -0
  331. package/lib/typescript/src/web/convert/types.d.ts.map +1 -0
  332. package/lib/typescript/src/web/convert/utils.d.ts +8 -0
  333. package/lib/typescript/src/web/convert/utils.d.ts.map +1 -0
  334. package/lib/typescript/src/web/create.d.ts +2449 -0
  335. package/lib/typescript/src/web/create.d.ts.map +1 -0
  336. package/lib/typescript/src/web/index.d.ts +2464 -0
  337. package/lib/typescript/src/web/index.d.ts.map +1 -0
  338. package/lib/typescript/src/web/listener/index.d.ts +2 -0
  339. package/lib/typescript/src/web/listener/index.d.ts.map +1 -0
  340. package/lib/typescript/src/web/listener/listener.d.ts +10 -0
  341. package/lib/typescript/src/web/listener/listener.d.ts.map +1 -0
  342. package/lib/typescript/src/web/mock.d.ts +14 -0
  343. package/lib/typescript/src/web/mock.d.ts.map +1 -0
  344. package/lib/typescript/src/web/mq.d.ts +4 -0
  345. package/lib/typescript/src/web/mq.d.ts.map +1 -0
  346. package/lib/typescript/src/web/pseudo.d.ts +4 -0
  347. package/lib/typescript/src/web/pseudo.d.ts.map +1 -0
  348. package/lib/typescript/src/web/registry.d.ts +12 -0
  349. package/lib/typescript/src/web/registry.d.ts.map +1 -0
  350. package/lib/typescript/src/web/runtime.d.ts +42 -0
  351. package/lib/typescript/src/web/runtime.d.ts.map +1 -0
  352. package/lib/typescript/src/web/state.d.ts +24 -0
  353. package/lib/typescript/src/web/state.d.ts.map +1 -0
  354. package/lib/typescript/src/web/utils.d.ts +20 -0
  355. package/lib/typescript/src/web/utils.d.ts.map +1 -0
  356. package/lib/typescript/src/web/variants/getVariants.d.ts +3 -0
  357. package/lib/typescript/src/web/variants/getVariants.d.ts.map +1 -0
  358. package/lib/typescript/src/web/variants/index.d.ts +3 -0
  359. package/lib/typescript/src/web/variants/index.d.ts.map +1 -0
  360. package/lib/typescript/src/web/variants/useVariants.d.ts +3 -0
  361. package/lib/typescript/src/web/variants/useVariants.d.ts.map +1 -0
  362. package/nitrogen/generated/android/UnistylesOnLoad.cpp +34 -0
  363. package/nitrogen/generated/android/UnistylesOnLoad.hpp +25 -0
  364. package/nitrogen/generated/android/UnistylesOnLoad.kt +1 -0
  365. package/nitrogen/generated/android/c++/JColorScheme.hpp +61 -0
  366. package/nitrogen/generated/android/c++/JDimensions.hpp +56 -0
  367. package/nitrogen/generated/android/c++/JFunc_void_std__vector_UnistyleDependency_.hpp +60 -0
  368. package/nitrogen/generated/android/c++/JHybridNativePlatformSpec.cpp +145 -0
  369. package/nitrogen/generated/android/c++/JHybridNativePlatformSpec.hpp +70 -0
  370. package/nitrogen/generated/android/c++/JInsets.hpp +68 -0
  371. package/nitrogen/generated/android/c++/JOrientation.hpp +58 -0
  372. package/nitrogen/generated/android/c++/JUnistyleDependency.hpp +94 -0
  373. package/nitrogen/generated/android/c++/JUnistylesNativeMiniRuntime.hpp +96 -0
  374. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/ColorScheme.kt +22 -0
  375. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Dimensions.kt +21 -0
  376. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Func_void_std__vector_UnistyleDependency_.kt +45 -0
  377. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/HybridNativePlatformSpec.kt +134 -0
  378. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Insets.kt +24 -0
  379. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Orientation.kt +21 -0
  380. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/UnistyleDependency.kt +33 -0
  381. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/UnistylesNativeMiniRuntime.kt +29 -0
  382. package/nitrogen/generated/android/unistyles+autolinking.cmake +52 -0
  383. package/nitrogen/generated/android/unistyles+autolinking.gradle +25 -0
  384. package/nitrogen/generated/ios/Unistyles+autolinking.rb +56 -0
  385. package/nitrogen/generated/ios/Unistyles-Swift-Cxx-Bridge.cpp +8 -0
  386. package/nitrogen/generated/ios/Unistyles-Swift-Cxx-Bridge.hpp +86 -0
  387. package/nitrogen/generated/ios/Unistyles-Swift-Cxx-Umbrella.hpp +88 -0
  388. package/nitrogen/generated/ios/c++/HybridNativePlatformSpecSwift.cpp +11 -0
  389. package/nitrogen/generated/ios/c++/HybridNativePlatformSpecSwift.hpp +151 -0
  390. package/nitrogen/generated/ios/swift/ColorScheme.swift +44 -0
  391. package/nitrogen/generated/ios/swift/Dimensions.swift +46 -0
  392. package/nitrogen/generated/ios/swift/HybridNativePlatformSpec.swift +65 -0
  393. package/nitrogen/generated/ios/swift/HybridNativePlatformSpecCxx.swift +273 -0
  394. package/nitrogen/generated/ios/swift/Insets.swift +79 -0
  395. package/nitrogen/generated/ios/swift/Orientation.swift +40 -0
  396. package/nitrogen/generated/ios/swift/UnistyleDependency.swift +88 -0
  397. package/nitrogen/generated/ios/swift/UnistylesNativeMiniRuntime.swift +134 -0
  398. package/nitrogen/generated/shared/c++/ColorScheme.hpp +82 -0
  399. package/nitrogen/generated/shared/c++/Dimensions.hpp +72 -0
  400. package/nitrogen/generated/shared/c++/HybridNativePlatformSpec.cpp +38 -0
  401. package/nitrogen/generated/shared/c++/HybridNativePlatformSpec.hpp +95 -0
  402. package/nitrogen/generated/shared/c++/HybridUnistylesNavigationBarSpec.cpp +24 -0
  403. package/nitrogen/generated/shared/c++/HybridUnistylesNavigationBarSpec.hpp +61 -0
  404. package/nitrogen/generated/shared/c++/HybridUnistylesRuntimeSpec.cpp +36 -0
  405. package/nitrogen/generated/shared/c++/HybridUnistylesRuntimeSpec.hpp +88 -0
  406. package/nitrogen/generated/shared/c++/HybridUnistylesShadowRegistrySpec.cpp +21 -0
  407. package/nitrogen/generated/shared/c++/HybridUnistylesShadowRegistrySpec.hpp +59 -0
  408. package/nitrogen/generated/shared/c++/HybridUnistylesStatusBarSpec.cpp +24 -0
  409. package/nitrogen/generated/shared/c++/HybridUnistylesStatusBarSpec.hpp +61 -0
  410. package/nitrogen/generated/shared/c++/HybridUnistylesStyleSheetSpec.cpp +22 -0
  411. package/nitrogen/generated/shared/c++/HybridUnistylesStyleSheetSpec.hpp +60 -0
  412. package/nitrogen/generated/shared/c++/Insets.hpp +84 -0
  413. package/nitrogen/generated/shared/c++/Orientation.hpp +78 -0
  414. package/nitrogen/generated/shared/c++/UnistyleDependency.hpp +76 -0
  415. package/nitrogen/generated/shared/c++/UnistylesCxxMiniRuntime.hpp +128 -0
  416. package/nitrogen/generated/shared/c++/UnistylesNativeMiniRuntime.hpp +115 -0
  417. package/package.json +34 -59
  418. package/plugin/__tests__/dependencies.spec.js +438 -0
  419. package/plugin/__tests__/ref.spec.js +1170 -0
  420. package/plugin/__tests__/stylesheet.spec.js +489 -0
  421. package/plugin/common.js +119 -0
  422. package/plugin/import.js +8 -0
  423. package/plugin/index.js +132 -0
  424. package/plugin/ref.js +211 -0
  425. package/plugin/style.js +47 -0
  426. package/plugin/stylesheet.js +190 -0
  427. package/plugin/variants.js +33 -0
  428. package/src/common.ts +0 -58
  429. package/src/index.ts +11 -52
  430. package/src/{utils/mq.ts → mq.ts} +13 -4
  431. package/src/specs/NativePlatform/NativePlatform.nitro.ts +61 -0
  432. package/src/specs/NativePlatform/index.ts +2 -0
  433. package/src/specs/NavigtionBar/UnistylesNavigationBar.nitro.ts +10 -0
  434. package/src/specs/NavigtionBar/index.ts +25 -0
  435. package/src/specs/ShadowRegistry/ShadowRegistry.nitro.ts +3 -0
  436. package/src/specs/ShadowRegistry/index.ts +51 -0
  437. package/src/specs/ShadowRegistry/types.ts +29 -0
  438. package/src/specs/StatusBar/UnistylesStatusBar.nitro.ts +10 -0
  439. package/src/specs/StatusBar/index.ts +48 -0
  440. package/src/specs/StyleSheet/UnistylesStyleSheet.nitro.ts +6 -0
  441. package/src/specs/StyleSheet/index.ts +46 -0
  442. package/src/specs/TurboUnistyles/NativeTurboUnistyles.ts +8 -0
  443. package/src/specs/TurboUnistyles/index.ts +1 -0
  444. package/src/specs/UnistylesRuntime/UnistylesRuntime.nitro.ts +47 -0
  445. package/src/specs/UnistylesRuntime/index.ts +64 -0
  446. package/src/specs/index.ts +23 -0
  447. package/src/specs/index.web.ts +5 -0
  448. package/src/specs/types.ts +38 -0
  449. package/src/types/accessibility.ts +29 -0
  450. package/src/types/breakpoints.ts +21 -14
  451. package/src/types/common.ts +1 -0
  452. package/src/types/index.ts +2 -5
  453. package/src/types/stylesheet.ts +41 -9
  454. package/src/types/variants.ts +7 -11
  455. package/src/web/convert/boxShadow.ts +72 -0
  456. package/src/web/convert/breakpoint.ts +21 -0
  457. package/src/web/convert/index.ts +78 -0
  458. package/src/web/convert/shadow.ts +68 -0
  459. package/src/web/convert/style.ts +94 -0
  460. package/src/web/convert/textShadow.ts +69 -0
  461. package/src/web/convert/transform.ts +89 -0
  462. package/src/web/convert/types.ts +16 -0
  463. package/src/web/convert/utils.ts +54 -0
  464. package/src/web/create.ts +105 -0
  465. package/src/web/index.ts +24 -0
  466. package/src/web/listener/index.ts +1 -0
  467. package/src/web/listener/listener.ts +33 -0
  468. package/src/web/mock.ts +35 -0
  469. package/src/web/mq.ts +19 -0
  470. package/src/web/pseudo.ts +11 -0
  471. package/src/web/registry.ts +41 -0
  472. package/src/web/runtime.ts +198 -0
  473. package/src/web/state.ts +148 -0
  474. package/src/web/utils.ts +95 -0
  475. package/src/web/variants/getVariants.ts +42 -0
  476. package/src/web/variants/index.ts +2 -0
  477. package/src/web/variants/useVariants.ts +79 -0
  478. package/android/src/main/java/com/unistyles/Models.kt +0 -27
  479. package/android/src/main/java/com/unistyles/Platform.kt +0 -324
  480. package/android/src/main/java/com/unistyles/UnistylesModule.kt +0 -217
  481. package/cxx/Macros.h +0 -11
  482. package/cxx/UnistylesImpl.cpp +0 -310
  483. package/cxx/UnistylesModel.cpp +0 -230
  484. package/cxx/UnistylesModel.h +0 -143
  485. package/cxx/UnistylesRuntime.cpp +0 -36
  486. package/cxx/UnistylesRuntime.h +0 -81
  487. package/ios/UnistylesModule.h +0 -28
  488. package/ios/UnistylesModule.mm +0 -77
  489. package/ios/platform/Platform_Shared.h +0 -8
  490. package/ios/platform/Platform_Shared.mm +0 -160
  491. package/ios/platform/Platform_iOS.h +0 -20
  492. package/ios/platform/Platform_iOS.mm +0 -193
  493. package/ios/platform/Platform_macOS.h +0 -19
  494. package/ios/platform/Platform_macOS.mm +0 -117
  495. package/ios/platform/Platform_tvOS.h +0 -16
  496. package/ios/platform/Platform_tvOS.mm +0 -92
  497. package/ios/platform/Platform_visionOS.h +0 -19
  498. package/ios/platform/Platform_visionOS.mm +0 -116
  499. package/lib/commonjs/core/UnistyleRegistry.js +0 -110
  500. package/lib/commonjs/core/UnistyleRegistry.js.map +0 -1
  501. package/lib/commonjs/core/Unistyles.js +0 -39
  502. package/lib/commonjs/core/Unistyles.js.map +0 -1
  503. package/lib/commonjs/core/UnistylesModule.js +0 -268
  504. package/lib/commonjs/core/UnistylesModule.js.map +0 -1
  505. package/lib/commonjs/core/UnistylesModule.native.js +0 -9
  506. package/lib/commonjs/core/UnistylesModule.native.js.map +0 -1
  507. package/lib/commonjs/core/UnistylesModule.windows.js +0 -11
  508. package/lib/commonjs/core/UnistylesModule.windows.js.map +0 -1
  509. package/lib/commonjs/core/UnistylesRuntime.js +0 -284
  510. package/lib/commonjs/core/UnistylesRuntime.js.map +0 -1
  511. package/lib/commonjs/core/index.js +0 -13
  512. package/lib/commonjs/core/index.js.map +0 -1
  513. package/lib/commonjs/core/mocks/UnistylesMockedBridge.js +0 -36
  514. package/lib/commonjs/core/mocks/UnistylesMockedBridge.js.map +0 -1
  515. package/lib/commonjs/core/mocks/UnistylesMockedRegistry.js +0 -46
  516. package/lib/commonjs/core/mocks/UnistylesMockedRegistry.js.map +0 -1
  517. package/lib/commonjs/core/mocks/UnistylesMockedRuntime.js +0 -122
  518. package/lib/commonjs/core/mocks/UnistylesMockedRuntime.js.map +0 -1
  519. package/lib/commonjs/core/mocks/index.js +0 -27
  520. package/lib/commonjs/core/mocks/index.js.map +0 -1
  521. package/lib/commonjs/createStyleSheet.js +0 -14
  522. package/lib/commonjs/createStyleSheet.js.map +0 -1
  523. package/lib/commonjs/hooks/index.js +0 -34
  524. package/lib/commonjs/hooks/index.js.map +0 -1
  525. package/lib/commonjs/hooks/useCSS.js +0 -44
  526. package/lib/commonjs/hooks/useCSS.js.map +0 -1
  527. package/lib/commonjs/hooks/useCSS.native.js +0 -9
  528. package/lib/commonjs/hooks/useCSS.native.js.map +0 -1
  529. package/lib/commonjs/hooks/useInitialTheme.js +0 -17
  530. package/lib/commonjs/hooks/useInitialTheme.js.map +0 -1
  531. package/lib/commonjs/hooks/useUnistyles.js +0 -74
  532. package/lib/commonjs/hooks/useUnistyles.js.map +0 -1
  533. package/lib/commonjs/hooks/useVariants.js +0 -14
  534. package/lib/commonjs/hooks/useVariants.js.map +0 -1
  535. package/lib/commonjs/normalizer/index.js +0 -32
  536. package/lib/commonjs/normalizer/index.js.map +0 -1
  537. package/lib/commonjs/normalizer/module.d.js.map +0 -1
  538. package/lib/commonjs/normalizer/normalizeStyle.js +0 -59
  539. package/lib/commonjs/normalizer/normalizeStyle.js.map +0 -1
  540. package/lib/commonjs/normalizer/normalizer.js +0 -88
  541. package/lib/commonjs/normalizer/normalizer.js.map +0 -1
  542. package/lib/commonjs/normalizer/normalizer.macos.js +0 -3
  543. package/lib/commonjs/normalizer/normalizer.macos.js.map +0 -1
  544. package/lib/commonjs/plugins/cssMediaQueriesPlugin.js +0 -14
  545. package/lib/commonjs/plugins/cssMediaQueriesPlugin.js.map +0 -1
  546. package/lib/commonjs/plugins/index.js +0 -20
  547. package/lib/commonjs/plugins/index.js.map +0 -1
  548. package/lib/commonjs/plugins/normalizeWebStylesPlugin.js +0 -12
  549. package/lib/commonjs/plugins/normalizeWebStylesPlugin.js.map +0 -1
  550. package/lib/commonjs/types/color.js +0 -2
  551. package/lib/commonjs/types/color.js.map +0 -1
  552. package/lib/commonjs/types/normalizer.js.map +0 -1
  553. package/lib/commonjs/types/plugin.js.map +0 -1
  554. package/lib/commonjs/types/unistyles.js.map +0 -1
  555. package/lib/commonjs/useStyles.js +0 -47
  556. package/lib/commonjs/useStyles.js.map +0 -1
  557. package/lib/commonjs/utils/breakpoints.js +0 -33
  558. package/lib/commonjs/utils/breakpoints.js.map +0 -1
  559. package/lib/commonjs/utils/cssMediaQuery.js +0 -244
  560. package/lib/commonjs/utils/cssMediaQuery.js.map +0 -1
  561. package/lib/commonjs/utils/generateId.js +0 -15
  562. package/lib/commonjs/utils/generateId.js.map +0 -1
  563. package/lib/commonjs/utils/hash32.js +0 -43
  564. package/lib/commonjs/utils/hash32.js.map +0 -1
  565. package/lib/commonjs/utils/index.js +0 -91
  566. package/lib/commonjs/utils/index.js.map +0 -1
  567. package/lib/commonjs/utils/mq.js.map +0 -1
  568. package/lib/commonjs/utils/mqParser.js +0 -89
  569. package/lib/commonjs/utils/mqParser.js.map +0 -1
  570. package/lib/commonjs/utils/parseColor.js +0 -35
  571. package/lib/commonjs/utils/parseColor.js.map +0 -1
  572. package/lib/commonjs/utils/styles.js +0 -73
  573. package/lib/commonjs/utils/styles.js.map +0 -1
  574. package/lib/commonjs/utils/withPlugins.js +0 -15
  575. package/lib/commonjs/utils/withPlugins.js.map +0 -1
  576. package/lib/module/core/UnistyleRegistry.js +0 -103
  577. package/lib/module/core/UnistyleRegistry.js.map +0 -1
  578. package/lib/module/core/Unistyles.js +0 -33
  579. package/lib/module/core/Unistyles.js.map +0 -1
  580. package/lib/module/core/UnistylesModule.js +0 -261
  581. package/lib/module/core/UnistylesModule.js.map +0 -1
  582. package/lib/module/core/UnistylesModule.native.js +0 -3
  583. package/lib/module/core/UnistylesModule.native.js.map +0 -1
  584. package/lib/module/core/UnistylesModule.windows.js +0 -5
  585. package/lib/module/core/UnistylesModule.windows.js.map +0 -1
  586. package/lib/module/core/UnistylesRuntime.js +0 -278
  587. package/lib/module/core/UnistylesRuntime.js.map +0 -1
  588. package/lib/module/core/index.js +0 -3
  589. package/lib/module/core/index.js.map +0 -1
  590. package/lib/module/core/mocks/UnistylesMockedBridge.js +0 -29
  591. package/lib/module/core/mocks/UnistylesMockedBridge.js.map +0 -1
  592. package/lib/module/core/mocks/UnistylesMockedRegistry.js +0 -39
  593. package/lib/module/core/mocks/UnistylesMockedRegistry.js.map +0 -1
  594. package/lib/module/core/mocks/UnistylesMockedRuntime.js +0 -114
  595. package/lib/module/core/mocks/UnistylesMockedRuntime.js.map +0 -1
  596. package/lib/module/core/mocks/index.js +0 -4
  597. package/lib/module/core/mocks/index.js.map +0 -1
  598. package/lib/module/createStyleSheet.js +0 -7
  599. package/lib/module/createStyleSheet.js.map +0 -1
  600. package/lib/module/hooks/index.js +0 -5
  601. package/lib/module/hooks/index.js.map +0 -1
  602. package/lib/module/hooks/useCSS.js +0 -37
  603. package/lib/module/hooks/useCSS.js.map +0 -1
  604. package/lib/module/hooks/useCSS.native.js +0 -2
  605. package/lib/module/hooks/useCSS.native.js.map +0 -1
  606. package/lib/module/hooks/useInitialTheme.js +0 -10
  607. package/lib/module/hooks/useInitialTheme.js.map +0 -1
  608. package/lib/module/hooks/useUnistyles.js +0 -67
  609. package/lib/module/hooks/useUnistyles.js.map +0 -1
  610. package/lib/module/hooks/useVariants.js +0 -7
  611. package/lib/module/hooks/useVariants.js.map +0 -1
  612. package/lib/module/normalizer/index.js +0 -3
  613. package/lib/module/normalizer/index.js.map +0 -1
  614. package/lib/module/normalizer/module.d.js +0 -2
  615. package/lib/module/normalizer/module.d.js.map +0 -1
  616. package/lib/module/normalizer/normalizeStyle.js +0 -52
  617. package/lib/module/normalizer/normalizeStyle.js.map +0 -1
  618. package/lib/module/normalizer/normalizer.js +0 -78
  619. package/lib/module/normalizer/normalizer.js.map +0 -1
  620. package/lib/module/normalizer/normalizer.macos.js +0 -2
  621. package/lib/module/normalizer/normalizer.macos.js.map +0 -1
  622. package/lib/module/plugins/cssMediaQueriesPlugin.js +0 -7
  623. package/lib/module/plugins/cssMediaQueriesPlugin.js.map +0 -1
  624. package/lib/module/plugins/index.js +0 -3
  625. package/lib/module/plugins/index.js.map +0 -1
  626. package/lib/module/plugins/normalizeWebStylesPlugin.js +0 -6
  627. package/lib/module/plugins/normalizeWebStylesPlugin.js.map +0 -1
  628. package/lib/module/types/color.js +0 -2
  629. package/lib/module/types/color.js.map +0 -1
  630. package/lib/module/types/normalizer.js +0 -2
  631. package/lib/module/types/normalizer.js.map +0 -1
  632. package/lib/module/types/plugin.js +0 -2
  633. package/lib/module/types/plugin.js.map +0 -1
  634. package/lib/module/types/unistyles.js +0 -2
  635. package/lib/module/types/unistyles.js.map +0 -1
  636. package/lib/module/useStyles.js +0 -40
  637. package/lib/module/useStyles.js.map +0 -1
  638. package/lib/module/utils/breakpoints.js +0 -26
  639. package/lib/module/utils/breakpoints.js.map +0 -1
  640. package/lib/module/utils/cssMediaQuery.js +0 -237
  641. package/lib/module/utils/cssMediaQuery.js.map +0 -1
  642. package/lib/module/utils/generateId.js +0 -7
  643. package/lib/module/utils/generateId.js.map +0 -1
  644. package/lib/module/utils/hash32.js +0 -36
  645. package/lib/module/utils/hash32.js.map +0 -1
  646. package/lib/module/utils/index.js +0 -8
  647. package/lib/module/utils/index.js.map +0 -1
  648. package/lib/module/utils/mq.js.map +0 -1
  649. package/lib/module/utils/mqParser.js +0 -78
  650. package/lib/module/utils/mqParser.js.map +0 -1
  651. package/lib/module/utils/parseColor.js +0 -28
  652. package/lib/module/utils/parseColor.js.map +0 -1
  653. package/lib/module/utils/styles.js +0 -64
  654. package/lib/module/utils/styles.js.map +0 -1
  655. package/lib/module/utils/withPlugins.js +0 -8
  656. package/lib/module/utils/withPlugins.js.map +0 -1
  657. package/lib/typescript/src/core/UnistyleRegistry.d.ts +0 -57
  658. package/lib/typescript/src/core/UnistyleRegistry.d.ts.map +0 -1
  659. package/lib/typescript/src/core/Unistyles.d.ts +0 -13
  660. package/lib/typescript/src/core/Unistyles.d.ts.map +0 -1
  661. package/lib/typescript/src/core/UnistylesModule.d.ts +0 -21
  662. package/lib/typescript/src/core/UnistylesModule.d.ts.map +0 -1
  663. package/lib/typescript/src/core/UnistylesModule.native.d.ts +0 -6
  664. package/lib/typescript/src/core/UnistylesModule.native.d.ts.map +0 -1
  665. package/lib/typescript/src/core/UnistylesModule.windows.d.ts +0 -6
  666. package/lib/typescript/src/core/UnistylesModule.windows.d.ts.map +0 -1
  667. package/lib/typescript/src/core/UnistylesRuntime.d.ts +0 -179
  668. package/lib/typescript/src/core/UnistylesRuntime.d.ts.map +0 -1
  669. package/lib/typescript/src/core/index.d.ts +0 -5
  670. package/lib/typescript/src/core/index.d.ts.map +0 -1
  671. package/lib/typescript/src/core/mocks/UnistylesMockedBridge.d.ts +0 -28
  672. package/lib/typescript/src/core/mocks/UnistylesMockedBridge.d.ts.map +0 -1
  673. package/lib/typescript/src/core/mocks/UnistylesMockedRegistry.d.ts +0 -21
  674. package/lib/typescript/src/core/mocks/UnistylesMockedRegistry.d.ts.map +0 -1
  675. package/lib/typescript/src/core/mocks/UnistylesMockedRuntime.d.ts +0 -79
  676. package/lib/typescript/src/core/mocks/UnistylesMockedRuntime.d.ts.map +0 -1
  677. package/lib/typescript/src/core/mocks/index.d.ts +0 -4
  678. package/lib/typescript/src/core/mocks/index.d.ts.map +0 -1
  679. package/lib/typescript/src/createStyleSheet.d.ts +0 -8
  680. package/lib/typescript/src/createStyleSheet.d.ts.map +0 -1
  681. package/lib/typescript/src/hooks/index.d.ts +0 -5
  682. package/lib/typescript/src/hooks/index.d.ts.map +0 -1
  683. package/lib/typescript/src/hooks/useCSS.d.ts +0 -3
  684. package/lib/typescript/src/hooks/useCSS.d.ts.map +0 -1
  685. package/lib/typescript/src/hooks/useCSS.native.d.ts +0 -3
  686. package/lib/typescript/src/hooks/useCSS.native.d.ts.map +0 -1
  687. package/lib/typescript/src/hooks/useInitialTheme.d.ts +0 -3
  688. package/lib/typescript/src/hooks/useInitialTheme.d.ts.map +0 -1
  689. package/lib/typescript/src/hooks/useUnistyles.d.ts +0 -27
  690. package/lib/typescript/src/hooks/useUnistyles.d.ts.map +0 -1
  691. package/lib/typescript/src/hooks/useVariants.d.ts +0 -3
  692. package/lib/typescript/src/hooks/useVariants.d.ts.map +0 -1
  693. package/lib/typescript/src/normalizer/index.d.ts +0 -3
  694. package/lib/typescript/src/normalizer/index.d.ts.map +0 -1
  695. package/lib/typescript/src/normalizer/normalizeStyle.d.ts +0 -3
  696. package/lib/typescript/src/normalizer/normalizeStyle.d.ts.map +0 -1
  697. package/lib/typescript/src/normalizer/normalizer.d.ts +0 -11
  698. package/lib/typescript/src/normalizer/normalizer.d.ts.map +0 -1
  699. package/lib/typescript/src/normalizer/normalizer.macos.d.ts +0 -1
  700. package/lib/typescript/src/normalizer/normalizer.macos.d.ts.map +0 -1
  701. package/lib/typescript/src/plugins/cssMediaQueriesPlugin.d.ts +0 -3
  702. package/lib/typescript/src/plugins/cssMediaQueriesPlugin.d.ts.map +0 -1
  703. package/lib/typescript/src/plugins/index.d.ts +0 -3
  704. package/lib/typescript/src/plugins/index.d.ts.map +0 -1
  705. package/lib/typescript/src/plugins/normalizeWebStylesPlugin.d.ts +0 -3
  706. package/lib/typescript/src/plugins/normalizeWebStylesPlugin.d.ts.map +0 -1
  707. package/lib/typescript/src/types/color.d.ts +0 -4
  708. package/lib/typescript/src/types/color.d.ts.map +0 -1
  709. package/lib/typescript/src/types/normalizer.d.ts +0 -20
  710. package/lib/typescript/src/types/normalizer.d.ts.map +0 -1
  711. package/lib/typescript/src/types/plugin.d.ts +0 -7
  712. package/lib/typescript/src/types/plugin.d.ts.map +0 -1
  713. package/lib/typescript/src/types/unistyles.d.ts +0 -81
  714. package/lib/typescript/src/types/unistyles.d.ts.map +0 -1
  715. package/lib/typescript/src/useStyles.d.ts +0 -16
  716. package/lib/typescript/src/useStyles.d.ts.map +0 -1
  717. package/lib/typescript/src/utils/breakpoints.d.ts +0 -3
  718. package/lib/typescript/src/utils/breakpoints.d.ts.map +0 -1
  719. package/lib/typescript/src/utils/cssMediaQuery.d.ts +0 -4
  720. package/lib/typescript/src/utils/cssMediaQuery.d.ts.map +0 -1
  721. package/lib/typescript/src/utils/generateId.d.ts +0 -2
  722. package/lib/typescript/src/utils/generateId.d.ts.map +0 -1
  723. package/lib/typescript/src/utils/hash32.d.ts +0 -2
  724. package/lib/typescript/src/utils/hash32.d.ts.map +0 -1
  725. package/lib/typescript/src/utils/index.d.ts +0 -9
  726. package/lib/typescript/src/utils/index.d.ts.map +0 -1
  727. package/lib/typescript/src/utils/mq.d.ts.map +0 -1
  728. package/lib/typescript/src/utils/mqParser.d.ts +0 -16
  729. package/lib/typescript/src/utils/mqParser.d.ts.map +0 -1
  730. package/lib/typescript/src/utils/parseColor.d.ts +0 -3
  731. package/lib/typescript/src/utils/parseColor.d.ts.map +0 -1
  732. package/lib/typescript/src/utils/styles.d.ts +0 -5
  733. package/lib/typescript/src/utils/styles.d.ts.map +0 -1
  734. package/lib/typescript/src/utils/withPlugins.d.ts +0 -3
  735. package/lib/typescript/src/utils/withPlugins.d.ts.map +0 -1
  736. package/react-native.config.js +0 -11
  737. package/src/__tests__/mocks.ts +0 -24
  738. package/src/core/UnistyleRegistry.ts +0 -130
  739. package/src/core/Unistyles.ts +0 -44
  740. package/src/core/UnistylesModule.native.ts +0 -7
  741. package/src/core/UnistylesModule.ts +0 -305
  742. package/src/core/UnistylesModule.windows.ts +0 -9
  743. package/src/core/UnistylesRuntime.ts +0 -284
  744. package/src/core/index.ts +0 -8
  745. package/src/core/mocks/UnistylesMockedBridge.ts +0 -30
  746. package/src/core/mocks/UnistylesMockedRegistry.ts +0 -47
  747. package/src/core/mocks/UnistylesMockedRuntime.ts +0 -144
  748. package/src/core/mocks/index.ts +0 -3
  749. package/src/createStyleSheet.ts +0 -8
  750. package/src/hooks/index.ts +0 -4
  751. package/src/hooks/useCSS.native.ts +0 -3
  752. package/src/hooks/useCSS.ts +0 -51
  753. package/src/hooks/useInitialTheme.ts +0 -11
  754. package/src/hooks/useUnistyles.ts +0 -74
  755. package/src/hooks/useVariants.ts +0 -10
  756. package/src/normalizer/index.ts +0 -2
  757. package/src/normalizer/normalizeStyle.ts +0 -82
  758. package/src/normalizer/normalizer.macos.ts +0 -1
  759. package/src/normalizer/normalizer.ts +0 -100
  760. package/src/plugins/cssMediaQueriesPlugin.ts +0 -8
  761. package/src/plugins/index.ts +0 -2
  762. package/src/plugins/normalizeWebStylesPlugin.ts +0 -7
  763. package/src/types/color.ts +0 -26
  764. package/src/types/normalizer.ts +0 -29
  765. package/src/types/plugin.ts +0 -7
  766. package/src/types/unistyles.ts +0 -98
  767. package/src/useStyles.ts +0 -60
  768. package/src/utils/breakpoints.ts +0 -44
  769. package/src/utils/cssMediaQuery.ts +0 -268
  770. package/src/utils/generateId.ts +0 -10
  771. package/src/utils/hash32.ts +0 -53
  772. package/src/utils/index.ts +0 -8
  773. package/src/utils/mqParser.ts +0 -99
  774. package/src/utils/parseColor.ts +0 -33
  775. package/src/utils/styles.ts +0 -90
  776. package/src/utils/withPlugins.ts +0 -13
  777. package/windows/ExperimentalFeatures.props +0 -40
  778. package/windows/NuGet.Config +0 -13
  779. package/windows/ReactNativeUnistyles/PropertySheet.props +0 -16
  780. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.def +0 -3
  781. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.h +0 -149
  782. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.vcxproj +0 -162
  783. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.vcxproj.filters +0 -25
  784. package/windows/ReactNativeUnistyles/ReactPackageProvider.cpp +0 -19
  785. package/windows/ReactNativeUnistyles/ReactPackageProvider.h +0 -21
  786. package/windows/ReactNativeUnistyles/ReactPackageProvider.idl +0 -9
  787. package/windows/ReactNativeUnistyles/packages.lock.json +0 -133
  788. package/windows/ReactNativeUnistyles/pch.cpp +0 -1
  789. package/windows/ReactNativeUnistyles/pch.h +0 -21
  790. package/windows/ReactNativeUnistyles.sln +0 -156
  791. /package/lib/commonjs/{normalizer → web/convert}/module.d.js +0 -0
  792. /package/src/{normalizer → web/convert}/module.d.ts +0 -0
@@ -0,0 +1,63 @@
1
+ declare const lightTheme: {
2
+ colors: {
3
+ backgroundColor: string;
4
+ typography: string;
5
+ accent: string;
6
+ barbie: string;
7
+ oak: string;
8
+ sky: string;
9
+ fog: string;
10
+ aloes: string;
11
+ blood: string;
12
+ };
13
+ gap: (v: number) => number;
14
+ };
15
+ declare const darkTheme: {
16
+ colors: {
17
+ backgroundColor: string;
18
+ typography: string;
19
+ accent: string;
20
+ barbie: string;
21
+ oak: string;
22
+ sky: string;
23
+ fog: string;
24
+ aloes: string;
25
+ blood: string;
26
+ };
27
+ gap: (v: number) => number;
28
+ };
29
+ declare const premiumTheme: {
30
+ colors: {
31
+ backgroundColor: string;
32
+ typography: string;
33
+ accent: string;
34
+ barbie: string;
35
+ oak: string;
36
+ sky: string;
37
+ fog: string;
38
+ aloes: string;
39
+ blood: string;
40
+ };
41
+ gap: (v: number) => number;
42
+ };
43
+ declare const breakpoints: {
44
+ xs: number;
45
+ sm: number;
46
+ md: number;
47
+ lg: number;
48
+ xl: number;
49
+ };
50
+ type AppBreakpoints = typeof breakpoints;
51
+ type AppThemes = {
52
+ light: typeof lightTheme;
53
+ dark: typeof darkTheme;
54
+ premium: typeof premiumTheme;
55
+ };
56
+ declare module 'react-native-unistyles' {
57
+ interface UnistylesThemes extends AppThemes {
58
+ }
59
+ interface UnistylesBreakpoints extends AppBreakpoints {
60
+ }
61
+ }
62
+ export {};
63
+ //# sourceMappingURL=unistyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unistyles.d.ts","sourceRoot":"","sources":["../../../example/unistyles.ts"],"names":[],"mappings":"AAWA,QAAA,MAAM,UAAU;;;;;;;;;;;;aAOH,MAAM;CAClB,CAAA;AAED,QAAA,MAAM,SAAS;;;;;;;;;;;;aAOF,MAAM;CAClB,CAAA;AAED,QAAA,MAAM,YAAY;;;;;;;;;;;;aAOL,MAAM;CAClB,CAAA;AAED,QAAA,MAAM,WAAW;;;;;;CAMhB,CAAA;AAED,KAAK,cAAc,GAAG,OAAO,WAAW,CAAA;AACxC,KAAK,SAAS,GAAG;IACb,KAAK,EAAE,OAAO,UAAU,CAAA;IACxB,IAAI,EAAE,OAAO,SAAS,CAAA;IACtB,OAAO,EAAE,OAAO,YAAY,CAAA;CAC/B,CAAA;AAED,OAAO,QAAQ,wBAAwB,CAAC;IACpC,UAAiB,eAAgB,SAAQ,SAAS;KAAG;IAErD,UAAiB,oBAAqB,SAAQ,cAAc;KAAG;CAClE"}
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import './unistyles';
3
+ export default function App(): React.JSX.Element;
4
+ //# sourceMappingURL=App.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../../expo-example/App.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAmB,MAAM,OAAO,CAAA;AAGvC,OAAO,aAAa,CAAA;AAEpB,MAAM,CAAC,OAAO,UAAU,GAAG,sBAyC1B"}
@@ -0,0 +1,63 @@
1
+ declare const lightTheme: {
2
+ colors: {
3
+ backgroundColor: string;
4
+ typography: string;
5
+ accent: string;
6
+ barbie: string;
7
+ oak: string;
8
+ sky: string;
9
+ fog: string;
10
+ aloes: string;
11
+ blood: string;
12
+ };
13
+ gap: (v: number) => number;
14
+ };
15
+ declare const darkTheme: {
16
+ colors: {
17
+ backgroundColor: string;
18
+ typography: string;
19
+ accent: string;
20
+ barbie: string;
21
+ oak: string;
22
+ sky: string;
23
+ fog: string;
24
+ aloes: string;
25
+ blood: string;
26
+ };
27
+ gap: (v: number) => number;
28
+ };
29
+ declare const premiumTheme: {
30
+ colors: {
31
+ backgroundColor: string;
32
+ typography: string;
33
+ accent: string;
34
+ barbie: string;
35
+ oak: string;
36
+ sky: string;
37
+ fog: string;
38
+ aloes: string;
39
+ blood: string;
40
+ };
41
+ gap: (v: number) => number;
42
+ };
43
+ declare const breakpoints: {
44
+ xs: number;
45
+ sm: number;
46
+ md: number;
47
+ lg: number;
48
+ xl: number;
49
+ };
50
+ type AppBreakpoints = typeof breakpoints;
51
+ type AppThemes = {
52
+ light: typeof lightTheme;
53
+ dark: typeof darkTheme;
54
+ premium: typeof premiumTheme;
55
+ };
56
+ declare module 'react-native-unistyles' {
57
+ interface UnistylesThemes extends AppThemes {
58
+ }
59
+ interface UnistylesBreakpoints extends AppBreakpoints {
60
+ }
61
+ }
62
+ export {};
63
+ //# sourceMappingURL=unistyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"unistyles.d.ts","sourceRoot":"","sources":["../../../expo-example/unistyles.ts"],"names":[],"mappings":"AAWA,QAAA,MAAM,UAAU;;;;;;;;;;;;aAOH,MAAM;CAClB,CAAA;AAED,QAAA,MAAM,SAAS;;;;;;;;;;;;aAOF,MAAM;CAClB,CAAA;AAED,QAAA,MAAM,YAAY;;;;;;;;;;;;aAOL,MAAM;CAClB,CAAA;AAED,QAAA,MAAM,WAAW;;;;;;CAMhB,CAAA;AAED,KAAK,cAAc,GAAG,OAAO,WAAW,CAAA;AACxC,KAAK,SAAS,GAAG;IACb,KAAK,EAAE,OAAO,UAAU,CAAA;IACxB,IAAI,EAAE,OAAO,SAAS,CAAA;IACtB,OAAO,EAAE,OAAO,YAAY,CAAA;CAC/B,CAAA;AAED,OAAO,QAAQ,wBAAwB,CAAC;IACpC,UAAiB,eAAgB,SAAQ,SAAS;KAAG;IAErD,UAAiB,oBAAqB,SAAQ,cAAc;KAAG;CAClE"}
@@ -1,54 +1,4 @@
1
- export declare const warn: (message: string) => void;
2
1
  export declare const isWeb: boolean;
3
2
  export declare const isIOS: boolean;
4
3
  export declare const isAndroid: boolean;
5
- export declare const isMobile: boolean;
6
- export declare const isServer: boolean;
7
- export declare const isDev: boolean;
8
- export declare const isTest: boolean;
9
- export declare const ScreenOrientation: {
10
- readonly Landscape: "landscape";
11
- readonly Portrait: "portrait";
12
- };
13
- export declare enum IOSContentSizeCategory {
14
- AccessibilityExtraExtraExtraLarge = "accessibilityExtraExtraExtraLarge",
15
- AccessibilityExtraExtraLarge = "accessibilityExtraExtraLarge",
16
- AccessibilityExtraLarge = "accessibilityExtraLarge",
17
- AccessibilityLarge = "accessibilityLarge",
18
- AccessibilityMedium = "accessibilityMedium",
19
- ExtraExtraExtraLarge = "xxxLarge",
20
- ExtraExtraLarge = "xxLarge",
21
- ExtraLarge = "xLarge",
22
- Large = "Large",
23
- Medium = "Medium",
24
- Small = "Small",
25
- ExtraSmall = "xSmall",
26
- Unspecified = "unspecified"
27
- }
28
- export declare enum AndroidContentSizeCategory {
29
- Small = "Small",
30
- Default = "Default",
31
- Large = "Large",
32
- ExtraLarge = "ExtraLarge",
33
- Huge = "Huge",
34
- ExtraHuge = "ExtraHuge",
35
- ExtraExtraHuge = "ExtraExtraHuge"
36
- }
37
- export declare enum UnistylesEventType {
38
- Theme = "theme",
39
- Layout = "layout",
40
- Plugin = "plugin"
41
- }
42
- export declare enum UnistylesError {
43
- RuntimeUnavailable = "Unistyles runtime is not available. Make sure you followed the installation instructions",
44
- ThemeNotFound = "You are trying to get a theme that is not registered with UnistylesRegistry",
45
- ThemeNotRegistered = "You are trying to set a theme that was not registered with UnistylesRegistry",
46
- ThemeNotSelected = "Your themes are registered, but you didn't select the initial theme",
47
- ThemesCannotBeEmpty = "You are trying to register empty themes object",
48
- BreakpointsCannotBeEmpty = "You are trying to register empty breakpoints object",
49
- BreakpointsMustStartFromZero = "You are trying to register breakpoints that don't start from 0",
50
- InvalidPluginName = "Plugin name can't start from reserved prefix __unistyles",
51
- DuplicatePluginName = "You are trying to register a plugin with a name that is already registered",
52
- CantRemoveInternalPlugin = "You are trying to remove an internal unistyles plugin"
53
- }
54
4
  //# sourceMappingURL=common.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/common.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,IAAI,YAAa,MAAM,SAEnC,CAAA;AAED,eAAO,MAAM,KAAK,SAAwB,CAAA;AAC1C,eAAO,MAAM,KAAK,SAAwB,CAAA;AAC1C,eAAO,MAAM,SAAS,SAA4B,CAAA;AAClD,eAAO,MAAM,QAAQ,SAAqB,CAAA;AAC1C,eAAO,MAAM,QAAQ,SAAgC,CAAA;AACrD,eAAO,MAAM,KAAK,SAAwC,CAAA;AAC1D,eAAO,MAAM,MAAM,SAA6G,CAAA;AAEhI,eAAO,MAAM,iBAAiB;;;CAGpB,CAAA;AAEV,oBAAY,sBAAsB;IAC9B,iCAAiC,sCAAsC;IACvE,4BAA4B,iCAAiC;IAC7D,uBAAuB,4BAA4B;IACnD,kBAAkB,uBAAuB;IACzC,mBAAmB,wBAAwB;IAC3C,oBAAoB,aAAa;IACjC,eAAe,YAAY;IAC3B,UAAU,WAAW;IACrB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,UAAU,WAAW;IACrB,WAAW,gBAAgB;CAC9B;AAED,oBAAY,0BAA0B;IAClC,KAAK,UAAU;IACf,OAAO,YAAY;IACnB,KAAK,UAAU;IACf,UAAU,eAAe;IACzB,IAAI,SAAS;IACb,SAAS,cAAc;IACvB,cAAc,mBAAmB;CACpC;AAED,oBAAY,kBAAkB;IAC1B,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,MAAM,WAAW;CACpB;AAED,oBAAY,cAAc;IACtB,kBAAkB,6FAA6F;IAC/G,aAAa,gFAAgF;IAC7F,kBAAkB,iFAAiF;IACnG,gBAAgB,wEAAyE;IACzF,mBAAmB,mDAAmD;IACtE,wBAAwB,wDAAwD;IAChF,4BAA4B,mEAAoE;IAChG,iBAAiB,6DAA8D;IAC/E,mBAAmB,+EAA+E;IAClG,wBAAwB,0DAA0D;CACrF"}
1
+ {"version":3,"file":"common.d.ts","sourceRoot":"","sources":["../../../src/common.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK,SAAwB,CAAA;AAC1C,eAAO,MAAM,KAAK,SAAwB,CAAA;AAC1C,eAAO,MAAM,SAAS,SAA4B,CAAA"}
@@ -1,77 +1,4 @@
1
- import { mq } from './utils';
2
- import { useInitialTheme } from './hooks';
3
- import type { UnistylesPlugin, UnistylesValues, UnistyleText, UnistyleView, UnistyleImage, ExtractVariantNames, UnistylesTheme } from './types';
4
- import type { UnistylesThemes, UnistylesBreakpoints } from './global';
5
- import { ScreenOrientation, AndroidContentSizeCategory, IOSContentSizeCategory } from './common';
6
- import { useStyles } from './useStyles';
7
- import { createStyleSheet } from './createStyleSheet';
8
- /**
9
- * Utility to interact with the Unistyles
10
- * (should be called only once)
11
- */
12
- declare const UnistylesRegistry: {
13
- /**
14
- * Register themes to be used in the app
15
- * @param themes - Key value pair of themes
16
- */
17
- addThemes: (themes: UnistylesThemes) => {
18
- addBreakpoints: (breakpoints: UnistylesBreakpoints) => {
19
- addThemes: any;
20
- addConfig: (config: import("./types").UnistylesConfig) => {
21
- addBreakpoints: any;
22
- addThemes: any;
23
- };
24
- };
25
- addConfig: (config: import("./types").UnistylesConfig) => {
26
- addBreakpoints: (breakpoints: UnistylesBreakpoints) => {
27
- addThemes: any;
28
- addConfig: any;
29
- };
30
- addThemes: any;
31
- };
32
- };
33
- /**
34
- * Register breakpoints to be used in the app
35
- * @param breakpoints - Key value pair of breakpoints
36
- */
37
- addBreakpoints: (breakpoints: UnistylesBreakpoints) => {
38
- addThemes: (themes: UnistylesThemes) => {
39
- addBreakpoints: any;
40
- addConfig: (config: import("./types").UnistylesConfig) => {
41
- addBreakpoints: any;
42
- addThemes: any;
43
- };
44
- };
45
- addConfig: (config: import("./types").UnistylesConfig) => {
46
- addBreakpoints: any;
47
- addThemes: (themes: UnistylesThemes) => {
48
- addBreakpoints: any;
49
- addConfig: any;
50
- };
51
- };
52
- };
53
- /**
54
- * Register additional config to customize the Unistyles
55
- * @param config - Key value pair of config
56
- */
57
- addConfig: (config: import("./types").UnistylesConfig) => {
58
- addBreakpoints: (breakpoints: UnistylesBreakpoints) => {
59
- addThemes: (themes: UnistylesThemes) => {
60
- addBreakpoints: any;
61
- addConfig: any;
62
- };
63
- addConfig: any;
64
- };
65
- addThemes: (themes: UnistylesThemes) => {
66
- addBreakpoints: (breakpoints: UnistylesBreakpoints) => {
67
- addThemes: any;
68
- addConfig: any;
69
- };
70
- addConfig: any;
71
- };
72
- };
73
- };
74
- declare const UnistylesRuntime: import("./core").UnistylesRuntime;
75
- export { mq, useStyles, useInitialTheme, createStyleSheet, ScreenOrientation, AndroidContentSizeCategory, IOSContentSizeCategory, UnistylesRegistry, UnistylesRuntime };
76
- export type { UnistylesTheme, UnistylesThemes, UnistylesBreakpoints, UnistylesPlugin, UnistylesValues, UnistyleText, UnistyleView, UnistyleImage, ExtractVariantNames as UnistylesVariants };
1
+ export * from './specs';
2
+ export { mq } from './mq';
3
+ export type { UnistylesThemes, UnistylesBreakpoints } from './global';
77
4
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,EAAE,EAAE,MAAM,SAAS,CAAA;AAC5B,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAA;AACzC,OAAO,KAAK,EAAE,eAAe,EAAE,eAAe,EAAE,YAAY,EAAE,YAAY,EAAE,aAAa,EAAE,mBAAmB,EAAE,cAAc,EAAE,MAAM,SAAS,CAAA;AAC/I,OAAO,KAAK,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAA;AACrE,OAAO,EAAE,iBAAiB,EAAE,0BAA0B,EAAE,sBAAsB,EAAE,MAAM,UAAU,CAAA;AAChG,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAA;AACvC,OAAO,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAA;AAErD;;;GAGG;AACH,QAAA,MAAM,iBAAiB;IACnB;;;OAGG;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;;;;;;;;IAEH;;;OAGG;;;;;;;;;;;;;;;;;CAEN,CAAA;AAED,QAAA,MAAM,gBAAgB,mCAAoB,CAAA;AAE1C,OAAO,EACH,EAAE,EACF,SAAS,EACT,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,0BAA0B,EAC1B,sBAAsB,EACtB,iBAAiB,EACjB,gBAAgB,EACnB,CAAA;AAED,YAAY,EACR,cAAc,EACd,eAAe,EACf,oBAAoB,EACpB,eAAe,EACf,eAAe,EACf,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,mBAAmB,IAAI,iBAAiB,EAC3C,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAEA,cAAc,SAAS,CAAA;AACvB,OAAO,EAAE,EAAE,EAAE,MAAM,MAAM,CAAA;AACzB,YAAY,EAAE,eAAe,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAA"}
@@ -1,5 +1,5 @@
1
- import type { Nullable } from '../types';
2
- import type { UnistylesBreakpoints } from '../global';
1
+ import type { Nullable } from './types';
2
+ import type { UnistylesBreakpoints } from './global';
3
3
  type MQValue = keyof UnistylesBreakpoints | number;
4
4
  type MQHandler = {
5
5
  only: {
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mq.d.ts","sourceRoot":"","sources":["../../../src/mq.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AACvC,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,UAAU,CAAA;AAEpD,KAAK,OAAO,GAAG,MAAM,oBAAoB,GAAG,MAAM,CAAA;AAElD,KAAK,SAAS,GAAG;IACb,IAAI,EAAE;QACF,KAAK,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;QACxD,MAAM,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;KAC5D,CAAC;IACF,KAAK,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG;QAC7C,GAAG,EAAE;YACD,MAAM,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;SAC3D,CAAA;KACJ,CAAC;IACF,MAAM,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG;QAC9C,GAAG,EAAE;YACD,KAAK,CAAC,IAAI,CAAC,EAAE,QAAQ,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,OAAO,GAAG,MAAM,CAAA;SAC1D,CAAA;KACJ,CAAA;CACJ,CAAA;AAwBD;;;GAGG;AACH,eAAO,MAAM,EAAE,EAAE,SAiBhB,CAAA"}
@@ -0,0 +1,57 @@
1
+ import type { HybridObject } from 'react-native-nitro-modules';
2
+ import { type Dimensions, type Insets } from '../types';
3
+ type ColorScheme = 'dark' | 'light' | 'unspecified';
4
+ type Orientation = 'portrait' | 'landscape';
5
+ export declare enum UnistyleDependency {
6
+ Theme = 0,
7
+ ThemeName = 1,
8
+ AdaptiveThemes = 2,
9
+ Breakpoints = 3,
10
+ Variants = 4,
11
+ ColorScheme = 5,
12
+ Dimensions = 6,
13
+ Orientation = 7,
14
+ ContentSizeCategory = 8,
15
+ Insets = 9,
16
+ PixelRatio = 10,
17
+ FontScale = 11,
18
+ StatusBar = 12,
19
+ NavigationBar = 13
20
+ }
21
+ export interface UnistylesNativeMiniRuntime {
22
+ readonly colorScheme: ColorScheme;
23
+ readonly screen: Dimensions;
24
+ readonly contentSizeCategory: string;
25
+ readonly insets: Insets;
26
+ readonly pixelRatio: number;
27
+ readonly fontScale: number;
28
+ readonly rtl: boolean;
29
+ readonly statusBar: Dimensions;
30
+ readonly navigationBar: Dimensions;
31
+ readonly orientation: Orientation;
32
+ }
33
+ export interface NativePlatform extends HybridObject<{
34
+ ios: 'swift';
35
+ android: 'kotlin';
36
+ }> {
37
+ getInsets(): Insets;
38
+ getColorScheme(): ColorScheme;
39
+ getFontScale(): number;
40
+ getPixelRatio(): number;
41
+ getOrientation(): Orientation;
42
+ getContentSizeCategory(): string;
43
+ getScreenDimensions(): Dimensions;
44
+ getStatusBarDimensions(): Dimensions;
45
+ getNavigationBarDimensions(): Dimensions;
46
+ getPrefersRtlDirection(): boolean;
47
+ setRootViewBackgroundColor(color: number): void;
48
+ setNavigationBarBackgroundColor?(color: number): void;
49
+ setNavigationBarHidden?(isHidden: boolean): void;
50
+ setStatusBarHidden(isHidden: boolean): void;
51
+ setStatusBarBackgroundColor?(color: number): void;
52
+ setImmersiveMode(isEnabled: boolean): void;
53
+ getMiniRuntime(): UnistylesNativeMiniRuntime;
54
+ registerPlatformListener(callback: (dependencies: Array<UnistyleDependency>) => void): void;
55
+ }
56
+ export {};
57
+ //# sourceMappingURL=NativePlatform.nitro.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NativePlatform.nitro.d.ts","sourceRoot":"","sources":["../../../../../src/specs/NativePlatform/NativePlatform.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,EAAE,KAAK,UAAU,EAAE,KAAK,MAAM,EAAE,MAAM,UAAU,CAAA;AAEvD,KAAK,WAAW,GAAG,MAAM,GAAG,OAAO,GAAG,aAAa,CAAA;AACnD,KAAK,WAAW,GAAG,UAAU,GAAG,WAAW,CAAA;AAE3C,oBAAY,kBAAkB;IAC1B,KAAK,IAAI;IACT,SAAS,IAAI;IACb,cAAc,IAAI;IAClB,WAAW,IAAI;IACf,QAAQ,IAAI;IACZ,WAAW,IAAI;IACf,UAAU,IAAI;IACd,WAAW,IAAI;IACf,mBAAmB,IAAI;IACvB,MAAM,IAAI;IACV,UAAU,KAAK;IACf,SAAS,KAAK;IACd,SAAS,KAAK;IACd,aAAa,KAAK;CACrB;AAED,MAAM,WAAW,0BAA0B;IACvC,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAClC,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACrC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,GAAG,EAAE,OAAO,CAAA;IACrB,QAAQ,CAAC,SAAS,EAAE,UAAU,CAAC;IAC/B,QAAQ,CAAC,aAAa,EAAE,UAAU,CAAA;IAClC,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAA;CACpC;AAID,MAAM,WAAW,cAAe,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,QAAQ,CAAA;CAAE,CAAC;IACrF,SAAS,IAAI,MAAM,CAAC;IACpB,cAAc,IAAI,WAAW,CAAC;IAC9B,YAAY,IAAI,MAAM,CAAC;IACvB,aAAa,IAAI,MAAM,CAAC;IACxB,cAAc,IAAI,WAAW,CAAC;IAC9B,sBAAsB,IAAI,MAAM,CAAC;IACjC,mBAAmB,IAAI,UAAU,CAAC;IAClC,sBAAsB,IAAI,UAAU,CAAC;IACrC,0BAA0B,IAAI,UAAU,CAAC;IACzC,sBAAsB,IAAI,OAAO,CAAC;IAElC,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAChD,+BAA+B,CAAC,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACtD,sBAAsB,CAAC,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI,CAAC;IACjD,kBAAkB,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI,CAAC;IAC5C,2BAA2B,CAAC,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IAClD,gBAAgB,CAAC,SAAS,EAAE,OAAO,GAAG,IAAI,CAAC;IAG3C,cAAc,IAAI,0BAA0B,CAAC;IAC7C,wBAAwB,CAAC,QAAQ,EAAE,CAAC,YAAY,EAAE,KAAK,CAAC,kBAAkB,CAAC,KAAK,IAAI,GAAG,IAAI,CAAA;CAC9F"}
@@ -0,0 +1,3 @@
1
+ export type { NativePlatform, UnistylesNativeMiniRuntime } from './NativePlatform.nitro';
2
+ export { UnistyleDependency } from './NativePlatform.nitro';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/specs/NativePlatform/index.ts"],"names":[],"mappings":"AAAA,YAAY,EAAE,cAAc,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAA;AACxF,OAAO,EAAE,kBAAkB,EAAE,MAAM,wBAAwB,CAAA"}
@@ -0,0 +1,11 @@
1
+ import type { HybridObject } from 'react-native-nitro-modules';
2
+ export interface UnistylesNavigationBar extends HybridObject<{
3
+ ios: 'c++';
4
+ android: 'c++';
5
+ }> {
6
+ readonly width: number;
7
+ readonly height: number;
8
+ setBackgroundColor(color: number): void;
9
+ setHidden(isHidden: boolean): void;
10
+ }
11
+ //# sourceMappingURL=UnistylesNavigationBar.nitro.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnistylesNavigationBar.nitro.d.ts","sourceRoot":"","sources":["../../../../../src/specs/NavigtionBar/UnistylesNavigationBar.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAG9D,MAAM,WAAW,sBAAuB,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,KAAK,CAAA;CAAE,CAAC;IACxF,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAExB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC,SAAS,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI,CAAA;CACrC"}
@@ -0,0 +1,11 @@
1
+ import type { UnistylesNavigationBar as UnistylesNavigationBarSpec } from './UnistylesNavigationBar.nitro';
2
+ import type { Color } from '../types';
3
+ interface PrivateUnistylesNavigationBar extends Omit<UnistylesNavigationBarSpec, 'setBackgroundColor'> {
4
+ setBackgroundColor(color?: string): void;
5
+ _setBackgroundColor(color?: Color): void;
6
+ }
7
+ export declare const attachNavigationBarJSMethods: (hybridObject: UnistylesNavigationBar) => void;
8
+ type PrivateMethods = '_setBackgroundColor' | 'dispose';
9
+ export type UnistylesNavigationBar = Omit<PrivateUnistylesNavigationBar, PrivateMethods>;
10
+ export {};
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/specs/NavigtionBar/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,sBAAsB,IAAI,0BAA0B,EAAE,MAAM,gCAAgC,CAAA;AAC1G,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,UAAU,CAAA;AAErC,UAAU,6BAA8B,SAAQ,IAAI,CAAC,0BAA0B,EAAE,oBAAoB,CAAC;IAClG,kBAAkB,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC,mBAAmB,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI,CAAA;CAC3C;AAED,eAAO,MAAM,4BAA4B,iBAAkB,sBAAsB,SAShF,CAAA;AAED,KAAK,cAAc,GACb,qBAAqB,GACrB,SAAS,CAAA;AAEf,MAAM,MAAM,sBAAsB,GAAG,IAAI,CAAC,6BAA6B,EAAE,cAAc,CAAC,CAAA"}
@@ -0,0 +1,7 @@
1
+ import type { HybridObject } from 'react-native-nitro-modules';
2
+ export interface UnistylesShadowRegistry extends HybridObject<{
3
+ ios: 'c++';
4
+ android: 'c++';
5
+ }> {
6
+ }
7
+ //# sourceMappingURL=ShadowRegistry.nitro.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ShadowRegistry.nitro.d.ts","sourceRoot":"","sources":["../../../../../src/specs/ShadowRegistry/ShadowRegistry.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAE9D,MAAM,WAAW,uBAAwB,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,KAAK,CAAA;CAAE,CAAC;CAAG"}
@@ -0,0 +1,12 @@
1
+ import type { UnistylesShadowRegistry as UnistylesShadowRegistrySpec } from './ShadowRegistry.nitro';
2
+ import type { ShadowNode, Unistyle, ViewHandle } from './types';
3
+ interface ShadowRegistry extends UnistylesShadowRegistrySpec {
4
+ add(handle?: ViewHandle, style?: Unistyle, variants?: Record<string, string | boolean>, args?: Array<any>): void;
5
+ remove(handle?: ViewHandle, style?: Unistyle): void;
6
+ link(node: ShadowNode, style: Unistyle, variants?: Record<string, string | boolean>, args?: Array<any>): void;
7
+ unlink(node: ShadowNode, style: Unistyle): void;
8
+ }
9
+ type PrivateMethods = 'add' | 'remove' | 'link' | 'unlink';
10
+ export declare const UnistylesShadowRegistry: Omit<ShadowRegistry, PrivateMethods>;
11
+ export {};
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/specs/ShadowRegistry/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,uBAAuB,IAAI,2BAA2B,EAAE,MAAM,wBAAwB,CAAA;AACpG,OAAO,KAAK,EAAE,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,SAAS,CAAA;AAE/D,UAAU,cAAe,SAAQ,2BAA2B;IAExD,GAAG,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,KAAK,CAAC,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;IACjH,MAAM,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,KAAK,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;IAEpD,IAAI,CAAC,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,EAAE,IAAI,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;IAC9G,MAAM,CAAC,IAAI,EAAE,UAAU,EAAE,KAAK,EAAE,QAAQ,GAAG,IAAI,CAAA;CAClD;AAiCD,KAAK,cAAc,GACb,KAAK,GACL,QAAQ,GACR,MAAM,GACN,QAAQ,CAAA;AAEd,eAAO,MAAM,uBAAuB,EAA2B,IAAI,CAAC,cAAc,EAAE,cAAc,CAAC,CAAA"}
@@ -0,0 +1,27 @@
1
+ export type StateNode = {
2
+ node?: ShadowNode;
3
+ };
4
+ export type ShadowNode = {
5
+ __hostObjectShadowNodeWrapper: any;
6
+ };
7
+ export type ViewHandle = {
8
+ __internalInstanceHandle?: {
9
+ stateNode?: StateNode;
10
+ };
11
+ getScrollResponder?: () => {
12
+ getNativeScrollRef?: () => ({
13
+ __internalInstanceHandle?: {
14
+ stateNode?: StateNode;
15
+ };
16
+ });
17
+ };
18
+ getNativeScrollRef?: () => ({
19
+ __internalInstanceHandle?: {
20
+ stateNode?: StateNode;
21
+ };
22
+ });
23
+ };
24
+ export type Unistyle = {
25
+ __unid?: number;
26
+ };
27
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../src/specs/ShadowRegistry/types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG;IACpB,IAAI,CAAC,EAAE,UAAU,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACrB,6BAA6B,EAAE,GAAG,CAAA;CACrC,CAAA;AAED,MAAM,MAAM,UAAU,GAAG;IACrB,wBAAwB,CAAC,EAAE;QACvB,SAAS,CAAC,EAAE,SAAS,CAAA;KACxB,CAAC;IACF,kBAAkB,CAAC,EAAE,MAAM;QACvB,kBAAkB,CAAC,EAAE,MAAM,CAAC;YACxB,wBAAwB,CAAC,EAAE;gBACvB,SAAS,CAAC,EAAE,SAAS,CAAA;aACxB,CAAA;SACJ,CAAC,CAAA;KACL,CAAC;IACF,kBAAkB,CAAC,EAAE,MAAM,CAAC;QACxB,wBAAwB,CAAC,EAAE;YACvB,SAAS,CAAC,EAAE,SAAS,CAAA;SACxB,CAAA;KACJ,CAAC,CAAA;CACL,CAAA;AAED,MAAM,MAAM,QAAQ,GAAG;IACnB,MAAM,CAAC,EAAE,MAAM,CAAA;CAClB,CAAA"}
@@ -0,0 +1,11 @@
1
+ import type { HybridObject } from 'react-native-nitro-modules';
2
+ export interface UnistylesStatusBar extends HybridObject<{
3
+ ios: 'c++';
4
+ android: 'c++';
5
+ }> {
6
+ readonly width: number;
7
+ readonly height: number;
8
+ setBackgroundColor(color: number): void;
9
+ setHidden(isHidden: boolean): void;
10
+ }
11
+ //# sourceMappingURL=UnistylesStatusBar.nitro.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnistylesStatusBar.nitro.d.ts","sourceRoot":"","sources":["../../../../../src/specs/StatusBar/UnistylesStatusBar.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAG9D,MAAM,WAAW,kBAAmB,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,KAAK,CAAA;CAAE,CAAC;IACpF,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IAExB,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC,SAAS,CAAC,QAAQ,EAAE,OAAO,GAAG,IAAI,CAAC;CACtC"}
@@ -0,0 +1,15 @@
1
+ import type { UnistylesStatusBar as UnistylesStatusBarSpec } from './UnistylesStatusBar.nitro';
2
+ import { type Color, StatusBarStyle } from '../types';
3
+ export type StatusBarHiddenAnimation = 'none' | 'fade' | 'slide';
4
+ interface PrivateUnistylesStatusBar extends Omit<UnistylesStatusBarSpec, 'setBackgroundColor' | 'setHidden'> {
5
+ setStyle(style: StatusBarStyle, animated?: boolean): void;
6
+ setHidden(isHidden: boolean, animation?: StatusBarHiddenAnimation): void;
7
+ _setHidden(isHidden: boolean, animation?: StatusBarHiddenAnimation): void;
8
+ setBackgroundColor(color?: string): void;
9
+ _setBackgroundColor(color?: Color): void;
10
+ }
11
+ export declare const attachStatusBarJSMethods: (hybridObject: UnistylesStatusBar) => void;
12
+ type PrivateMethods = '_setBackgroundColor' | '_setHidden' | 'dispose';
13
+ export type UnistylesStatusBar = Omit<PrivateUnistylesStatusBar, PrivateMethods>;
14
+ export {};
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/specs/StatusBar/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,kBAAkB,IAAI,sBAAsB,EAAE,MAAM,4BAA4B,CAAA;AAC9F,OAAO,EAAE,KAAK,KAAK,EAAE,cAAc,EAAE,MAAM,UAAU,CAAA;AAErD,MAAM,MAAM,wBAAwB,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;AAEhE,UAAU,yBAA0B,SAAQ,IAAI,CAAC,sBAAsB,EAAE,oBAAoB,GAAG,WAAW,CAAC;IACxG,QAAQ,CAAC,KAAK,EAAE,cAAc,EAAE,QAAQ,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;IAC1D,SAAS,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC,EAAE,wBAAwB,GAAG,IAAI,CAAC;IACzE,UAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC,EAAE,wBAAwB,GAAG,IAAI,CAAC;IAC1E,kBAAkB,CAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzC,mBAAmB,CAAC,KAAK,CAAC,EAAE,KAAK,GAAG,IAAI,CAAA;CAC3C;AAED,eAAO,MAAM,wBAAwB,iBAAkB,kBAAkB,SA0BxE,CAAA;AAED,KAAK,cAAc,GACb,qBAAqB,GACrB,YAAY,GACZ,SAAS,CAAA;AAEf,MAAM,MAAM,kBAAkB,GAAG,IAAI,CAAC,yBAAyB,EAAE,cAAc,CAAC,CAAA"}
@@ -0,0 +1,9 @@
1
+ import type { HybridObject } from 'react-native-nitro-modules';
2
+ export interface UnistylesStyleSheet extends HybridObject<{
3
+ ios: 'c++';
4
+ android: 'c++';
5
+ }> {
6
+ readonly hairlineWidth: number;
7
+ readonly __unid: number;
8
+ }
9
+ //# sourceMappingURL=UnistylesStyleSheet.nitro.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnistylesStyleSheet.nitro.d.ts","sourceRoot":"","sources":["../../../../../src/specs/StyleSheet/UnistylesStyleSheet.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAE9D,MAAM,WAAW,mBAAoB,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,KAAK,CAAA;CAAE,CAAC;IACrF,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAA;IAC9B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAA;CAC1B"}
@@ -0,0 +1,29 @@
1
+ import { processColor } from 'react-native';
2
+ import type { StyleSheet as NativeStyleSheetType } from 'react-native';
3
+ import type { UnistylesStyleSheet as UnistylesStyleSheetSpec } from './UnistylesStyleSheet.nitro';
4
+ import type { UnistylesBreakpoints, UnistylesThemes } from '../../global';
5
+ import type { CreateUnistylesStyleSheet } from '../../types';
6
+ type UnistylesSettings = {
7
+ adaptiveThemes?: boolean;
8
+ initialTheme?: (() => keyof UnistylesThemes) | keyof UnistylesThemes;
9
+ };
10
+ export type UnistylesConfig = {
11
+ settings?: UnistylesSettings;
12
+ themes?: UnistylesThemes;
13
+ breakpoints?: UnistylesBreakpoints;
14
+ };
15
+ export interface UnistylesStyleSheet extends UnistylesStyleSheetSpec {
16
+ absoluteFillObject: typeof NativeStyleSheetType.absoluteFillObject;
17
+ absoluteFill: typeof NativeStyleSheetType.absoluteFill;
18
+ compose: typeof NativeStyleSheetType.compose;
19
+ flatten: typeof NativeStyleSheetType.flatten;
20
+ create: CreateUnistylesStyleSheet;
21
+ configure(config: UnistylesConfig): void;
22
+ jsMethods: {
23
+ processColor: typeof processColor;
24
+ };
25
+ }
26
+ type PrivateMethods = 'jsMethods';
27
+ export declare const StyleSheet: Omit<UnistylesStyleSheet, PrivateMethods>;
28
+ export {};
29
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/specs/StyleSheet/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAkC,MAAM,cAAc,CAAA;AAC3E,OAAO,KAAK,EAAE,UAAU,IAAI,oBAAoB,EAAE,MAAM,cAAc,CAAA;AACtE,OAAO,KAAK,EAAE,mBAAmB,IAAI,uBAAuB,EAAE,MAAM,6BAA6B,CAAA;AACjG,OAAO,KAAK,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,cAAc,CAAA;AACzE,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAA;AAE5D,KAAK,iBAAiB,GAAG;IACrB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,YAAY,CAAC,EAAE,CAAC,MAAM,MAAM,eAAe,CAAC,GAAG,MAAM,eAAe,CAAA;CACvE,CAAA;AAED,MAAM,MAAM,eAAe,GAAG;IAC1B,QAAQ,CAAC,EAAE,iBAAiB,CAAC;IAC7B,MAAM,CAAC,EAAE,eAAe,CAAC;IACzB,WAAW,CAAC,EAAE,oBAAoB,CAAA;CACrC,CAAA;AAED,MAAM,WAAW,mBAAoB,SAAQ,uBAAuB;IAChE,kBAAkB,EAAE,OAAO,oBAAoB,CAAC,kBAAkB,CAAC;IACnE,YAAY,EAAE,OAAO,oBAAoB,CAAC,YAAY,CAAC;IACvD,OAAO,EAAE,OAAO,oBAAoB,CAAC,OAAO,CAAC;IAC7C,OAAO,EAAE,OAAO,oBAAoB,CAAC,OAAO,CAAC;IAG7C,MAAM,EAAE,yBAAyB,CAAC;IAClC,SAAS,CAAC,MAAM,EAAE,eAAe,GAAG,IAAI,CAAC;IACzC,SAAS,EAAE;QACP,YAAY,EAAE,OAAO,YAAY,CAAA;KACpC,CAAA;CACJ;AAaD,KAAK,cAAc,GAAG,WAAW,CAAA;AAEjC,eAAO,MAAM,UAAU,EAAgC,IAAI,CAAC,mBAAmB,EAAE,cAAc,CAAC,CAAA"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=NativeTurboUnistyles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"NativeTurboUnistyles.d.ts","sourceRoot":"","sources":["../../../../../src/specs/TurboUnistyles/NativeTurboUnistyles.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ import './NativeTurboUnistyles';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/specs/TurboUnistyles/index.ts"],"names":[],"mappings":"AAAA,OAAO,wBAAwB,CAAA"}
@@ -0,0 +1,41 @@
1
+ import type { HybridObject } from 'react-native-nitro-modules';
2
+ import type { AppBreakpoint, AppThemeName, Dimensions, Insets } from '../types';
3
+ import type { AndroidContentSizeCategory, IOSContentSizeCategory, WebContentSizeCategory } from '../../types';
4
+ import type { UnistylesNativeMiniRuntime } from '../NativePlatform';
5
+ type ColorScheme = 'light' | 'dark' | 'unspecified';
6
+ type Orientation = 'portrait' | 'landscape';
7
+ export interface UnistylesCxxMiniRuntime extends UnistylesNativeMiniRuntime {
8
+ readonly themeName?: string;
9
+ readonly breakpoint?: string;
10
+ readonly orientation: Orientation;
11
+ readonly hasAdaptiveThemes: boolean;
12
+ }
13
+ export interface UnistylesMiniRuntime extends UnistylesCxxMiniRuntime {
14
+ readonly colorScheme: ColorScheme;
15
+ readonly contentSizeCategory: IOSContentSizeCategory | AndroidContentSizeCategory | WebContentSizeCategory;
16
+ readonly themeName?: AppThemeName;
17
+ readonly breakpoint?: AppBreakpoint;
18
+ }
19
+ export interface UnistylesRuntime extends HybridObject<{
20
+ ios: 'c++';
21
+ android: 'c++';
22
+ }> {
23
+ readonly colorScheme: ColorScheme;
24
+ readonly hasAdaptiveThemes: boolean;
25
+ readonly screen: Dimensions;
26
+ readonly themeName?: string;
27
+ readonly contentSizeCategory: string;
28
+ readonly breakpoint?: string;
29
+ readonly insets: Insets;
30
+ readonly orientation: Orientation;
31
+ readonly pixelRatio: number;
32
+ readonly fontScale: number;
33
+ readonly rtl: boolean;
34
+ setTheme(themeName: string): void;
35
+ setAdaptiveThemes(isEnabled: boolean): void;
36
+ setImmersiveMode(isEnabled: boolean): void;
37
+ setRootViewBackgroundColor(color: number): void;
38
+ readonly miniRuntime: UnistylesCxxMiniRuntime;
39
+ }
40
+ export {};
41
+ //# sourceMappingURL=UnistylesRuntime.nitro.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"UnistylesRuntime.nitro.d.ts","sourceRoot":"","sources":["../../../../../src/specs/UnistylesRuntime/UnistylesRuntime.nitro.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAA;AAC9D,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AAC/E,OAAO,KAAK,EAAE,0BAA0B,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,aAAa,CAAA;AAC7G,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,mBAAmB,CAAA;AAEnE,KAAK,WAAW,GAAG,OAAO,GAAG,MAAM,GAAG,aAAa,CAAA;AACnD,KAAK,WAAW,GAAG,UAAU,GAAG,WAAW,CAAA;AAG3C,MAAM,WAAW,uBAAwB,SAAQ,0BAA0B;IACvE,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAClC,QAAQ,CAAC,iBAAiB,EAAE,OAAO,CAAC;CACvC;AAGD,MAAM,WAAW,oBAAqB,SAAQ,uBAAuB;IACjE,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAClC,QAAQ,CAAC,mBAAmB,EAAE,sBAAsB,GAAG,0BAA0B,GAAG,sBAAsB,CAAC;IAG3G,QAAQ,CAAC,SAAS,CAAC,EAAE,YAAY,CAAC;IAClC,QAAQ,CAAC,UAAU,CAAC,EAAE,aAAa,CAAA;CACtC;AAED,MAAM,WAAW,gBAAiB,SAAQ,YAAY,CAAC;IAAE,GAAG,EAAE,KAAK,CAAC;IAAC,OAAO,EAAE,KAAK,CAAA;CAAE,CAAC;IAClF,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAClC,QAAQ,CAAC,iBAAiB,EAAE,OAAO,CAAC;IACpC,QAAQ,CAAC,MAAM,EAAE,UAAU,CAAC;IAC5B,QAAQ,CAAC,SAAS,CAAC,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC;IACrC,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,WAAW,EAAE,WAAW,CAAC;IAClC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,GAAG,EAAE,OAAO,CAAC;IAEtB,QAAQ,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,iBAAiB,CAAC,SAAS,EAAE,OAAO,GAAG,IAAI,CAAC;IAC5C,gBAAgB,CAAC,SAAS,EAAE,OAAO,GAAG,IAAI,CAAC;IAC3C,0BAA0B,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IAG/C,QAAQ,CAAC,WAAW,EAAE,uBAAuB,CAAA;CAChD"}