@triniwiz/nativescript-masonkit 1.0.0-alpha.5 → 1.0.0-alpha.7

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 (345) hide show
  1. package/common.d.ts +7 -9
  2. package/common.js +277 -552
  3. package/common.js.map +1 -1
  4. package/helpers.d.ts +32 -10
  5. package/helpers.js +772 -286
  6. package/helpers.js.map +1 -1
  7. package/index.android.d.ts +6 -2
  8. package/index.android.js +21 -3
  9. package/index.android.js.map +1 -1
  10. package/index.d.ts +64 -7
  11. package/index.ios.d.ts +9 -6
  12. package/index.ios.js +39 -25
  13. package/index.ios.js.map +1 -1
  14. package/package.json +1 -1
  15. package/platforms/android/include.gradle +18 -1
  16. package/platforms/android/masonkit-release.aar +0 -0
  17. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +108 -64
  18. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/mason_native.h +47 -20
  19. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Info.plist +0 -0
  20. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Mason +0 -0
  21. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  22. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.abi.json +7002 -1194
  23. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +58 -21
  24. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
  25. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +58 -21
  26. package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
  27. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +216 -128
  28. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/mason_native.h +47 -20
  29. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Info.plist +0 -0
  30. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Mason +0 -0
  31. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  32. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  33. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json +7002 -1194
  34. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +58 -21
  35. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
  36. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +58 -21
  37. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +7002 -1194
  38. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +58 -21
  39. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
  40. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +58 -21
  41. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/_CodeSignature/CodeResources +43 -43
  42. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
  43. package/platforms/ios/build.xcconfig +1 -2
  44. package/platforms/ios/src/MasonV8Module.h +583 -0
  45. package/platforms/ios/src/MasonV8Module.mm +1005 -0
  46. package/platforms/ios/src/{include → cpp/include}/mason_native.h +47 -20
  47. package/platforms/ios/src/cpp/include/robin_hood.h +2544 -0
  48. package/platforms/ios/src/module.modulemap +2 -2
  49. package/platforms/new_native_src/cpp/Caches.cpp +36 -0
  50. package/platforms/new_native_src/cpp/Caches.h +42 -0
  51. package/platforms/new_native_src/cpp/Common.h +34 -0
  52. package/platforms/new_native_src/cpp/ConcurrentMap.h +57 -0
  53. package/platforms/new_native_src/cpp/Helpers.cpp +101 -0
  54. package/platforms/new_native_src/cpp/Helpers.h +364 -0
  55. package/platforms/new_native_src/cpp/MasonImpl.cpp +68 -0
  56. package/platforms/new_native_src/cpp/MasonImpl.h +40 -0
  57. package/platforms/new_native_src/cpp/MasonNodeImpl.cpp +89 -0
  58. package/platforms/new_native_src/cpp/MasonNodeImpl.h +47 -0
  59. package/platforms/new_native_src/cpp/MasonStyleImpl.cpp +2181 -0
  60. package/platforms/new_native_src/cpp/MasonStyleImpl.h +420 -0
  61. package/platforms/{ios/Mason.xcframework/ios-arm64/Mason.framework/PrivateHeaders → new_native_src/cpp/include}/mason_native.h +464 -168
  62. package/platforms/new_native_src/cpp/include/robin_hood.h +2544 -0
  63. package/pods/Headers/include/APIDesign.md +72 -0
  64. package/pods/Headers/include/DEPS +10 -0
  65. package/pods/Headers/include/DIR_METADATA +11 -0
  66. package/pods/Headers/include/OWNERS +23 -0
  67. package/pods/Headers/include/cppgc/DEPS +8 -0
  68. package/pods/Headers/include/cppgc/OWNERS +2 -0
  69. package/pods/Headers/include/cppgc/README.md +133 -0
  70. package/pods/Headers/include/cppgc/allocation.h +310 -0
  71. package/pods/Headers/include/cppgc/common.h +29 -0
  72. package/pods/Headers/include/cppgc/cross-thread-persistent.h +465 -0
  73. package/pods/Headers/include/cppgc/custom-space.h +97 -0
  74. package/pods/Headers/include/cppgc/default-platform.h +67 -0
  75. package/pods/Headers/include/cppgc/ephemeron-pair.h +30 -0
  76. package/pods/Headers/include/cppgc/explicit-management.h +100 -0
  77. package/pods/Headers/include/cppgc/garbage-collected.h +106 -0
  78. package/pods/Headers/include/cppgc/heap-consistency.h +266 -0
  79. package/pods/Headers/include/cppgc/heap-state.h +82 -0
  80. package/pods/Headers/include/cppgc/heap-statistics.h +120 -0
  81. package/pods/Headers/include/cppgc/heap.h +206 -0
  82. package/pods/Headers/include/cppgc/internal/api-constants.h +55 -0
  83. package/pods/Headers/include/cppgc/internal/atomic-entry-flag.h +48 -0
  84. package/pods/Headers/include/cppgc/internal/caged-heap-local-data.h +79 -0
  85. package/pods/Headers/include/cppgc/internal/compiler-specific.h +38 -0
  86. package/pods/Headers/include/cppgc/internal/finalizer-trait.h +93 -0
  87. package/pods/Headers/include/cppgc/internal/gc-info.h +156 -0
  88. package/pods/Headers/include/cppgc/internal/logging.h +50 -0
  89. package/pods/Headers/include/cppgc/internal/name-trait.h +122 -0
  90. package/pods/Headers/include/cppgc/internal/persistent-node.h +216 -0
  91. package/pods/Headers/include/cppgc/internal/pointer-policies.h +186 -0
  92. package/pods/Headers/include/cppgc/internal/write-barrier.h +435 -0
  93. package/pods/Headers/include/cppgc/liveness-broker.h +77 -0
  94. package/pods/Headers/include/cppgc/macros.h +26 -0
  95. package/pods/Headers/include/cppgc/member.h +291 -0
  96. package/pods/Headers/include/cppgc/name-provider.h +65 -0
  97. package/pods/Headers/include/cppgc/object-size-trait.h +58 -0
  98. package/pods/Headers/include/cppgc/persistent.h +370 -0
  99. package/pods/Headers/include/cppgc/platform.h +156 -0
  100. package/pods/Headers/include/cppgc/prefinalizer.h +75 -0
  101. package/pods/Headers/include/cppgc/process-heap-statistics.h +36 -0
  102. package/pods/Headers/include/cppgc/sentinel-pointer.h +32 -0
  103. package/pods/Headers/include/cppgc/source-location.h +92 -0
  104. package/pods/Headers/include/cppgc/testing.h +106 -0
  105. package/pods/Headers/include/cppgc/trace-trait.h +116 -0
  106. package/pods/Headers/include/cppgc/type-traits.h +240 -0
  107. package/pods/Headers/include/cppgc/visitor.h +379 -0
  108. package/pods/Headers/include/js_protocol-1.2.json +936 -0
  109. package/pods/Headers/include/js_protocol-1.3.json +1112 -0
  110. package/pods/Headers/include/js_protocol.pdl +1709 -0
  111. package/pods/Headers/include/libffi/arm64/ffi.h +524 -0
  112. package/pods/Headers/include/libffi/arm64/ffitarget.h +92 -0
  113. package/pods/Headers/include/libffi/x86_64/ffi.h +524 -0
  114. package/pods/Headers/include/libffi/x86_64/ffitarget.h +147 -0
  115. package/pods/Headers/include/libffi.h +12 -0
  116. package/pods/Headers/include/libplatform/DEPS +9 -0
  117. package/pods/Headers/include/libplatform/libplatform-export.h +29 -0
  118. package/pods/Headers/include/libplatform/libplatform.h +106 -0
  119. package/pods/Headers/include/libplatform/v8-tracing.h +333 -0
  120. package/pods/Headers/include/v8-array-buffer.h +433 -0
  121. package/pods/Headers/include/v8-callbacks.h +397 -0
  122. package/pods/Headers/include/v8-container.h +129 -0
  123. package/pods/Headers/include/v8-context.h +407 -0
  124. package/pods/Headers/include/v8-cppgc.h +215 -0
  125. package/pods/Headers/include/v8-data.h +80 -0
  126. package/pods/Headers/include/v8-date.h +43 -0
  127. package/pods/Headers/include/v8-debug.h +168 -0
  128. package/pods/Headers/include/v8-embedder-heap.h +218 -0
  129. package/pods/Headers/include/v8-embedder-state-scope.h +51 -0
  130. package/pods/Headers/include/v8-exception.h +217 -0
  131. package/pods/Headers/include/v8-extension.h +62 -0
  132. package/pods/Headers/include/v8-external.h +37 -0
  133. package/pods/Headers/include/v8-fast-api-calls.h +939 -0
  134. package/pods/Headers/include/v8-forward.h +81 -0
  135. package/pods/Headers/include/v8-function-callback.h +475 -0
  136. package/pods/Headers/include/v8-function.h +125 -0
  137. package/pods/Headers/include/v8-initialization.h +315 -0
  138. package/pods/Headers/include/v8-inspector-protocol.h +13 -0
  139. package/pods/Headers/include/v8-inspector.h +376 -0
  140. package/pods/Headers/include/v8-internal.h +661 -0
  141. package/pods/Headers/include/v8-isolate.h +1709 -0
  142. package/pods/Headers/include/v8-json.h +47 -0
  143. package/pods/Headers/include/v8-local-handle.h +455 -0
  144. package/pods/Headers/include/v8-locker.h +149 -0
  145. package/pods/Headers/include/v8-maybe.h +137 -0
  146. package/pods/Headers/include/v8-memory-span.h +43 -0
  147. package/pods/Headers/include/v8-message.h +216 -0
  148. package/pods/Headers/include/v8-metrics.h +255 -0
  149. package/pods/Headers/include/v8-microtask-queue.h +152 -0
  150. package/pods/Headers/include/v8-microtask.h +28 -0
  151. package/pods/Headers/include/v8-object.h +775 -0
  152. package/pods/Headers/include/v8-persistent-handle.h +590 -0
  153. package/pods/Headers/include/v8-platform.h +1092 -0
  154. package/pods/Headers/include/v8-primitive-object.h +118 -0
  155. package/pods/Headers/include/v8-primitive.h +866 -0
  156. package/pods/Headers/include/v8-profiler.h +1198 -0
  157. package/pods/Headers/include/v8-promise.h +174 -0
  158. package/pods/Headers/include/v8-proxy.h +50 -0
  159. package/pods/Headers/include/v8-regexp.h +105 -0
  160. package/pods/Headers/include/v8-script.h +748 -0
  161. package/pods/Headers/include/v8-snapshot.h +196 -0
  162. package/pods/Headers/include/v8-statistics.h +217 -0
  163. package/pods/Headers/include/v8-template.h +1079 -0
  164. package/pods/Headers/include/v8-traced-handle.h +420 -0
  165. package/pods/Headers/include/v8-typed-array.h +282 -0
  166. package/pods/Headers/include/v8-unwinder-state.h +31 -0
  167. package/pods/Headers/include/v8-unwinder.h +132 -0
  168. package/pods/Headers/include/v8-util.h +658 -0
  169. package/pods/Headers/include/v8-value-serializer-version.h +24 -0
  170. package/pods/Headers/include/v8-value-serializer.h +279 -0
  171. package/pods/Headers/include/v8-value.h +526 -0
  172. package/pods/Headers/include/v8-version-string.h +38 -0
  173. package/pods/Headers/include/v8-version.h +20 -0
  174. package/pods/Headers/include/v8-wasm-trap-handler-posix.h +31 -0
  175. package/pods/Headers/include/v8-wasm-trap-handler-win.h +28 -0
  176. package/pods/Headers/include/v8-wasm.h +257 -0
  177. package/pods/Headers/include/v8-weak-callback-info.h +86 -0
  178. package/pods/Headers/include/v8.h +88 -0
  179. package/pods/Headers/include/v8config.h +605 -0
  180. package/pods/Headers/inspector/InspectorServer.h +20 -0
  181. package/pods/Headers/inspector/JsV8InspectorClient.h +66 -0
  182. package/pods/Headers/inspector/base/trace_event/common/trace_event_common.h +1123 -0
  183. package/pods/Headers/inspector/base64.h +9 -0
  184. package/pods/Headers/inspector/src/base/address-region.h +95 -0
  185. package/pods/Headers/inspector/src/base/atomic-utils.h +219 -0
  186. package/pods/Headers/inspector/src/base/atomicops.h +332 -0
  187. package/pods/Headers/inspector/src/base/atomicops_internals_atomicword_compat.h +89 -0
  188. package/pods/Headers/inspector/src/base/base-export.h +31 -0
  189. package/pods/Headers/inspector/src/base/bits.h +343 -0
  190. package/pods/Headers/inspector/src/base/build_config.h +234 -0
  191. package/pods/Headers/inspector/src/base/compiler-specific.h +136 -0
  192. package/pods/Headers/inspector/src/base/export-template.h +163 -0
  193. package/pods/Headers/inspector/src/base/flags.h +130 -0
  194. package/pods/Headers/inspector/src/base/immediate-crash.h +162 -0
  195. package/pods/Headers/inspector/src/base/lazy-instance.h +258 -0
  196. package/pods/Headers/inspector/src/base/logging.h +417 -0
  197. package/pods/Headers/inspector/src/base/macros.h +423 -0
  198. package/pods/Headers/inspector/src/base/memory.h +89 -0
  199. package/pods/Headers/inspector/src/base/once.h +108 -0
  200. package/pods/Headers/inspector/src/base/optional.h +882 -0
  201. package/pods/Headers/inspector/src/base/platform/mutex.h +370 -0
  202. package/pods/Headers/inspector/src/base/platform/platform.h +476 -0
  203. package/pods/Headers/inspector/src/base/platform/semaphore.h +108 -0
  204. package/pods/Headers/inspector/src/base/platform/v8-time.h +513 -0
  205. package/pods/Headers/inspector/src/base/platform/wrappers.h +73 -0
  206. package/pods/Headers/inspector/src/base/safe_conversions.h +389 -0
  207. package/pods/Headers/inspector/src/base/safe_conversions_impl.h +822 -0
  208. package/pods/Headers/inspector/src/base/template-utils.h +113 -0
  209. package/pods/Headers/inspector/src/base/v8-fallthrough.h +21 -0
  210. package/pods/Headers/inspector/src/common/checks.h +38 -0
  211. package/pods/Headers/inspector/src/common/globals.h +1842 -0
  212. package/pods/Headers/inspector/src/debug/debug-interface.h +667 -0
  213. package/pods/Headers/inspector/src/debug/interface-types.h +175 -0
  214. package/pods/Headers/inspector/src/init/v8.h +52 -0
  215. package/pods/Headers/inspector/src/inspector/custom-preview.h +24 -0
  216. package/pods/Headers/inspector/src/inspector/injected-script.h +251 -0
  217. package/pods/Headers/inspector/src/inspector/inspected-context.h +79 -0
  218. package/pods/Headers/inspector/src/inspector/protocol/CSS.h +2148 -0
  219. package/pods/Headers/inspector/src/inspector/protocol/Console.h +211 -0
  220. package/pods/Headers/inspector/src/inspector/protocol/DOM.h +1008 -0
  221. package/pods/Headers/inspector/src/inspector/protocol/Debugger.h +892 -0
  222. package/pods/Headers/inspector/src/inspector/protocol/Forward.h +75 -0
  223. package/pods/Headers/inspector/src/inspector/protocol/HeapProfiler.h +346 -0
  224. package/pods/Headers/inspector/src/inspector/protocol/Log.h +342 -0
  225. package/pods/Headers/inspector/src/inspector/protocol/Network.h +2528 -0
  226. package/pods/Headers/inspector/src/inspector/protocol/Overlay.h +281 -0
  227. package/pods/Headers/inspector/src/inspector/protocol/Page.h +1189 -0
  228. package/pods/Headers/inspector/src/inspector/protocol/Profiler.h +1001 -0
  229. package/pods/Headers/inspector/src/inspector/protocol/Protocol.h +617 -0
  230. package/pods/Headers/inspector/src/inspector/protocol/Runtime.h +1696 -0
  231. package/pods/Headers/inspector/src/inspector/protocol/Schema.h +146 -0
  232. package/pods/Headers/inspector/src/inspector/protocol/Security.h +793 -0
  233. package/pods/Headers/inspector/src/inspector/remote-object-id.h +54 -0
  234. package/pods/Headers/inspector/src/inspector/search-util.h +26 -0
  235. package/pods/Headers/inspector/src/inspector/string-16.h +180 -0
  236. package/pods/Headers/inspector/src/inspector/string-util.h +128 -0
  237. package/pods/Headers/inspector/src/inspector/v8-console-agent-impl.h +48 -0
  238. package/pods/Headers/inspector/src/inspector/v8-console-message.h +147 -0
  239. package/pods/Headers/inspector/src/inspector/v8-console.h +173 -0
  240. package/pods/Headers/inspector/src/inspector/v8-css-agent-impl.h +62 -0
  241. package/pods/Headers/inspector/src/inspector/v8-debugger-agent-impl.h +248 -0
  242. package/pods/Headers/inspector/src/inspector/v8-debugger-id.h +44 -0
  243. package/pods/Headers/inspector/src/inspector/v8-debugger-script.h +123 -0
  244. package/pods/Headers/inspector/src/inspector/v8-debugger.h +257 -0
  245. package/pods/Headers/inspector/src/inspector/v8-dom-agent-impl.h +91 -0
  246. package/pods/Headers/inspector/src/inspector/v8-heap-profiler-agent-impl.h +80 -0
  247. package/pods/Headers/inspector/src/inspector/v8-inspector-impl.h +191 -0
  248. package/pods/Headers/inspector/src/inspector/v8-inspector-session-impl.h +156 -0
  249. package/pods/Headers/inspector/src/inspector/v8-log-agent-impl.h +34 -0
  250. package/pods/Headers/inspector/src/inspector/v8-network-agent-impl.h +71 -0
  251. package/pods/Headers/inspector/src/inspector/v8-ns-debugger-agent-impl.h +24 -0
  252. package/pods/Headers/inspector/src/inspector/v8-overlay-agent-impl.h +70 -0
  253. package/pods/Headers/inspector/src/inspector/v8-page-agent-impl.h +88 -0
  254. package/pods/Headers/inspector/src/inspector/v8-profiler-agent-impl.h +104 -0
  255. package/pods/Headers/inspector/src/inspector/v8-regex.h +38 -0
  256. package/pods/Headers/inspector/src/inspector/v8-runtime-agent-impl.h +157 -0
  257. package/pods/Headers/inspector/src/inspector/v8-schema-agent-impl.h +38 -0
  258. package/pods/Headers/inspector/src/inspector/v8-stack-trace-impl.h +164 -0
  259. package/pods/Headers/inspector/src/inspector/v8-string-conversions.h +17 -0
  260. package/pods/Headers/inspector/src/inspector/v8-value-utils.h +23 -0
  261. package/pods/Headers/inspector/src/inspector/value-mirror.h +87 -0
  262. package/pods/Headers/inspector/src/libplatform/default-platform.h +92 -0
  263. package/pods/Headers/inspector/src/logging/tracing-flags.h +50 -0
  264. package/pods/Headers/inspector/src/numbers/conversions.h +183 -0
  265. package/pods/Headers/inspector/src/tracing/trace-event.h +664 -0
  266. package/pods/Headers/inspector/src/utils/allocation.h +367 -0
  267. package/pods/Headers/inspector/src/utils/vector.h +324 -0
  268. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/cbor.h +305 -0
  269. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/dispatch.h +314 -0
  270. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/error_support.h +62 -0
  271. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/export.h +6 -0
  272. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/find_by_first.h +58 -0
  273. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/frontend_channel.h +47 -0
  274. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/glue.h +80 -0
  275. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json.h +52 -0
  276. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json_platform.h +26 -0
  277. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/maybe.h +104 -0
  278. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/parser_handler.h +39 -0
  279. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/protocol_core.h +406 -0
  280. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializable.h +32 -0
  281. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializer_traits.h +158 -0
  282. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/span.h +99 -0
  283. package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/status.h +139 -0
  284. package/pods/Headers/inspector/utils.h +32 -0
  285. package/pods/Headers/inspector/v8-inspector-platform.h +44 -0
  286. package/pods/Headers/jsi/decorator.h +762 -0
  287. package/pods/Headers/jsi/instrumentation.h +117 -0
  288. package/pods/Headers/jsi/jsi-inl.h +322 -0
  289. package/pods/Headers/jsi/jsi.h +1387 -0
  290. package/pods/Headers/jsi/jsilib.h +59 -0
  291. package/pods/Headers/jsi/threadsafe.h +79 -0
  292. package/pods/Headers/runtime/ArgConverter.h +61 -0
  293. package/pods/Headers/runtime/ArrayAdapter.h +13 -0
  294. package/pods/Headers/runtime/Caches.h +98 -0
  295. package/pods/Headers/runtime/ClassBuilder.h +61 -0
  296. package/pods/Headers/runtime/Common.h +9 -0
  297. package/pods/Headers/runtime/ConcurrentMap.h +55 -0
  298. package/pods/Headers/runtime/ConcurrentQueue.h +28 -0
  299. package/pods/Headers/runtime/Console.h +27 -0
  300. package/pods/Headers/runtime/Constants.h +15 -0
  301. package/pods/Headers/runtime/DataWrapper.h +671 -0
  302. package/pods/Headers/runtime/DictionaryAdapter.h +13 -0
  303. package/pods/Headers/runtime/ExtVector.h +21 -0
  304. package/pods/Headers/runtime/FFICall.h +105 -0
  305. package/pods/Headers/runtime/FastEnumerationAdapter.h +13 -0
  306. package/pods/Headers/runtime/FunctionReference.h +18 -0
  307. package/pods/Headers/runtime/Helpers.h +84 -0
  308. package/pods/Headers/runtime/InlineFunctions.h +16 -0
  309. package/pods/Headers/runtime/Interop.h +202 -0
  310. package/pods/Headers/runtime/KnownUnknownClassPair.h +35 -0
  311. package/pods/Headers/runtime/Metadata.h +981 -0
  312. package/pods/Headers/runtime/MetadataBuilder.h +72 -0
  313. package/pods/Headers/runtime/MetadataInlines.h +157 -0
  314. package/pods/Headers/runtime/ModuleInternal.h +59 -0
  315. package/pods/Headers/runtime/NSDataAdapter.h +13 -0
  316. package/pods/Headers/runtime/NativeScriptException.h +27 -0
  317. package/pods/Headers/runtime/ObjectManager.h +31 -0
  318. package/pods/Headers/runtime/OneByteStringResource.h +21 -0
  319. package/pods/Headers/runtime/Pointer.h +26 -0
  320. package/pods/Headers/runtime/PromiseProxy.h +15 -0
  321. package/pods/Headers/runtime/Reference.h +38 -0
  322. package/pods/Headers/runtime/Runtime.h +67 -0
  323. package/pods/Headers/runtime/RuntimeConfig.h +17 -0
  324. package/pods/Headers/runtime/SetTimeout.h +34 -0
  325. package/pods/Headers/runtime/SimpleAllocator.h +23 -0
  326. package/pods/Headers/runtime/StringHasher.h +315 -0
  327. package/pods/Headers/runtime/SymbolIterator.h +18 -0
  328. package/pods/Headers/runtime/SymbolLoader.h +27 -0
  329. package/pods/Headers/runtime/TNSDerivedClass.h +8 -0
  330. package/pods/Headers/runtime/TSHelpers.h +15 -0
  331. package/pods/Headers/runtime/Tasks.h +19 -0
  332. package/pods/Headers/runtime/UnmanagedType.h +21 -0
  333. package/pods/Headers/runtime/WeakRef.h +15 -0
  334. package/pods/Headers/runtime/Worker.h +26 -0
  335. package/pods/Headers/runtime/robin_hood.h +2184 -0
  336. package/pods/Headers/v8runtime/HostProxy.h +71 -0
  337. package/pods/Headers/v8runtime/JSIV8ValueConverter.h +70 -0
  338. package/pods/Headers/v8runtime/V8PointerValue.h +44 -0
  339. package/pods/Headers/v8runtime/V8Runtime.h +215 -0
  340. package/pods/Headers/v8runtime/V8RuntimeConfig.h +26 -0
  341. package/pods/Headers/v8runtime/V8RuntimeFactory.h +21 -0
  342. package/pods/NativeScript.podspec +68 -0
  343. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/PrivateHeaders/mason_native.h +0 -676
  344. package/platforms/ios/src/JSIModule.h +0 -217
  345. package/platforms/ios/src/JSIModule.mm +0 -2788
@@ -1,6 +1,6 @@
1
1
  #if 0
2
2
  #elif defined(__arm64__) && __arm64__
3
- // Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
3
+ // Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
4
4
  #ifndef MASON_SWIFT_H
5
5
  #define MASON_SWIFT_H
6
6
  #pragma clang diagnostic push
@@ -23,7 +23,6 @@
23
23
  # include <swift/objc-prologue.h>
24
24
  #endif
25
25
 
26
- #pragma clang diagnostic ignored "-Wduplicate-method-match"
27
26
  #pragma clang diagnostic ignored "-Wauto-import"
28
27
  #if defined(__OBJC__)
29
28
  #include <Foundation/Foundation.h>
@@ -32,10 +31,24 @@
32
31
  #include <cstdint>
33
32
  #include <cstddef>
34
33
  #include <cstdbool>
34
+ #include <cstring>
35
+ #include <stdlib.h>
36
+ #include <new>
37
+ #include <type_traits>
35
38
  #else
36
39
  #include <stdint.h>
37
40
  #include <stddef.h>
38
41
  #include <stdbool.h>
42
+ #include <string.h>
43
+ #endif
44
+ #if defined(__cplusplus)
45
+ #if __has_include(<ptrauth.h>)
46
+ # include <ptrauth.h>
47
+ #else
48
+ # ifndef __ptrauth_swift_value_witness_function_pointer
49
+ # define __ptrauth_swift_value_witness_function_pointer(x)
50
+ # endif
51
+ #endif
39
52
  #endif
40
53
 
41
54
  #if !defined(SWIFT_TYPEDEFS)
@@ -71,53 +84,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
71
84
  # if __has_feature(objc_class_property)
72
85
  # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
73
86
  # else
74
- # define SWIFT_CLASS_PROPERTY(...)
87
+ # define SWIFT_CLASS_PROPERTY(...)
75
88
  # endif
76
89
  #endif
77
-
78
- #if __has_attribute(objc_runtime_name)
79
- # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
80
- #else
81
- # define SWIFT_RUNTIME_NAME(X)
90
+ #if !defined(SWIFT_RUNTIME_NAME)
91
+ # if __has_attribute(objc_runtime_name)
92
+ # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
93
+ # else
94
+ # define SWIFT_RUNTIME_NAME(X)
95
+ # endif
82
96
  #endif
83
- #if __has_attribute(swift_name)
84
- # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
85
- #else
86
- # define SWIFT_COMPILE_NAME(X)
97
+ #if !defined(SWIFT_COMPILE_NAME)
98
+ # if __has_attribute(swift_name)
99
+ # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
100
+ # else
101
+ # define SWIFT_COMPILE_NAME(X)
102
+ # endif
87
103
  #endif
88
- #if __has_attribute(objc_method_family)
89
- # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
90
- #else
91
- # define SWIFT_METHOD_FAMILY(X)
104
+ #if !defined(SWIFT_METHOD_FAMILY)
105
+ # if __has_attribute(objc_method_family)
106
+ # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
107
+ # else
108
+ # define SWIFT_METHOD_FAMILY(X)
109
+ # endif
92
110
  #endif
93
- #if __has_attribute(noescape)
94
- # define SWIFT_NOESCAPE __attribute__((noescape))
95
- #else
96
- # define SWIFT_NOESCAPE
111
+ #if !defined(SWIFT_NOESCAPE)
112
+ # if __has_attribute(noescape)
113
+ # define SWIFT_NOESCAPE __attribute__((noescape))
114
+ # else
115
+ # define SWIFT_NOESCAPE
116
+ # endif
97
117
  #endif
98
- #if __has_attribute(ns_consumed)
99
- # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
100
- #else
101
- # define SWIFT_RELEASES_ARGUMENT
118
+ #if !defined(SWIFT_RELEASES_ARGUMENT)
119
+ # if __has_attribute(ns_consumed)
120
+ # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
121
+ # else
122
+ # define SWIFT_RELEASES_ARGUMENT
123
+ # endif
102
124
  #endif
103
- #if __has_attribute(warn_unused_result)
104
- # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
105
- #else
106
- # define SWIFT_WARN_UNUSED_RESULT
125
+ #if !defined(SWIFT_WARN_UNUSED_RESULT)
126
+ # if __has_attribute(warn_unused_result)
127
+ # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
128
+ # else
129
+ # define SWIFT_WARN_UNUSED_RESULT
130
+ # endif
107
131
  #endif
108
- #if __has_attribute(noreturn)
109
- # define SWIFT_NORETURN __attribute__((noreturn))
110
- #else
111
- # define SWIFT_NORETURN
132
+ #if !defined(SWIFT_NORETURN)
133
+ # if __has_attribute(noreturn)
134
+ # define SWIFT_NORETURN __attribute__((noreturn))
135
+ # else
136
+ # define SWIFT_NORETURN
137
+ # endif
112
138
  #endif
113
139
  #if !defined(SWIFT_CLASS_EXTRA)
114
- # define SWIFT_CLASS_EXTRA
140
+ # define SWIFT_CLASS_EXTRA
115
141
  #endif
116
142
  #if !defined(SWIFT_PROTOCOL_EXTRA)
117
- # define SWIFT_PROTOCOL_EXTRA
143
+ # define SWIFT_PROTOCOL_EXTRA
118
144
  #endif
119
145
  #if !defined(SWIFT_ENUM_EXTRA)
120
- # define SWIFT_ENUM_EXTRA
146
+ # define SWIFT_ENUM_EXTRA
121
147
  #endif
122
148
  #if !defined(SWIFT_CLASS)
123
149
  # if __has_attribute(objc_subclassing_restricted)
@@ -137,28 +163,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
137
163
  # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
138
164
  # endif
139
165
  #endif
140
-
141
166
  #if !defined(SWIFT_PROTOCOL)
142
167
  # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
143
168
  # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
144
169
  #endif
145
-
146
170
  #if !defined(SWIFT_EXTENSION)
147
171
  # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
148
172
  #endif
149
-
150
173
  #if !defined(OBJC_DESIGNATED_INITIALIZER)
151
174
  # if __has_attribute(objc_designated_initializer)
152
175
  # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
153
176
  # else
154
- # define OBJC_DESIGNATED_INITIALIZER
177
+ # define OBJC_DESIGNATED_INITIALIZER
155
178
  # endif
156
179
  #endif
157
180
  #if !defined(SWIFT_ENUM_ATTR)
158
- # if defined(__has_attribute) && __has_attribute(enum_extensibility)
181
+ # if __has_attribute(enum_extensibility)
159
182
  # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
160
183
  # else
161
- # define SWIFT_ENUM_ATTR(_extensibility)
184
+ # define SWIFT_ENUM_ATTR(_extensibility)
162
185
  # endif
163
186
  #endif
164
187
  #if !defined(SWIFT_ENUM)
@@ -187,14 +210,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
187
210
  #if !defined(SWIFT_DEPRECATED_MSG)
188
211
  # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
189
212
  #endif
190
- #if __has_feature(attribute_diagnose_if_objc)
191
- # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
192
- #else
193
- # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
213
+ #if !defined(SWIFT_DEPRECATED_OBJC)
214
+ # if __has_feature(attribute_diagnose_if_objc)
215
+ # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
216
+ # else
217
+ # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
218
+ # endif
194
219
  #endif
195
220
  #if defined(__OBJC__)
196
221
  #if !defined(IBSegueAction)
197
- # define IBSegueAction
222
+ # define IBSegueAction
198
223
  #endif
199
224
  #endif
200
225
  #if !defined(SWIFT_EXTERN)
@@ -207,26 +232,31 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
207
232
  #if !defined(SWIFT_CALL)
208
233
  # define SWIFT_CALL __attribute__((swiftcall))
209
234
  #endif
235
+ #if !defined(SWIFT_INDIRECT_RESULT)
236
+ # define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
237
+ #endif
238
+ #if !defined(SWIFT_CONTEXT)
239
+ # define SWIFT_CONTEXT __attribute__((swift_context))
240
+ #endif
241
+ #if !defined(SWIFT_ERROR_RESULT)
242
+ # define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
243
+ #endif
210
244
  #if defined(__cplusplus)
211
- #if !defined(SWIFT_NOEXCEPT)
212
245
  # define SWIFT_NOEXCEPT noexcept
213
- #endif
214
246
  #else
215
- #if !defined(SWIFT_NOEXCEPT)
216
247
  # define SWIFT_NOEXCEPT
217
248
  #endif
249
+ #if defined(_WIN32)
250
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
251
+ # define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
218
252
  #endif
219
- #if defined(__cplusplus)
220
- #if !defined(SWIFT_CXX_INT_DEFINED)
221
- #define SWIFT_CXX_INT_DEFINED
222
- namespace swift {
223
- using Int = ptrdiff_t;
224
- using UInt = size_t;
225
- }
253
+ #else
254
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
255
+ # define SWIFT_IMPORT_STDLIB_SYMBOL
226
256
  #endif
227
257
  #endif
228
258
  #if defined(__OBJC__)
229
- #if __has_feature(modules)
259
+ #if __has_feature(objc_modules)
230
260
  #if __has_warning("-Watimport-in-framework-header")
231
261
  #pragma clang diagnostic ignored "-Watimport-in-framework-header"
232
262
  #endif
@@ -300,6 +330,7 @@ typedef SWIFT_ENUM_NAMED(NSInteger, Display, "Display", open) {
300
330
  DisplayNone = 0,
301
331
  DisplayFlex = 1,
302
332
  DisplayGrid = 2,
333
+ DisplayBlock = 3,
303
334
  };
304
335
 
305
336
  typedef SWIFT_ENUM_NAMED(NSInteger, FlexDirection, "FlexDirection", open) {
@@ -611,8 +642,11 @@ SWIFT_CLASS_NAMED("MasonReexports")
611
642
  + (void)style_set_flex_direction:(void * _Nonnull)style :(int32_t)flex_direction;
612
643
  + (int32_t)style_get_flex_wrap:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
613
644
  + (void)style_set_flex_wrap:(void * _Nonnull)style :(int32_t)flex_wrap;
614
- + (int32_t)style_get_overflow:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
615
645
  + (void)style_set_overflow:(void * _Nonnull)style :(int32_t)overflow;
646
+ + (void)style_set_overflow_x:(void * _Nonnull)style :(int32_t)overflow;
647
+ + (void)style_set_overflow_y:(void * _Nonnull)style :(int32_t)overflow;
648
+ + (int32_t)style_get_overflow_x:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
649
+ + (int32_t)style_get_overflow_y:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
616
650
  + (int32_t)style_get_align_items:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
617
651
  + (void)style_set_align_items:(void * _Nonnull)style :(int32_t)align_items;
618
652
  + (int32_t)style_get_align_self:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
@@ -668,6 +702,8 @@ SWIFT_CLASS_NAMED("MasonReexports")
668
702
  + (void)style_set_flex_shrink:(void * _Nonnull)style :(float)value;
669
703
  + (void)style_set_flex_basis:(void * _Nonnull)style :(float)value :(CMasonDimensionType)value_type;
670
704
  + (CMasonDimension)style_get_flex_basis:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
705
+ + (void)style_set_scrollbar_width:(void * _Nonnull)style :(float)value;
706
+ + (float)style_get_scrollbar_width:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
671
707
  + (CMasonDimension)style_get_width:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
672
708
  + (void)style_set_width:(void * _Nonnull)style :(float)value :(CMasonDimensionType)value_type;
673
709
  + (CMasonDimension)style_get_height:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
@@ -714,7 +750,7 @@ SWIFT_CLASS_NAMED("MasonReexports")
714
750
  + (NSString * _Nonnull)util_parse_non_repeated_track_sizing_function:(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)value SWIFT_WARN_UNUSED_RESULT;
715
751
  + (NSString * _Nonnull)util_parse_auto_repeating_track_sizing_function:(CMasonTrackSizingFunctionArray * _Nonnull)value SWIFT_WARN_UNUSED_RESULT;
716
752
  + (CMasonMinMax)util_create_non_repeated_track_sizing_function_with_type_value:(int32_t)track_type :(float)track_value SWIFT_WARN_UNUSED_RESULT;
717
- + (void)style_update_with_values:(void * _Nonnull)style :(int32_t)display :(int32_t)position :(int32_t)direction :(int32_t)flexDirection :(int32_t)flexWrap :(int32_t)overflow :(int32_t)alignItems :(int32_t)alignSelf :(int32_t)alignContent :(int32_t)justifyItems :(int32_t)justifySelf :(int32_t)justifyContent :(int32_t)insetLeftType :(float)insetLeftValue :(int32_t)insetRightType :(float)insetRightValue :(int32_t)insetTopType :(float)insetTopValue :(int32_t)insetBottomType :(float)insetBottomValue :(int32_t)marginLeftType :(float)marginLeftValue :(int32_t)marginRightType :(float)marginRightValue :(int32_t)marginTopType :(float)marginTopValue :(int32_t)marginBottomType :(float)marginBottomValue :(int32_t)paddingLeftType :(float)paddingLeftValue :(int32_t)paddingRightType :(float)paddingRightValue :(int32_t)paddingTopType :(float)paddingTopValue :(int32_t)paddingBottomType :(float)paddingBottomValue :(int32_t)borderLeftType :(float)borderLeftValue :(int32_t)borderRightType :(float)borderRightValue :(int32_t)borderTopType :(float)borderTopValue :(int32_t)borderBottomType :(float)borderBottomValue :(float)flexGrow :(float)flexShrink :(int32_t)flexBasisType :(float)flexBasisValue :(int32_t)widthType :(float)widthValue :(int32_t)heightType :(float)heightValue :(int32_t)minWidthType :(float)minWidthValue :(int32_t)minHeightType :(float)minHeightValue :(int32_t)maxWidthType :(float)maxWidthValue :(int32_t)maxHeightType :(float)maxHeightValue :(int32_t)gapRowType :(float)gapRowValue :(int32_t)gapColumnType :(float)gapColumnValue :(float)aspectRatio :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoRows :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoColumns :(int32_t)gridAutoFlow :(int32_t)gridColumnStartType :(int16_t)gridColumnStartValue :(int32_t)gridColumnEndType :(int16_t)gridColumnEndValue :(int32_t)gridRowStartType :(int16_t)gridRowStartValue :(int32_t)gridRowEndType :(int16_t)gridRowEndValue :(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateRows gridTemplateColumns:(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateColumns;
753
+ + (void)style_update_with_values:(void * _Nonnull)style :(int32_t)display :(int32_t)position :(int32_t)direction :(int32_t)flexDirection :(int32_t)flexWrap :(int32_t)overflow :(int32_t)alignItems :(int32_t)alignSelf :(int32_t)alignContent :(int32_t)justifyItems :(int32_t)justifySelf :(int32_t)justifyContent :(int32_t)insetLeftType :(float)insetLeftValue :(int32_t)insetRightType :(float)insetRightValue :(int32_t)insetTopType :(float)insetTopValue :(int32_t)insetBottomType :(float)insetBottomValue :(int32_t)marginLeftType :(float)marginLeftValue :(int32_t)marginRightType :(float)marginRightValue :(int32_t)marginTopType :(float)marginTopValue :(int32_t)marginBottomType :(float)marginBottomValue :(int32_t)paddingLeftType :(float)paddingLeftValue :(int32_t)paddingRightType :(float)paddingRightValue :(int32_t)paddingTopType :(float)paddingTopValue :(int32_t)paddingBottomType :(float)paddingBottomValue :(int32_t)borderLeftType :(float)borderLeftValue :(int32_t)borderRightType :(float)borderRightValue :(int32_t)borderTopType :(float)borderTopValue :(int32_t)borderBottomType :(float)borderBottomValue :(float)flexGrow :(float)flexShrink :(int32_t)flexBasisType :(float)flexBasisValue :(int32_t)widthType :(float)widthValue :(int32_t)heightType :(float)heightValue :(int32_t)minWidthType :(float)minWidthValue :(int32_t)minHeightType :(float)minHeightValue :(int32_t)maxWidthType :(float)maxWidthValue :(int32_t)maxHeightType :(float)maxHeightValue :(int32_t)gapRowType :(float)gapRowValue :(int32_t)gapColumnType :(float)gapColumnValue :(float)aspectRatio :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoRows :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoColumns :(int32_t)gridAutoFlow :(int32_t)gridColumnStartType :(int16_t)gridColumnStartValue :(int32_t)gridColumnEndType :(int16_t)gridColumnEndValue :(int32_t)gridRowStartType :(int16_t)gridRowStartValue :(int32_t)gridRowEndType :(int16_t)gridRowEndValue :(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateRows :(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateColumns :(int32_t)overflowX :(int32_t)overflowY scrollBarWidth:(float)scrollBarWidth;
718
754
  - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
719
755
  @end
720
756
 
@@ -733,6 +769,8 @@ SWIFT_CLASS_NAMED("MasonStyle")
733
769
  @property (nonatomic) enum FlexDirection flexDirection;
734
770
  @property (nonatomic) enum FlexWrap flexWrap;
735
771
  @property (nonatomic) enum Overflow overflow;
772
+ @property (nonatomic) enum Overflow overflowX;
773
+ @property (nonatomic) enum Overflow overflowY;
736
774
  @property (nonatomic) enum AlignItems alignItems;
737
775
  @property (nonatomic) enum AlignSelf alignSelf;
738
776
  @property (nonatomic) enum AlignContent alignContent;
@@ -766,6 +804,7 @@ SWIFT_CLASS_NAMED("MasonStyle")
766
804
  @property (nonatomic) float flexGrow;
767
805
  @property (nonatomic) float flexShrink;
768
806
  - (void)setFlexBasis:(float)value :(NSInteger)type;
807
+ - (void)setScrollBarWidth:(float)value;
769
808
  @property (nonatomic, strong) MasonDimensionSizeCompat * _Nonnull minSizeCompat;
770
809
  - (void)setMinSizeWidth:(float)value :(NSInteger)type;
771
810
  - (void)setMinSizeHeight:(float)value :(NSInteger)type;
@@ -807,7 +846,7 @@ SWIFT_CLASS_NAMED("MaxSizing")
807
846
  + (MaxSizing * _Nonnull)Percent:(float)percent SWIFT_WARN_UNUSED_RESULT;
808
847
  + (MaxSizing * _Nonnull)FitContent:(float)fit SWIFT_WARN_UNUSED_RESULT;
809
848
  + (MaxSizing * _Nonnull)FitContentPercent:(float)fit SWIFT_WARN_UNUSED_RESULT;
810
- + (MaxSizing * _Nonnull)Flex:(float)flex SWIFT_WARN_UNUSED_RESULT;
849
+ + (MaxSizing * _Nonnull)Fraction:(float)flex SWIFT_WARN_UNUSED_RESULT;
811
850
  SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) MaxSizing * _Nonnull Auto;)
812
851
  + (MaxSizing * _Nonnull)Auto SWIFT_WARN_UNUSED_RESULT;
813
852
  SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) MaxSizing * _Nonnull MinContent;)
@@ -864,9 +903,10 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) MinSizing *
864
903
  @end
865
904
 
866
905
  typedef SWIFT_ENUM_NAMED(NSInteger, Overflow, "Overflow", open) {
867
- OverflowVisible = 0,
868
- OverflowHidden = 1,
869
- OverflowScroll = 2,
906
+ OverflowUnset = 0,
907
+ OverflowVisible = 1,
908
+ OverflowHidden = 2,
909
+ OverflowScroll = 3,
870
910
  };
871
911
 
872
912
  typedef SWIFT_ENUM_NAMED(NSInteger, Position, "Position", open) {
@@ -906,6 +946,7 @@ SWIFT_CLASS_NAMED("TrackSizingFunction")
906
946
  @property (nonatomic, readonly, strong) UIView * _Nullable rootView;
907
947
  + (UIView * _Nonnull)createGridView SWIFT_WARN_UNUSED_RESULT;
908
948
  + (UIView * _Nonnull)createFlexView SWIFT_WARN_UNUSED_RESULT;
949
+ + (UIView * _Nonnull)createBlockView SWIFT_WARN_UNUSED_RESULT;
909
950
  @property (nonatomic, readonly, strong) MasonNode * _Nonnull mason;
910
951
  SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
911
952
  + (NSInteger)masonPtr SWIFT_WARN_UNUSED_RESULT;
@@ -918,11 +959,13 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
918
959
  - (void)configure:(SWIFT_NOESCAPE void (^ _Nonnull)(MasonNode * _Nonnull))block;
919
960
  @property (nonatomic) BOOL inBatch;
920
961
  @property (nonatomic) enum Display display;
921
- @property (nonatomic) enum Position position;
962
+ @property (nonatomic) enum Position _position;
922
963
  @property (nonatomic) enum Direction direction;
923
964
  @property (nonatomic) enum FlexDirection flexDirection;
924
965
  @property (nonatomic) enum FlexWrap flexWrap;
925
966
  @property (nonatomic) enum Overflow overflow;
967
+ @property (nonatomic) enum Overflow overflowX;
968
+ @property (nonatomic) enum Overflow overflowY;
926
969
  @property (nonatomic) enum AlignItems alignItems;
927
970
  @property (nonatomic) enum AlignSelf alignSelf;
928
971
  @property (nonatomic) enum AlignContent alignContent;
@@ -931,6 +974,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
931
974
  @property (nonatomic) enum JustifyContent justifyContent;
932
975
  @property (nonatomic) float flexGrow;
933
976
  @property (nonatomic) float flexShrink;
977
+ @property (nonatomic, strong) MasonDimensionCompat * _Nonnull scrollBarWidthCompat;
934
978
  @property (nonatomic, strong) MasonDimensionCompat * _Nonnull flexBasisCompat;
935
979
  @property (nonatomic) float aspectRatio;
936
980
  @property (nonatomic, copy) NSArray<MinMax *> * _Nonnull gridAutoRows;
@@ -1021,7 +1065,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
1021
1065
  #endif
1022
1066
 
1023
1067
  #elif defined(__x86_64__) && __x86_64__
1024
- // Generated by Apple Swift version 5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)
1068
+ // Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
1025
1069
  #ifndef MASON_SWIFT_H
1026
1070
  #define MASON_SWIFT_H
1027
1071
  #pragma clang diagnostic push
@@ -1044,7 +1088,6 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
1044
1088
  # include <swift/objc-prologue.h>
1045
1089
  #endif
1046
1090
 
1047
- #pragma clang diagnostic ignored "-Wduplicate-method-match"
1048
1091
  #pragma clang diagnostic ignored "-Wauto-import"
1049
1092
  #if defined(__OBJC__)
1050
1093
  #include <Foundation/Foundation.h>
@@ -1053,10 +1096,24 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
1053
1096
  #include <cstdint>
1054
1097
  #include <cstddef>
1055
1098
  #include <cstdbool>
1099
+ #include <cstring>
1100
+ #include <stdlib.h>
1101
+ #include <new>
1102
+ #include <type_traits>
1056
1103
  #else
1057
1104
  #include <stdint.h>
1058
1105
  #include <stddef.h>
1059
1106
  #include <stdbool.h>
1107
+ #include <string.h>
1108
+ #endif
1109
+ #if defined(__cplusplus)
1110
+ #if __has_include(<ptrauth.h>)
1111
+ # include <ptrauth.h>
1112
+ #else
1113
+ # ifndef __ptrauth_swift_value_witness_function_pointer
1114
+ # define __ptrauth_swift_value_witness_function_pointer(x)
1115
+ # endif
1116
+ #endif
1060
1117
  #endif
1061
1118
 
1062
1119
  #if !defined(SWIFT_TYPEDEFS)
@@ -1092,53 +1149,66 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
1092
1149
  # if __has_feature(objc_class_property)
1093
1150
  # define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
1094
1151
  # else
1095
- # define SWIFT_CLASS_PROPERTY(...)
1152
+ # define SWIFT_CLASS_PROPERTY(...)
1096
1153
  # endif
1097
1154
  #endif
1098
-
1099
- #if __has_attribute(objc_runtime_name)
1100
- # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
1101
- #else
1102
- # define SWIFT_RUNTIME_NAME(X)
1155
+ #if !defined(SWIFT_RUNTIME_NAME)
1156
+ # if __has_attribute(objc_runtime_name)
1157
+ # define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
1158
+ # else
1159
+ # define SWIFT_RUNTIME_NAME(X)
1160
+ # endif
1103
1161
  #endif
1104
- #if __has_attribute(swift_name)
1105
- # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
1106
- #else
1107
- # define SWIFT_COMPILE_NAME(X)
1162
+ #if !defined(SWIFT_COMPILE_NAME)
1163
+ # if __has_attribute(swift_name)
1164
+ # define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
1165
+ # else
1166
+ # define SWIFT_COMPILE_NAME(X)
1167
+ # endif
1108
1168
  #endif
1109
- #if __has_attribute(objc_method_family)
1110
- # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
1111
- #else
1112
- # define SWIFT_METHOD_FAMILY(X)
1169
+ #if !defined(SWIFT_METHOD_FAMILY)
1170
+ # if __has_attribute(objc_method_family)
1171
+ # define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
1172
+ # else
1173
+ # define SWIFT_METHOD_FAMILY(X)
1174
+ # endif
1113
1175
  #endif
1114
- #if __has_attribute(noescape)
1115
- # define SWIFT_NOESCAPE __attribute__((noescape))
1116
- #else
1117
- # define SWIFT_NOESCAPE
1176
+ #if !defined(SWIFT_NOESCAPE)
1177
+ # if __has_attribute(noescape)
1178
+ # define SWIFT_NOESCAPE __attribute__((noescape))
1179
+ # else
1180
+ # define SWIFT_NOESCAPE
1181
+ # endif
1118
1182
  #endif
1119
- #if __has_attribute(ns_consumed)
1120
- # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
1121
- #else
1122
- # define SWIFT_RELEASES_ARGUMENT
1183
+ #if !defined(SWIFT_RELEASES_ARGUMENT)
1184
+ # if __has_attribute(ns_consumed)
1185
+ # define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
1186
+ # else
1187
+ # define SWIFT_RELEASES_ARGUMENT
1188
+ # endif
1123
1189
  #endif
1124
- #if __has_attribute(warn_unused_result)
1125
- # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
1126
- #else
1127
- # define SWIFT_WARN_UNUSED_RESULT
1190
+ #if !defined(SWIFT_WARN_UNUSED_RESULT)
1191
+ # if __has_attribute(warn_unused_result)
1192
+ # define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
1193
+ # else
1194
+ # define SWIFT_WARN_UNUSED_RESULT
1195
+ # endif
1128
1196
  #endif
1129
- #if __has_attribute(noreturn)
1130
- # define SWIFT_NORETURN __attribute__((noreturn))
1131
- #else
1132
- # define SWIFT_NORETURN
1197
+ #if !defined(SWIFT_NORETURN)
1198
+ # if __has_attribute(noreturn)
1199
+ # define SWIFT_NORETURN __attribute__((noreturn))
1200
+ # else
1201
+ # define SWIFT_NORETURN
1202
+ # endif
1133
1203
  #endif
1134
1204
  #if !defined(SWIFT_CLASS_EXTRA)
1135
- # define SWIFT_CLASS_EXTRA
1205
+ # define SWIFT_CLASS_EXTRA
1136
1206
  #endif
1137
1207
  #if !defined(SWIFT_PROTOCOL_EXTRA)
1138
- # define SWIFT_PROTOCOL_EXTRA
1208
+ # define SWIFT_PROTOCOL_EXTRA
1139
1209
  #endif
1140
1210
  #if !defined(SWIFT_ENUM_EXTRA)
1141
- # define SWIFT_ENUM_EXTRA
1211
+ # define SWIFT_ENUM_EXTRA
1142
1212
  #endif
1143
1213
  #if !defined(SWIFT_CLASS)
1144
1214
  # if __has_attribute(objc_subclassing_restricted)
@@ -1158,28 +1228,25 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
1158
1228
  # define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
1159
1229
  # endif
1160
1230
  #endif
1161
-
1162
1231
  #if !defined(SWIFT_PROTOCOL)
1163
1232
  # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
1164
1233
  # define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
1165
1234
  #endif
1166
-
1167
1235
  #if !defined(SWIFT_EXTENSION)
1168
1236
  # define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
1169
1237
  #endif
1170
-
1171
1238
  #if !defined(OBJC_DESIGNATED_INITIALIZER)
1172
1239
  # if __has_attribute(objc_designated_initializer)
1173
1240
  # define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
1174
1241
  # else
1175
- # define OBJC_DESIGNATED_INITIALIZER
1242
+ # define OBJC_DESIGNATED_INITIALIZER
1176
1243
  # endif
1177
1244
  #endif
1178
1245
  #if !defined(SWIFT_ENUM_ATTR)
1179
- # if defined(__has_attribute) && __has_attribute(enum_extensibility)
1246
+ # if __has_attribute(enum_extensibility)
1180
1247
  # define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
1181
1248
  # else
1182
- # define SWIFT_ENUM_ATTR(_extensibility)
1249
+ # define SWIFT_ENUM_ATTR(_extensibility)
1183
1250
  # endif
1184
1251
  #endif
1185
1252
  #if !defined(SWIFT_ENUM)
@@ -1208,14 +1275,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
1208
1275
  #if !defined(SWIFT_DEPRECATED_MSG)
1209
1276
  # define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
1210
1277
  #endif
1211
- #if __has_feature(attribute_diagnose_if_objc)
1212
- # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
1213
- #else
1214
- # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
1278
+ #if !defined(SWIFT_DEPRECATED_OBJC)
1279
+ # if __has_feature(attribute_diagnose_if_objc)
1280
+ # define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
1281
+ # else
1282
+ # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
1283
+ # endif
1215
1284
  #endif
1216
1285
  #if defined(__OBJC__)
1217
1286
  #if !defined(IBSegueAction)
1218
- # define IBSegueAction
1287
+ # define IBSegueAction
1219
1288
  #endif
1220
1289
  #endif
1221
1290
  #if !defined(SWIFT_EXTERN)
@@ -1228,26 +1297,31 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
1228
1297
  #if !defined(SWIFT_CALL)
1229
1298
  # define SWIFT_CALL __attribute__((swiftcall))
1230
1299
  #endif
1300
+ #if !defined(SWIFT_INDIRECT_RESULT)
1301
+ # define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result))
1302
+ #endif
1303
+ #if !defined(SWIFT_CONTEXT)
1304
+ # define SWIFT_CONTEXT __attribute__((swift_context))
1305
+ #endif
1306
+ #if !defined(SWIFT_ERROR_RESULT)
1307
+ # define SWIFT_ERROR_RESULT __attribute__((swift_error_result))
1308
+ #endif
1231
1309
  #if defined(__cplusplus)
1232
- #if !defined(SWIFT_NOEXCEPT)
1233
1310
  # define SWIFT_NOEXCEPT noexcept
1234
- #endif
1235
1311
  #else
1236
- #if !defined(SWIFT_NOEXCEPT)
1237
1312
  # define SWIFT_NOEXCEPT
1238
1313
  #endif
1314
+ #if defined(_WIN32)
1315
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
1316
+ # define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
1239
1317
  #endif
1240
- #if defined(__cplusplus)
1241
- #if !defined(SWIFT_CXX_INT_DEFINED)
1242
- #define SWIFT_CXX_INT_DEFINED
1243
- namespace swift {
1244
- using Int = ptrdiff_t;
1245
- using UInt = size_t;
1246
- }
1318
+ #else
1319
+ #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
1320
+ # define SWIFT_IMPORT_STDLIB_SYMBOL
1247
1321
  #endif
1248
1322
  #endif
1249
1323
  #if defined(__OBJC__)
1250
- #if __has_feature(modules)
1324
+ #if __has_feature(objc_modules)
1251
1325
  #if __has_warning("-Watimport-in-framework-header")
1252
1326
  #pragma clang diagnostic ignored "-Watimport-in-framework-header"
1253
1327
  #endif
@@ -1321,6 +1395,7 @@ typedef SWIFT_ENUM_NAMED(NSInteger, Display, "Display", open) {
1321
1395
  DisplayNone = 0,
1322
1396
  DisplayFlex = 1,
1323
1397
  DisplayGrid = 2,
1398
+ DisplayBlock = 3,
1324
1399
  };
1325
1400
 
1326
1401
  typedef SWIFT_ENUM_NAMED(NSInteger, FlexDirection, "FlexDirection", open) {
@@ -1632,8 +1707,11 @@ SWIFT_CLASS_NAMED("MasonReexports")
1632
1707
  + (void)style_set_flex_direction:(void * _Nonnull)style :(int32_t)flex_direction;
1633
1708
  + (int32_t)style_get_flex_wrap:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1634
1709
  + (void)style_set_flex_wrap:(void * _Nonnull)style :(int32_t)flex_wrap;
1635
- + (int32_t)style_get_overflow:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1636
1710
  + (void)style_set_overflow:(void * _Nonnull)style :(int32_t)overflow;
1711
+ + (void)style_set_overflow_x:(void * _Nonnull)style :(int32_t)overflow;
1712
+ + (void)style_set_overflow_y:(void * _Nonnull)style :(int32_t)overflow;
1713
+ + (int32_t)style_get_overflow_x:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1714
+ + (int32_t)style_get_overflow_y:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1637
1715
  + (int32_t)style_get_align_items:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1638
1716
  + (void)style_set_align_items:(void * _Nonnull)style :(int32_t)align_items;
1639
1717
  + (int32_t)style_get_align_self:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
@@ -1689,6 +1767,8 @@ SWIFT_CLASS_NAMED("MasonReexports")
1689
1767
  + (void)style_set_flex_shrink:(void * _Nonnull)style :(float)value;
1690
1768
  + (void)style_set_flex_basis:(void * _Nonnull)style :(float)value :(CMasonDimensionType)value_type;
1691
1769
  + (CMasonDimension)style_get_flex_basis:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1770
+ + (void)style_set_scrollbar_width:(void * _Nonnull)style :(float)value;
1771
+ + (float)style_get_scrollbar_width:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1692
1772
  + (CMasonDimension)style_get_width:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
1693
1773
  + (void)style_set_width:(void * _Nonnull)style :(float)value :(CMasonDimensionType)value_type;
1694
1774
  + (CMasonDimension)style_get_height:(void * _Nonnull)style SWIFT_WARN_UNUSED_RESULT;
@@ -1735,7 +1815,7 @@ SWIFT_CLASS_NAMED("MasonReexports")
1735
1815
  + (NSString * _Nonnull)util_parse_non_repeated_track_sizing_function:(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)value SWIFT_WARN_UNUSED_RESULT;
1736
1816
  + (NSString * _Nonnull)util_parse_auto_repeating_track_sizing_function:(CMasonTrackSizingFunctionArray * _Nonnull)value SWIFT_WARN_UNUSED_RESULT;
1737
1817
  + (CMasonMinMax)util_create_non_repeated_track_sizing_function_with_type_value:(int32_t)track_type :(float)track_value SWIFT_WARN_UNUSED_RESULT;
1738
- + (void)style_update_with_values:(void * _Nonnull)style :(int32_t)display :(int32_t)position :(int32_t)direction :(int32_t)flexDirection :(int32_t)flexWrap :(int32_t)overflow :(int32_t)alignItems :(int32_t)alignSelf :(int32_t)alignContent :(int32_t)justifyItems :(int32_t)justifySelf :(int32_t)justifyContent :(int32_t)insetLeftType :(float)insetLeftValue :(int32_t)insetRightType :(float)insetRightValue :(int32_t)insetTopType :(float)insetTopValue :(int32_t)insetBottomType :(float)insetBottomValue :(int32_t)marginLeftType :(float)marginLeftValue :(int32_t)marginRightType :(float)marginRightValue :(int32_t)marginTopType :(float)marginTopValue :(int32_t)marginBottomType :(float)marginBottomValue :(int32_t)paddingLeftType :(float)paddingLeftValue :(int32_t)paddingRightType :(float)paddingRightValue :(int32_t)paddingTopType :(float)paddingTopValue :(int32_t)paddingBottomType :(float)paddingBottomValue :(int32_t)borderLeftType :(float)borderLeftValue :(int32_t)borderRightType :(float)borderRightValue :(int32_t)borderTopType :(float)borderTopValue :(int32_t)borderBottomType :(float)borderBottomValue :(float)flexGrow :(float)flexShrink :(int32_t)flexBasisType :(float)flexBasisValue :(int32_t)widthType :(float)widthValue :(int32_t)heightType :(float)heightValue :(int32_t)minWidthType :(float)minWidthValue :(int32_t)minHeightType :(float)minHeightValue :(int32_t)maxWidthType :(float)maxWidthValue :(int32_t)maxHeightType :(float)maxHeightValue :(int32_t)gapRowType :(float)gapRowValue :(int32_t)gapColumnType :(float)gapColumnValue :(float)aspectRatio :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoRows :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoColumns :(int32_t)gridAutoFlow :(int32_t)gridColumnStartType :(int16_t)gridColumnStartValue :(int32_t)gridColumnEndType :(int16_t)gridColumnEndValue :(int32_t)gridRowStartType :(int16_t)gridRowStartValue :(int32_t)gridRowEndType :(int16_t)gridRowEndValue :(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateRows gridTemplateColumns:(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateColumns;
1818
+ + (void)style_update_with_values:(void * _Nonnull)style :(int32_t)display :(int32_t)position :(int32_t)direction :(int32_t)flexDirection :(int32_t)flexWrap :(int32_t)overflow :(int32_t)alignItems :(int32_t)alignSelf :(int32_t)alignContent :(int32_t)justifyItems :(int32_t)justifySelf :(int32_t)justifyContent :(int32_t)insetLeftType :(float)insetLeftValue :(int32_t)insetRightType :(float)insetRightValue :(int32_t)insetTopType :(float)insetTopValue :(int32_t)insetBottomType :(float)insetBottomValue :(int32_t)marginLeftType :(float)marginLeftValue :(int32_t)marginRightType :(float)marginRightValue :(int32_t)marginTopType :(float)marginTopValue :(int32_t)marginBottomType :(float)marginBottomValue :(int32_t)paddingLeftType :(float)paddingLeftValue :(int32_t)paddingRightType :(float)paddingRightValue :(int32_t)paddingTopType :(float)paddingTopValue :(int32_t)paddingBottomType :(float)paddingBottomValue :(int32_t)borderLeftType :(float)borderLeftValue :(int32_t)borderRightType :(float)borderRightValue :(int32_t)borderTopType :(float)borderTopValue :(int32_t)borderBottomType :(float)borderBottomValue :(float)flexGrow :(float)flexShrink :(int32_t)flexBasisType :(float)flexBasisValue :(int32_t)widthType :(float)widthValue :(int32_t)heightType :(float)heightValue :(int32_t)minWidthType :(float)minWidthValue :(int32_t)minHeightType :(float)minHeightValue :(int32_t)maxWidthType :(float)maxWidthValue :(int32_t)maxHeightType :(float)maxHeightValue :(int32_t)gapRowType :(float)gapRowValue :(int32_t)gapColumnType :(float)gapColumnValue :(float)aspectRatio :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoRows :(CMasonNonRepeatedTrackSizingFunctionArray * _Nonnull)gridAutoColumns :(int32_t)gridAutoFlow :(int32_t)gridColumnStartType :(int16_t)gridColumnStartValue :(int32_t)gridColumnEndType :(int16_t)gridColumnEndValue :(int32_t)gridRowStartType :(int16_t)gridRowStartValue :(int32_t)gridRowEndType :(int16_t)gridRowEndValue :(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateRows :(CMasonTrackSizingFunctionArray * _Nonnull)gridTemplateColumns :(int32_t)overflowX :(int32_t)overflowY scrollBarWidth:(float)scrollBarWidth;
1739
1819
  - (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
1740
1820
  @end
1741
1821
 
@@ -1754,6 +1834,8 @@ SWIFT_CLASS_NAMED("MasonStyle")
1754
1834
  @property (nonatomic) enum FlexDirection flexDirection;
1755
1835
  @property (nonatomic) enum FlexWrap flexWrap;
1756
1836
  @property (nonatomic) enum Overflow overflow;
1837
+ @property (nonatomic) enum Overflow overflowX;
1838
+ @property (nonatomic) enum Overflow overflowY;
1757
1839
  @property (nonatomic) enum AlignItems alignItems;
1758
1840
  @property (nonatomic) enum AlignSelf alignSelf;
1759
1841
  @property (nonatomic) enum AlignContent alignContent;
@@ -1787,6 +1869,7 @@ SWIFT_CLASS_NAMED("MasonStyle")
1787
1869
  @property (nonatomic) float flexGrow;
1788
1870
  @property (nonatomic) float flexShrink;
1789
1871
  - (void)setFlexBasis:(float)value :(NSInteger)type;
1872
+ - (void)setScrollBarWidth:(float)value;
1790
1873
  @property (nonatomic, strong) MasonDimensionSizeCompat * _Nonnull minSizeCompat;
1791
1874
  - (void)setMinSizeWidth:(float)value :(NSInteger)type;
1792
1875
  - (void)setMinSizeHeight:(float)value :(NSInteger)type;
@@ -1828,7 +1911,7 @@ SWIFT_CLASS_NAMED("MaxSizing")
1828
1911
  + (MaxSizing * _Nonnull)Percent:(float)percent SWIFT_WARN_UNUSED_RESULT;
1829
1912
  + (MaxSizing * _Nonnull)FitContent:(float)fit SWIFT_WARN_UNUSED_RESULT;
1830
1913
  + (MaxSizing * _Nonnull)FitContentPercent:(float)fit SWIFT_WARN_UNUSED_RESULT;
1831
- + (MaxSizing * _Nonnull)Flex:(float)flex SWIFT_WARN_UNUSED_RESULT;
1914
+ + (MaxSizing * _Nonnull)Fraction:(float)flex SWIFT_WARN_UNUSED_RESULT;
1832
1915
  SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) MaxSizing * _Nonnull Auto;)
1833
1916
  + (MaxSizing * _Nonnull)Auto SWIFT_WARN_UNUSED_RESULT;
1834
1917
  SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) MaxSizing * _Nonnull MinContent;)
@@ -1885,9 +1968,10 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) MinSizing *
1885
1968
  @end
1886
1969
 
1887
1970
  typedef SWIFT_ENUM_NAMED(NSInteger, Overflow, "Overflow", open) {
1888
- OverflowVisible = 0,
1889
- OverflowHidden = 1,
1890
- OverflowScroll = 2,
1971
+ OverflowUnset = 0,
1972
+ OverflowVisible = 1,
1973
+ OverflowHidden = 2,
1974
+ OverflowScroll = 3,
1891
1975
  };
1892
1976
 
1893
1977
  typedef SWIFT_ENUM_NAMED(NSInteger, Position, "Position", open) {
@@ -1927,6 +2011,7 @@ SWIFT_CLASS_NAMED("TrackSizingFunction")
1927
2011
  @property (nonatomic, readonly, strong) UIView * _Nullable rootView;
1928
2012
  + (UIView * _Nonnull)createGridView SWIFT_WARN_UNUSED_RESULT;
1929
2013
  + (UIView * _Nonnull)createFlexView SWIFT_WARN_UNUSED_RESULT;
2014
+ + (UIView * _Nonnull)createBlockView SWIFT_WARN_UNUSED_RESULT;
1930
2015
  @property (nonatomic, readonly, strong) MasonNode * _Nonnull mason;
1931
2016
  SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
1932
2017
  + (NSInteger)masonPtr SWIFT_WARN_UNUSED_RESULT;
@@ -1939,11 +2024,13 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
1939
2024
  - (void)configure:(SWIFT_NOESCAPE void (^ _Nonnull)(MasonNode * _Nonnull))block;
1940
2025
  @property (nonatomic) BOOL inBatch;
1941
2026
  @property (nonatomic) enum Display display;
1942
- @property (nonatomic) enum Position position;
2027
+ @property (nonatomic) enum Position _position;
1943
2028
  @property (nonatomic) enum Direction direction;
1944
2029
  @property (nonatomic) enum FlexDirection flexDirection;
1945
2030
  @property (nonatomic) enum FlexWrap flexWrap;
1946
2031
  @property (nonatomic) enum Overflow overflow;
2032
+ @property (nonatomic) enum Overflow overflowX;
2033
+ @property (nonatomic) enum Overflow overflowY;
1947
2034
  @property (nonatomic) enum AlignItems alignItems;
1948
2035
  @property (nonatomic) enum AlignSelf alignSelf;
1949
2036
  @property (nonatomic) enum AlignContent alignContent;
@@ -1952,6 +2039,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) NSInteger masonPtr;)
1952
2039
  @property (nonatomic) enum JustifyContent justifyContent;
1953
2040
  @property (nonatomic) float flexGrow;
1954
2041
  @property (nonatomic) float flexShrink;
2042
+ @property (nonatomic, strong) MasonDimensionCompat * _Nonnull scrollBarWidthCompat;
1955
2043
  @property (nonatomic, strong) MasonDimensionCompat * _Nonnull flexBasisCompat;
1956
2044
  @property (nonatomic) float aspectRatio;
1957
2045
  @property (nonatomic, copy) NSArray<MinMax *> * _Nonnull gridAutoRows;