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

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