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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (685) hide show
  1. package/README.md +1 -1
  2. package/{react-native-unistyles.podspec → Unistyles.podspec} +10 -3
  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 +10 -0
  9. package/cxx/common/Helpers.h +93 -0
  10. package/cxx/core/HostStyle.cpp +57 -0
  11. package/cxx/core/HostStyle.h +25 -0
  12. package/cxx/core/MediaQueries.cpp +87 -0
  13. package/cxx/core/MediaQueries.h +47 -0
  14. package/cxx/core/StyleSheet.h +32 -0
  15. package/cxx/core/StyleSheetRegistry.cpp +45 -0
  16. package/cxx/core/StyleSheetRegistry.h +26 -0
  17. package/cxx/core/Unistyle.h +81 -0
  18. package/cxx/core/UnistyleWrapper.cpp +5 -0
  19. package/cxx/core/UnistyleWrapper.h +50 -0
  20. package/cxx/core/UnistylesCommitHook.cpp +53 -0
  21. package/cxx/core/UnistylesCommitHook.h +27 -0
  22. package/cxx/core/UnistylesCommitShadowNode.h +26 -0
  23. package/cxx/core/UnistylesRegistry.cpp +176 -0
  24. package/cxx/core/UnistylesRegistry.h +59 -0
  25. package/cxx/core/UnistylesState.cpp +95 -0
  26. package/cxx/core/UnistylesState.h +50 -0
  27. package/cxx/hybridObjects/HybridNavigationBar.cpp +17 -0
  28. package/cxx/hybridObjects/HybridNavigationBar.h +19 -0
  29. package/cxx/hybridObjects/HybridShadowRegistry.cpp +26 -0
  30. package/cxx/hybridObjects/HybridShadowRegistry.h +33 -0
  31. package/cxx/hybridObjects/HybridStatusBar.cpp +17 -0
  32. package/cxx/hybridObjects/HybridStatusBar.h +19 -0
  33. package/cxx/hybridObjects/HybridStyleSheet.cpp +245 -0
  34. package/cxx/hybridObjects/HybridStyleSheet.h +61 -0
  35. package/cxx/hybridObjects/HybridUnistylesRuntime.cpp +199 -0
  36. package/cxx/hybridObjects/HybridUnistylesRuntime.h +70 -0
  37. package/cxx/parser/Parser.cpp +714 -0
  38. package/cxx/parser/Parser.h +55 -0
  39. package/cxx/shadowTree/ShadowLeafUpdate.h +13 -0
  40. package/cxx/shadowTree/ShadowTreeManager.cpp +124 -0
  41. package/cxx/shadowTree/ShadowTreeManager.h +23 -0
  42. package/ios/Equatable.swift +64 -0
  43. package/ios/Extensions.swift +11 -0
  44. package/ios/NativePlatform+ios.swift +291 -0
  45. package/ios/NativePlatform.swift +17 -0
  46. package/ios/NativePlatformListener+ios.swift +41 -0
  47. package/ios/Unistyles.h +3 -0
  48. package/ios/UnistylesModuleOnLoad.h +11 -0
  49. package/ios/UnistylesModuleOnLoad.mm +51 -0
  50. package/lib/commonjs/common.js +1 -58
  51. package/lib/commonjs/common.js.map +1 -1
  52. package/lib/commonjs/index.js +27 -66
  53. package/lib/commonjs/index.js.map +1 -1
  54. package/lib/commonjs/{utils/mq.js → mq.js} +12 -2
  55. package/lib/commonjs/mq.js.map +1 -0
  56. package/lib/commonjs/package.json +1 -0
  57. package/lib/commonjs/specs/NativePlatform/NativePlatform.nitro.js +25 -0
  58. package/lib/commonjs/specs/NativePlatform/NativePlatform.nitro.js.map +1 -0
  59. package/lib/commonjs/specs/NativePlatform/index.js +13 -0
  60. package/lib/commonjs/specs/NativePlatform/index.js.map +1 -0
  61. package/lib/commonjs/specs/NavigtionBar/UnistylesNavigationBar.nitro.js +6 -0
  62. package/lib/commonjs/specs/NavigtionBar/UnistylesNavigationBar.nitro.js.map +1 -0
  63. package/lib/commonjs/specs/NavigtionBar/index.js +17 -0
  64. package/lib/commonjs/specs/NavigtionBar/index.js.map +1 -0
  65. package/lib/commonjs/{types/plugin.js → specs/ShadowRegistry/ShadowRegistry.nitro.js} +1 -1
  66. package/lib/commonjs/specs/ShadowRegistry/ShadowRegistry.nitro.js.map +1 -0
  67. package/lib/commonjs/specs/ShadowRegistry/index.js +30 -0
  68. package/lib/commonjs/specs/ShadowRegistry/index.js.map +1 -0
  69. package/lib/commonjs/specs/ShadowRegistry/types.js +2 -0
  70. package/lib/commonjs/specs/ShadowRegistry/types.js.map +1 -0
  71. package/lib/commonjs/{types/normalizer.js → specs/StatusBar/UnistylesStatusBar.nitro.js} +1 -1
  72. package/lib/commonjs/specs/StatusBar/UnistylesStatusBar.nitro.js.map +1 -0
  73. package/lib/commonjs/specs/StatusBar/index.js +33 -0
  74. package/lib/commonjs/specs/StatusBar/index.js.map +1 -0
  75. package/lib/commonjs/specs/StyleSheet/UnistylesStyleSheet.nitro.js +6 -0
  76. package/lib/commonjs/specs/StyleSheet/UnistylesStyleSheet.nitro.js.map +1 -0
  77. package/lib/commonjs/specs/StyleSheet/index.js +18 -0
  78. package/lib/commonjs/specs/StyleSheet/index.js.map +1 -0
  79. package/lib/commonjs/specs/TurboUnistyles/NativeTurboUnistyles.js +8 -0
  80. package/lib/commonjs/specs/TurboUnistyles/NativeTurboUnistyles.js.map +1 -0
  81. package/lib/commonjs/specs/TurboUnistyles/index.js +4 -0
  82. package/lib/commonjs/specs/TurboUnistyles/index.js.map +1 -0
  83. package/lib/commonjs/{types/unistyles.js → specs/UnistylesRuntime/UnistylesRuntime.nitro.js} +1 -1
  84. package/lib/commonjs/specs/UnistylesRuntime/UnistylesRuntime.nitro.js.map +1 -0
  85. package/lib/commonjs/specs/UnistylesRuntime/index.js +26 -0
  86. package/lib/commonjs/specs/UnistylesRuntime/index.js.map +1 -0
  87. package/lib/commonjs/specs/index.js +47 -0
  88. package/lib/commonjs/specs/index.js.map +1 -0
  89. package/lib/commonjs/specs/index.web.js +24 -0
  90. package/lib/commonjs/specs/index.web.js.map +1 -0
  91. package/lib/commonjs/specs/types.js +24 -0
  92. package/lib/commonjs/specs/types.js.map +1 -0
  93. package/lib/commonjs/types/accessibility.js +37 -0
  94. package/lib/commonjs/types/accessibility.js.map +1 -0
  95. package/lib/commonjs/types/index.js +16 -30
  96. package/lib/commonjs/types/index.js.map +1 -1
  97. package/lib/commonjs/types/stylesheet.js +3 -0
  98. package/lib/commonjs/types/stylesheet.js.map +1 -1
  99. package/lib/commonjs/types/variants.js +4 -0
  100. package/lib/module/common.js +2 -56
  101. package/lib/module/common.js.map +1 -1
  102. package/lib/module/global.js +1 -1
  103. package/lib/module/index.js +12 -29
  104. package/lib/module/index.js.map +1 -1
  105. package/lib/module/{utils/mq.js → mq.js} +14 -2
  106. package/lib/module/mq.js.map +1 -0
  107. package/lib/module/package.json +1 -0
  108. package/lib/module/specs/NativePlatform/NativePlatform.nitro.js +23 -0
  109. package/lib/module/specs/NativePlatform/NativePlatform.nitro.js.map +1 -0
  110. package/lib/module/specs/NativePlatform/index.js +4 -0
  111. package/lib/module/specs/NativePlatform/index.js.map +1 -0
  112. package/lib/module/specs/NavigtionBar/UnistylesNavigationBar.nitro.js +4 -0
  113. package/lib/module/specs/NavigtionBar/UnistylesNavigationBar.nitro.js.map +1 -0
  114. package/lib/module/specs/NavigtionBar/index.js +12 -0
  115. package/lib/module/specs/NavigtionBar/index.js.map +1 -0
  116. package/lib/module/specs/ShadowRegistry/ShadowRegistry.nitro.js +4 -0
  117. package/lib/module/specs/ShadowRegistry/ShadowRegistry.nitro.js.map +1 -0
  118. package/lib/module/specs/ShadowRegistry/index.js +26 -0
  119. package/lib/module/specs/ShadowRegistry/index.js.map +1 -0
  120. package/lib/module/specs/ShadowRegistry/types.js +2 -0
  121. package/lib/module/specs/ShadowRegistry/types.js.map +1 -0
  122. package/lib/module/specs/StatusBar/UnistylesStatusBar.nitro.js +4 -0
  123. package/lib/module/specs/StatusBar/UnistylesStatusBar.nitro.js.map +1 -0
  124. package/lib/module/specs/StatusBar/index.js +28 -0
  125. package/lib/module/specs/StatusBar/index.js.map +1 -0
  126. package/lib/module/specs/StyleSheet/UnistylesStyleSheet.nitro.js +4 -0
  127. package/lib/module/specs/StyleSheet/UnistylesStyleSheet.nitro.js.map +1 -0
  128. package/lib/module/specs/StyleSheet/index.js +14 -0
  129. package/lib/module/specs/StyleSheet/index.js.map +1 -0
  130. package/lib/module/specs/TurboUnistyles/NativeTurboUnistyles.js +9 -0
  131. package/lib/module/specs/TurboUnistyles/NativeTurboUnistyles.js.map +1 -0
  132. package/lib/module/specs/TurboUnistyles/index.js +4 -0
  133. package/lib/module/specs/TurboUnistyles/index.js.map +1 -0
  134. package/lib/module/specs/UnistylesRuntime/UnistylesRuntime.nitro.js +4 -0
  135. package/lib/module/specs/UnistylesRuntime/UnistylesRuntime.nitro.js.map +1 -0
  136. package/lib/module/specs/UnistylesRuntime/index.js +22 -0
  137. package/lib/module/specs/UnistylesRuntime/index.js.map +1 -0
  138. package/lib/module/specs/index.js +10 -0
  139. package/lib/module/specs/index.js.map +1 -0
  140. package/lib/module/specs/index.web.js +5 -0
  141. package/lib/module/specs/index.web.js.map +1 -0
  142. package/lib/module/specs/types.js +20 -0
  143. package/lib/module/specs/types.js.map +1 -0
  144. package/lib/module/types/accessibility.js +33 -0
  145. package/lib/module/types/accessibility.js.map +1 -0
  146. package/lib/module/types/breakpoints.js +2 -0
  147. package/lib/module/types/common.js +1 -1
  148. package/lib/module/types/core.js +2 -0
  149. package/lib/module/types/index.js +3 -3
  150. package/lib/module/types/index.js.map +1 -1
  151. package/lib/module/types/stylesheet.js +5 -0
  152. package/lib/module/types/stylesheet.js.map +1 -1
  153. package/lib/module/types/variants.js +2 -0
  154. package/lib/typescript/example/App.d.ts +4 -0
  155. package/lib/typescript/example/App.d.ts.map +1 -0
  156. package/lib/typescript/example/unistyles.d.ts +63 -0
  157. package/lib/typescript/example/unistyles.d.ts.map +1 -0
  158. package/lib/typescript/expo-example/App.d.ts +4 -0
  159. package/lib/typescript/expo-example/App.d.ts.map +1 -0
  160. package/lib/typescript/expo-example/unistyles.d.ts +63 -0
  161. package/lib/typescript/expo-example/unistyles.d.ts.map +1 -0
  162. package/lib/typescript/src/common.d.ts +0 -50
  163. package/lib/typescript/src/common.d.ts.map +1 -1
  164. package/lib/typescript/src/index.d.ts +3 -76
  165. package/lib/typescript/src/index.d.ts.map +1 -1
  166. package/lib/typescript/src/{utils/mq.d.ts → mq.d.ts} +2 -2
  167. package/lib/typescript/src/mq.d.ts.map +1 -0
  168. package/lib/typescript/src/specs/NativePlatform/NativePlatform.nitro.d.ts +57 -0
  169. package/lib/typescript/src/specs/NativePlatform/NativePlatform.nitro.d.ts.map +1 -0
  170. package/lib/typescript/src/specs/NativePlatform/index.d.ts +3 -0
  171. package/lib/typescript/src/specs/NativePlatform/index.d.ts.map +1 -0
  172. package/lib/typescript/src/specs/NavigtionBar/UnistylesNavigationBar.nitro.d.ts +11 -0
  173. package/lib/typescript/src/specs/NavigtionBar/UnistylesNavigationBar.nitro.d.ts.map +1 -0
  174. package/lib/typescript/src/specs/NavigtionBar/index.d.ts +11 -0
  175. package/lib/typescript/src/specs/NavigtionBar/index.d.ts.map +1 -0
  176. package/lib/typescript/src/specs/ShadowRegistry/ShadowRegistry.nitro.d.ts +7 -0
  177. package/lib/typescript/src/specs/ShadowRegistry/ShadowRegistry.nitro.d.ts.map +1 -0
  178. package/lib/typescript/src/specs/ShadowRegistry/index.d.ts +12 -0
  179. package/lib/typescript/src/specs/ShadowRegistry/index.d.ts.map +1 -0
  180. package/lib/typescript/src/specs/ShadowRegistry/types.d.ts +27 -0
  181. package/lib/typescript/src/specs/ShadowRegistry/types.d.ts.map +1 -0
  182. package/lib/typescript/src/specs/StatusBar/UnistylesStatusBar.nitro.d.ts +11 -0
  183. package/lib/typescript/src/specs/StatusBar/UnistylesStatusBar.nitro.d.ts.map +1 -0
  184. package/lib/typescript/src/specs/StatusBar/index.d.ts +15 -0
  185. package/lib/typescript/src/specs/StatusBar/index.d.ts.map +1 -0
  186. package/lib/typescript/src/specs/StyleSheet/UnistylesStyleSheet.nitro.d.ts +9 -0
  187. package/lib/typescript/src/specs/StyleSheet/UnistylesStyleSheet.nitro.d.ts.map +1 -0
  188. package/lib/typescript/src/specs/StyleSheet/index.d.ts +28 -0
  189. package/lib/typescript/src/specs/StyleSheet/index.d.ts.map +1 -0
  190. package/lib/typescript/src/specs/TurboUnistyles/NativeTurboUnistyles.d.ts +2 -0
  191. package/lib/typescript/src/specs/TurboUnistyles/NativeTurboUnistyles.d.ts.map +1 -0
  192. package/lib/typescript/src/specs/TurboUnistyles/index.d.ts +2 -0
  193. package/lib/typescript/src/specs/TurboUnistyles/index.d.ts.map +1 -0
  194. package/lib/typescript/src/specs/UnistylesRuntime/UnistylesRuntime.nitro.d.ts +41 -0
  195. package/lib/typescript/src/specs/UnistylesRuntime/UnistylesRuntime.nitro.d.ts.map +1 -0
  196. package/lib/typescript/src/specs/UnistylesRuntime/index.d.ts +25 -0
  197. package/lib/typescript/src/specs/UnistylesRuntime/index.d.ts.map +1 -0
  198. package/lib/typescript/src/specs/index.d.ts +10 -0
  199. package/lib/typescript/src/specs/index.d.ts.map +1 -0
  200. package/lib/typescript/src/specs/index.web.d.ts +4 -0
  201. package/lib/typescript/src/specs/index.web.d.ts.map +1 -0
  202. package/lib/typescript/src/specs/types.d.ts +32 -0
  203. package/lib/typescript/src/specs/types.d.ts.map +1 -0
  204. package/lib/typescript/src/types/accessibility.d.ts +28 -0
  205. package/lib/typescript/src/types/accessibility.d.ts.map +1 -0
  206. package/lib/typescript/src/types/breakpoints.d.ts +12 -5
  207. package/lib/typescript/src/types/breakpoints.d.ts.map +1 -1
  208. package/lib/typescript/src/types/common.d.ts +1 -0
  209. package/lib/typescript/src/types/common.d.ts.map +1 -1
  210. package/lib/typescript/src/types/index.d.ts +2 -5
  211. package/lib/typescript/src/types/index.d.ts.map +1 -1
  212. package/lib/typescript/src/types/stylesheet.d.ts +31 -9
  213. package/lib/typescript/src/types/stylesheet.d.ts.map +1 -1
  214. package/lib/typescript/src/types/variants.d.ts +5 -8
  215. package/lib/typescript/src/types/variants.d.ts.map +1 -1
  216. package/lib/typescript/web/convert/boxShadow.d.ts +3 -0
  217. package/lib/typescript/web/convert/boxShadow.d.ts.map +1 -0
  218. package/lib/typescript/web/convert/breakpoint.d.ts +3 -0
  219. package/lib/typescript/web/convert/breakpoint.d.ts.map +1 -0
  220. package/lib/typescript/web/convert/index.d.ts +4 -0
  221. package/lib/typescript/web/convert/index.d.ts.map +1 -0
  222. package/lib/typescript/web/convert/shadow.d.ts +2 -0
  223. package/lib/typescript/web/convert/shadow.d.ts.map +1 -0
  224. package/lib/typescript/web/convert/style.d.ts +3 -0
  225. package/lib/typescript/web/convert/style.d.ts.map +1 -0
  226. package/lib/typescript/web/convert/textShadow.d.ts +3 -0
  227. package/lib/typescript/web/convert/textShadow.d.ts.map +1 -0
  228. package/lib/typescript/web/convert/transform.d.ts +5 -0
  229. package/lib/typescript/web/convert/transform.d.ts.map +1 -0
  230. package/lib/typescript/web/convert/types.d.ts +13 -0
  231. package/lib/typescript/web/convert/types.d.ts.map +1 -0
  232. package/lib/typescript/web/convert/utils.d.ts +8 -0
  233. package/lib/typescript/web/convert/utils.d.ts.map +1 -0
  234. package/lib/typescript/web/create.d.ts +2449 -0
  235. package/lib/typescript/web/create.d.ts.map +1 -0
  236. package/lib/typescript/web/index.d.ts +2464 -0
  237. package/lib/typescript/web/index.d.ts.map +1 -0
  238. package/lib/typescript/web/listener/index.d.ts +2 -0
  239. package/lib/typescript/web/listener/index.d.ts.map +1 -0
  240. package/lib/typescript/web/listener/listener.d.ts +10 -0
  241. package/lib/typescript/web/listener/listener.d.ts.map +1 -0
  242. package/lib/typescript/web/mock.d.ts +14 -0
  243. package/lib/typescript/web/mock.d.ts.map +1 -0
  244. package/lib/typescript/web/mq.d.ts +4 -0
  245. package/lib/typescript/web/mq.d.ts.map +1 -0
  246. package/lib/typescript/web/pseudo.d.ts +4 -0
  247. package/lib/typescript/web/pseudo.d.ts.map +1 -0
  248. package/lib/typescript/web/registry.d.ts +12 -0
  249. package/lib/typescript/web/registry.d.ts.map +1 -0
  250. package/lib/typescript/web/runtime.d.ts +42 -0
  251. package/lib/typescript/web/runtime.d.ts.map +1 -0
  252. package/lib/typescript/web/state.d.ts +24 -0
  253. package/lib/typescript/web/state.d.ts.map +1 -0
  254. package/lib/typescript/web/useVariants.d.ts +3 -0
  255. package/lib/typescript/web/useVariants.d.ts.map +1 -0
  256. package/lib/typescript/web/utils.d.ts +18 -0
  257. package/lib/typescript/web/utils.d.ts.map +1 -0
  258. package/nitrogen/generated/android/UnistylesOnLoad.cpp +34 -0
  259. package/nitrogen/generated/android/UnistylesOnLoad.hpp +25 -0
  260. package/nitrogen/generated/android/UnistylesOnLoad.kt +1 -0
  261. package/nitrogen/generated/android/c++/JColorScheme.hpp +61 -0
  262. package/nitrogen/generated/android/c++/JDimensions.hpp +56 -0
  263. package/nitrogen/generated/android/c++/JFunc_void_std__vector_UnistyleDependency_.hpp +60 -0
  264. package/nitrogen/generated/android/c++/JHybridNativePlatformSpec.cpp +145 -0
  265. package/nitrogen/generated/android/c++/JHybridNativePlatformSpec.hpp +70 -0
  266. package/nitrogen/generated/android/c++/JInsets.hpp +68 -0
  267. package/nitrogen/generated/android/c++/JOrientation.hpp +58 -0
  268. package/nitrogen/generated/android/c++/JUnistyleDependency.hpp +94 -0
  269. package/nitrogen/generated/android/c++/JUnistylesNativeMiniRuntime.hpp +96 -0
  270. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/ColorScheme.kt +22 -0
  271. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Dimensions.kt +21 -0
  272. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Func_void_std__vector_UnistyleDependency_.kt +45 -0
  273. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/HybridNativePlatformSpec.kt +134 -0
  274. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Insets.kt +24 -0
  275. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/Orientation.kt +21 -0
  276. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/UnistyleDependency.kt +33 -0
  277. package/nitrogen/generated/android/kotlin/com/margelo/nitro/unistyles/UnistylesNativeMiniRuntime.kt +29 -0
  278. package/nitrogen/generated/android/unistyles+autolinking.cmake +52 -0
  279. package/nitrogen/generated/android/unistyles+autolinking.gradle +25 -0
  280. package/nitrogen/generated/ios/Unistyles+autolinking.rb +56 -0
  281. package/nitrogen/generated/ios/Unistyles-Swift-Cxx-Bridge.cpp +8 -0
  282. package/nitrogen/generated/ios/Unistyles-Swift-Cxx-Bridge.hpp +86 -0
  283. package/nitrogen/generated/ios/Unistyles-Swift-Cxx-Umbrella.hpp +88 -0
  284. package/nitrogen/generated/ios/c++/HybridNativePlatformSpecSwift.cpp +11 -0
  285. package/nitrogen/generated/ios/c++/HybridNativePlatformSpecSwift.hpp +151 -0
  286. package/nitrogen/generated/ios/swift/ColorScheme.swift +44 -0
  287. package/nitrogen/generated/ios/swift/Dimensions.swift +46 -0
  288. package/nitrogen/generated/ios/swift/HybridNativePlatformSpec.swift +65 -0
  289. package/nitrogen/generated/ios/swift/HybridNativePlatformSpecCxx.swift +273 -0
  290. package/nitrogen/generated/ios/swift/Insets.swift +79 -0
  291. package/nitrogen/generated/ios/swift/Orientation.swift +40 -0
  292. package/nitrogen/generated/ios/swift/UnistyleDependency.swift +88 -0
  293. package/nitrogen/generated/ios/swift/UnistylesNativeMiniRuntime.swift +134 -0
  294. package/nitrogen/generated/shared/c++/ColorScheme.hpp +82 -0
  295. package/nitrogen/generated/shared/c++/Dimensions.hpp +72 -0
  296. package/nitrogen/generated/shared/c++/HybridNativePlatformSpec.cpp +38 -0
  297. package/nitrogen/generated/shared/c++/HybridNativePlatformSpec.hpp +95 -0
  298. package/nitrogen/generated/shared/c++/HybridUnistylesNavigationBarSpec.cpp +24 -0
  299. package/nitrogen/generated/shared/c++/HybridUnistylesNavigationBarSpec.hpp +61 -0
  300. package/nitrogen/generated/shared/c++/HybridUnistylesRuntimeSpec.cpp +36 -0
  301. package/nitrogen/generated/shared/c++/HybridUnistylesRuntimeSpec.hpp +88 -0
  302. package/nitrogen/generated/shared/c++/HybridUnistylesShadowRegistrySpec.cpp +21 -0
  303. package/nitrogen/generated/shared/c++/HybridUnistylesShadowRegistrySpec.hpp +59 -0
  304. package/nitrogen/generated/shared/c++/HybridUnistylesStatusBarSpec.cpp +24 -0
  305. package/nitrogen/generated/shared/c++/HybridUnistylesStatusBarSpec.hpp +61 -0
  306. package/nitrogen/generated/shared/c++/HybridUnistylesStyleSheetSpec.cpp +22 -0
  307. package/nitrogen/generated/shared/c++/HybridUnistylesStyleSheetSpec.hpp +60 -0
  308. package/nitrogen/generated/shared/c++/Insets.hpp +84 -0
  309. package/nitrogen/generated/shared/c++/Orientation.hpp +78 -0
  310. package/nitrogen/generated/shared/c++/UnistyleDependency.hpp +76 -0
  311. package/nitrogen/generated/shared/c++/UnistylesCxxMiniRuntime.hpp +128 -0
  312. package/nitrogen/generated/shared/c++/UnistylesNativeMiniRuntime.hpp +115 -0
  313. package/package.json +34 -59
  314. package/plugin/__tests__/dependencies.spec.js +360 -0
  315. package/plugin/__tests__/ref.spec.js +991 -0
  316. package/plugin/__tests__/stylesheet.spec.js +396 -0
  317. package/plugin/common.js +119 -0
  318. package/plugin/import.js +8 -0
  319. package/plugin/index.js +122 -0
  320. package/plugin/ref.js +179 -0
  321. package/plugin/style.js +58 -0
  322. package/plugin/stylesheet.js +147 -0
  323. package/src/common.ts +0 -58
  324. package/src/index.ts +11 -52
  325. package/src/{utils/mq.ts → mq.ts} +13 -4
  326. package/src/specs/NativePlatform/NativePlatform.nitro.ts +61 -0
  327. package/src/specs/NativePlatform/index.ts +2 -0
  328. package/src/specs/NavigtionBar/UnistylesNavigationBar.nitro.ts +10 -0
  329. package/src/specs/NavigtionBar/index.ts +25 -0
  330. package/src/specs/ShadowRegistry/ShadowRegistry.nitro.ts +3 -0
  331. package/src/specs/ShadowRegistry/index.ts +51 -0
  332. package/src/specs/ShadowRegistry/types.ts +29 -0
  333. package/src/specs/StatusBar/UnistylesStatusBar.nitro.ts +10 -0
  334. package/src/specs/StatusBar/index.ts +48 -0
  335. package/src/specs/StyleSheet/UnistylesStyleSheet.nitro.ts +6 -0
  336. package/src/specs/StyleSheet/index.ts +44 -0
  337. package/src/specs/TurboUnistyles/NativeTurboUnistyles.ts +8 -0
  338. package/src/specs/TurboUnistyles/index.ts +1 -0
  339. package/src/specs/UnistylesRuntime/UnistylesRuntime.nitro.ts +47 -0
  340. package/src/specs/UnistylesRuntime/index.ts +64 -0
  341. package/src/specs/index.ts +23 -0
  342. package/src/specs/index.web.ts +5 -0
  343. package/src/specs/types.ts +38 -0
  344. package/src/types/accessibility.ts +29 -0
  345. package/src/types/breakpoints.ts +21 -14
  346. package/src/types/common.ts +1 -0
  347. package/src/types/index.ts +2 -5
  348. package/src/types/stylesheet.ts +41 -9
  349. package/src/types/variants.ts +7 -11
  350. package/web/convert/boxShadow.ts +72 -0
  351. package/web/convert/breakpoint.ts +21 -0
  352. package/web/convert/index.ts +78 -0
  353. package/web/convert/shadow.ts +68 -0
  354. package/web/convert/style.ts +94 -0
  355. package/web/convert/textShadow.ts +69 -0
  356. package/web/convert/transform.ts +89 -0
  357. package/web/convert/types.ts +16 -0
  358. package/web/convert/utils.ts +54 -0
  359. package/web/create.ts +102 -0
  360. package/web/index.ts +24 -0
  361. package/web/listener/index.ts +1 -0
  362. package/web/listener/listener.ts +33 -0
  363. package/web/mock.ts +35 -0
  364. package/web/mq.ts +19 -0
  365. package/web/pseudo.ts +11 -0
  366. package/web/registry.ts +41 -0
  367. package/web/runtime.ts +198 -0
  368. package/web/state.ts +148 -0
  369. package/web/useVariants.ts +99 -0
  370. package/web/utils.ts +95 -0
  371. package/android/src/main/java/com/unistyles/Models.kt +0 -27
  372. package/android/src/main/java/com/unistyles/Platform.kt +0 -324
  373. package/android/src/main/java/com/unistyles/UnistylesModule.kt +0 -217
  374. package/cxx/Macros.h +0 -11
  375. package/cxx/UnistylesImpl.cpp +0 -310
  376. package/cxx/UnistylesModel.cpp +0 -230
  377. package/cxx/UnistylesModel.h +0 -143
  378. package/cxx/UnistylesRuntime.cpp +0 -36
  379. package/cxx/UnistylesRuntime.h +0 -81
  380. package/ios/UnistylesModule.h +0 -28
  381. package/ios/UnistylesModule.mm +0 -77
  382. package/ios/platform/Platform_Shared.h +0 -8
  383. package/ios/platform/Platform_Shared.mm +0 -160
  384. package/ios/platform/Platform_iOS.h +0 -20
  385. package/ios/platform/Platform_iOS.mm +0 -193
  386. package/ios/platform/Platform_macOS.h +0 -19
  387. package/ios/platform/Platform_macOS.mm +0 -117
  388. package/ios/platform/Platform_tvOS.h +0 -16
  389. package/ios/platform/Platform_tvOS.mm +0 -92
  390. package/ios/platform/Platform_visionOS.h +0 -19
  391. package/ios/platform/Platform_visionOS.mm +0 -116
  392. package/lib/commonjs/core/UnistyleRegistry.js +0 -110
  393. package/lib/commonjs/core/UnistyleRegistry.js.map +0 -1
  394. package/lib/commonjs/core/Unistyles.js +0 -39
  395. package/lib/commonjs/core/Unistyles.js.map +0 -1
  396. package/lib/commonjs/core/UnistylesModule.js +0 -268
  397. package/lib/commonjs/core/UnistylesModule.js.map +0 -1
  398. package/lib/commonjs/core/UnistylesModule.native.js +0 -9
  399. package/lib/commonjs/core/UnistylesModule.native.js.map +0 -1
  400. package/lib/commonjs/core/UnistylesModule.windows.js +0 -11
  401. package/lib/commonjs/core/UnistylesModule.windows.js.map +0 -1
  402. package/lib/commonjs/core/UnistylesRuntime.js +0 -284
  403. package/lib/commonjs/core/UnistylesRuntime.js.map +0 -1
  404. package/lib/commonjs/core/index.js +0 -13
  405. package/lib/commonjs/core/index.js.map +0 -1
  406. package/lib/commonjs/core/mocks/UnistylesMockedBridge.js +0 -36
  407. package/lib/commonjs/core/mocks/UnistylesMockedBridge.js.map +0 -1
  408. package/lib/commonjs/core/mocks/UnistylesMockedRegistry.js +0 -46
  409. package/lib/commonjs/core/mocks/UnistylesMockedRegistry.js.map +0 -1
  410. package/lib/commonjs/core/mocks/UnistylesMockedRuntime.js +0 -122
  411. package/lib/commonjs/core/mocks/UnistylesMockedRuntime.js.map +0 -1
  412. package/lib/commonjs/core/mocks/index.js +0 -27
  413. package/lib/commonjs/core/mocks/index.js.map +0 -1
  414. package/lib/commonjs/createStyleSheet.js +0 -14
  415. package/lib/commonjs/createStyleSheet.js.map +0 -1
  416. package/lib/commonjs/hooks/index.js +0 -34
  417. package/lib/commonjs/hooks/index.js.map +0 -1
  418. package/lib/commonjs/hooks/useCSS.js +0 -44
  419. package/lib/commonjs/hooks/useCSS.js.map +0 -1
  420. package/lib/commonjs/hooks/useCSS.native.js +0 -9
  421. package/lib/commonjs/hooks/useCSS.native.js.map +0 -1
  422. package/lib/commonjs/hooks/useInitialTheme.js +0 -17
  423. package/lib/commonjs/hooks/useInitialTheme.js.map +0 -1
  424. package/lib/commonjs/hooks/useUnistyles.js +0 -74
  425. package/lib/commonjs/hooks/useUnistyles.js.map +0 -1
  426. package/lib/commonjs/hooks/useVariants.js +0 -14
  427. package/lib/commonjs/hooks/useVariants.js.map +0 -1
  428. package/lib/commonjs/normalizer/index.js +0 -32
  429. package/lib/commonjs/normalizer/index.js.map +0 -1
  430. package/lib/commonjs/normalizer/module.d.js +0 -2
  431. package/lib/commonjs/normalizer/module.d.js.map +0 -1
  432. package/lib/commonjs/normalizer/normalizeStyle.js +0 -59
  433. package/lib/commonjs/normalizer/normalizeStyle.js.map +0 -1
  434. package/lib/commonjs/normalizer/normalizer.js +0 -88
  435. package/lib/commonjs/normalizer/normalizer.js.map +0 -1
  436. package/lib/commonjs/normalizer/normalizer.macos.js +0 -3
  437. package/lib/commonjs/normalizer/normalizer.macos.js.map +0 -1
  438. package/lib/commonjs/plugins/cssMediaQueriesPlugin.js +0 -14
  439. package/lib/commonjs/plugins/cssMediaQueriesPlugin.js.map +0 -1
  440. package/lib/commonjs/plugins/index.js +0 -20
  441. package/lib/commonjs/plugins/index.js.map +0 -1
  442. package/lib/commonjs/plugins/normalizeWebStylesPlugin.js +0 -12
  443. package/lib/commonjs/plugins/normalizeWebStylesPlugin.js.map +0 -1
  444. package/lib/commonjs/types/color.js +0 -2
  445. package/lib/commonjs/types/color.js.map +0 -1
  446. package/lib/commonjs/types/normalizer.js.map +0 -1
  447. package/lib/commonjs/types/plugin.js.map +0 -1
  448. package/lib/commonjs/types/unistyles.js.map +0 -1
  449. package/lib/commonjs/useStyles.js +0 -47
  450. package/lib/commonjs/useStyles.js.map +0 -1
  451. package/lib/commonjs/utils/breakpoints.js +0 -33
  452. package/lib/commonjs/utils/breakpoints.js.map +0 -1
  453. package/lib/commonjs/utils/cssMediaQuery.js +0 -244
  454. package/lib/commonjs/utils/cssMediaQuery.js.map +0 -1
  455. package/lib/commonjs/utils/generateId.js +0 -15
  456. package/lib/commonjs/utils/generateId.js.map +0 -1
  457. package/lib/commonjs/utils/hash32.js +0 -43
  458. package/lib/commonjs/utils/hash32.js.map +0 -1
  459. package/lib/commonjs/utils/index.js +0 -91
  460. package/lib/commonjs/utils/index.js.map +0 -1
  461. package/lib/commonjs/utils/mq.js.map +0 -1
  462. package/lib/commonjs/utils/mqParser.js +0 -89
  463. package/lib/commonjs/utils/mqParser.js.map +0 -1
  464. package/lib/commonjs/utils/parseColor.js +0 -35
  465. package/lib/commonjs/utils/parseColor.js.map +0 -1
  466. package/lib/commonjs/utils/styles.js +0 -73
  467. package/lib/commonjs/utils/styles.js.map +0 -1
  468. package/lib/commonjs/utils/withPlugins.js +0 -15
  469. package/lib/commonjs/utils/withPlugins.js.map +0 -1
  470. package/lib/module/core/UnistyleRegistry.js +0 -103
  471. package/lib/module/core/UnistyleRegistry.js.map +0 -1
  472. package/lib/module/core/Unistyles.js +0 -33
  473. package/lib/module/core/Unistyles.js.map +0 -1
  474. package/lib/module/core/UnistylesModule.js +0 -261
  475. package/lib/module/core/UnistylesModule.js.map +0 -1
  476. package/lib/module/core/UnistylesModule.native.js +0 -3
  477. package/lib/module/core/UnistylesModule.native.js.map +0 -1
  478. package/lib/module/core/UnistylesModule.windows.js +0 -5
  479. package/lib/module/core/UnistylesModule.windows.js.map +0 -1
  480. package/lib/module/core/UnistylesRuntime.js +0 -278
  481. package/lib/module/core/UnistylesRuntime.js.map +0 -1
  482. package/lib/module/core/index.js +0 -3
  483. package/lib/module/core/index.js.map +0 -1
  484. package/lib/module/core/mocks/UnistylesMockedBridge.js +0 -29
  485. package/lib/module/core/mocks/UnistylesMockedBridge.js.map +0 -1
  486. package/lib/module/core/mocks/UnistylesMockedRegistry.js +0 -39
  487. package/lib/module/core/mocks/UnistylesMockedRegistry.js.map +0 -1
  488. package/lib/module/core/mocks/UnistylesMockedRuntime.js +0 -114
  489. package/lib/module/core/mocks/UnistylesMockedRuntime.js.map +0 -1
  490. package/lib/module/core/mocks/index.js +0 -4
  491. package/lib/module/core/mocks/index.js.map +0 -1
  492. package/lib/module/createStyleSheet.js +0 -7
  493. package/lib/module/createStyleSheet.js.map +0 -1
  494. package/lib/module/hooks/index.js +0 -5
  495. package/lib/module/hooks/index.js.map +0 -1
  496. package/lib/module/hooks/useCSS.js +0 -37
  497. package/lib/module/hooks/useCSS.js.map +0 -1
  498. package/lib/module/hooks/useCSS.native.js +0 -2
  499. package/lib/module/hooks/useCSS.native.js.map +0 -1
  500. package/lib/module/hooks/useInitialTheme.js +0 -10
  501. package/lib/module/hooks/useInitialTheme.js.map +0 -1
  502. package/lib/module/hooks/useUnistyles.js +0 -67
  503. package/lib/module/hooks/useUnistyles.js.map +0 -1
  504. package/lib/module/hooks/useVariants.js +0 -7
  505. package/lib/module/hooks/useVariants.js.map +0 -1
  506. package/lib/module/normalizer/index.js +0 -3
  507. package/lib/module/normalizer/index.js.map +0 -1
  508. package/lib/module/normalizer/module.d.js +0 -2
  509. package/lib/module/normalizer/module.d.js.map +0 -1
  510. package/lib/module/normalizer/normalizeStyle.js +0 -52
  511. package/lib/module/normalizer/normalizeStyle.js.map +0 -1
  512. package/lib/module/normalizer/normalizer.js +0 -78
  513. package/lib/module/normalizer/normalizer.js.map +0 -1
  514. package/lib/module/normalizer/normalizer.macos.js +0 -2
  515. package/lib/module/normalizer/normalizer.macos.js.map +0 -1
  516. package/lib/module/plugins/cssMediaQueriesPlugin.js +0 -7
  517. package/lib/module/plugins/cssMediaQueriesPlugin.js.map +0 -1
  518. package/lib/module/plugins/index.js +0 -3
  519. package/lib/module/plugins/index.js.map +0 -1
  520. package/lib/module/plugins/normalizeWebStylesPlugin.js +0 -6
  521. package/lib/module/plugins/normalizeWebStylesPlugin.js.map +0 -1
  522. package/lib/module/types/color.js +0 -2
  523. package/lib/module/types/color.js.map +0 -1
  524. package/lib/module/types/normalizer.js +0 -2
  525. package/lib/module/types/normalizer.js.map +0 -1
  526. package/lib/module/types/plugin.js +0 -2
  527. package/lib/module/types/plugin.js.map +0 -1
  528. package/lib/module/types/unistyles.js +0 -2
  529. package/lib/module/types/unistyles.js.map +0 -1
  530. package/lib/module/useStyles.js +0 -40
  531. package/lib/module/useStyles.js.map +0 -1
  532. package/lib/module/utils/breakpoints.js +0 -26
  533. package/lib/module/utils/breakpoints.js.map +0 -1
  534. package/lib/module/utils/cssMediaQuery.js +0 -237
  535. package/lib/module/utils/cssMediaQuery.js.map +0 -1
  536. package/lib/module/utils/generateId.js +0 -7
  537. package/lib/module/utils/generateId.js.map +0 -1
  538. package/lib/module/utils/hash32.js +0 -36
  539. package/lib/module/utils/hash32.js.map +0 -1
  540. package/lib/module/utils/index.js +0 -8
  541. package/lib/module/utils/index.js.map +0 -1
  542. package/lib/module/utils/mq.js.map +0 -1
  543. package/lib/module/utils/mqParser.js +0 -78
  544. package/lib/module/utils/mqParser.js.map +0 -1
  545. package/lib/module/utils/parseColor.js +0 -28
  546. package/lib/module/utils/parseColor.js.map +0 -1
  547. package/lib/module/utils/styles.js +0 -64
  548. package/lib/module/utils/styles.js.map +0 -1
  549. package/lib/module/utils/withPlugins.js +0 -8
  550. package/lib/module/utils/withPlugins.js.map +0 -1
  551. package/lib/typescript/src/core/UnistyleRegistry.d.ts +0 -57
  552. package/lib/typescript/src/core/UnistyleRegistry.d.ts.map +0 -1
  553. package/lib/typescript/src/core/Unistyles.d.ts +0 -13
  554. package/lib/typescript/src/core/Unistyles.d.ts.map +0 -1
  555. package/lib/typescript/src/core/UnistylesModule.d.ts +0 -21
  556. package/lib/typescript/src/core/UnistylesModule.d.ts.map +0 -1
  557. package/lib/typescript/src/core/UnistylesModule.native.d.ts +0 -6
  558. package/lib/typescript/src/core/UnistylesModule.native.d.ts.map +0 -1
  559. package/lib/typescript/src/core/UnistylesModule.windows.d.ts +0 -6
  560. package/lib/typescript/src/core/UnistylesModule.windows.d.ts.map +0 -1
  561. package/lib/typescript/src/core/UnistylesRuntime.d.ts +0 -179
  562. package/lib/typescript/src/core/UnistylesRuntime.d.ts.map +0 -1
  563. package/lib/typescript/src/core/index.d.ts +0 -5
  564. package/lib/typescript/src/core/index.d.ts.map +0 -1
  565. package/lib/typescript/src/core/mocks/UnistylesMockedBridge.d.ts +0 -28
  566. package/lib/typescript/src/core/mocks/UnistylesMockedBridge.d.ts.map +0 -1
  567. package/lib/typescript/src/core/mocks/UnistylesMockedRegistry.d.ts +0 -21
  568. package/lib/typescript/src/core/mocks/UnistylesMockedRegistry.d.ts.map +0 -1
  569. package/lib/typescript/src/core/mocks/UnistylesMockedRuntime.d.ts +0 -79
  570. package/lib/typescript/src/core/mocks/UnistylesMockedRuntime.d.ts.map +0 -1
  571. package/lib/typescript/src/core/mocks/index.d.ts +0 -4
  572. package/lib/typescript/src/core/mocks/index.d.ts.map +0 -1
  573. package/lib/typescript/src/createStyleSheet.d.ts +0 -8
  574. package/lib/typescript/src/createStyleSheet.d.ts.map +0 -1
  575. package/lib/typescript/src/hooks/index.d.ts +0 -5
  576. package/lib/typescript/src/hooks/index.d.ts.map +0 -1
  577. package/lib/typescript/src/hooks/useCSS.d.ts +0 -3
  578. package/lib/typescript/src/hooks/useCSS.d.ts.map +0 -1
  579. package/lib/typescript/src/hooks/useCSS.native.d.ts +0 -3
  580. package/lib/typescript/src/hooks/useCSS.native.d.ts.map +0 -1
  581. package/lib/typescript/src/hooks/useInitialTheme.d.ts +0 -3
  582. package/lib/typescript/src/hooks/useInitialTheme.d.ts.map +0 -1
  583. package/lib/typescript/src/hooks/useUnistyles.d.ts +0 -27
  584. package/lib/typescript/src/hooks/useUnistyles.d.ts.map +0 -1
  585. package/lib/typescript/src/hooks/useVariants.d.ts +0 -3
  586. package/lib/typescript/src/hooks/useVariants.d.ts.map +0 -1
  587. package/lib/typescript/src/normalizer/index.d.ts +0 -3
  588. package/lib/typescript/src/normalizer/index.d.ts.map +0 -1
  589. package/lib/typescript/src/normalizer/normalizeStyle.d.ts +0 -3
  590. package/lib/typescript/src/normalizer/normalizeStyle.d.ts.map +0 -1
  591. package/lib/typescript/src/normalizer/normalizer.d.ts +0 -11
  592. package/lib/typescript/src/normalizer/normalizer.d.ts.map +0 -1
  593. package/lib/typescript/src/normalizer/normalizer.macos.d.ts +0 -1
  594. package/lib/typescript/src/normalizer/normalizer.macos.d.ts.map +0 -1
  595. package/lib/typescript/src/plugins/cssMediaQueriesPlugin.d.ts +0 -3
  596. package/lib/typescript/src/plugins/cssMediaQueriesPlugin.d.ts.map +0 -1
  597. package/lib/typescript/src/plugins/index.d.ts +0 -3
  598. package/lib/typescript/src/plugins/index.d.ts.map +0 -1
  599. package/lib/typescript/src/plugins/normalizeWebStylesPlugin.d.ts +0 -3
  600. package/lib/typescript/src/plugins/normalizeWebStylesPlugin.d.ts.map +0 -1
  601. package/lib/typescript/src/types/color.d.ts +0 -4
  602. package/lib/typescript/src/types/color.d.ts.map +0 -1
  603. package/lib/typescript/src/types/normalizer.d.ts +0 -20
  604. package/lib/typescript/src/types/normalizer.d.ts.map +0 -1
  605. package/lib/typescript/src/types/plugin.d.ts +0 -7
  606. package/lib/typescript/src/types/plugin.d.ts.map +0 -1
  607. package/lib/typescript/src/types/unistyles.d.ts +0 -81
  608. package/lib/typescript/src/types/unistyles.d.ts.map +0 -1
  609. package/lib/typescript/src/useStyles.d.ts +0 -16
  610. package/lib/typescript/src/useStyles.d.ts.map +0 -1
  611. package/lib/typescript/src/utils/breakpoints.d.ts +0 -3
  612. package/lib/typescript/src/utils/breakpoints.d.ts.map +0 -1
  613. package/lib/typescript/src/utils/cssMediaQuery.d.ts +0 -4
  614. package/lib/typescript/src/utils/cssMediaQuery.d.ts.map +0 -1
  615. package/lib/typescript/src/utils/generateId.d.ts +0 -2
  616. package/lib/typescript/src/utils/generateId.d.ts.map +0 -1
  617. package/lib/typescript/src/utils/hash32.d.ts +0 -2
  618. package/lib/typescript/src/utils/hash32.d.ts.map +0 -1
  619. package/lib/typescript/src/utils/index.d.ts +0 -9
  620. package/lib/typescript/src/utils/index.d.ts.map +0 -1
  621. package/lib/typescript/src/utils/mq.d.ts.map +0 -1
  622. package/lib/typescript/src/utils/mqParser.d.ts +0 -16
  623. package/lib/typescript/src/utils/mqParser.d.ts.map +0 -1
  624. package/lib/typescript/src/utils/parseColor.d.ts +0 -3
  625. package/lib/typescript/src/utils/parseColor.d.ts.map +0 -1
  626. package/lib/typescript/src/utils/styles.d.ts +0 -5
  627. package/lib/typescript/src/utils/styles.d.ts.map +0 -1
  628. package/lib/typescript/src/utils/withPlugins.d.ts +0 -3
  629. package/lib/typescript/src/utils/withPlugins.d.ts.map +0 -1
  630. package/react-native.config.js +0 -11
  631. package/src/__tests__/mocks.ts +0 -24
  632. package/src/core/UnistyleRegistry.ts +0 -130
  633. package/src/core/Unistyles.ts +0 -44
  634. package/src/core/UnistylesModule.native.ts +0 -7
  635. package/src/core/UnistylesModule.ts +0 -305
  636. package/src/core/UnistylesModule.windows.ts +0 -9
  637. package/src/core/UnistylesRuntime.ts +0 -284
  638. package/src/core/index.ts +0 -8
  639. package/src/core/mocks/UnistylesMockedBridge.ts +0 -30
  640. package/src/core/mocks/UnistylesMockedRegistry.ts +0 -47
  641. package/src/core/mocks/UnistylesMockedRuntime.ts +0 -144
  642. package/src/core/mocks/index.ts +0 -3
  643. package/src/createStyleSheet.ts +0 -8
  644. package/src/hooks/index.ts +0 -4
  645. package/src/hooks/useCSS.native.ts +0 -3
  646. package/src/hooks/useCSS.ts +0 -51
  647. package/src/hooks/useInitialTheme.ts +0 -11
  648. package/src/hooks/useUnistyles.ts +0 -74
  649. package/src/hooks/useVariants.ts +0 -10
  650. package/src/normalizer/index.ts +0 -2
  651. package/src/normalizer/normalizeStyle.ts +0 -82
  652. package/src/normalizer/normalizer.macos.ts +0 -1
  653. package/src/normalizer/normalizer.ts +0 -100
  654. package/src/plugins/cssMediaQueriesPlugin.ts +0 -8
  655. package/src/plugins/index.ts +0 -2
  656. package/src/plugins/normalizeWebStylesPlugin.ts +0 -7
  657. package/src/types/color.ts +0 -26
  658. package/src/types/normalizer.ts +0 -29
  659. package/src/types/plugin.ts +0 -7
  660. package/src/types/unistyles.ts +0 -98
  661. package/src/useStyles.ts +0 -60
  662. package/src/utils/breakpoints.ts +0 -44
  663. package/src/utils/cssMediaQuery.ts +0 -268
  664. package/src/utils/generateId.ts +0 -10
  665. package/src/utils/hash32.ts +0 -53
  666. package/src/utils/index.ts +0 -8
  667. package/src/utils/mqParser.ts +0 -99
  668. package/src/utils/parseColor.ts +0 -33
  669. package/src/utils/styles.ts +0 -90
  670. package/src/utils/withPlugins.ts +0 -13
  671. package/windows/ExperimentalFeatures.props +0 -40
  672. package/windows/NuGet.Config +0 -13
  673. package/windows/ReactNativeUnistyles/PropertySheet.props +0 -16
  674. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.def +0 -3
  675. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.h +0 -149
  676. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.vcxproj +0 -162
  677. package/windows/ReactNativeUnistyles/ReactNativeUnistyles.vcxproj.filters +0 -25
  678. package/windows/ReactNativeUnistyles/ReactPackageProvider.cpp +0 -19
  679. package/windows/ReactNativeUnistyles/ReactPackageProvider.h +0 -21
  680. package/windows/ReactNativeUnistyles/ReactPackageProvider.idl +0 -9
  681. package/windows/ReactNativeUnistyles/packages.lock.json +0 -133
  682. package/windows/ReactNativeUnistyles/pch.cpp +0 -1
  683. package/windows/ReactNativeUnistyles/pch.h +0 -21
  684. package/windows/ReactNativeUnistyles.sln +0 -156
  685. /package/{src/normalizer → web/convert}/module.d.ts +0 -0
@@ -1,268 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.UnistylesModule = exports.UnistylesBridgeWeb = void 0;
7
- var _reactNative = require("react-native");
8
- var _plugins = require("../plugins");
9
- var _common = require("../common");
10
- class UnistylesBridgeWeb {
11
- #timerRef = undefined;
12
- #windowResizeDebounceTimeMs = 100;
13
- #hasAdaptiveThemes = false;
14
- #supportsAutomaticColorScheme = false;
15
- #screenWidth = _common.isServer ? undefined : window.innerWidth;
16
- #screenHeight = _common.isServer ? undefined : window.innerHeight;
17
- #themes = [];
18
- #breakpoints = {};
19
- #colorScheme = this.getPreferredColorScheme();
20
- #themeName = '';
21
- #enabledPlugins = [_plugins.normalizeWebStylesPlugin.name];
22
- #unistylesEvents = new _reactNative.NativeEventEmitter(_reactNative.NativeModules.Unistyles);
23
- #sortedBreakpointPairs = [];
24
- #breakpoint = '';
25
- #contentSizeCategory = 'unspecified';
26
- #insets = {
27
- top: 0,
28
- right: 0,
29
- bottom: 0,
30
- left: 0
31
- };
32
- #statusBar = {
33
- height: 0,
34
- width: 0,
35
- setColor: () => {},
36
- setHidden: () => {}
37
- };
38
- #navigationBar = {
39
- height: 0,
40
- width: 0,
41
- setColor: () => {},
42
- setHidden: () => {}
43
- };
44
- #pixelRatio = 1.0;
45
- #fontScale = 1.0;
46
- #hairlineWidth = 1;
47
- #rtl = false;
48
- constructor() {
49
- if (!_common.isServer) {
50
- this.setupListeners();
51
- this.#screenWidth = window.innerWidth;
52
- this.#screenHeight = window.innerHeight;
53
- this.#rtl = document.documentElement.dir === 'rtl';
54
- }
55
- }
56
- install() {
57
- // @ts-ignore
58
- // eslint-disable-next-line no-undef
59
- globalThis.__UNISTYLES__ = new Proxy({}, {
60
- get: (_target, prop) => {
61
- switch (prop) {
62
- case 'themeName':
63
- return this.getTheme();
64
- case 'screenWidth':
65
- return this.#screenWidth;
66
- case 'screenHeight':
67
- return this.#screenHeight;
68
- case 'contentSizeCategory':
69
- return this.#contentSizeCategory;
70
- case 'breakpoint':
71
- return this.#breakpoint || undefined;
72
- case 'breakpoints':
73
- return this.#breakpoints;
74
- case 'hasAdaptiveThemes':
75
- return this.#hasAdaptiveThemes;
76
- case 'sortedBreakpointPairs':
77
- return this.#sortedBreakpointPairs;
78
- case 'enabledPlugins':
79
- return this.#enabledPlugins;
80
- case 'colorScheme':
81
- return this.#colorScheme;
82
- case 'insets':
83
- return this.#insets;
84
- case 'statusBar':
85
- return this.#statusBar;
86
- case 'navigationBar':
87
- return this.#navigationBar;
88
- case 'pixelRatio':
89
- return this.#pixelRatio;
90
- case 'fontScale':
91
- return this.#fontScale;
92
- case 'hairlineWidth':
93
- return this.#hairlineWidth;
94
- case 'rtl':
95
- return this.#rtl;
96
- case 'useTheme':
97
- return themeName => this.useTheme(themeName);
98
- case 'updateTheme':
99
- return themeName => this.updateTheme(themeName);
100
- case 'useBreakpoints':
101
- return breakpoints => this.useBreakpoints(breakpoints);
102
- case 'useAdaptiveThemes':
103
- return enable => this.useAdaptiveThemes(enable);
104
- case 'addPlugin':
105
- return (pluginName, notify) => this.addPlugin(pluginName, notify);
106
- case 'removePlugin':
107
- return pluginName => this.removePlugin(pluginName);
108
- case 'setRootViewBackgroundColor':
109
- return color => this.setRootViewBackgroundColor(color);
110
- case 'setImmersiveMode':
111
- return () => {};
112
- case 'setWindowResizeDebounceTimeMs':
113
- return timeMs => {
114
- if (timeMs >= 0) {
115
- this.#windowResizeDebounceTimeMs = timeMs;
116
- }
117
- };
118
- default:
119
- return Reflect.get(this, prop);
120
- }
121
- },
122
- set: (target, prop, newValue, receiver) => {
123
- switch (prop) {
124
- case 'themes':
125
- {
126
- this.#themes = newValue;
127
- this.#supportsAutomaticColorScheme = newValue.includes('light') && newValue.includes('dark');
128
- return true;
129
- }
130
- case 'themeName':
131
- {
132
- this.#themeName = newValue;
133
- this.emitThemeChange();
134
- return true;
135
- }
136
- default:
137
- return Reflect.set(target, prop, newValue, receiver);
138
- }
139
- }
140
- });
141
- return true;
142
- }
143
- useTheme(themeName) {
144
- this.#themeName = themeName;
145
- this.emitThemeChange();
146
- }
147
- updateTheme(themeName) {
148
- if (!this.#themeName) {
149
- this.#themeName = this.getTheme();
150
- }
151
- if (this.#themeName === themeName) {
152
- this.emitThemeChange();
153
- }
154
- }
155
- useBreakpoints(breakpoints) {
156
- this.#breakpoints = breakpoints;
157
- this.#sortedBreakpointPairs = Object.entries(breakpoints).sort(([, a], [, b]) => (a ?? 0) - (b ?? 0));
158
- if (!_common.isServer) {
159
- this.#breakpoint = this.getBreakpointFromScreenWidth(this.#screenWidth);
160
- }
161
- }
162
- useAdaptiveThemes(enable) {
163
- this.#hasAdaptiveThemes = enable;
164
- if (!this.#hasAdaptiveThemes || !this.#supportsAutomaticColorScheme) {
165
- return;
166
- }
167
- if (this.#themeName !== this.#colorScheme) {
168
- this.#themeName = this.#colorScheme;
169
- this.emitThemeChange();
170
- }
171
- }
172
- addPlugin(pluginName, notify) {
173
- this.#enabledPlugins = [pluginName].concat(this.#enabledPlugins);
174
- if (notify) {
175
- this.emitPluginChange();
176
- }
177
- }
178
- removePlugin(pluginName) {
179
- this.#enabledPlugins = this.#enabledPlugins.filter(name => name !== pluginName);
180
- this.emitPluginChange();
181
- }
182
- getTheme() {
183
- if (this.#themes.length === 1) {
184
- return this.#themes.at(0);
185
- }
186
- return this.#themeName;
187
- }
188
- setupListeners() {
189
- const onResize = () => {
190
- this.#screenWidth = window.innerWidth;
191
- this.#screenHeight = window.innerHeight;
192
- this.#breakpoint = this.getBreakpointFromScreenWidth(this.#screenWidth);
193
- this.emitLayoutChange();
194
- };
195
- window.addEventListener('resize', () => {
196
- if (this.#windowResizeDebounceTimeMs === 0) {
197
- return onResize();
198
- }
199
- clearTimeout(this.#timerRef);
200
- this.#timerRef = setTimeout(onResize, this.#windowResizeDebounceTimeMs);
201
- });
202
- window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', event => {
203
- this.#colorScheme = event.matches ? 'dark' : 'light';
204
- if (!this.#supportsAutomaticColorScheme || !this.#hasAdaptiveThemes) {
205
- return;
206
- }
207
- if (this.#colorScheme !== this.#themeName) {
208
- this.#themeName = this.#colorScheme;
209
- this.emitThemeChange();
210
- }
211
- });
212
- new MutationObserver(() => {
213
- this.#rtl = document.documentElement.dir === 'rtl';
214
- }).observe(document.documentElement, {
215
- attributes: true,
216
- attributeFilter: ['dir']
217
- });
218
- }
219
- getBreakpointFromScreenWidth(width) {
220
- const breakpoint = this.#sortedBreakpointPairs.find(([, value], index, otherBreakpoints) => {
221
- const minVal = value;
222
- const maxVal = otherBreakpoints[index + 1]?.[1];
223
- if (!maxVal) {
224
- return true;
225
- }
226
- return width >= minVal && width < maxVal;
227
- });
228
- return breakpoint?.at(0);
229
- }
230
- getPreferredColorScheme() {
231
- if (!_common.isServer && window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches) {
232
- return 'dark';
233
- }
234
- return 'light';
235
- }
236
- setRootViewBackgroundColor(color) {
237
- document.body.style.backgroundColor = color;
238
- }
239
- emitPluginChange() {
240
- this.#unistylesEvents.emit('__unistylesOnChange', {
241
- type: 'plugin'
242
- });
243
- }
244
- emitThemeChange() {
245
- this.#unistylesEvents.emit('__unistylesOnChange', {
246
- type: 'theme',
247
- payload: {
248
- themeName: this.#themeName
249
- }
250
- });
251
- }
252
- emitLayoutChange() {
253
- this.#unistylesEvents.emit('__unistylesOnChange', {
254
- type: 'layout',
255
- payload: {
256
- breakpoint: this.#breakpoint,
257
- orientation: this.#screenWidth > this.#screenHeight ? 'landscape' : 'portrait',
258
- screen: {
259
- width: this.#screenWidth,
260
- height: this.#screenHeight
261
- }
262
- }
263
- });
264
- }
265
- }
266
- exports.UnistylesBridgeWeb = UnistylesBridgeWeb;
267
- const UnistylesModule = exports.UnistylesModule = new UnistylesBridgeWeb();
268
- //# sourceMappingURL=UnistylesModule.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_reactNative","require","_plugins","_common","UnistylesBridgeWeb","timerRef","undefined","windowResizeDebounceTimeMs","hasAdaptiveThemes","supportsAutomaticColorScheme","screenWidth","isServer","window","innerWidth","screenHeight","innerHeight","themes","breakpoints","colorScheme","getPreferredColorScheme","themeName","enabledPlugins","normalizeWebStylesPlugin","name","unistylesEvents","NativeEventEmitter","NativeModules","Unistyles","sortedBreakpointPairs","breakpoint","contentSizeCategory","insets","top","right","bottom","left","statusBar","height","width","setColor","setHidden","navigationBar","pixelRatio","fontScale","hairlineWidth","rtl","constructor","setupListeners","document","documentElement","dir","install","globalThis","__UNISTYLES__","Proxy","get","_target","prop","getTheme","useTheme","updateTheme","useBreakpoints","enable","useAdaptiveThemes","pluginName","notify","addPlugin","removePlugin","color","setRootViewBackgroundColor","timeMs","Reflect","set","target","newValue","receiver","includes","emitThemeChange","Object","entries","sort","a","b","getBreakpointFromScreenWidth","concat","emitPluginChange","filter","length","at","onResize","emitLayoutChange","addEventListener","clearTimeout","setTimeout","matchMedia","event","matches","MutationObserver","observe","attributes","attributeFilter","find","value","index","otherBreakpoints","minVal","maxVal","body","style","backgroundColor","emit","type","payload","orientation","screen","exports","UnistylesModule"],"sourceRoot":"../../../src","sources":["core/UnistylesModule.ts"],"mappings":"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","ignoreList":[]}
@@ -1,9 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.UnistylesModule = void 0;
7
- var _reactNative = require("react-native");
8
- const UnistylesModule = exports.UnistylesModule = _reactNative.NativeModules?.Unistyles;
9
- //# sourceMappingURL=UnistylesModule.native.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_reactNative","require","UnistylesModule","exports","NativeModules","Unistyles"],"sourceRoot":"../../../src","sources":["core/UnistylesModule.native.ts"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAMO,MAAMC,eAAe,GAAAC,OAAA,CAAAD,eAAA,GAAGE,0BAAa,EAAEC,SAAkC","ignoreList":[]}
@@ -1,11 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.UnistylesModule = void 0;
7
- var _reactNative = require("react-native");
8
- // while debugging modules will default to NativeModules
9
- // without debugging/in release mode module will be available in TurboModules
10
- const UnistylesModule = exports.UnistylesModule = _reactNative.TurboModuleRegistry.getEnforcing('Unistyles') ?? _reactNative.NativeModules?.Unistyles;
11
- //# sourceMappingURL=UnistylesModule.windows.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_reactNative","require","UnistylesModule","exports","TurboModuleRegistry","getEnforcing","NativeModules","Unistyles"],"sourceRoot":"../../../src","sources":["core/UnistylesModule.windows.ts"],"mappings":";;;;;;AAAA,IAAAA,YAAA,GAAAC,OAAA;AAMA;AACA;AACO,MAAMC,eAAe,GAAAC,OAAA,CAAAD,eAAA,GAAIE,gCAAmB,CAACC,YAAY,CAAC,WAAW,CAAC,IAAIC,0BAAa,EAAEC,SAAmC","ignoreList":[]}
@@ -1,284 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.UnistylesRuntime = void 0;
7
- var _common = require("../common");
8
- var _parseColor = require("../utils/parseColor");
9
- /**
10
- * Utility to interact with the Unistyles during runtime
11
- */
12
- class UnistylesRuntime {
13
- constructor(unistylesBridge, unistylesRegistry) {
14
- this.unistylesBridge = unistylesBridge;
15
- this.unistylesRegistry = unistylesRegistry;
16
- }
17
-
18
- /**
19
- * Get the mini runtime injected to creteStyleSheet
20
- * @returns - The mini runtime
21
- */
22
- get miniRuntime() {
23
- return {
24
- contentSizeCategory: this.contentSizeCategory,
25
- breakpoint: this.breakpoint,
26
- screen: this.screen,
27
- insets: this.insets,
28
- statusBar: {
29
- width: this.statusBar.width,
30
- height: this.statusBar.height
31
- },
32
- navigationBar: {
33
- width: this.navigationBar.width,
34
- height: this.navigationBar.height
35
- },
36
- orientation: this.orientation,
37
- pixelRatio: this.pixelRatio,
38
- fontScale: this.fontScale,
39
- hairlineWidth: this.hairlineWidth,
40
- rtl: this.rtl
41
- };
42
- }
43
-
44
- /**
45
- * Get the current color scheme
46
- * @returns - The current color scheme
47
- */
48
- get colorScheme() {
49
- return this.unistylesBridge.colorScheme;
50
- }
51
-
52
- /**
53
- * Get the layout direction
54
- * @returns - Boolean indicating if the layout direction is RTL
55
- */
56
- get rtl() {
57
- return this.unistylesBridge.rtl;
58
- }
59
-
60
- /**
61
- * Get info about adaptive themes
62
- * @returns - boolean indicating if the adaptive themes are enabled
63
- */
64
- get hasAdaptiveThemes() {
65
- return this.unistylesBridge.hasAdaptiveThemes;
66
- }
67
-
68
- /**
69
- * Get the current theme name
70
- * @returns - The current theme name
71
- */
72
- get themeName() {
73
- return this.unistylesBridge.themeName;
74
- }
75
-
76
- /**
77
- * Get the current content size category
78
- * @returns - The current content size category
79
- */
80
- get contentSizeCategory() {
81
- return this.unistylesBridge.contentSizeCategory;
82
- }
83
-
84
- /**
85
- * Get the current breakpoint based on device size
86
- * @returns - The current breakpoint
87
- */
88
- get breakpoint() {
89
- return this.unistylesBridge.breakpoint;
90
- }
91
-
92
- /**
93
- * Get registered breakpoints with UnitylesRegistry
94
- * @returns - The registered breakpoints
95
- */
96
- get breakpoints() {
97
- return this.unistylesRegistry.breakpoints;
98
- }
99
-
100
- /**
101
- * Get the names of currently enabled plugins
102
- * @deprecated - Plugins will be removed in the next major release
103
- * @returns - The names of currently enabled plugins
104
- */
105
- get enabledPlugins() {
106
- return this.unistylesBridge.enabledPlugins;
107
- }
108
-
109
- /**
110
- * Get the screen size
111
- * @returns - The screen size { width, height }
112
- */
113
- get screen() {
114
- return {
115
- width: this.unistylesBridge.screenWidth,
116
- height: this.unistylesBridge.screenHeight
117
- };
118
- }
119
-
120
- /**
121
- * Get the safe area insets
122
- * @returns - The safe area insets { top, bottom, left, right }
123
- */
124
- get insets() {
125
- return this.unistylesBridge.insets;
126
- }
127
-
128
- /**
129
- * Get the status bar info
130
- * @returns - The status bar api { width, height, setColor, setHidden }
131
- */
132
- get statusBar() {
133
- return {
134
- width: this.unistylesBridge.statusBar.width,
135
- height: this.unistylesBridge.statusBar.height,
136
- setColor: (color, alpha) => {
137
- const [parsedColor, parsedAlpha] = (0, _parseColor.parseColor)(color, alpha);
138
- this.unistylesBridge.statusBar.setColor(parsedColor, parsedAlpha);
139
- },
140
- setHidden: hidden => this.unistylesBridge.statusBar.setHidden(hidden)
141
- };
142
- }
143
-
144
- /**
145
- * Get the navigation bar info (Android)
146
- * @returns - The navigation bar api { width, height, setColor, setHidden }
147
- */
148
- get navigationBar() {
149
- return {
150
- width: this.unistylesBridge.navigationBar.width,
151
- height: this.unistylesBridge.navigationBar.height,
152
- setColor: (color, alpha) => {
153
- const [parsedColor, parsedAlpha] = (0, _parseColor.parseColor)(color, alpha);
154
- this.unistylesBridge.navigationBar.setColor(parsedColor, parsedAlpha);
155
- },
156
- setHidden: hidden => this.unistylesBridge.navigationBar.setHidden(hidden)
157
- };
158
- }
159
-
160
- /**
161
- * Get the screen orientation
162
- * @returns - The screen orientation
163
- */
164
- get orientation() {
165
- const {
166
- width,
167
- height
168
- } = this.screen;
169
- if (width > height) {
170
- return _common.ScreenOrientation.Landscape;
171
- }
172
- return _common.ScreenOrientation.Portrait;
173
- }
174
-
175
- /**
176
- * Get the pixel ratio
177
- * @returns - The pixel ratio
178
- */
179
- get pixelRatio() {
180
- return this.unistylesBridge.pixelRatio;
181
- }
182
-
183
- /**
184
- * Get the font scale
185
- * @returns - The font scale
186
- */
187
- get fontScale() {
188
- return parseFloat(this.unistylesBridge.fontScale.toFixed(2));
189
- }
190
-
191
- /**
192
- * Get the hairline width
193
- * @returns - The thinnest width of the platform
194
- */
195
- get hairlineWidth() {
196
- const pixelRatio = this.pixelRatio;
197
- const nearestPixel = Math.trunc(pixelRatio * 0.4) || 1;
198
- return nearestPixel / pixelRatio;
199
- }
200
-
201
- /**
202
- * Get theme by name
203
- * @param themeName - The name of the theme to get or current theme if not specified
204
- * @returns - The theme
205
- */
206
- getTheme(themeName) {
207
- if (!themeName) {
208
- return this.unistylesRegistry.getTheme(this.themeName);
209
- }
210
- return this.unistylesRegistry.getTheme(themeName);
211
- }
212
-
213
- /**
214
- * Get the immersive mode (both status bar and navigation bar hidden (Android))
215
- * @param isEnabled
216
- */
217
- setImmersiveMode(isEnabled) {
218
- return this.unistylesBridge.setImmersiveMode(isEnabled);
219
- }
220
-
221
- /**
222
- * Set the root view background color
223
- * @param color - The color to set
224
- * @param alpha - Color alpha - default is 1
225
- */
226
- setRootViewBackgroundColor = (color, alpha) => {
227
- const [parsedColor, parsedAlpha] = (0, _parseColor.parseColor)(color, alpha);
228
- this.unistylesBridge.setRootViewBackgroundColor(parsedColor, parsedAlpha);
229
- };
230
-
231
- /**
232
- * Switch to a different theme
233
- * @param name - The name of the theme to switch to
234
- * @returns - boolean indicating if the theme was switched
235
- */
236
- setTheme = name => {
237
- if (name === this.themeName) {
238
- return;
239
- }
240
- if (this.unistylesRegistry.hasTheme(name)) {
241
- this.unistylesBridge.useTheme(name);
242
- return true;
243
- }
244
- throw new Error(_common.UnistylesError.ThemeNotRegistered);
245
- };
246
-
247
- /**
248
- * Update the theme at runtime
249
- * If current theme is updated, the changes will be applied immediately
250
- * @param name - The name of the theme to update
251
- * @param updater - Function that receives the current theme and expect modified theme to be returned
252
- */
253
- updateTheme = (name, updater) => {
254
- this.unistylesRegistry.updateTheme(name, updater(this.unistylesRegistry.getTheme(name)));
255
- };
256
-
257
- /**
258
- * Enable or disable adaptive themes
259
- * @param enable - boolean indicating if adaptive themes should be enabled
260
- */
261
- setAdaptiveThemes = enable => {
262
- this.unistylesBridge.useAdaptiveThemes(enable);
263
- };
264
-
265
- /**
266
- * Enable a plugin
267
- * @deprecated - Plugins will be removed in the next major release
268
- * @param plugin - Plugin that conforms to UnistylesPlugin interface
269
- */
270
- addPlugin = plugin => {
271
- this.unistylesRegistry.addPlugin(plugin);
272
- };
273
-
274
- /**
275
- * Disable a plugin
276
- * @deprecated - Plugins will be removed in the next major release
277
- * @param plugin - Plugin that conforms to UnistylesPlugin interface
278
- */
279
- removePlugin = plugin => {
280
- this.unistylesRegistry.removePlugin(plugin);
281
- };
282
- }
283
- exports.UnistylesRuntime = UnistylesRuntime;
284
- //# sourceMappingURL=UnistylesRuntime.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_common","require","_parseColor","UnistylesRuntime","constructor","unistylesBridge","unistylesRegistry","miniRuntime","contentSizeCategory","breakpoint","screen","insets","statusBar","width","height","navigationBar","orientation","pixelRatio","fontScale","hairlineWidth","rtl","colorScheme","hasAdaptiveThemes","themeName","breakpoints","enabledPlugins","screenWidth","screenHeight","setColor","color","alpha","parsedColor","parsedAlpha","parseColor","setHidden","hidden","ScreenOrientation","Landscape","Portrait","parseFloat","toFixed","nearestPixel","Math","trunc","getTheme","setImmersiveMode","isEnabled","setRootViewBackgroundColor","setTheme","name","hasTheme","useTheme","Error","UnistylesError","ThemeNotRegistered","updateTheme","updater","setAdaptiveThemes","enable","useAdaptiveThemes","addPlugin","plugin","removePlugin","exports"],"sourceRoot":"../../../src","sources":["core/UnistylesRuntime.ts"],"mappings":"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","ignoreList":[]}
@@ -1,13 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "unistyles", {
7
- enumerable: true,
8
- get: function () {
9
- return _Unistyles.unistyles;
10
- }
11
- });
12
- var _Unistyles = require("./Unistyles");
13
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["_Unistyles","require"],"sourceRoot":"../../../src","sources":["core/index.ts"],"mappings":";;;;;;;;;;;AAAA,IAAAA,UAAA,GAAAC,OAAA","ignoreList":[]}
@@ -1,36 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.UnistylesMockedBridge = void 0;
7
- // @ts-nocheck
8
-
9
- class UnistylesMockedBridge {
10
- constructor() {}
11
- screenWidth() {}
12
- screenHeight() {}
13
- enabledPlugins() {}
14
- hasAdaptiveThemes() {}
15
- themeName() {}
16
- breakpoint() {}
17
- colorScheme() {}
18
- contentSizeCategory() {}
19
- sortedBreakpointPairs() {}
20
- insets() {}
21
- pixelRatio() {}
22
- fontScale() {}
23
- statusBar() {}
24
- navigationBar() {}
25
- themes(themes) {}
26
- useBreakpoints(breakpoints) {}
27
- useTheme(name) {}
28
- updateTheme(name) {}
29
- useAdaptiveThemes(enable) {}
30
- addPlugin(pluginName, notify) {}
31
- removePlugin(pluginName) {}
32
- setRootViewBackgroundColor(color, alpha) {}
33
- setImmersiveMode(isEnabled) {}
34
- }
35
- exports.UnistylesMockedBridge = UnistylesMockedBridge;
36
- //# sourceMappingURL=UnistylesMockedBridge.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["UnistylesMockedBridge","constructor","screenWidth","screenHeight","enabledPlugins","hasAdaptiveThemes","themeName","breakpoint","colorScheme","contentSizeCategory","sortedBreakpointPairs","insets","pixelRatio","fontScale","statusBar","navigationBar","themes","useBreakpoints","breakpoints","useTheme","name","updateTheme","useAdaptiveThemes","enable","addPlugin","pluginName","notify","removePlugin","setRootViewBackgroundColor","color","alpha","setImmersiveMode","isEnabled","exports"],"sourceRoot":"../../../../src","sources":["core/mocks/UnistylesMockedBridge.ts"],"mappings":";;;;;;AAAA;;AAGO,MAAMA,qBAAqB,CAAC;EAC/BC,WAAWA,CAAA,EAAG,CAAC;EAERC,WAAWA,CAAA,EAAG,CAAC;EACfC,YAAYA,CAAA,EAAG,CAAC;EAChBC,cAAcA,CAAA,EAAG,CAAC;EAClBC,iBAAiBA,CAAA,EAAG,CAAC;EACrBC,SAASA,CAAA,EAAG,CAAC;EACbC,UAAUA,CAAA,EAAG,CAAC;EACdC,WAAWA,CAAA,EAAG,CAAC;EACfC,mBAAmBA,CAAA,EAAG,CAAC;EACvBC,qBAAqBA,CAAA,EAAG,CAAC;EACzBC,MAAMA,CAAA,EAAG,CAAC;EACVC,UAAUA,CAAA,EAAG,CAAC;EACdC,SAASA,CAAA,EAAG,CAAC;EACbC,SAASA,CAAA,EAAG,CAAC;EACbC,aAAaA,CAAA,EAAG,CAAC;EACjBC,MAAMA,CAACA,MAAoC,EAAE,CAAC;EAC9CC,cAAcA,CAACC,WAAiC,EAAE,CAAC;EACnDC,QAAQA,CAACC,IAA2B,EAAE,CAAC;EACvCC,WAAWA,CAACD,IAA2B,EAAE,CAAC;EAC1CE,iBAAiBA,CAACC,MAAe,EAAE,CAAC;EACpCC,SAASA,CAACC,UAAkB,EAAEC,MAAe,EAAE,CAAC;EAChDC,YAAYA,CAACF,UAAkB,EAAE,CAAC;EAClCG,0BAA0BA,CAACC,KAAc,EAAEC,KAAc,EAAE,CAAC;EAC5DC,gBAAgBA,CAACC,SAAkB,EAAE,CAAC;AACjD;AAACC,OAAA,CAAAjC,qBAAA,GAAAA,qBAAA","ignoreList":[]}