react-native-unistyles 3.0.0-beta.1 → 3.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (384) hide show
  1. package/README.md +4 -4
  2. package/Unistyles.podspec +7 -1
  3. package/android/build.gradle +6 -0
  4. package/android/src/main/cxx/NativeUnistylesModule.cpp +2 -2
  5. package/components/native/ActivityIndicator/package.json +4 -0
  6. package/components/native/FlatList/package.json +4 -0
  7. package/components/native/Image/package.json +4 -0
  8. package/components/native/ImageBackground/package.json +4 -0
  9. package/components/native/KeyboardAvoidingView/package.json +4 -0
  10. package/components/native/Pressable/package.json +5 -0
  11. package/components/native/RefreshControl/package.json +4 -0
  12. package/components/native/ScrollView/package.json +4 -0
  13. package/components/native/SectionList/package.json +4 -0
  14. package/components/native/Switch/package.json +4 -0
  15. package/components/native/Text/package.json +4 -0
  16. package/components/native/TextInput/package.json +4 -0
  17. package/components/native/TouchableHighlight/package.json +4 -0
  18. package/components/native/TouchableOpacity/package.json +4 -0
  19. package/components/native/View/package.json +4 -0
  20. package/components/native/VirtualizedList/package.json +4 -0
  21. package/cxx/common/Constants.h +2 -0
  22. package/cxx/core/HostStyle.cpp +17 -7
  23. package/cxx/core/HostStyle.h +5 -0
  24. package/cxx/core/UnistyleData.h +3 -3
  25. package/cxx/core/UnistyleWrapper.h +9 -9
  26. package/cxx/core/UnistylesRegistry.cpp +23 -30
  27. package/cxx/core/UnistylesRegistry.h +8 -2
  28. package/cxx/hybridObjects/HybridShadowRegistry.cpp +117 -12
  29. package/cxx/hybridObjects/HybridShadowRegistry.h +27 -3
  30. package/cxx/hybridObjects/HybridUnistylesRuntime.cpp +4 -0
  31. package/cxx/parser/Parser.cpp +184 -26
  32. package/cxx/parser/Parser.h +3 -1
  33. package/ios/UnistylesModuleOnLoad.mm +2 -2
  34. package/lib/commonjs/components/ScopedTheme.js +36 -0
  35. package/lib/commonjs/components/ScopedTheme.js.map +1 -0
  36. package/lib/commonjs/components/Variants.js +36 -0
  37. package/lib/commonjs/components/Variants.js.map +1 -0
  38. package/lib/commonjs/components/index.js +10 -3
  39. package/lib/commonjs/components/index.js.map +1 -1
  40. package/lib/commonjs/components/native/ActivityIndicator.js +10 -0
  41. package/lib/commonjs/components/native/ActivityIndicator.js.map +1 -0
  42. package/lib/commonjs/components/native/FlatList.js +10 -0
  43. package/lib/commonjs/components/native/FlatList.js.map +1 -0
  44. package/lib/commonjs/components/native/Image.js +10 -0
  45. package/lib/commonjs/components/native/Image.js.map +1 -0
  46. package/lib/commonjs/components/native/ImageBackground.js +10 -0
  47. package/lib/commonjs/components/native/ImageBackground.js.map +1 -0
  48. package/lib/commonjs/components/native/KeyboardAvoidingView.js +10 -0
  49. package/lib/commonjs/components/native/KeyboardAvoidingView.js.map +1 -0
  50. package/lib/commonjs/components/{Pressable.web.js → native/Pressable.js} +26 -66
  51. package/lib/commonjs/components/native/Pressable.js.map +1 -0
  52. package/lib/commonjs/components/native/Pressable.native.js +51 -0
  53. package/lib/commonjs/components/native/Pressable.native.js.map +1 -0
  54. package/lib/commonjs/components/native/RefreshControl.js +10 -0
  55. package/lib/commonjs/components/native/RefreshControl.js.map +1 -0
  56. package/lib/commonjs/components/native/ScrollView.js +10 -0
  57. package/lib/commonjs/components/native/ScrollView.js.map +1 -0
  58. package/lib/commonjs/components/native/SectionList.js +10 -0
  59. package/lib/commonjs/components/native/SectionList.js.map +1 -0
  60. package/lib/commonjs/components/native/Switch.js +10 -0
  61. package/lib/commonjs/components/native/Switch.js.map +1 -0
  62. package/lib/commonjs/components/native/Text.js +10 -0
  63. package/lib/commonjs/components/native/Text.js.map +1 -0
  64. package/lib/commonjs/components/native/TextInput.js +10 -0
  65. package/lib/commonjs/components/native/TextInput.js.map +1 -0
  66. package/lib/commonjs/components/native/TouchableHighlight.js +10 -0
  67. package/lib/commonjs/components/native/TouchableHighlight.js.map +1 -0
  68. package/lib/commonjs/components/native/TouchableOpacity.js +10 -0
  69. package/lib/commonjs/components/native/TouchableOpacity.js.map +1 -0
  70. package/lib/commonjs/components/native/View.js +10 -0
  71. package/lib/commonjs/components/native/View.js.map +1 -0
  72. package/lib/commonjs/components/native/VirtualizedList.js +10 -0
  73. package/lib/commonjs/components/native/VirtualizedList.js.map +1 -0
  74. package/lib/commonjs/core/createUnistylesComponent.js +5 -68
  75. package/lib/commonjs/core/createUnistylesComponent.js.map +1 -1
  76. package/lib/commonjs/core/createUnistylesElement.js +16 -0
  77. package/lib/commonjs/core/createUnistylesElement.js.map +1 -0
  78. package/lib/commonjs/core/createUnistylesImageBackground.js +27 -0
  79. package/lib/commonjs/core/createUnistylesImageBackground.js.map +1 -0
  80. package/lib/commonjs/core/index.js +20 -6
  81. package/lib/commonjs/core/index.js.map +1 -1
  82. package/lib/commonjs/core/passForwardRef.js +27 -0
  83. package/lib/commonjs/core/passForwardRef.js.map +1 -0
  84. package/lib/commonjs/core/withUnistyles/index.js +13 -0
  85. package/lib/commonjs/core/withUnistyles/index.js.map +1 -0
  86. package/lib/commonjs/core/withUnistyles/types.js +8 -0
  87. package/lib/commonjs/core/withUnistyles/types.js.map +1 -0
  88. package/lib/commonjs/core/withUnistyles/useDependencies.js +85 -0
  89. package/lib/commonjs/core/withUnistyles/useDependencies.js.map +1 -0
  90. package/lib/commonjs/core/withUnistyles/withUnistyles.js +88 -0
  91. package/lib/commonjs/core/withUnistyles/withUnistyles.js.map +1 -0
  92. package/lib/commonjs/core/withUnistyles/withUnistyles.native.js +97 -0
  93. package/lib/commonjs/core/withUnistyles/withUnistyles.native.js.map +1 -0
  94. package/lib/commonjs/hooks/useMedia.js +17 -33
  95. package/lib/commonjs/hooks/useMedia.js.map +1 -1
  96. package/lib/commonjs/hooks/useMedia.native.js +60 -0
  97. package/lib/commonjs/hooks/useMedia.native.js.map +1 -0
  98. package/lib/commonjs/index.js +52 -31
  99. package/lib/commonjs/index.js.map +1 -1
  100. package/lib/commonjs/specs/ShadowRegistry/index.js +3 -3
  101. package/lib/commonjs/specs/ShadowRegistry/index.js.map +1 -1
  102. package/lib/commonjs/specs/index.js +14 -40
  103. package/lib/commonjs/specs/index.js.map +1 -1
  104. package/lib/commonjs/specs/index.native.js +54 -0
  105. package/lib/commonjs/specs/index.native.js.map +1 -0
  106. package/lib/commonjs/web/create.js +9 -33
  107. package/lib/commonjs/web/create.js.map +1 -1
  108. package/lib/commonjs/web/index.js +15 -16
  109. package/lib/commonjs/web/index.js.map +1 -1
  110. package/lib/commonjs/web/registry.js +10 -3
  111. package/lib/commonjs/web/registry.js.map +1 -1
  112. package/lib/commonjs/web/runtime.js +3 -1
  113. package/lib/commonjs/web/runtime.js.map +1 -1
  114. package/lib/commonjs/web/shadowRegistry.js +66 -64
  115. package/lib/commonjs/web/shadowRegistry.js.map +1 -1
  116. package/lib/commonjs/web/utils/unistyle.js +4 -4
  117. package/lib/commonjs/web/utils/unistyle.js.map +1 -1
  118. package/lib/module/components/ScopedTheme.js +29 -0
  119. package/lib/module/components/ScopedTheme.js.map +1 -0
  120. package/lib/module/components/Variants.js +29 -0
  121. package/lib/module/components/Variants.js.map +1 -0
  122. package/lib/module/components/index.js +2 -1
  123. package/lib/module/components/index.js.map +1 -1
  124. package/lib/module/components/native/ActivityIndicator.js +6 -0
  125. package/lib/module/components/native/ActivityIndicator.js.map +1 -0
  126. package/lib/module/components/native/FlatList.js +6 -0
  127. package/lib/module/components/native/FlatList.js.map +1 -0
  128. package/lib/module/components/native/Image.js +6 -0
  129. package/lib/module/components/native/Image.js.map +1 -0
  130. package/lib/module/components/native/ImageBackground.js +6 -0
  131. package/lib/module/components/native/ImageBackground.js.map +1 -0
  132. package/lib/module/components/native/KeyboardAvoidingView.js +6 -0
  133. package/lib/module/components/native/KeyboardAvoidingView.js.map +1 -0
  134. package/lib/module/components/native/Pressable.js +69 -0
  135. package/lib/module/components/native/Pressable.js.map +1 -0
  136. package/lib/module/components/native/Pressable.native.js +45 -0
  137. package/lib/module/components/native/Pressable.native.js.map +1 -0
  138. package/lib/module/components/native/RefreshControl.js +6 -0
  139. package/lib/module/components/native/RefreshControl.js.map +1 -0
  140. package/lib/module/components/native/ScrollView.js +6 -0
  141. package/lib/module/components/native/ScrollView.js.map +1 -0
  142. package/lib/module/components/native/SectionList.js +6 -0
  143. package/lib/module/components/native/SectionList.js.map +1 -0
  144. package/lib/module/components/native/Switch.js +6 -0
  145. package/lib/module/components/native/Switch.js.map +1 -0
  146. package/lib/module/components/native/Text.js +6 -0
  147. package/lib/module/components/native/Text.js.map +1 -0
  148. package/lib/module/components/native/TextInput.js +6 -0
  149. package/lib/module/components/native/TextInput.js.map +1 -0
  150. package/lib/module/components/native/TouchableHighlight.js +6 -0
  151. package/lib/module/components/native/TouchableHighlight.js.map +1 -0
  152. package/lib/module/components/native/TouchableOpacity.js +6 -0
  153. package/lib/module/components/native/TouchableOpacity.js.map +1 -0
  154. package/lib/module/components/native/View.js +6 -0
  155. package/lib/module/components/native/View.js.map +1 -0
  156. package/lib/module/components/native/VirtualizedList.js +6 -0
  157. package/lib/module/components/native/VirtualizedList.js.map +1 -0
  158. package/lib/module/core/createUnistylesComponent.js +5 -66
  159. package/lib/module/core/createUnistylesComponent.js.map +1 -1
  160. package/lib/module/core/createUnistylesElement.js +10 -0
  161. package/lib/module/core/createUnistylesElement.js.map +1 -0
  162. package/lib/module/core/createUnistylesImageBackground.js +21 -0
  163. package/lib/module/core/createUnistylesImageBackground.js.map +1 -0
  164. package/lib/module/core/index.js +4 -2
  165. package/lib/module/core/index.js.map +1 -1
  166. package/lib/module/core/passForwardRef.js +22 -0
  167. package/lib/module/core/passForwardRef.js.map +1 -0
  168. package/lib/module/core/withUnistyles/index.js +4 -0
  169. package/lib/module/core/withUnistyles/index.js.map +1 -0
  170. package/lib/module/core/withUnistyles/types.js +4 -0
  171. package/lib/module/core/withUnistyles/types.js.map +1 -0
  172. package/lib/module/core/withUnistyles/useDependencies.js +79 -0
  173. package/lib/module/core/withUnistyles/useDependencies.js.map +1 -0
  174. package/lib/module/core/withUnistyles/withUnistyles.js +81 -0
  175. package/lib/module/core/withUnistyles/withUnistyles.js.map +1 -0
  176. package/lib/module/core/withUnistyles/withUnistyles.native.js +90 -0
  177. package/lib/module/core/withUnistyles/withUnistyles.native.js.map +1 -0
  178. package/lib/module/hooks/useMedia.js +19 -35
  179. package/lib/module/hooks/useMedia.js.map +1 -1
  180. package/lib/module/hooks/useMedia.native.js +55 -0
  181. package/lib/module/hooks/useMedia.native.js.map +1 -0
  182. package/lib/module/index.js +3 -3
  183. package/lib/module/index.js.map +1 -1
  184. package/lib/module/specs/ShadowRegistry/index.js +3 -3
  185. package/lib/module/specs/ShadowRegistry/index.js.map +1 -1
  186. package/lib/module/specs/index.js +2 -8
  187. package/lib/module/specs/index.js.map +1 -1
  188. package/lib/module/specs/index.native.js +11 -0
  189. package/lib/module/specs/index.native.js.map +1 -0
  190. package/lib/module/web/create.js +10 -34
  191. package/lib/module/web/create.js.map +1 -1
  192. package/lib/module/web/index.js +4 -3
  193. package/lib/module/web/index.js.map +1 -1
  194. package/lib/module/web/registry.js +11 -4
  195. package/lib/module/web/registry.js.map +1 -1
  196. package/lib/module/web/runtime.js +3 -1
  197. package/lib/module/web/runtime.js.map +1 -1
  198. package/lib/module/web/shadowRegistry.js +64 -62
  199. package/lib/module/web/shadowRegistry.js.map +1 -1
  200. package/lib/module/web/utils/unistyle.js +2 -2
  201. package/lib/module/web/utils/unistyle.js.map +1 -1
  202. package/lib/typescript/src/components/ScopedTheme.d.ts +8 -0
  203. package/lib/typescript/src/components/ScopedTheme.d.ts.map +1 -0
  204. package/lib/typescript/src/components/Variants.d.ts +7 -0
  205. package/lib/typescript/src/components/Variants.d.ts.map +1 -0
  206. package/lib/typescript/src/components/index.d.ts +2 -1
  207. package/lib/typescript/src/components/index.d.ts.map +1 -1
  208. package/lib/typescript/src/components/native/ActivityIndicator.d.ts +2 -0
  209. package/lib/typescript/src/components/native/ActivityIndicator.d.ts.map +1 -0
  210. package/lib/typescript/src/components/native/FlatList.d.ts +2 -0
  211. package/lib/typescript/src/components/native/FlatList.d.ts.map +1 -0
  212. package/lib/typescript/src/components/native/Image.d.ts +2 -0
  213. package/lib/typescript/src/components/native/Image.d.ts.map +1 -0
  214. package/lib/typescript/src/components/native/ImageBackground.d.ts +3 -0
  215. package/lib/typescript/src/components/native/ImageBackground.d.ts.map +1 -0
  216. package/lib/typescript/src/components/native/KeyboardAvoidingView.d.ts +2 -0
  217. package/lib/typescript/src/components/native/KeyboardAvoidingView.d.ts.map +1 -0
  218. package/lib/typescript/src/components/{Pressable.web.d.ts → native/Pressable.d.ts} +3 -2
  219. package/lib/typescript/src/components/native/Pressable.d.ts.map +1 -0
  220. package/lib/typescript/src/components/{Pressable.d.ts → native/Pressable.native.d.ts} +1 -3
  221. package/lib/typescript/src/components/native/Pressable.native.d.ts.map +1 -0
  222. package/lib/typescript/src/components/native/RefreshControl.d.ts +2 -0
  223. package/lib/typescript/src/components/native/RefreshControl.d.ts.map +1 -0
  224. package/lib/typescript/src/components/native/ScrollView.d.ts +2 -0
  225. package/lib/typescript/src/components/native/ScrollView.d.ts.map +1 -0
  226. package/lib/typescript/src/components/native/SectionList.d.ts +2 -0
  227. package/lib/typescript/src/components/native/SectionList.d.ts.map +1 -0
  228. package/lib/typescript/src/components/native/Switch.d.ts +2 -0
  229. package/lib/typescript/src/components/native/Switch.d.ts.map +1 -0
  230. package/lib/typescript/src/components/native/Text.d.ts +2 -0
  231. package/lib/typescript/src/components/native/Text.d.ts.map +1 -0
  232. package/lib/typescript/src/components/native/TextInput.d.ts +2 -0
  233. package/lib/typescript/src/components/native/TextInput.d.ts.map +1 -0
  234. package/lib/typescript/src/components/native/TouchableHighlight.d.ts +2 -0
  235. package/lib/typescript/src/components/native/TouchableHighlight.d.ts.map +1 -0
  236. package/lib/typescript/src/components/native/TouchableOpacity.d.ts +2 -0
  237. package/lib/typescript/src/components/native/TouchableOpacity.d.ts.map +1 -0
  238. package/lib/typescript/src/components/native/View.d.ts +2 -0
  239. package/lib/typescript/src/components/native/View.d.ts.map +1 -0
  240. package/lib/typescript/src/components/native/VirtualizedList.d.ts +2 -0
  241. package/lib/typescript/src/components/native/VirtualizedList.d.ts.map +1 -0
  242. package/lib/typescript/src/core/createUnistylesComponent.d.ts +9 -3
  243. package/lib/typescript/src/core/createUnistylesComponent.d.ts.map +1 -1
  244. package/lib/typescript/src/core/createUnistylesElement.d.ts +3 -0
  245. package/lib/typescript/src/core/createUnistylesElement.d.ts.map +1 -0
  246. package/lib/typescript/src/core/createUnistylesImageBackground.d.ts +4 -0
  247. package/lib/typescript/src/core/createUnistylesImageBackground.d.ts.map +1 -0
  248. package/lib/typescript/src/core/index.d.ts +4 -2
  249. package/lib/typescript/src/core/index.d.ts.map +1 -1
  250. package/lib/typescript/src/core/passForwardRef.d.ts +3 -0
  251. package/lib/typescript/src/core/passForwardRef.d.ts.map +1 -0
  252. package/lib/typescript/src/core/withUnistyles/index.d.ts +2 -0
  253. package/lib/typescript/src/core/withUnistyles/index.d.ts.map +1 -0
  254. package/lib/typescript/src/core/withUnistyles/types.d.ts +6 -0
  255. package/lib/typescript/src/core/withUnistyles/types.d.ts.map +1 -0
  256. package/lib/typescript/src/core/withUnistyles/useDependencies.d.ts +13 -0
  257. package/lib/typescript/src/core/withUnistyles/useDependencies.d.ts.map +1 -0
  258. package/lib/typescript/src/core/withUnistyles/withUnistyles.d.ts +11 -0
  259. package/lib/typescript/src/core/withUnistyles/withUnistyles.d.ts.map +1 -0
  260. package/lib/typescript/src/core/withUnistyles/withUnistyles.native.d.ts +8 -0
  261. package/lib/typescript/src/core/withUnistyles/withUnistyles.native.d.ts.map +1 -0
  262. package/lib/typescript/src/hooks/useMedia.d.ts +1 -1
  263. package/lib/typescript/src/hooks/useMedia.d.ts.map +1 -1
  264. package/lib/typescript/src/hooks/useMedia.native.d.ts +6 -0
  265. package/lib/typescript/src/hooks/useMedia.native.d.ts.map +1 -0
  266. package/lib/typescript/src/index.d.ts +3 -3
  267. package/lib/typescript/src/index.d.ts.map +1 -1
  268. package/lib/typescript/src/specs/ShadowRegistry/index.d.ts +7 -2
  269. package/lib/typescript/src/specs/ShadowRegistry/index.d.ts.map +1 -1
  270. package/lib/typescript/src/specs/ShadowRegistry/types.d.ts +17 -0
  271. package/lib/typescript/src/specs/ShadowRegistry/types.d.ts.map +1 -1
  272. package/lib/typescript/src/specs/index.d.ts +3 -11
  273. package/lib/typescript/src/specs/index.d.ts.map +1 -1
  274. package/lib/typescript/src/specs/index.native.d.ts +12 -0
  275. package/lib/typescript/src/specs/index.native.d.ts.map +1 -0
  276. package/lib/typescript/src/web/create.d.ts +1 -1441
  277. package/lib/typescript/src/web/create.d.ts.map +1 -1
  278. package/lib/typescript/src/web/index.d.ts +5 -1463
  279. package/lib/typescript/src/web/index.d.ts.map +1 -1
  280. package/lib/typescript/src/web/registry.d.ts +2 -3
  281. package/lib/typescript/src/web/registry.d.ts.map +1 -1
  282. package/lib/typescript/src/web/runtime.d.ts.map +1 -1
  283. package/lib/typescript/src/web/shadowRegistry.d.ts +11 -3
  284. package/lib/typescript/src/web/shadowRegistry.d.ts.map +1 -1
  285. package/lib/typescript/src/web/utils/unistyle.d.ts +1 -2
  286. package/lib/typescript/src/web/utils/unistyle.d.ts.map +1 -1
  287. package/nitrogen/generated/ios/Unistyles-Swift-Cxx-Umbrella.hpp +3 -0
  288. package/package.json +20 -4
  289. package/plugin/common.js +4 -6
  290. package/plugin/import.js +63 -26
  291. package/plugin/index.js +48 -28
  292. package/plugin/ref.js +0 -234
  293. package/plugin/style.js +4 -317
  294. package/plugin/stylesheet.js +25 -10
  295. package/plugin/variants.js +60 -1
  296. package/src/components/ScopedTheme.tsx +32 -0
  297. package/src/components/Variants.tsx +30 -0
  298. package/src/components/index.ts +2 -1
  299. package/src/components/native/ActivityIndicator.tsx +4 -0
  300. package/src/components/native/FlatList.tsx +4 -0
  301. package/src/components/native/Image.tsx +4 -0
  302. package/src/components/native/ImageBackground.tsx +4 -0
  303. package/src/components/native/KeyboardAvoidingView.tsx +4 -0
  304. package/src/components/native/Pressable.native.tsx +57 -0
  305. package/src/components/native/Pressable.tsx +98 -0
  306. package/src/components/native/RefreshControl.tsx +4 -0
  307. package/src/components/native/ScrollView.tsx +4 -0
  308. package/src/components/native/SectionList.tsx +4 -0
  309. package/src/components/native/Switch.tsx +4 -0
  310. package/src/components/native/Text.tsx +4 -0
  311. package/src/components/native/TextInput.tsx +4 -0
  312. package/src/components/native/TouchableHighlight.tsx +4 -0
  313. package/src/components/native/TouchableOpacity.tsx +4 -0
  314. package/src/components/native/View.tsx +4 -0
  315. package/src/components/native/VirtualizedList.tsx +4 -0
  316. package/src/core/createUnistylesComponent.tsx +6 -76
  317. package/src/core/createUnistylesElement.tsx +9 -0
  318. package/src/core/createUnistylesImageBackground.tsx +24 -0
  319. package/src/core/index.ts +4 -2
  320. package/src/core/passForwardRef.ts +29 -0
  321. package/src/core/withUnistyles/index.ts +1 -0
  322. package/src/core/withUnistyles/types.ts +7 -0
  323. package/src/core/withUnistyles/useDependencies.ts +98 -0
  324. package/src/core/withUnistyles/withUnistyles.native.tsx +97 -0
  325. package/src/core/withUnistyles/withUnistyles.tsx +90 -0
  326. package/src/hooks/useMedia.native.ts +65 -0
  327. package/src/hooks/useMedia.ts +19 -36
  328. package/src/index.ts +3 -3
  329. package/src/specs/ShadowRegistry/index.ts +14 -5
  330. package/src/specs/ShadowRegistry/types.ts +18 -1
  331. package/src/specs/index.native.ts +27 -0
  332. package/src/specs/index.ts +3 -27
  333. package/src/web/create.ts +11 -32
  334. package/src/web/index.ts +8 -4
  335. package/src/web/registry.ts +15 -6
  336. package/src/web/runtime.ts +3 -1
  337. package/src/web/shadowRegistry.ts +59 -51
  338. package/src/web/utils/unistyle.ts +2 -3
  339. package/lib/commonjs/components/Pressable.js +0 -74
  340. package/lib/commonjs/components/Pressable.js.map +0 -1
  341. package/lib/commonjs/components/Pressable.web.js.map +0 -1
  342. package/lib/commonjs/core/createUnistylesComponent.native.js +0 -82
  343. package/lib/commonjs/core/createUnistylesComponent.native.js.map +0 -1
  344. package/lib/commonjs/core/getBoundArgs.js +0 -18
  345. package/lib/commonjs/core/getBoundArgs.js.map +0 -1
  346. package/lib/commonjs/core/getId.js +0 -9
  347. package/lib/commonjs/core/getId.js.map +0 -1
  348. package/lib/commonjs/hooks/useMedia.web.js +0 -43
  349. package/lib/commonjs/hooks/useMedia.web.js.map +0 -1
  350. package/lib/commonjs/specs/index.web.js +0 -17
  351. package/lib/commonjs/specs/index.web.js.map +0 -1
  352. package/lib/module/components/Pressable.js +0 -68
  353. package/lib/module/components/Pressable.js.map +0 -1
  354. package/lib/module/components/Pressable.web.js +0 -109
  355. package/lib/module/components/Pressable.web.js.map +0 -1
  356. package/lib/module/core/createUnistylesComponent.native.js +0 -75
  357. package/lib/module/core/createUnistylesComponent.native.js.map +0 -1
  358. package/lib/module/core/getBoundArgs.js +0 -13
  359. package/lib/module/core/getBoundArgs.js.map +0 -1
  360. package/lib/module/core/getId.js +0 -4
  361. package/lib/module/core/getId.js.map +0 -1
  362. package/lib/module/hooks/useMedia.web.js +0 -38
  363. package/lib/module/hooks/useMedia.web.js.map +0 -1
  364. package/lib/module/specs/index.web.js +0 -4
  365. package/lib/module/specs/index.web.js.map +0 -1
  366. package/lib/typescript/src/components/Pressable.d.ts.map +0 -1
  367. package/lib/typescript/src/components/Pressable.web.d.ts.map +0 -1
  368. package/lib/typescript/src/core/createUnistylesComponent.native.d.ts +0 -8
  369. package/lib/typescript/src/core/createUnistylesComponent.native.d.ts.map +0 -1
  370. package/lib/typescript/src/core/getBoundArgs.d.ts +0 -2
  371. package/lib/typescript/src/core/getBoundArgs.d.ts.map +0 -1
  372. package/lib/typescript/src/core/getId.d.ts +0 -2
  373. package/lib/typescript/src/core/getId.d.ts.map +0 -1
  374. package/lib/typescript/src/hooks/useMedia.web.d.ts +0 -6
  375. package/lib/typescript/src/hooks/useMedia.web.d.ts.map +0 -1
  376. package/lib/typescript/src/specs/index.web.d.ts +0 -2
  377. package/lib/typescript/src/specs/index.web.d.ts.map +0 -1
  378. package/src/components/Pressable.tsx +0 -89
  379. package/src/components/Pressable.web.tsx +0 -129
  380. package/src/core/createUnistylesComponent.native.tsx +0 -83
  381. package/src/core/getBoundArgs.ts +0 -15
  382. package/src/core/getId.ts +0 -1
  383. package/src/hooks/useMedia.web.ts +0 -47
  384. package/src/specs/index.web.ts +0 -1
@@ -1,1465 +1,7 @@
1
- export declare const StyleSheet: {
2
- configure: (config: import("../specs/StyleSheet").UnistylesConfig) => void;
3
- create: (stylesheet: import("../types/stylesheet").StyleSheetWithSuperPowers<import("../types").StyleSheet>, id?: string) => {
4
- [x: string]: {
5
- backfaceVisibility?: "visible" | "hidden" | {
6
- [x: symbol]: "visible" | "hidden" | undefined;
7
- portrait?: "visible" | "hidden" | undefined;
8
- landscape?: "visible" | "hidden" | undefined;
9
- } | undefined;
10
- backgroundColor?: import("react-native").ColorValue | {
11
- [x: symbol]: import("react-native").ColorValue | undefined;
12
- portrait?: import("react-native").ColorValue | undefined;
13
- landscape?: import("react-native").ColorValue | undefined;
14
- } | undefined;
15
- borderBlockColor?: import("react-native").ColorValue | {
16
- [x: symbol]: import("react-native").ColorValue | undefined;
17
- portrait?: import("react-native").ColorValue | undefined;
18
- landscape?: import("react-native").ColorValue | undefined;
19
- } | undefined;
20
- borderBlockEndColor?: import("react-native").ColorValue | {
21
- [x: symbol]: import("react-native").ColorValue | undefined;
22
- portrait?: import("react-native").ColorValue | undefined;
23
- landscape?: import("react-native").ColorValue | undefined;
24
- } | undefined;
25
- borderBlockStartColor?: import("react-native").ColorValue | {
26
- [x: symbol]: import("react-native").ColorValue | undefined;
27
- portrait?: import("react-native").ColorValue | undefined;
28
- landscape?: import("react-native").ColorValue | undefined;
29
- } | undefined;
30
- borderBottomColor?: import("react-native").ColorValue | {
31
- [x: symbol]: import("react-native").ColorValue | undefined;
32
- portrait?: import("react-native").ColorValue | undefined;
33
- landscape?: import("react-native").ColorValue | undefined;
34
- } | undefined;
35
- borderBottomEndRadius?: string | import("react-native").AnimatableNumericValue | {
36
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
37
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
38
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
39
- } | undefined;
40
- borderBottomLeftRadius?: string | import("react-native").AnimatableNumericValue | {
41
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
42
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
43
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
44
- } | undefined;
45
- borderBottomRightRadius?: string | import("react-native").AnimatableNumericValue | {
46
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
47
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
48
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
49
- } | undefined;
50
- borderBottomStartRadius?: string | import("react-native").AnimatableNumericValue | {
51
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
52
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
53
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
54
- } | undefined;
55
- borderColor?: import("react-native").ColorValue | {
56
- [x: symbol]: import("react-native").ColorValue | undefined;
57
- portrait?: import("react-native").ColorValue | undefined;
58
- landscape?: import("react-native").ColorValue | undefined;
59
- } | undefined;
60
- borderCurve?: "circular" | "continuous" | {
61
- [x: symbol]: "circular" | "continuous" | undefined;
62
- portrait?: "circular" | "continuous" | undefined;
63
- landscape?: "circular" | "continuous" | undefined;
64
- } | undefined;
65
- borderEndColor?: import("react-native").ColorValue | {
66
- [x: symbol]: import("react-native").ColorValue | undefined;
67
- portrait?: import("react-native").ColorValue | undefined;
68
- landscape?: import("react-native").ColorValue | undefined;
69
- } | undefined;
70
- borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | {
71
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
72
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
73
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
74
- } | undefined;
75
- borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | {
76
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
77
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
78
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
79
- } | undefined;
80
- borderLeftColor?: import("react-native").ColorValue | {
81
- [x: symbol]: import("react-native").ColorValue | undefined;
82
- portrait?: import("react-native").ColorValue | undefined;
83
- landscape?: import("react-native").ColorValue | undefined;
84
- } | undefined;
85
- borderRadius?: string | import("react-native").AnimatableNumericValue | {
86
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
87
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
88
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
89
- } | undefined;
90
- borderRightColor?: import("react-native").ColorValue | {
91
- [x: symbol]: import("react-native").ColorValue | undefined;
92
- portrait?: import("react-native").ColorValue | undefined;
93
- landscape?: import("react-native").ColorValue | undefined;
94
- } | undefined;
95
- borderStartColor?: import("react-native").ColorValue | {
96
- [x: symbol]: import("react-native").ColorValue | undefined;
97
- portrait?: import("react-native").ColorValue | undefined;
98
- landscape?: import("react-native").ColorValue | undefined;
99
- } | undefined;
100
- borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | {
101
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
102
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
103
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
104
- } | undefined;
105
- borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | {
106
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
107
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
108
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
109
- } | undefined;
110
- borderStyle?: "solid" | "dotted" | "dashed" | {
111
- [x: symbol]: "solid" | "dotted" | "dashed" | undefined;
112
- portrait?: "solid" | "dotted" | "dashed" | undefined;
113
- landscape?: "solid" | "dotted" | "dashed" | undefined;
114
- } | undefined;
115
- borderTopColor?: import("react-native").ColorValue | {
116
- [x: symbol]: import("react-native").ColorValue | undefined;
117
- portrait?: import("react-native").ColorValue | undefined;
118
- landscape?: import("react-native").ColorValue | undefined;
119
- } | undefined;
120
- borderTopEndRadius?: string | import("react-native").AnimatableNumericValue | {
121
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
122
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
123
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
124
- } | undefined;
125
- borderTopLeftRadius?: string | import("react-native").AnimatableNumericValue | {
126
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
127
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
128
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
129
- } | undefined;
130
- borderTopRightRadius?: string | import("react-native").AnimatableNumericValue | {
131
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
132
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
133
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
134
- } | undefined;
135
- borderTopStartRadius?: string | import("react-native").AnimatableNumericValue | {
136
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
137
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
138
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
139
- } | undefined;
140
- opacity?: import("react-native").AnimatableNumericValue | {
141
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
142
- portrait?: import("react-native").AnimatableNumericValue | undefined;
143
- landscape?: import("react-native").AnimatableNumericValue | undefined;
144
- } | undefined;
145
- elevation?: number | {
146
- [x: symbol]: number | undefined;
147
- portrait?: number | undefined;
148
- landscape?: number | undefined;
149
- } | undefined;
150
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | {
151
- [x: symbol]: "box-none" | "none" | "box-only" | "auto" | undefined;
152
- portrait?: "box-none" | "none" | "box-only" | "auto" | undefined;
153
- landscape?: "box-none" | "none" | "box-only" | "auto" | undefined;
154
- } | undefined;
155
- isolation?: "auto" | "isolate" | {
156
- [x: symbol]: "auto" | "isolate" | undefined;
157
- portrait?: "auto" | "isolate" | undefined;
158
- landscape?: "auto" | "isolate" | undefined;
159
- } | undefined;
160
- cursor?: import("react-native").CursorValue | {
161
- [x: symbol]: import("react-native").CursorValue | undefined;
162
- portrait?: import("react-native").CursorValue | undefined;
163
- landscape?: import("react-native").CursorValue | undefined;
164
- } | undefined;
165
- alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | {
166
- [x: symbol]: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
167
- portrait?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
168
- landscape?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
169
- } | undefined;
170
- alignItems?: import("react-native").FlexAlignType | {
171
- [x: symbol]: import("react-native").FlexAlignType | undefined;
172
- portrait?: import("react-native").FlexAlignType | undefined;
173
- landscape?: import("react-native").FlexAlignType | undefined;
174
- } | undefined;
175
- alignSelf?: "auto" | import("react-native").FlexAlignType | {
176
- [x: symbol]: "auto" | import("react-native").FlexAlignType | undefined;
177
- portrait?: "auto" | import("react-native").FlexAlignType | undefined;
178
- landscape?: "auto" | import("react-native").FlexAlignType | undefined;
179
- } | undefined;
180
- aspectRatio?: string | number | {
181
- [x: symbol]: string | number | undefined;
182
- portrait?: string | number | undefined;
183
- landscape?: string | number | undefined;
184
- } | undefined;
185
- borderBottomWidth?: number | {
186
- [x: symbol]: number | undefined;
187
- portrait?: number | undefined;
188
- landscape?: number | undefined;
189
- } | undefined;
190
- borderEndWidth?: number | {
191
- [x: symbol]: number | undefined;
192
- portrait?: number | undefined;
193
- landscape?: number | undefined;
194
- } | undefined;
195
- borderLeftWidth?: number | {
196
- [x: symbol]: number | undefined;
197
- portrait?: number | undefined;
198
- landscape?: number | undefined;
199
- } | undefined;
200
- borderRightWidth?: number | {
201
- [x: symbol]: number | undefined;
202
- portrait?: number | undefined;
203
- landscape?: number | undefined;
204
- } | undefined;
205
- borderStartWidth?: number | {
206
- [x: symbol]: number | undefined;
207
- portrait?: number | undefined;
208
- landscape?: number | undefined;
209
- } | undefined;
210
- borderTopWidth?: number | {
211
- [x: symbol]: number | undefined;
212
- portrait?: number | undefined;
213
- landscape?: number | undefined;
214
- } | undefined;
215
- borderWidth?: number | {
216
- [x: symbol]: number | undefined;
217
- portrait?: number | undefined;
218
- landscape?: number | undefined;
219
- } | undefined;
220
- bottom?: import("react-native").DimensionValue | {
221
- [x: symbol]: import("react-native").DimensionValue | undefined;
222
- portrait?: import("react-native").DimensionValue | undefined;
223
- landscape?: import("react-native").DimensionValue | undefined;
224
- } | undefined;
225
- display?: "flex" | "none" | {
226
- [x: symbol]: "flex" | "none" | undefined;
227
- portrait?: "flex" | "none" | undefined;
228
- landscape?: "flex" | "none" | undefined;
229
- } | undefined;
230
- end?: import("react-native").DimensionValue | {
231
- [x: symbol]: import("react-native").DimensionValue | undefined;
232
- portrait?: import("react-native").DimensionValue | undefined;
233
- landscape?: import("react-native").DimensionValue | undefined;
234
- } | undefined;
235
- flex?: number | {
236
- [x: symbol]: number | undefined;
237
- portrait?: number | undefined;
238
- landscape?: number | undefined;
239
- } | undefined;
240
- flexBasis?: import("react-native").DimensionValue | {
241
- [x: symbol]: import("react-native").DimensionValue | undefined;
242
- portrait?: import("react-native").DimensionValue | undefined;
243
- landscape?: import("react-native").DimensionValue | undefined;
244
- } | undefined;
245
- flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | {
246
- [x: symbol]: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
247
- portrait?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
248
- landscape?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
249
- } | undefined;
250
- rowGap?: string | number | {
251
- [x: symbol]: string | number | undefined;
252
- portrait?: string | number | undefined;
253
- landscape?: string | number | undefined;
254
- } | undefined;
255
- gap?: string | number | {
256
- [x: symbol]: string | number | undefined;
257
- portrait?: string | number | undefined;
258
- landscape?: string | number | undefined;
259
- } | undefined;
260
- columnGap?: string | number | {
261
- [x: symbol]: string | number | undefined;
262
- portrait?: string | number | undefined;
263
- landscape?: string | number | undefined;
264
- } | undefined;
265
- flexGrow?: number | {
266
- [x: symbol]: number | undefined;
267
- portrait?: number | undefined;
268
- landscape?: number | undefined;
269
- } | undefined;
270
- flexShrink?: number | {
271
- [x: symbol]: number | undefined;
272
- portrait?: number | undefined;
273
- landscape?: number | undefined;
274
- } | undefined;
275
- flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | {
276
- [x: symbol]: "wrap" | "nowrap" | "wrap-reverse" | undefined;
277
- portrait?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
278
- landscape?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
279
- } | undefined;
280
- height?: import("react-native").DimensionValue | {
281
- [x: symbol]: import("react-native").DimensionValue | undefined;
282
- portrait?: import("react-native").DimensionValue | undefined;
283
- landscape?: import("react-native").DimensionValue | undefined;
284
- } | undefined;
285
- justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | {
286
- [x: symbol]: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
287
- portrait?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
288
- landscape?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
289
- } | undefined;
290
- left?: import("react-native").DimensionValue | {
291
- [x: symbol]: import("react-native").DimensionValue | undefined;
292
- portrait?: import("react-native").DimensionValue | undefined;
293
- landscape?: import("react-native").DimensionValue | undefined;
294
- } | undefined;
295
- margin?: import("react-native").DimensionValue | {
296
- [x: symbol]: import("react-native").DimensionValue | undefined;
297
- portrait?: import("react-native").DimensionValue | undefined;
298
- landscape?: import("react-native").DimensionValue | undefined;
299
- } | undefined;
300
- marginBottom?: import("react-native").DimensionValue | {
301
- [x: symbol]: import("react-native").DimensionValue | undefined;
302
- portrait?: import("react-native").DimensionValue | undefined;
303
- landscape?: import("react-native").DimensionValue | undefined;
304
- } | undefined;
305
- marginEnd?: import("react-native").DimensionValue | {
306
- [x: symbol]: import("react-native").DimensionValue | undefined;
307
- portrait?: import("react-native").DimensionValue | undefined;
308
- landscape?: import("react-native").DimensionValue | undefined;
309
- } | undefined;
310
- marginHorizontal?: import("react-native").DimensionValue | {
311
- [x: symbol]: import("react-native").DimensionValue | undefined;
312
- portrait?: import("react-native").DimensionValue | undefined;
313
- landscape?: import("react-native").DimensionValue | undefined;
314
- } | undefined;
315
- marginLeft?: import("react-native").DimensionValue | {
316
- [x: symbol]: import("react-native").DimensionValue | undefined;
317
- portrait?: import("react-native").DimensionValue | undefined;
318
- landscape?: import("react-native").DimensionValue | undefined;
319
- } | undefined;
320
- marginRight?: import("react-native").DimensionValue | {
321
- [x: symbol]: import("react-native").DimensionValue | undefined;
322
- portrait?: import("react-native").DimensionValue | undefined;
323
- landscape?: import("react-native").DimensionValue | undefined;
324
- } | undefined;
325
- marginStart?: import("react-native").DimensionValue | {
326
- [x: symbol]: import("react-native").DimensionValue | undefined;
327
- portrait?: import("react-native").DimensionValue | undefined;
328
- landscape?: import("react-native").DimensionValue | undefined;
329
- } | undefined;
330
- marginTop?: import("react-native").DimensionValue | {
331
- [x: symbol]: import("react-native").DimensionValue | undefined;
332
- portrait?: import("react-native").DimensionValue | undefined;
333
- landscape?: import("react-native").DimensionValue | undefined;
334
- } | undefined;
335
- marginVertical?: import("react-native").DimensionValue | {
336
- [x: symbol]: import("react-native").DimensionValue | undefined;
337
- portrait?: import("react-native").DimensionValue | undefined;
338
- landscape?: import("react-native").DimensionValue | undefined;
339
- } | undefined;
340
- maxHeight?: import("react-native").DimensionValue | {
341
- [x: symbol]: import("react-native").DimensionValue | undefined;
342
- portrait?: import("react-native").DimensionValue | undefined;
343
- landscape?: import("react-native").DimensionValue | undefined;
344
- } | undefined;
345
- maxWidth?: import("react-native").DimensionValue | {
346
- [x: symbol]: import("react-native").DimensionValue | undefined;
347
- portrait?: import("react-native").DimensionValue | undefined;
348
- landscape?: import("react-native").DimensionValue | undefined;
349
- } | undefined;
350
- minHeight?: import("react-native").DimensionValue | {
351
- [x: symbol]: import("react-native").DimensionValue | undefined;
352
- portrait?: import("react-native").DimensionValue | undefined;
353
- landscape?: import("react-native").DimensionValue | undefined;
354
- } | undefined;
355
- minWidth?: import("react-native").DimensionValue | {
356
- [x: symbol]: import("react-native").DimensionValue | undefined;
357
- portrait?: import("react-native").DimensionValue | undefined;
358
- landscape?: import("react-native").DimensionValue | undefined;
359
- } | undefined;
360
- overflow?: "visible" | "hidden" | {
361
- [x: symbol]: "visible" | "hidden" | undefined;
362
- portrait?: "visible" | "hidden" | undefined;
363
- landscape?: "visible" | "hidden" | undefined;
364
- } | undefined;
365
- padding?: import("react-native").DimensionValue | {
366
- [x: symbol]: import("react-native").DimensionValue | undefined;
367
- portrait?: import("react-native").DimensionValue | undefined;
368
- landscape?: import("react-native").DimensionValue | undefined;
369
- } | undefined;
370
- paddingBottom?: import("react-native").DimensionValue | {
371
- [x: symbol]: import("react-native").DimensionValue | undefined;
372
- portrait?: import("react-native").DimensionValue | undefined;
373
- landscape?: import("react-native").DimensionValue | undefined;
374
- } | undefined;
375
- paddingEnd?: import("react-native").DimensionValue | {
376
- [x: symbol]: import("react-native").DimensionValue | undefined;
377
- portrait?: import("react-native").DimensionValue | undefined;
378
- landscape?: import("react-native").DimensionValue | undefined;
379
- } | undefined;
380
- paddingHorizontal?: import("react-native").DimensionValue | {
381
- [x: symbol]: import("react-native").DimensionValue | undefined;
382
- portrait?: import("react-native").DimensionValue | undefined;
383
- landscape?: import("react-native").DimensionValue | undefined;
384
- } | undefined;
385
- paddingLeft?: import("react-native").DimensionValue | {
386
- [x: symbol]: import("react-native").DimensionValue | undefined;
387
- portrait?: import("react-native").DimensionValue | undefined;
388
- landscape?: import("react-native").DimensionValue | undefined;
389
- } | undefined;
390
- paddingRight?: import("react-native").DimensionValue | {
391
- [x: symbol]: import("react-native").DimensionValue | undefined;
392
- portrait?: import("react-native").DimensionValue | undefined;
393
- landscape?: import("react-native").DimensionValue | undefined;
394
- } | undefined;
395
- paddingStart?: import("react-native").DimensionValue | {
396
- [x: symbol]: import("react-native").DimensionValue | undefined;
397
- portrait?: import("react-native").DimensionValue | undefined;
398
- landscape?: import("react-native").DimensionValue | undefined;
399
- } | undefined;
400
- paddingTop?: import("react-native").DimensionValue | {
401
- [x: symbol]: import("react-native").DimensionValue | undefined;
402
- portrait?: import("react-native").DimensionValue | undefined;
403
- landscape?: import("react-native").DimensionValue | undefined;
404
- } | undefined;
405
- paddingVertical?: import("react-native").DimensionValue | {
406
- [x: symbol]: import("react-native").DimensionValue | undefined;
407
- portrait?: import("react-native").DimensionValue | undefined;
408
- landscape?: import("react-native").DimensionValue | undefined;
409
- } | undefined;
410
- position?: "absolute" | "relative" | "static" | {
411
- [x: symbol]: "absolute" | "relative" | "static" | undefined;
412
- portrait?: "absolute" | "relative" | "static" | undefined;
413
- landscape?: "absolute" | "relative" | "static" | undefined;
414
- } | undefined;
415
- right?: import("react-native").DimensionValue | {
416
- [x: symbol]: import("react-native").DimensionValue | undefined;
417
- portrait?: import("react-native").DimensionValue | undefined;
418
- landscape?: import("react-native").DimensionValue | undefined;
419
- } | undefined;
420
- start?: import("react-native").DimensionValue | {
421
- [x: symbol]: import("react-native").DimensionValue | undefined;
422
- portrait?: import("react-native").DimensionValue | undefined;
423
- landscape?: import("react-native").DimensionValue | undefined;
424
- } | undefined;
425
- top?: import("react-native").DimensionValue | {
426
- [x: symbol]: import("react-native").DimensionValue | undefined;
427
- portrait?: import("react-native").DimensionValue | undefined;
428
- landscape?: import("react-native").DimensionValue | undefined;
429
- } | undefined;
430
- width?: import("react-native").DimensionValue | {
431
- [x: symbol]: import("react-native").DimensionValue | undefined;
432
- portrait?: import("react-native").DimensionValue | undefined;
433
- landscape?: import("react-native").DimensionValue | undefined;
434
- } | undefined;
435
- zIndex?: number | {
436
- [x: symbol]: number | undefined;
437
- portrait?: number | undefined;
438
- landscape?: number | undefined;
439
- } | undefined;
440
- direction?: "inherit" | "ltr" | "rtl" | {
441
- [x: symbol]: "inherit" | "ltr" | "rtl" | undefined;
442
- portrait?: "inherit" | "ltr" | "rtl" | undefined;
443
- landscape?: "inherit" | "ltr" | "rtl" | undefined;
444
- } | undefined;
445
- inset?: import("react-native").DimensionValue | {
446
- [x: symbol]: import("react-native").DimensionValue | undefined;
447
- portrait?: import("react-native").DimensionValue | undefined;
448
- landscape?: import("react-native").DimensionValue | undefined;
449
- } | undefined;
450
- insetBlock?: import("react-native").DimensionValue | {
451
- [x: symbol]: import("react-native").DimensionValue | undefined;
452
- portrait?: import("react-native").DimensionValue | undefined;
453
- landscape?: import("react-native").DimensionValue | undefined;
454
- } | undefined;
455
- insetBlockEnd?: import("react-native").DimensionValue | {
456
- [x: symbol]: import("react-native").DimensionValue | undefined;
457
- portrait?: import("react-native").DimensionValue | undefined;
458
- landscape?: import("react-native").DimensionValue | undefined;
459
- } | undefined;
460
- insetBlockStart?: import("react-native").DimensionValue | {
461
- [x: symbol]: import("react-native").DimensionValue | undefined;
462
- portrait?: import("react-native").DimensionValue | undefined;
463
- landscape?: import("react-native").DimensionValue | undefined;
464
- } | undefined;
465
- insetInline?: import("react-native").DimensionValue | {
466
- [x: symbol]: import("react-native").DimensionValue | undefined;
467
- portrait?: import("react-native").DimensionValue | undefined;
468
- landscape?: import("react-native").DimensionValue | undefined;
469
- } | undefined;
470
- insetInlineEnd?: import("react-native").DimensionValue | {
471
- [x: symbol]: import("react-native").DimensionValue | undefined;
472
- portrait?: import("react-native").DimensionValue | undefined;
473
- landscape?: import("react-native").DimensionValue | undefined;
474
- } | undefined;
475
- insetInlineStart?: import("react-native").DimensionValue | {
476
- [x: symbol]: import("react-native").DimensionValue | undefined;
477
- portrait?: import("react-native").DimensionValue | undefined;
478
- landscape?: import("react-native").DimensionValue | undefined;
479
- } | undefined;
480
- marginBlock?: import("react-native").DimensionValue | {
481
- [x: symbol]: import("react-native").DimensionValue | undefined;
482
- portrait?: import("react-native").DimensionValue | undefined;
483
- landscape?: import("react-native").DimensionValue | undefined;
484
- } | undefined;
485
- marginBlockEnd?: import("react-native").DimensionValue | {
486
- [x: symbol]: import("react-native").DimensionValue | undefined;
487
- portrait?: import("react-native").DimensionValue | undefined;
488
- landscape?: import("react-native").DimensionValue | undefined;
489
- } | undefined;
490
- marginBlockStart?: import("react-native").DimensionValue | {
491
- [x: symbol]: import("react-native").DimensionValue | undefined;
492
- portrait?: import("react-native").DimensionValue | undefined;
493
- landscape?: import("react-native").DimensionValue | undefined;
494
- } | undefined;
495
- marginInline?: import("react-native").DimensionValue | {
496
- [x: symbol]: import("react-native").DimensionValue | undefined;
497
- portrait?: import("react-native").DimensionValue | undefined;
498
- landscape?: import("react-native").DimensionValue | undefined;
499
- } | undefined;
500
- marginInlineEnd?: import("react-native").DimensionValue | {
501
- [x: symbol]: import("react-native").DimensionValue | undefined;
502
- portrait?: import("react-native").DimensionValue | undefined;
503
- landscape?: import("react-native").DimensionValue | undefined;
504
- } | undefined;
505
- marginInlineStart?: import("react-native").DimensionValue | {
506
- [x: symbol]: import("react-native").DimensionValue | undefined;
507
- portrait?: import("react-native").DimensionValue | undefined;
508
- landscape?: import("react-native").DimensionValue | undefined;
509
- } | undefined;
510
- paddingBlock?: import("react-native").DimensionValue | {
511
- [x: symbol]: import("react-native").DimensionValue | undefined;
512
- portrait?: import("react-native").DimensionValue | undefined;
513
- landscape?: import("react-native").DimensionValue | undefined;
514
- } | undefined;
515
- paddingBlockEnd?: import("react-native").DimensionValue | {
516
- [x: symbol]: import("react-native").DimensionValue | undefined;
517
- portrait?: import("react-native").DimensionValue | undefined;
518
- landscape?: import("react-native").DimensionValue | undefined;
519
- } | undefined;
520
- paddingBlockStart?: import("react-native").DimensionValue | {
521
- [x: symbol]: import("react-native").DimensionValue | undefined;
522
- portrait?: import("react-native").DimensionValue | undefined;
523
- landscape?: import("react-native").DimensionValue | undefined;
524
- } | undefined;
525
- paddingInline?: import("react-native").DimensionValue | {
526
- [x: symbol]: import("react-native").DimensionValue | undefined;
527
- portrait?: import("react-native").DimensionValue | undefined;
528
- landscape?: import("react-native").DimensionValue | undefined;
529
- } | undefined;
530
- paddingInlineEnd?: import("react-native").DimensionValue | {
531
- [x: symbol]: import("react-native").DimensionValue | undefined;
532
- portrait?: import("react-native").DimensionValue | undefined;
533
- landscape?: import("react-native").DimensionValue | undefined;
534
- } | undefined;
535
- paddingInlineStart?: import("react-native").DimensionValue | {
536
- [x: symbol]: import("react-native").DimensionValue | undefined;
537
- portrait?: import("react-native").DimensionValue | undefined;
538
- landscape?: import("react-native").DimensionValue | undefined;
539
- } | undefined;
540
- shadowColor?: import("react-native").ColorValue | {
541
- [x: symbol]: import("react-native").ColorValue | undefined;
542
- portrait?: import("react-native").ColorValue | undefined;
543
- landscape?: import("react-native").ColorValue | undefined;
544
- } | undefined;
545
- shadowOpacity?: import("react-native").AnimatableNumericValue | {
546
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
547
- portrait?: import("react-native").AnimatableNumericValue | undefined;
548
- landscape?: import("react-native").AnimatableNumericValue | undefined;
549
- } | undefined;
550
- shadowRadius?: number | {
551
- [x: symbol]: number | undefined;
552
- portrait?: number | undefined;
553
- landscape?: number | undefined;
554
- } | undefined;
555
- transformOrigin?: string | (string | number)[] | {
556
- [x: symbol]: string | (string | number)[] | undefined;
557
- portrait?: string | (string | number)[] | undefined;
558
- landscape?: string | (string | number)[] | undefined;
559
- } | undefined;
560
- transformMatrix?: number[] | {
561
- [x: symbol]: number[] | undefined;
562
- portrait?: number[] | undefined;
563
- landscape?: number[] | undefined;
564
- } | undefined;
565
- rotation?: import("react-native").AnimatableNumericValue | {
566
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
567
- portrait?: import("react-native").AnimatableNumericValue | undefined;
568
- landscape?: import("react-native").AnimatableNumericValue | undefined;
569
- } | undefined;
570
- scaleX?: import("react-native").AnimatableNumericValue | {
571
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
572
- portrait?: import("react-native").AnimatableNumericValue | undefined;
573
- landscape?: import("react-native").AnimatableNumericValue | undefined;
574
- } | undefined;
575
- scaleY?: import("react-native").AnimatableNumericValue | {
576
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
577
- portrait?: import("react-native").AnimatableNumericValue | undefined;
578
- landscape?: import("react-native").AnimatableNumericValue | undefined;
579
- } | undefined;
580
- translateX?: import("react-native").AnimatableNumericValue | {
581
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
582
- portrait?: import("react-native").AnimatableNumericValue | undefined;
583
- landscape?: import("react-native").AnimatableNumericValue | undefined;
584
- } | undefined;
585
- translateY?: import("react-native").AnimatableNumericValue | {
586
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
587
- portrait?: import("react-native").AnimatableNumericValue | undefined;
588
- landscape?: import("react-native").AnimatableNumericValue | undefined;
589
- } | undefined;
590
- color?: import("react-native").ColorValue | {
591
- [x: symbol]: import("react-native").ColorValue | undefined;
592
- portrait?: import("react-native").ColorValue | undefined;
593
- landscape?: import("react-native").ColorValue | undefined;
594
- } | undefined;
595
- fontFamily?: string | {
596
- [x: symbol]: string | undefined;
597
- portrait?: string | undefined;
598
- landscape?: string | undefined;
599
- } | undefined;
600
- fontSize?: number | {
601
- [x: symbol]: number | undefined;
602
- portrait?: number | undefined;
603
- landscape?: number | undefined;
604
- } | undefined;
605
- fontStyle?: "normal" | "italic" | {
606
- [x: symbol]: "normal" | "italic" | undefined;
607
- portrait?: "normal" | "italic" | undefined;
608
- landscape?: "normal" | "italic" | undefined;
609
- } | undefined;
610
- fontWeight?: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | {
611
- [x: symbol]: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | undefined;
612
- portrait?: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | undefined;
613
- landscape?: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | undefined;
614
- } | undefined;
615
- letterSpacing?: number | {
616
- [x: symbol]: number | undefined;
617
- portrait?: number | undefined;
618
- landscape?: number | undefined;
619
- } | undefined;
620
- lineHeight?: number | {
621
- [x: symbol]: number | undefined;
622
- portrait?: number | undefined;
623
- landscape?: number | undefined;
624
- } | undefined;
625
- textAlign?: "left" | "right" | "auto" | "center" | "justify" | {
626
- [x: symbol]: "left" | "right" | "auto" | "center" | "justify" | undefined;
627
- portrait?: "left" | "right" | "auto" | "center" | "justify" | undefined;
628
- landscape?: "left" | "right" | "auto" | "center" | "justify" | undefined;
629
- } | undefined;
630
- textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | {
631
- [x: symbol]: "none" | "underline" | "line-through" | "underline line-through" | undefined;
632
- portrait?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
633
- landscape?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
634
- } | undefined;
635
- textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | {
636
- [x: symbol]: "solid" | "dotted" | "dashed" | "double" | undefined;
637
- portrait?: "solid" | "dotted" | "dashed" | "double" | undefined;
638
- landscape?: "solid" | "dotted" | "dashed" | "double" | undefined;
639
- } | undefined;
640
- textDecorationColor?: import("react-native").ColorValue | {
641
- [x: symbol]: import("react-native").ColorValue | undefined;
642
- portrait?: import("react-native").ColorValue | undefined;
643
- landscape?: import("react-native").ColorValue | undefined;
644
- } | undefined;
645
- textShadowColor?: import("react-native").ColorValue | {
646
- [x: symbol]: import("react-native").ColorValue | undefined;
647
- portrait?: import("react-native").ColorValue | undefined;
648
- landscape?: import("react-native").ColorValue | undefined;
649
- } | undefined;
650
- textShadowRadius?: number | {
651
- [x: symbol]: number | undefined;
652
- portrait?: number | undefined;
653
- landscape?: number | undefined;
654
- } | undefined;
655
- textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | {
656
- [x: symbol]: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
657
- portrait?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
658
- landscape?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
659
- } | undefined;
660
- userSelect?: "none" | "auto" | "text" | "contain" | "all" | {
661
- [x: symbol]: "none" | "auto" | "text" | "contain" | "all" | undefined;
662
- portrait?: "none" | "auto" | "text" | "contain" | "all" | undefined;
663
- landscape?: "none" | "auto" | "text" | "contain" | "all" | undefined;
664
- } | undefined;
665
- fontVariant?: import("react-native").FontVariant[] | {
666
- [x: symbol]: import("react-native").FontVariant[] | undefined;
667
- portrait?: import("react-native").FontVariant[] | undefined;
668
- landscape?: import("react-native").FontVariant[] | undefined;
669
- } | undefined;
670
- writingDirection?: "auto" | "ltr" | "rtl" | {
671
- [x: symbol]: "auto" | "ltr" | "rtl" | undefined;
672
- portrait?: "auto" | "ltr" | "rtl" | undefined;
673
- landscape?: "auto" | "ltr" | "rtl" | undefined;
674
- } | undefined;
675
- textAlignVertical?: "bottom" | "top" | "auto" | "center" | {
676
- [x: symbol]: "bottom" | "top" | "auto" | "center" | undefined;
677
- portrait?: "bottom" | "top" | "auto" | "center" | undefined;
678
- landscape?: "bottom" | "top" | "auto" | "center" | undefined;
679
- } | undefined;
680
- verticalAlign?: "bottom" | "top" | "auto" | "middle" | {
681
- [x: symbol]: "bottom" | "top" | "auto" | "middle" | undefined;
682
- portrait?: "bottom" | "top" | "auto" | "middle" | undefined;
683
- landscape?: "bottom" | "top" | "auto" | "middle" | undefined;
684
- } | undefined;
685
- includeFontPadding?: boolean | {
686
- [x: symbol]: boolean | undefined;
687
- portrait?: boolean | undefined;
688
- landscape?: boolean | undefined;
689
- } | undefined;
690
- resizeMode?: import("react-native").ImageResizeMode | {
691
- [x: symbol]: import("react-native").ImageResizeMode | undefined;
692
- portrait?: import("react-native").ImageResizeMode | undefined;
693
- landscape?: import("react-native").ImageResizeMode | undefined;
694
- } | undefined;
695
- overlayColor?: import("react-native").ColorValue | {
696
- [x: symbol]: import("react-native").ColorValue | undefined;
697
- portrait?: import("react-native").ColorValue | undefined;
698
- landscape?: import("react-native").ColorValue | undefined;
699
- } | undefined;
700
- tintColor?: import("react-native").ColorValue | {
701
- [x: symbol]: import("react-native").ColorValue | undefined;
702
- portrait?: import("react-native").ColorValue | undefined;
703
- landscape?: import("react-native").ColorValue | undefined;
704
- } | undefined;
705
- objectFit?: "contain" | "cover" | "fill" | "scale-down" | {
706
- [x: symbol]: "contain" | "cover" | "fill" | "scale-down" | undefined;
707
- portrait?: "contain" | "cover" | "fill" | "scale-down" | undefined;
708
- landscape?: "contain" | "cover" | "fill" | "scale-down" | undefined;
709
- } | undefined;
710
- variants?: {
711
- [variantName: string]: {
712
- [variant: string]: Omit<import("../types").UnistylesValues, "variants" | "compoundVariants">;
713
- };
714
- } | undefined;
715
- compoundVariants?: Array<{
716
- styles: Omit<import("../types").UnistylesValues, "variants" | "compoundVariants">;
717
- }> | undefined;
718
- boxShadow?: string | import("../types/stylesheet").ToDeepUnistyles<import("react-native").BoxShadowValue>[] | undefined;
719
- filter?: string | import("../types/stylesheet").ToDeepUnistyles<import("react-native").FilterFunction>[] | undefined;
720
- shadowOffset?: import("../types/stylesheet").ToDeepUnistyles<import("../types/core").ShadowOffset> | undefined;
721
- transform?: import("../types/stylesheet").ToDeepUnistyles<import("../types/core").TransformStyles>[] | undefined;
722
- textShadowOffset?: import("../types/stylesheet").ToDeepUnistyles<import("../types/core").ShadowOffset> | undefined;
723
- } | ((...args: any[]) => {
724
- backfaceVisibility?: "visible" | "hidden" | {
725
- [x: symbol]: "visible" | "hidden" | undefined;
726
- portrait?: "visible" | "hidden" | undefined;
727
- landscape?: "visible" | "hidden" | undefined;
728
- } | undefined;
729
- backgroundColor?: import("react-native").ColorValue | {
730
- [x: symbol]: import("react-native").ColorValue | undefined;
731
- portrait?: import("react-native").ColorValue | undefined;
732
- landscape?: import("react-native").ColorValue | undefined;
733
- } | undefined;
734
- borderBlockColor?: import("react-native").ColorValue | {
735
- [x: symbol]: import("react-native").ColorValue | undefined;
736
- portrait?: import("react-native").ColorValue | undefined;
737
- landscape?: import("react-native").ColorValue | undefined;
738
- } | undefined;
739
- borderBlockEndColor?: import("react-native").ColorValue | {
740
- [x: symbol]: import("react-native").ColorValue | undefined;
741
- portrait?: import("react-native").ColorValue | undefined;
742
- landscape?: import("react-native").ColorValue | undefined;
743
- } | undefined;
744
- borderBlockStartColor?: import("react-native").ColorValue | {
745
- [x: symbol]: import("react-native").ColorValue | undefined;
746
- portrait?: import("react-native").ColorValue | undefined;
747
- landscape?: import("react-native").ColorValue | undefined;
748
- } | undefined;
749
- borderBottomColor?: import("react-native").ColorValue | {
750
- [x: symbol]: import("react-native").ColorValue | undefined;
751
- portrait?: import("react-native").ColorValue | undefined;
752
- landscape?: import("react-native").ColorValue | undefined;
753
- } | undefined;
754
- borderBottomEndRadius?: string | import("react-native").AnimatableNumericValue | {
755
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
756
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
757
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
758
- } | undefined;
759
- borderBottomLeftRadius?: string | import("react-native").AnimatableNumericValue | {
760
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
761
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
762
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
763
- } | undefined;
764
- borderBottomRightRadius?: string | import("react-native").AnimatableNumericValue | {
765
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
766
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
767
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
768
- } | undefined;
769
- borderBottomStartRadius?: string | import("react-native").AnimatableNumericValue | {
770
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
771
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
772
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
773
- } | undefined;
774
- borderColor?: import("react-native").ColorValue | {
775
- [x: symbol]: import("react-native").ColorValue | undefined;
776
- portrait?: import("react-native").ColorValue | undefined;
777
- landscape?: import("react-native").ColorValue | undefined;
778
- } | undefined;
779
- borderCurve?: "circular" | "continuous" | {
780
- [x: symbol]: "circular" | "continuous" | undefined;
781
- portrait?: "circular" | "continuous" | undefined;
782
- landscape?: "circular" | "continuous" | undefined;
783
- } | undefined;
784
- borderEndColor?: import("react-native").ColorValue | {
785
- [x: symbol]: import("react-native").ColorValue | undefined;
786
- portrait?: import("react-native").ColorValue | undefined;
787
- landscape?: import("react-native").ColorValue | undefined;
788
- } | undefined;
789
- borderEndEndRadius?: string | import("react-native").AnimatableNumericValue | {
790
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
791
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
792
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
793
- } | undefined;
794
- borderEndStartRadius?: string | import("react-native").AnimatableNumericValue | {
795
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
796
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
797
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
798
- } | undefined;
799
- borderLeftColor?: import("react-native").ColorValue | {
800
- [x: symbol]: import("react-native").ColorValue | undefined;
801
- portrait?: import("react-native").ColorValue | undefined;
802
- landscape?: import("react-native").ColorValue | undefined;
803
- } | undefined;
804
- borderRadius?: string | import("react-native").AnimatableNumericValue | {
805
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
806
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
807
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
808
- } | undefined;
809
- borderRightColor?: import("react-native").ColorValue | {
810
- [x: symbol]: import("react-native").ColorValue | undefined;
811
- portrait?: import("react-native").ColorValue | undefined;
812
- landscape?: import("react-native").ColorValue | undefined;
813
- } | undefined;
814
- borderStartColor?: import("react-native").ColorValue | {
815
- [x: symbol]: import("react-native").ColorValue | undefined;
816
- portrait?: import("react-native").ColorValue | undefined;
817
- landscape?: import("react-native").ColorValue | undefined;
818
- } | undefined;
819
- borderStartEndRadius?: string | import("react-native").AnimatableNumericValue | {
820
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
821
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
822
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
823
- } | undefined;
824
- borderStartStartRadius?: string | import("react-native").AnimatableNumericValue | {
825
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
826
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
827
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
828
- } | undefined;
829
- borderStyle?: "solid" | "dotted" | "dashed" | {
830
- [x: symbol]: "solid" | "dotted" | "dashed" | undefined;
831
- portrait?: "solid" | "dotted" | "dashed" | undefined;
832
- landscape?: "solid" | "dotted" | "dashed" | undefined;
833
- } | undefined;
834
- borderTopColor?: import("react-native").ColorValue | {
835
- [x: symbol]: import("react-native").ColorValue | undefined;
836
- portrait?: import("react-native").ColorValue | undefined;
837
- landscape?: import("react-native").ColorValue | undefined;
838
- } | undefined;
839
- borderTopEndRadius?: string | import("react-native").AnimatableNumericValue | {
840
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
841
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
842
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
843
- } | undefined;
844
- borderTopLeftRadius?: string | import("react-native").AnimatableNumericValue | {
845
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
846
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
847
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
848
- } | undefined;
849
- borderTopRightRadius?: string | import("react-native").AnimatableNumericValue | {
850
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
851
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
852
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
853
- } | undefined;
854
- borderTopStartRadius?: string | import("react-native").AnimatableNumericValue | {
855
- [x: symbol]: string | import("react-native").AnimatableNumericValue | undefined;
856
- portrait?: string | import("react-native").AnimatableNumericValue | undefined;
857
- landscape?: string | import("react-native").AnimatableNumericValue | undefined;
858
- } | undefined;
859
- opacity?: import("react-native").AnimatableNumericValue | {
860
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
861
- portrait?: import("react-native").AnimatableNumericValue | undefined;
862
- landscape?: import("react-native").AnimatableNumericValue | undefined;
863
- } | undefined;
864
- elevation?: number | {
865
- [x: symbol]: number | undefined;
866
- portrait?: number | undefined;
867
- landscape?: number | undefined;
868
- } | undefined;
869
- pointerEvents?: "box-none" | "none" | "box-only" | "auto" | {
870
- [x: symbol]: "box-none" | "none" | "box-only" | "auto" | undefined;
871
- portrait?: "box-none" | "none" | "box-only" | "auto" | undefined;
872
- landscape?: "box-none" | "none" | "box-only" | "auto" | undefined;
873
- } | undefined;
874
- isolation?: "auto" | "isolate" | {
875
- [x: symbol]: "auto" | "isolate" | undefined;
876
- portrait?: "auto" | "isolate" | undefined;
877
- landscape?: "auto" | "isolate" | undefined;
878
- } | undefined;
879
- cursor?: import("react-native").CursorValue | {
880
- [x: symbol]: import("react-native").CursorValue | undefined;
881
- portrait?: import("react-native").CursorValue | undefined;
882
- landscape?: import("react-native").CursorValue | undefined;
883
- } | undefined;
884
- alignContent?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | {
885
- [x: symbol]: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
886
- portrait?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
887
- landscape?: "flex-start" | "flex-end" | "center" | "stretch" | "space-between" | "space-around" | "space-evenly" | undefined;
888
- } | undefined;
889
- alignItems?: import("react-native").FlexAlignType | {
890
- [x: symbol]: import("react-native").FlexAlignType | undefined;
891
- portrait?: import("react-native").FlexAlignType | undefined;
892
- landscape?: import("react-native").FlexAlignType | undefined;
893
- } | undefined;
894
- alignSelf?: "auto" | import("react-native").FlexAlignType | {
895
- [x: symbol]: "auto" | import("react-native").FlexAlignType | undefined;
896
- portrait?: "auto" | import("react-native").FlexAlignType | undefined;
897
- landscape?: "auto" | import("react-native").FlexAlignType | undefined;
898
- } | undefined;
899
- aspectRatio?: string | number | {
900
- [x: symbol]: string | number | undefined;
901
- portrait?: string | number | undefined;
902
- landscape?: string | number | undefined;
903
- } | undefined;
904
- borderBottomWidth?: number | {
905
- [x: symbol]: number | undefined;
906
- portrait?: number | undefined;
907
- landscape?: number | undefined;
908
- } | undefined;
909
- borderEndWidth?: number | {
910
- [x: symbol]: number | undefined;
911
- portrait?: number | undefined;
912
- landscape?: number | undefined;
913
- } | undefined;
914
- borderLeftWidth?: number | {
915
- [x: symbol]: number | undefined;
916
- portrait?: number | undefined;
917
- landscape?: number | undefined;
918
- } | undefined;
919
- borderRightWidth?: number | {
920
- [x: symbol]: number | undefined;
921
- portrait?: number | undefined;
922
- landscape?: number | undefined;
923
- } | undefined;
924
- borderStartWidth?: number | {
925
- [x: symbol]: number | undefined;
926
- portrait?: number | undefined;
927
- landscape?: number | undefined;
928
- } | undefined;
929
- borderTopWidth?: number | {
930
- [x: symbol]: number | undefined;
931
- portrait?: number | undefined;
932
- landscape?: number | undefined;
933
- } | undefined;
934
- borderWidth?: number | {
935
- [x: symbol]: number | undefined;
936
- portrait?: number | undefined;
937
- landscape?: number | undefined;
938
- } | undefined;
939
- bottom?: import("react-native").DimensionValue | {
940
- [x: symbol]: import("react-native").DimensionValue | undefined;
941
- portrait?: import("react-native").DimensionValue | undefined;
942
- landscape?: import("react-native").DimensionValue | undefined;
943
- } | undefined;
944
- display?: "flex" | "none" | {
945
- [x: symbol]: "flex" | "none" | undefined;
946
- portrait?: "flex" | "none" | undefined;
947
- landscape?: "flex" | "none" | undefined;
948
- } | undefined;
949
- end?: import("react-native").DimensionValue | {
950
- [x: symbol]: import("react-native").DimensionValue | undefined;
951
- portrait?: import("react-native").DimensionValue | undefined;
952
- landscape?: import("react-native").DimensionValue | undefined;
953
- } | undefined;
954
- flex?: number | {
955
- [x: symbol]: number | undefined;
956
- portrait?: number | undefined;
957
- landscape?: number | undefined;
958
- } | undefined;
959
- flexBasis?: import("react-native").DimensionValue | {
960
- [x: symbol]: import("react-native").DimensionValue | undefined;
961
- portrait?: import("react-native").DimensionValue | undefined;
962
- landscape?: import("react-native").DimensionValue | undefined;
963
- } | undefined;
964
- flexDirection?: "row" | "column" | "row-reverse" | "column-reverse" | {
965
- [x: symbol]: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
966
- portrait?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
967
- landscape?: "row" | "column" | "row-reverse" | "column-reverse" | undefined;
968
- } | undefined;
969
- rowGap?: string | number | {
970
- [x: symbol]: string | number | undefined;
971
- portrait?: string | number | undefined;
972
- landscape?: string | number | undefined;
973
- } | undefined;
974
- gap?: string | number | {
975
- [x: symbol]: string | number | undefined;
976
- portrait?: string | number | undefined;
977
- landscape?: string | number | undefined;
978
- } | undefined;
979
- columnGap?: string | number | {
980
- [x: symbol]: string | number | undefined;
981
- portrait?: string | number | undefined;
982
- landscape?: string | number | undefined;
983
- } | undefined;
984
- flexGrow?: number | {
985
- [x: symbol]: number | undefined;
986
- portrait?: number | undefined;
987
- landscape?: number | undefined;
988
- } | undefined;
989
- flexShrink?: number | {
990
- [x: symbol]: number | undefined;
991
- portrait?: number | undefined;
992
- landscape?: number | undefined;
993
- } | undefined;
994
- flexWrap?: "wrap" | "nowrap" | "wrap-reverse" | {
995
- [x: symbol]: "wrap" | "nowrap" | "wrap-reverse" | undefined;
996
- portrait?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
997
- landscape?: "wrap" | "nowrap" | "wrap-reverse" | undefined;
998
- } | undefined;
999
- height?: import("react-native").DimensionValue | {
1000
- [x: symbol]: import("react-native").DimensionValue | undefined;
1001
- portrait?: import("react-native").DimensionValue | undefined;
1002
- landscape?: import("react-native").DimensionValue | undefined;
1003
- } | undefined;
1004
- justifyContent?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | {
1005
- [x: symbol]: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
1006
- portrait?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
1007
- landscape?: "flex-start" | "flex-end" | "center" | "space-between" | "space-around" | "space-evenly" | undefined;
1008
- } | undefined;
1009
- left?: import("react-native").DimensionValue | {
1010
- [x: symbol]: import("react-native").DimensionValue | undefined;
1011
- portrait?: import("react-native").DimensionValue | undefined;
1012
- landscape?: import("react-native").DimensionValue | undefined;
1013
- } | undefined;
1014
- margin?: import("react-native").DimensionValue | {
1015
- [x: symbol]: import("react-native").DimensionValue | undefined;
1016
- portrait?: import("react-native").DimensionValue | undefined;
1017
- landscape?: import("react-native").DimensionValue | undefined;
1018
- } | undefined;
1019
- marginBottom?: import("react-native").DimensionValue | {
1020
- [x: symbol]: import("react-native").DimensionValue | undefined;
1021
- portrait?: import("react-native").DimensionValue | undefined;
1022
- landscape?: import("react-native").DimensionValue | undefined;
1023
- } | undefined;
1024
- marginEnd?: import("react-native").DimensionValue | {
1025
- [x: symbol]: import("react-native").DimensionValue | undefined;
1026
- portrait?: import("react-native").DimensionValue | undefined;
1027
- landscape?: import("react-native").DimensionValue | undefined;
1028
- } | undefined;
1029
- marginHorizontal?: import("react-native").DimensionValue | {
1030
- [x: symbol]: import("react-native").DimensionValue | undefined;
1031
- portrait?: import("react-native").DimensionValue | undefined;
1032
- landscape?: import("react-native").DimensionValue | undefined;
1033
- } | undefined;
1034
- marginLeft?: import("react-native").DimensionValue | {
1035
- [x: symbol]: import("react-native").DimensionValue | undefined;
1036
- portrait?: import("react-native").DimensionValue | undefined;
1037
- landscape?: import("react-native").DimensionValue | undefined;
1038
- } | undefined;
1039
- marginRight?: import("react-native").DimensionValue | {
1040
- [x: symbol]: import("react-native").DimensionValue | undefined;
1041
- portrait?: import("react-native").DimensionValue | undefined;
1042
- landscape?: import("react-native").DimensionValue | undefined;
1043
- } | undefined;
1044
- marginStart?: import("react-native").DimensionValue | {
1045
- [x: symbol]: import("react-native").DimensionValue | undefined;
1046
- portrait?: import("react-native").DimensionValue | undefined;
1047
- landscape?: import("react-native").DimensionValue | undefined;
1048
- } | undefined;
1049
- marginTop?: import("react-native").DimensionValue | {
1050
- [x: symbol]: import("react-native").DimensionValue | undefined;
1051
- portrait?: import("react-native").DimensionValue | undefined;
1052
- landscape?: import("react-native").DimensionValue | undefined;
1053
- } | undefined;
1054
- marginVertical?: import("react-native").DimensionValue | {
1055
- [x: symbol]: import("react-native").DimensionValue | undefined;
1056
- portrait?: import("react-native").DimensionValue | undefined;
1057
- landscape?: import("react-native").DimensionValue | undefined;
1058
- } | undefined;
1059
- maxHeight?: import("react-native").DimensionValue | {
1060
- [x: symbol]: import("react-native").DimensionValue | undefined;
1061
- portrait?: import("react-native").DimensionValue | undefined;
1062
- landscape?: import("react-native").DimensionValue | undefined;
1063
- } | undefined;
1064
- maxWidth?: import("react-native").DimensionValue | {
1065
- [x: symbol]: import("react-native").DimensionValue | undefined;
1066
- portrait?: import("react-native").DimensionValue | undefined;
1067
- landscape?: import("react-native").DimensionValue | undefined;
1068
- } | undefined;
1069
- minHeight?: import("react-native").DimensionValue | {
1070
- [x: symbol]: import("react-native").DimensionValue | undefined;
1071
- portrait?: import("react-native").DimensionValue | undefined;
1072
- landscape?: import("react-native").DimensionValue | undefined;
1073
- } | undefined;
1074
- minWidth?: import("react-native").DimensionValue | {
1075
- [x: symbol]: import("react-native").DimensionValue | undefined;
1076
- portrait?: import("react-native").DimensionValue | undefined;
1077
- landscape?: import("react-native").DimensionValue | undefined;
1078
- } | undefined;
1079
- overflow?: "visible" | "hidden" | {
1080
- [x: symbol]: "visible" | "hidden" | undefined;
1081
- portrait?: "visible" | "hidden" | undefined;
1082
- landscape?: "visible" | "hidden" | undefined;
1083
- } | undefined;
1084
- padding?: import("react-native").DimensionValue | {
1085
- [x: symbol]: import("react-native").DimensionValue | undefined;
1086
- portrait?: import("react-native").DimensionValue | undefined;
1087
- landscape?: import("react-native").DimensionValue | undefined;
1088
- } | undefined;
1089
- paddingBottom?: import("react-native").DimensionValue | {
1090
- [x: symbol]: import("react-native").DimensionValue | undefined;
1091
- portrait?: import("react-native").DimensionValue | undefined;
1092
- landscape?: import("react-native").DimensionValue | undefined;
1093
- } | undefined;
1094
- paddingEnd?: import("react-native").DimensionValue | {
1095
- [x: symbol]: import("react-native").DimensionValue | undefined;
1096
- portrait?: import("react-native").DimensionValue | undefined;
1097
- landscape?: import("react-native").DimensionValue | undefined;
1098
- } | undefined;
1099
- paddingHorizontal?: import("react-native").DimensionValue | {
1100
- [x: symbol]: import("react-native").DimensionValue | undefined;
1101
- portrait?: import("react-native").DimensionValue | undefined;
1102
- landscape?: import("react-native").DimensionValue | undefined;
1103
- } | undefined;
1104
- paddingLeft?: import("react-native").DimensionValue | {
1105
- [x: symbol]: import("react-native").DimensionValue | undefined;
1106
- portrait?: import("react-native").DimensionValue | undefined;
1107
- landscape?: import("react-native").DimensionValue | undefined;
1108
- } | undefined;
1109
- paddingRight?: import("react-native").DimensionValue | {
1110
- [x: symbol]: import("react-native").DimensionValue | undefined;
1111
- portrait?: import("react-native").DimensionValue | undefined;
1112
- landscape?: import("react-native").DimensionValue | undefined;
1113
- } | undefined;
1114
- paddingStart?: import("react-native").DimensionValue | {
1115
- [x: symbol]: import("react-native").DimensionValue | undefined;
1116
- portrait?: import("react-native").DimensionValue | undefined;
1117
- landscape?: import("react-native").DimensionValue | undefined;
1118
- } | undefined;
1119
- paddingTop?: import("react-native").DimensionValue | {
1120
- [x: symbol]: import("react-native").DimensionValue | undefined;
1121
- portrait?: import("react-native").DimensionValue | undefined;
1122
- landscape?: import("react-native").DimensionValue | undefined;
1123
- } | undefined;
1124
- paddingVertical?: import("react-native").DimensionValue | {
1125
- [x: symbol]: import("react-native").DimensionValue | undefined;
1126
- portrait?: import("react-native").DimensionValue | undefined;
1127
- landscape?: import("react-native").DimensionValue | undefined;
1128
- } | undefined;
1129
- position?: "absolute" | "relative" | "static" | {
1130
- [x: symbol]: "absolute" | "relative" | "static" | undefined;
1131
- portrait?: "absolute" | "relative" | "static" | undefined;
1132
- landscape?: "absolute" | "relative" | "static" | undefined;
1133
- } | undefined;
1134
- right?: import("react-native").DimensionValue | {
1135
- [x: symbol]: import("react-native").DimensionValue | undefined;
1136
- portrait?: import("react-native").DimensionValue | undefined;
1137
- landscape?: import("react-native").DimensionValue | undefined;
1138
- } | undefined;
1139
- start?: import("react-native").DimensionValue | {
1140
- [x: symbol]: import("react-native").DimensionValue | undefined;
1141
- portrait?: import("react-native").DimensionValue | undefined;
1142
- landscape?: import("react-native").DimensionValue | undefined;
1143
- } | undefined;
1144
- top?: import("react-native").DimensionValue | {
1145
- [x: symbol]: import("react-native").DimensionValue | undefined;
1146
- portrait?: import("react-native").DimensionValue | undefined;
1147
- landscape?: import("react-native").DimensionValue | undefined;
1148
- } | undefined;
1149
- width?: import("react-native").DimensionValue | {
1150
- [x: symbol]: import("react-native").DimensionValue | undefined;
1151
- portrait?: import("react-native").DimensionValue | undefined;
1152
- landscape?: import("react-native").DimensionValue | undefined;
1153
- } | undefined;
1154
- zIndex?: number | {
1155
- [x: symbol]: number | undefined;
1156
- portrait?: number | undefined;
1157
- landscape?: number | undefined;
1158
- } | undefined;
1159
- direction?: "inherit" | "ltr" | "rtl" | {
1160
- [x: symbol]: "inherit" | "ltr" | "rtl" | undefined;
1161
- portrait?: "inherit" | "ltr" | "rtl" | undefined;
1162
- landscape?: "inherit" | "ltr" | "rtl" | undefined;
1163
- } | undefined;
1164
- inset?: import("react-native").DimensionValue | {
1165
- [x: symbol]: import("react-native").DimensionValue | undefined;
1166
- portrait?: import("react-native").DimensionValue | undefined;
1167
- landscape?: import("react-native").DimensionValue | undefined;
1168
- } | undefined;
1169
- insetBlock?: import("react-native").DimensionValue | {
1170
- [x: symbol]: import("react-native").DimensionValue | undefined;
1171
- portrait?: import("react-native").DimensionValue | undefined;
1172
- landscape?: import("react-native").DimensionValue | undefined;
1173
- } | undefined;
1174
- insetBlockEnd?: import("react-native").DimensionValue | {
1175
- [x: symbol]: import("react-native").DimensionValue | undefined;
1176
- portrait?: import("react-native").DimensionValue | undefined;
1177
- landscape?: import("react-native").DimensionValue | undefined;
1178
- } | undefined;
1179
- insetBlockStart?: import("react-native").DimensionValue | {
1180
- [x: symbol]: import("react-native").DimensionValue | undefined;
1181
- portrait?: import("react-native").DimensionValue | undefined;
1182
- landscape?: import("react-native").DimensionValue | undefined;
1183
- } | undefined;
1184
- insetInline?: import("react-native").DimensionValue | {
1185
- [x: symbol]: import("react-native").DimensionValue | undefined;
1186
- portrait?: import("react-native").DimensionValue | undefined;
1187
- landscape?: import("react-native").DimensionValue | undefined;
1188
- } | undefined;
1189
- insetInlineEnd?: import("react-native").DimensionValue | {
1190
- [x: symbol]: import("react-native").DimensionValue | undefined;
1191
- portrait?: import("react-native").DimensionValue | undefined;
1192
- landscape?: import("react-native").DimensionValue | undefined;
1193
- } | undefined;
1194
- insetInlineStart?: import("react-native").DimensionValue | {
1195
- [x: symbol]: import("react-native").DimensionValue | undefined;
1196
- portrait?: import("react-native").DimensionValue | undefined;
1197
- landscape?: import("react-native").DimensionValue | undefined;
1198
- } | undefined;
1199
- marginBlock?: import("react-native").DimensionValue | {
1200
- [x: symbol]: import("react-native").DimensionValue | undefined;
1201
- portrait?: import("react-native").DimensionValue | undefined;
1202
- landscape?: import("react-native").DimensionValue | undefined;
1203
- } | undefined;
1204
- marginBlockEnd?: import("react-native").DimensionValue | {
1205
- [x: symbol]: import("react-native").DimensionValue | undefined;
1206
- portrait?: import("react-native").DimensionValue | undefined;
1207
- landscape?: import("react-native").DimensionValue | undefined;
1208
- } | undefined;
1209
- marginBlockStart?: import("react-native").DimensionValue | {
1210
- [x: symbol]: import("react-native").DimensionValue | undefined;
1211
- portrait?: import("react-native").DimensionValue | undefined;
1212
- landscape?: import("react-native").DimensionValue | undefined;
1213
- } | undefined;
1214
- marginInline?: import("react-native").DimensionValue | {
1215
- [x: symbol]: import("react-native").DimensionValue | undefined;
1216
- portrait?: import("react-native").DimensionValue | undefined;
1217
- landscape?: import("react-native").DimensionValue | undefined;
1218
- } | undefined;
1219
- marginInlineEnd?: import("react-native").DimensionValue | {
1220
- [x: symbol]: import("react-native").DimensionValue | undefined;
1221
- portrait?: import("react-native").DimensionValue | undefined;
1222
- landscape?: import("react-native").DimensionValue | undefined;
1223
- } | undefined;
1224
- marginInlineStart?: import("react-native").DimensionValue | {
1225
- [x: symbol]: import("react-native").DimensionValue | undefined;
1226
- portrait?: import("react-native").DimensionValue | undefined;
1227
- landscape?: import("react-native").DimensionValue | undefined;
1228
- } | undefined;
1229
- paddingBlock?: import("react-native").DimensionValue | {
1230
- [x: symbol]: import("react-native").DimensionValue | undefined;
1231
- portrait?: import("react-native").DimensionValue | undefined;
1232
- landscape?: import("react-native").DimensionValue | undefined;
1233
- } | undefined;
1234
- paddingBlockEnd?: import("react-native").DimensionValue | {
1235
- [x: symbol]: import("react-native").DimensionValue | undefined;
1236
- portrait?: import("react-native").DimensionValue | undefined;
1237
- landscape?: import("react-native").DimensionValue | undefined;
1238
- } | undefined;
1239
- paddingBlockStart?: import("react-native").DimensionValue | {
1240
- [x: symbol]: import("react-native").DimensionValue | undefined;
1241
- portrait?: import("react-native").DimensionValue | undefined;
1242
- landscape?: import("react-native").DimensionValue | undefined;
1243
- } | undefined;
1244
- paddingInline?: import("react-native").DimensionValue | {
1245
- [x: symbol]: import("react-native").DimensionValue | undefined;
1246
- portrait?: import("react-native").DimensionValue | undefined;
1247
- landscape?: import("react-native").DimensionValue | undefined;
1248
- } | undefined;
1249
- paddingInlineEnd?: import("react-native").DimensionValue | {
1250
- [x: symbol]: import("react-native").DimensionValue | undefined;
1251
- portrait?: import("react-native").DimensionValue | undefined;
1252
- landscape?: import("react-native").DimensionValue | undefined;
1253
- } | undefined;
1254
- paddingInlineStart?: import("react-native").DimensionValue | {
1255
- [x: symbol]: import("react-native").DimensionValue | undefined;
1256
- portrait?: import("react-native").DimensionValue | undefined;
1257
- landscape?: import("react-native").DimensionValue | undefined;
1258
- } | undefined;
1259
- shadowColor?: import("react-native").ColorValue | {
1260
- [x: symbol]: import("react-native").ColorValue | undefined;
1261
- portrait?: import("react-native").ColorValue | undefined;
1262
- landscape?: import("react-native").ColorValue | undefined;
1263
- } | undefined;
1264
- shadowOpacity?: import("react-native").AnimatableNumericValue | {
1265
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
1266
- portrait?: import("react-native").AnimatableNumericValue | undefined;
1267
- landscape?: import("react-native").AnimatableNumericValue | undefined;
1268
- } | undefined;
1269
- shadowRadius?: number | {
1270
- [x: symbol]: number | undefined;
1271
- portrait?: number | undefined;
1272
- landscape?: number | undefined;
1273
- } | undefined;
1274
- transformOrigin?: string | (string | number)[] | {
1275
- [x: symbol]: string | (string | number)[] | undefined;
1276
- portrait?: string | (string | number)[] | undefined;
1277
- landscape?: string | (string | number)[] | undefined;
1278
- } | undefined;
1279
- transformMatrix?: number[] | {
1280
- [x: symbol]: number[] | undefined;
1281
- portrait?: number[] | undefined;
1282
- landscape?: number[] | undefined;
1283
- } | undefined;
1284
- rotation?: import("react-native").AnimatableNumericValue | {
1285
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
1286
- portrait?: import("react-native").AnimatableNumericValue | undefined;
1287
- landscape?: import("react-native").AnimatableNumericValue | undefined;
1288
- } | undefined;
1289
- scaleX?: import("react-native").AnimatableNumericValue | {
1290
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
1291
- portrait?: import("react-native").AnimatableNumericValue | undefined;
1292
- landscape?: import("react-native").AnimatableNumericValue | undefined;
1293
- } | undefined;
1294
- scaleY?: import("react-native").AnimatableNumericValue | {
1295
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
1296
- portrait?: import("react-native").AnimatableNumericValue | undefined;
1297
- landscape?: import("react-native").AnimatableNumericValue | undefined;
1298
- } | undefined;
1299
- translateX?: import("react-native").AnimatableNumericValue | {
1300
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
1301
- portrait?: import("react-native").AnimatableNumericValue | undefined;
1302
- landscape?: import("react-native").AnimatableNumericValue | undefined;
1303
- } | undefined;
1304
- translateY?: import("react-native").AnimatableNumericValue | {
1305
- [x: symbol]: import("react-native").AnimatableNumericValue | undefined;
1306
- portrait?: import("react-native").AnimatableNumericValue | undefined;
1307
- landscape?: import("react-native").AnimatableNumericValue | undefined;
1308
- } | undefined;
1309
- color?: import("react-native").ColorValue | {
1310
- [x: symbol]: import("react-native").ColorValue | undefined;
1311
- portrait?: import("react-native").ColorValue | undefined;
1312
- landscape?: import("react-native").ColorValue | undefined;
1313
- } | undefined;
1314
- fontFamily?: string | {
1315
- [x: symbol]: string | undefined;
1316
- portrait?: string | undefined;
1317
- landscape?: string | undefined;
1318
- } | undefined;
1319
- fontSize?: number | {
1320
- [x: symbol]: number | undefined;
1321
- portrait?: number | undefined;
1322
- landscape?: number | undefined;
1323
- } | undefined;
1324
- fontStyle?: "normal" | "italic" | {
1325
- [x: symbol]: "normal" | "italic" | undefined;
1326
- portrait?: "normal" | "italic" | undefined;
1327
- landscape?: "normal" | "italic" | undefined;
1328
- } | undefined;
1329
- fontWeight?: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | {
1330
- [x: symbol]: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | undefined;
1331
- portrait?: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | undefined;
1332
- landscape?: "light" | "bold" | "normal" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | "ultralight" | "thin" | "medium" | "regular" | "semibold" | "condensedBold" | "condensed" | "heavy" | "black" | undefined;
1333
- } | undefined;
1334
- letterSpacing?: number | {
1335
- [x: symbol]: number | undefined;
1336
- portrait?: number | undefined;
1337
- landscape?: number | undefined;
1338
- } | undefined;
1339
- lineHeight?: number | {
1340
- [x: symbol]: number | undefined;
1341
- portrait?: number | undefined;
1342
- landscape?: number | undefined;
1343
- } | undefined;
1344
- textAlign?: "left" | "right" | "auto" | "center" | "justify" | {
1345
- [x: symbol]: "left" | "right" | "auto" | "center" | "justify" | undefined;
1346
- portrait?: "left" | "right" | "auto" | "center" | "justify" | undefined;
1347
- landscape?: "left" | "right" | "auto" | "center" | "justify" | undefined;
1348
- } | undefined;
1349
- textDecorationLine?: "none" | "underline" | "line-through" | "underline line-through" | {
1350
- [x: symbol]: "none" | "underline" | "line-through" | "underline line-through" | undefined;
1351
- portrait?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
1352
- landscape?: "none" | "underline" | "line-through" | "underline line-through" | undefined;
1353
- } | undefined;
1354
- textDecorationStyle?: "solid" | "dotted" | "dashed" | "double" | {
1355
- [x: symbol]: "solid" | "dotted" | "dashed" | "double" | undefined;
1356
- portrait?: "solid" | "dotted" | "dashed" | "double" | undefined;
1357
- landscape?: "solid" | "dotted" | "dashed" | "double" | undefined;
1358
- } | undefined;
1359
- textDecorationColor?: import("react-native").ColorValue | {
1360
- [x: symbol]: import("react-native").ColorValue | undefined;
1361
- portrait?: import("react-native").ColorValue | undefined;
1362
- landscape?: import("react-native").ColorValue | undefined;
1363
- } | undefined;
1364
- textShadowColor?: import("react-native").ColorValue | {
1365
- [x: symbol]: import("react-native").ColorValue | undefined;
1366
- portrait?: import("react-native").ColorValue | undefined;
1367
- landscape?: import("react-native").ColorValue | undefined;
1368
- } | undefined;
1369
- textShadowRadius?: number | {
1370
- [x: symbol]: number | undefined;
1371
- portrait?: number | undefined;
1372
- landscape?: number | undefined;
1373
- } | undefined;
1374
- textTransform?: "none" | "capitalize" | "uppercase" | "lowercase" | {
1375
- [x: symbol]: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
1376
- portrait?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
1377
- landscape?: "none" | "capitalize" | "uppercase" | "lowercase" | undefined;
1378
- } | undefined;
1379
- userSelect?: "none" | "auto" | "text" | "contain" | "all" | {
1380
- [x: symbol]: "none" | "auto" | "text" | "contain" | "all" | undefined;
1381
- portrait?: "none" | "auto" | "text" | "contain" | "all" | undefined;
1382
- landscape?: "none" | "auto" | "text" | "contain" | "all" | undefined;
1383
- } | undefined;
1384
- fontVariant?: import("react-native").FontVariant[] | {
1385
- [x: symbol]: import("react-native").FontVariant[] | undefined;
1386
- portrait?: import("react-native").FontVariant[] | undefined;
1387
- landscape?: import("react-native").FontVariant[] | undefined;
1388
- } | undefined;
1389
- writingDirection?: "auto" | "ltr" | "rtl" | {
1390
- [x: symbol]: "auto" | "ltr" | "rtl" | undefined;
1391
- portrait?: "auto" | "ltr" | "rtl" | undefined;
1392
- landscape?: "auto" | "ltr" | "rtl" | undefined;
1393
- } | undefined;
1394
- textAlignVertical?: "bottom" | "top" | "auto" | "center" | {
1395
- [x: symbol]: "bottom" | "top" | "auto" | "center" | undefined;
1396
- portrait?: "bottom" | "top" | "auto" | "center" | undefined;
1397
- landscape?: "bottom" | "top" | "auto" | "center" | undefined;
1398
- } | undefined;
1399
- verticalAlign?: "bottom" | "top" | "auto" | "middle" | {
1400
- [x: symbol]: "bottom" | "top" | "auto" | "middle" | undefined;
1401
- portrait?: "bottom" | "top" | "auto" | "middle" | undefined;
1402
- landscape?: "bottom" | "top" | "auto" | "middle" | undefined;
1403
- } | undefined;
1404
- includeFontPadding?: boolean | {
1405
- [x: symbol]: boolean | undefined;
1406
- portrait?: boolean | undefined;
1407
- landscape?: boolean | undefined;
1408
- } | undefined;
1409
- resizeMode?: import("react-native").ImageResizeMode | {
1410
- [x: symbol]: import("react-native").ImageResizeMode | undefined;
1411
- portrait?: import("react-native").ImageResizeMode | undefined;
1412
- landscape?: import("react-native").ImageResizeMode | undefined;
1413
- } | undefined;
1414
- overlayColor?: import("react-native").ColorValue | {
1415
- [x: symbol]: import("react-native").ColorValue | undefined;
1416
- portrait?: import("react-native").ColorValue | undefined;
1417
- landscape?: import("react-native").ColorValue | undefined;
1418
- } | undefined;
1419
- tintColor?: import("react-native").ColorValue | {
1420
- [x: symbol]: import("react-native").ColorValue | undefined;
1421
- portrait?: import("react-native").ColorValue | undefined;
1422
- landscape?: import("react-native").ColorValue | undefined;
1423
- } | undefined;
1424
- objectFit?: "contain" | "cover" | "fill" | "scale-down" | {
1425
- [x: symbol]: "contain" | "cover" | "fill" | "scale-down" | undefined;
1426
- portrait?: "contain" | "cover" | "fill" | "scale-down" | undefined;
1427
- landscape?: "contain" | "cover" | "fill" | "scale-down" | undefined;
1428
- } | undefined;
1429
- variants?: {
1430
- [variantName: string]: {
1431
- [variant: string]: Omit<import("../types").UnistylesValues, "variants" | "compoundVariants">;
1432
- };
1433
- } | undefined;
1434
- compoundVariants?: Array<{
1435
- styles: Omit<import("../types").UnistylesValues, "variants" | "compoundVariants">;
1436
- }> | undefined;
1437
- boxShadow?: string | import("../types/stylesheet").ToDeepUnistyles<import("react-native").BoxShadowValue>[] | undefined;
1438
- filter?: string | import("../types/stylesheet").ToDeepUnistyles<import("react-native").FilterFunction>[] | undefined;
1439
- shadowOffset?: import("../types/stylesheet").ToDeepUnistyles<import("../types/core").ShadowOffset> | undefined;
1440
- transform?: import("../types/stylesheet").ToDeepUnistyles<import("../types/core").TransformStyles>[] | undefined;
1441
- textShadowOffset?: import("../types/stylesheet").ToDeepUnistyles<import("../types/core").ShadowOffset> | undefined;
1442
- });
1443
- };
1444
- absoluteFill: {
1445
- position: string;
1446
- left: number;
1447
- top: number;
1448
- right: number;
1449
- bottom: number;
1450
- };
1451
- absoluteFillObject: {
1452
- position: string;
1453
- left: number;
1454
- top: number;
1455
- right: number;
1456
- bottom: number;
1457
- };
1458
- compose: (a: object, b: object) => object;
1459
- flatten: (...styles: Array<object>) => object;
1460
- hairlineWidth: number;
1461
- };
1462
- export { UnistylesRuntime } from './runtime';
1463
- export { UnistylesShadowRegistry } from './shadowRegistry';
1
+ import type { StyleSheet as NativeStyleSheet } from '../specs/StyleSheet';
2
+ import type { Runtime as NativeUnistylesRuntime } from '../specs/UnistylesRuntime';
3
+ export declare const StyleSheet: typeof NativeStyleSheet;
4
+ export declare const UnistylesRuntime: typeof NativeUnistylesRuntime;
1464
5
  export * from './mock';
6
+ export * from './shadowRegistry';
1465
7
  //# sourceMappingURL=index.d.ts.map