@triniwiz/nativescript-masonkit 1.0.0-alpha.4 → 1.0.0-alpha.6
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.
- package/common.d.ts +7 -9
- package/common.js +277 -552
- package/common.js.map +1 -1
- package/helpers.d.ts +32 -10
- package/helpers.js +772 -286
- package/helpers.js.map +1 -1
- package/index.android.d.ts +6 -2
- package/index.android.js +21 -3
- package/index.android.js.map +1 -1
- package/index.d.ts +64 -7
- package/index.ios.d.ts +9 -6
- package/index.ios.js +39 -25
- package/index.ios.js.map +1 -1
- package/package.json +1 -1
- package/platforms/android/include.gradle +18 -1
- package/platforms/android/masonkit-release.aar +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +108 -64
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/mason_native.h +47 -20
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Info.plist +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.abi.json +6692 -794
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +216 -128
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/mason_native.h +47 -20
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Info.plist +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json +6692 -794
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +6692 -794
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +58 -21
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/_CodeSignature/CodeResources +43 -43
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/build.xcconfig +1 -2
- package/platforms/ios/src/MasonV8Module.h +583 -0
- package/platforms/ios/src/MasonV8Module.mm +1005 -0
- package/platforms/ios/src/{include → cpp/include}/mason_native.h +47 -20
- package/platforms/ios/src/cpp/include/robin_hood.h +2544 -0
- package/platforms/ios/src/module.modulemap +2 -2
- package/platforms/new_native_src/cpp/Caches.cpp +36 -0
- package/platforms/new_native_src/cpp/Caches.h +42 -0
- package/platforms/new_native_src/cpp/Common.h +34 -0
- package/platforms/new_native_src/cpp/ConcurrentMap.h +57 -0
- package/platforms/new_native_src/cpp/Helpers.cpp +101 -0
- package/platforms/new_native_src/cpp/Helpers.h +364 -0
- package/platforms/new_native_src/cpp/MasonImpl.cpp +68 -0
- package/platforms/new_native_src/cpp/MasonImpl.h +40 -0
- package/platforms/new_native_src/cpp/MasonNodeImpl.cpp +89 -0
- package/platforms/new_native_src/cpp/MasonNodeImpl.h +47 -0
- package/platforms/new_native_src/cpp/MasonStyleImpl.cpp +2181 -0
- package/platforms/new_native_src/cpp/MasonStyleImpl.h +420 -0
- package/platforms/{ios/Mason.xcframework/ios-arm64/Mason.framework/PrivateHeaders → new_native_src/cpp/include}/mason_native.h +464 -168
- package/platforms/new_native_src/cpp/include/robin_hood.h +2544 -0
- package/pods/Headers/include/APIDesign.md +72 -0
- package/pods/Headers/include/DEPS +10 -0
- package/pods/Headers/include/DIR_METADATA +11 -0
- package/pods/Headers/include/OWNERS +23 -0
- package/pods/Headers/include/cppgc/DEPS +8 -0
- package/pods/Headers/include/cppgc/OWNERS +2 -0
- package/pods/Headers/include/cppgc/README.md +133 -0
- package/pods/Headers/include/cppgc/allocation.h +310 -0
- package/pods/Headers/include/cppgc/common.h +29 -0
- package/pods/Headers/include/cppgc/cross-thread-persistent.h +465 -0
- package/pods/Headers/include/cppgc/custom-space.h +97 -0
- package/pods/Headers/include/cppgc/default-platform.h +67 -0
- package/pods/Headers/include/cppgc/ephemeron-pair.h +30 -0
- package/pods/Headers/include/cppgc/explicit-management.h +100 -0
- package/pods/Headers/include/cppgc/garbage-collected.h +106 -0
- package/pods/Headers/include/cppgc/heap-consistency.h +266 -0
- package/pods/Headers/include/cppgc/heap-state.h +82 -0
- package/pods/Headers/include/cppgc/heap-statistics.h +120 -0
- package/pods/Headers/include/cppgc/heap.h +206 -0
- package/pods/Headers/include/cppgc/internal/api-constants.h +55 -0
- package/pods/Headers/include/cppgc/internal/atomic-entry-flag.h +48 -0
- package/pods/Headers/include/cppgc/internal/caged-heap-local-data.h +79 -0
- package/pods/Headers/include/cppgc/internal/compiler-specific.h +38 -0
- package/pods/Headers/include/cppgc/internal/finalizer-trait.h +93 -0
- package/pods/Headers/include/cppgc/internal/gc-info.h +156 -0
- package/pods/Headers/include/cppgc/internal/logging.h +50 -0
- package/pods/Headers/include/cppgc/internal/name-trait.h +122 -0
- package/pods/Headers/include/cppgc/internal/persistent-node.h +216 -0
- package/pods/Headers/include/cppgc/internal/pointer-policies.h +186 -0
- package/pods/Headers/include/cppgc/internal/write-barrier.h +435 -0
- package/pods/Headers/include/cppgc/liveness-broker.h +77 -0
- package/pods/Headers/include/cppgc/macros.h +26 -0
- package/pods/Headers/include/cppgc/member.h +291 -0
- package/pods/Headers/include/cppgc/name-provider.h +65 -0
- package/pods/Headers/include/cppgc/object-size-trait.h +58 -0
- package/pods/Headers/include/cppgc/persistent.h +370 -0
- package/pods/Headers/include/cppgc/platform.h +156 -0
- package/pods/Headers/include/cppgc/prefinalizer.h +75 -0
- package/pods/Headers/include/cppgc/process-heap-statistics.h +36 -0
- package/pods/Headers/include/cppgc/sentinel-pointer.h +32 -0
- package/pods/Headers/include/cppgc/source-location.h +92 -0
- package/pods/Headers/include/cppgc/testing.h +106 -0
- package/pods/Headers/include/cppgc/trace-trait.h +116 -0
- package/pods/Headers/include/cppgc/type-traits.h +240 -0
- package/pods/Headers/include/cppgc/visitor.h +379 -0
- package/pods/Headers/include/js_protocol-1.2.json +936 -0
- package/pods/Headers/include/js_protocol-1.3.json +1112 -0
- package/pods/Headers/include/js_protocol.pdl +1709 -0
- package/pods/Headers/include/libffi/arm64/ffi.h +524 -0
- package/pods/Headers/include/libffi/arm64/ffitarget.h +92 -0
- package/pods/Headers/include/libffi/x86_64/ffi.h +524 -0
- package/pods/Headers/include/libffi/x86_64/ffitarget.h +147 -0
- package/pods/Headers/include/libffi.h +12 -0
- package/pods/Headers/include/libplatform/DEPS +9 -0
- package/pods/Headers/include/libplatform/libplatform-export.h +29 -0
- package/pods/Headers/include/libplatform/libplatform.h +106 -0
- package/pods/Headers/include/libplatform/v8-tracing.h +333 -0
- package/pods/Headers/include/v8-array-buffer.h +433 -0
- package/pods/Headers/include/v8-callbacks.h +397 -0
- package/pods/Headers/include/v8-container.h +129 -0
- package/pods/Headers/include/v8-context.h +407 -0
- package/pods/Headers/include/v8-cppgc.h +215 -0
- package/pods/Headers/include/v8-data.h +80 -0
- package/pods/Headers/include/v8-date.h +43 -0
- package/pods/Headers/include/v8-debug.h +168 -0
- package/pods/Headers/include/v8-embedder-heap.h +218 -0
- package/pods/Headers/include/v8-embedder-state-scope.h +51 -0
- package/pods/Headers/include/v8-exception.h +217 -0
- package/pods/Headers/include/v8-extension.h +62 -0
- package/pods/Headers/include/v8-external.h +37 -0
- package/pods/Headers/include/v8-fast-api-calls.h +939 -0
- package/pods/Headers/include/v8-forward.h +81 -0
- package/pods/Headers/include/v8-function-callback.h +475 -0
- package/pods/Headers/include/v8-function.h +125 -0
- package/pods/Headers/include/v8-initialization.h +315 -0
- package/pods/Headers/include/v8-inspector-protocol.h +13 -0
- package/pods/Headers/include/v8-inspector.h +376 -0
- package/pods/Headers/include/v8-internal.h +661 -0
- package/pods/Headers/include/v8-isolate.h +1709 -0
- package/pods/Headers/include/v8-json.h +47 -0
- package/pods/Headers/include/v8-local-handle.h +455 -0
- package/pods/Headers/include/v8-locker.h +149 -0
- package/pods/Headers/include/v8-maybe.h +137 -0
- package/pods/Headers/include/v8-memory-span.h +43 -0
- package/pods/Headers/include/v8-message.h +216 -0
- package/pods/Headers/include/v8-metrics.h +255 -0
- package/pods/Headers/include/v8-microtask-queue.h +152 -0
- package/pods/Headers/include/v8-microtask.h +28 -0
- package/pods/Headers/include/v8-object.h +775 -0
- package/pods/Headers/include/v8-persistent-handle.h +590 -0
- package/pods/Headers/include/v8-platform.h +1092 -0
- package/pods/Headers/include/v8-primitive-object.h +118 -0
- package/pods/Headers/include/v8-primitive.h +866 -0
- package/pods/Headers/include/v8-profiler.h +1198 -0
- package/pods/Headers/include/v8-promise.h +174 -0
- package/pods/Headers/include/v8-proxy.h +50 -0
- package/pods/Headers/include/v8-regexp.h +105 -0
- package/pods/Headers/include/v8-script.h +748 -0
- package/pods/Headers/include/v8-snapshot.h +196 -0
- package/pods/Headers/include/v8-statistics.h +217 -0
- package/pods/Headers/include/v8-template.h +1079 -0
- package/pods/Headers/include/v8-traced-handle.h +420 -0
- package/pods/Headers/include/v8-typed-array.h +282 -0
- package/pods/Headers/include/v8-unwinder-state.h +31 -0
- package/pods/Headers/include/v8-unwinder.h +132 -0
- package/pods/Headers/include/v8-util.h +658 -0
- package/pods/Headers/include/v8-value-serializer-version.h +24 -0
- package/pods/Headers/include/v8-value-serializer.h +279 -0
- package/pods/Headers/include/v8-value.h +526 -0
- package/pods/Headers/include/v8-version-string.h +38 -0
- package/pods/Headers/include/v8-version.h +20 -0
- package/pods/Headers/include/v8-wasm-trap-handler-posix.h +31 -0
- package/pods/Headers/include/v8-wasm-trap-handler-win.h +28 -0
- package/pods/Headers/include/v8-wasm.h +257 -0
- package/pods/Headers/include/v8-weak-callback-info.h +86 -0
- package/pods/Headers/include/v8.h +88 -0
- package/pods/Headers/include/v8config.h +605 -0
- package/pods/Headers/inspector/InspectorServer.h +20 -0
- package/pods/Headers/inspector/JsV8InspectorClient.h +66 -0
- package/pods/Headers/inspector/base/trace_event/common/trace_event_common.h +1123 -0
- package/pods/Headers/inspector/base64.h +9 -0
- package/pods/Headers/inspector/src/base/address-region.h +95 -0
- package/pods/Headers/inspector/src/base/atomic-utils.h +219 -0
- package/pods/Headers/inspector/src/base/atomicops.h +332 -0
- package/pods/Headers/inspector/src/base/atomicops_internals_atomicword_compat.h +89 -0
- package/pods/Headers/inspector/src/base/base-export.h +31 -0
- package/pods/Headers/inspector/src/base/bits.h +343 -0
- package/pods/Headers/inspector/src/base/build_config.h +234 -0
- package/pods/Headers/inspector/src/base/compiler-specific.h +136 -0
- package/pods/Headers/inspector/src/base/export-template.h +163 -0
- package/pods/Headers/inspector/src/base/flags.h +130 -0
- package/pods/Headers/inspector/src/base/immediate-crash.h +162 -0
- package/pods/Headers/inspector/src/base/lazy-instance.h +258 -0
- package/pods/Headers/inspector/src/base/logging.h +417 -0
- package/pods/Headers/inspector/src/base/macros.h +423 -0
- package/pods/Headers/inspector/src/base/memory.h +89 -0
- package/pods/Headers/inspector/src/base/once.h +108 -0
- package/pods/Headers/inspector/src/base/optional.h +882 -0
- package/pods/Headers/inspector/src/base/platform/mutex.h +370 -0
- package/pods/Headers/inspector/src/base/platform/platform.h +476 -0
- package/pods/Headers/inspector/src/base/platform/semaphore.h +108 -0
- package/pods/Headers/inspector/src/base/platform/v8-time.h +513 -0
- package/pods/Headers/inspector/src/base/platform/wrappers.h +73 -0
- package/pods/Headers/inspector/src/base/safe_conversions.h +389 -0
- package/pods/Headers/inspector/src/base/safe_conversions_impl.h +822 -0
- package/pods/Headers/inspector/src/base/template-utils.h +113 -0
- package/pods/Headers/inspector/src/base/v8-fallthrough.h +21 -0
- package/pods/Headers/inspector/src/common/checks.h +38 -0
- package/pods/Headers/inspector/src/common/globals.h +1842 -0
- package/pods/Headers/inspector/src/debug/debug-interface.h +667 -0
- package/pods/Headers/inspector/src/debug/interface-types.h +175 -0
- package/pods/Headers/inspector/src/init/v8.h +52 -0
- package/pods/Headers/inspector/src/inspector/custom-preview.h +24 -0
- package/pods/Headers/inspector/src/inspector/injected-script.h +251 -0
- package/pods/Headers/inspector/src/inspector/inspected-context.h +79 -0
- package/pods/Headers/inspector/src/inspector/protocol/CSS.h +2148 -0
- package/pods/Headers/inspector/src/inspector/protocol/Console.h +211 -0
- package/pods/Headers/inspector/src/inspector/protocol/DOM.h +1008 -0
- package/pods/Headers/inspector/src/inspector/protocol/Debugger.h +892 -0
- package/pods/Headers/inspector/src/inspector/protocol/Forward.h +75 -0
- package/pods/Headers/inspector/src/inspector/protocol/HeapProfiler.h +346 -0
- package/pods/Headers/inspector/src/inspector/protocol/Log.h +342 -0
- package/pods/Headers/inspector/src/inspector/protocol/Network.h +2528 -0
- package/pods/Headers/inspector/src/inspector/protocol/Overlay.h +281 -0
- package/pods/Headers/inspector/src/inspector/protocol/Page.h +1189 -0
- package/pods/Headers/inspector/src/inspector/protocol/Profiler.h +1001 -0
- package/pods/Headers/inspector/src/inspector/protocol/Protocol.h +617 -0
- package/pods/Headers/inspector/src/inspector/protocol/Runtime.h +1696 -0
- package/pods/Headers/inspector/src/inspector/protocol/Schema.h +146 -0
- package/pods/Headers/inspector/src/inspector/protocol/Security.h +793 -0
- package/pods/Headers/inspector/src/inspector/remote-object-id.h +54 -0
- package/pods/Headers/inspector/src/inspector/search-util.h +26 -0
- package/pods/Headers/inspector/src/inspector/string-16.h +180 -0
- package/pods/Headers/inspector/src/inspector/string-util.h +128 -0
- package/pods/Headers/inspector/src/inspector/v8-console-agent-impl.h +48 -0
- package/pods/Headers/inspector/src/inspector/v8-console-message.h +147 -0
- package/pods/Headers/inspector/src/inspector/v8-console.h +173 -0
- package/pods/Headers/inspector/src/inspector/v8-css-agent-impl.h +62 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-agent-impl.h +248 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-id.h +44 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger-script.h +123 -0
- package/pods/Headers/inspector/src/inspector/v8-debugger.h +257 -0
- package/pods/Headers/inspector/src/inspector/v8-dom-agent-impl.h +91 -0
- package/pods/Headers/inspector/src/inspector/v8-heap-profiler-agent-impl.h +80 -0
- package/pods/Headers/inspector/src/inspector/v8-inspector-impl.h +191 -0
- package/pods/Headers/inspector/src/inspector/v8-inspector-session-impl.h +156 -0
- package/pods/Headers/inspector/src/inspector/v8-log-agent-impl.h +34 -0
- package/pods/Headers/inspector/src/inspector/v8-network-agent-impl.h +71 -0
- package/pods/Headers/inspector/src/inspector/v8-ns-debugger-agent-impl.h +24 -0
- package/pods/Headers/inspector/src/inspector/v8-overlay-agent-impl.h +70 -0
- package/pods/Headers/inspector/src/inspector/v8-page-agent-impl.h +88 -0
- package/pods/Headers/inspector/src/inspector/v8-profiler-agent-impl.h +104 -0
- package/pods/Headers/inspector/src/inspector/v8-regex.h +38 -0
- package/pods/Headers/inspector/src/inspector/v8-runtime-agent-impl.h +157 -0
- package/pods/Headers/inspector/src/inspector/v8-schema-agent-impl.h +38 -0
- package/pods/Headers/inspector/src/inspector/v8-stack-trace-impl.h +164 -0
- package/pods/Headers/inspector/src/inspector/v8-string-conversions.h +17 -0
- package/pods/Headers/inspector/src/inspector/v8-value-utils.h +23 -0
- package/pods/Headers/inspector/src/inspector/value-mirror.h +87 -0
- package/pods/Headers/inspector/src/libplatform/default-platform.h +92 -0
- package/pods/Headers/inspector/src/logging/tracing-flags.h +50 -0
- package/pods/Headers/inspector/src/numbers/conversions.h +183 -0
- package/pods/Headers/inspector/src/tracing/trace-event.h +664 -0
- package/pods/Headers/inspector/src/utils/allocation.h +367 -0
- package/pods/Headers/inspector/src/utils/vector.h +324 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/cbor.h +305 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/dispatch.h +314 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/error_support.h +62 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/export.h +6 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/find_by_first.h +58 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/frontend_channel.h +47 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/glue.h +80 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json.h +52 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/json_platform.h +26 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/maybe.h +104 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/parser_handler.h +39 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/protocol_core.h +406 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializable.h +32 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/serializer_traits.h +158 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/span.h +99 -0
- package/pods/Headers/inspector/third_party/inspector_protocol/crdtp/status.h +139 -0
- package/pods/Headers/inspector/utils.h +32 -0
- package/pods/Headers/inspector/v8-inspector-platform.h +44 -0
- package/pods/Headers/jsi/decorator.h +762 -0
- package/pods/Headers/jsi/instrumentation.h +117 -0
- package/pods/Headers/jsi/jsi-inl.h +322 -0
- package/pods/Headers/jsi/jsi.h +1387 -0
- package/pods/Headers/jsi/jsilib.h +59 -0
- package/pods/Headers/jsi/threadsafe.h +79 -0
- package/pods/Headers/runtime/ArgConverter.h +61 -0
- package/pods/Headers/runtime/ArrayAdapter.h +13 -0
- package/pods/Headers/runtime/Caches.h +98 -0
- package/pods/Headers/runtime/ClassBuilder.h +61 -0
- package/pods/Headers/runtime/Common.h +9 -0
- package/pods/Headers/runtime/ConcurrentMap.h +55 -0
- package/pods/Headers/runtime/ConcurrentQueue.h +28 -0
- package/pods/Headers/runtime/Console.h +27 -0
- package/pods/Headers/runtime/Constants.h +15 -0
- package/pods/Headers/runtime/DataWrapper.h +671 -0
- package/pods/Headers/runtime/DictionaryAdapter.h +13 -0
- package/pods/Headers/runtime/ExtVector.h +21 -0
- package/pods/Headers/runtime/FFICall.h +105 -0
- package/pods/Headers/runtime/FastEnumerationAdapter.h +13 -0
- package/pods/Headers/runtime/FunctionReference.h +18 -0
- package/pods/Headers/runtime/Helpers.h +84 -0
- package/pods/Headers/runtime/InlineFunctions.h +16 -0
- package/pods/Headers/runtime/Interop.h +202 -0
- package/pods/Headers/runtime/KnownUnknownClassPair.h +35 -0
- package/pods/Headers/runtime/Metadata.h +981 -0
- package/pods/Headers/runtime/MetadataBuilder.h +72 -0
- package/pods/Headers/runtime/MetadataInlines.h +157 -0
- package/pods/Headers/runtime/ModuleInternal.h +59 -0
- package/pods/Headers/runtime/NSDataAdapter.h +13 -0
- package/pods/Headers/runtime/NativeScriptException.h +27 -0
- package/pods/Headers/runtime/ObjectManager.h +31 -0
- package/pods/Headers/runtime/OneByteStringResource.h +21 -0
- package/pods/Headers/runtime/Pointer.h +26 -0
- package/pods/Headers/runtime/PromiseProxy.h +15 -0
- package/pods/Headers/runtime/Reference.h +38 -0
- package/pods/Headers/runtime/Runtime.h +67 -0
- package/pods/Headers/runtime/RuntimeConfig.h +17 -0
- package/pods/Headers/runtime/SetTimeout.h +34 -0
- package/pods/Headers/runtime/SimpleAllocator.h +23 -0
- package/pods/Headers/runtime/StringHasher.h +315 -0
- package/pods/Headers/runtime/SymbolIterator.h +18 -0
- package/pods/Headers/runtime/SymbolLoader.h +27 -0
- package/pods/Headers/runtime/TNSDerivedClass.h +8 -0
- package/pods/Headers/runtime/TSHelpers.h +15 -0
- package/pods/Headers/runtime/Tasks.h +19 -0
- package/pods/Headers/runtime/UnmanagedType.h +21 -0
- package/pods/Headers/runtime/WeakRef.h +15 -0
- package/pods/Headers/runtime/Worker.h +26 -0
- package/pods/Headers/runtime/robin_hood.h +2184 -0
- package/pods/Headers/v8runtime/HostProxy.h +71 -0
- package/pods/Headers/v8runtime/JSIV8ValueConverter.h +70 -0
- package/pods/Headers/v8runtime/V8PointerValue.h +44 -0
- package/pods/Headers/v8runtime/V8Runtime.h +215 -0
- package/pods/Headers/v8runtime/V8RuntimeConfig.h +26 -0
- package/pods/Headers/v8runtime/V8RuntimeFactory.h +21 -0
- package/pods/NativeScript.podspec +68 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/PrivateHeaders/mason_native.h +0 -676
- package/platforms/ios/src/JSIModule.h +0 -217
- package/platforms/ios/src/JSIModule.mm +0 -2788
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// swift-interface-format-version: 1.0
|
|
2
|
-
// swift-compiler-version: Apple Swift version 5.
|
|
2
|
+
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
|
|
3
3
|
// swift-module-flags: -target arm64-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mason
|
|
4
4
|
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
|
5
5
|
import Foundation
|
|
@@ -35,8 +35,8 @@ public struct Line<T> {
|
|
|
35
35
|
@objc public var jsonValue: Swift.String? {
|
|
36
36
|
@objc get
|
|
37
37
|
}
|
|
38
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
39
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
38
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
39
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
40
40
|
@objc deinit
|
|
41
41
|
}
|
|
42
42
|
@_inheritsConvenienceInitializers @objc(TSCMason) @objcMembers public class TSCMason : ObjectiveC.NSObject {
|
|
@@ -62,7 +62,7 @@ public struct Line<T> {
|
|
|
62
62
|
@objc public static func Percent(_ percent: Swift.Float) -> Mason.MaxSizing
|
|
63
63
|
@objc public static func FitContent(_ fit: Swift.Float) -> Mason.MaxSizing
|
|
64
64
|
@objc public static func FitContentPercent(_ fit: Swift.Float) -> Mason.MaxSizing
|
|
65
|
-
@objc public static func
|
|
65
|
+
@objc public static func Fraction(_ flex: Swift.Float) -> Mason.MaxSizing
|
|
66
66
|
@objc public static let Auto: Mason.MaxSizing
|
|
67
67
|
@objc public static let MinContent: Mason.MaxSizing
|
|
68
68
|
@objc public static let MaxContent: Mason.MaxSizing
|
|
@@ -72,8 +72,8 @@ public struct Line<T> {
|
|
|
72
72
|
@objc public var jsonValue: Swift.String? {
|
|
73
73
|
@objc get
|
|
74
74
|
}
|
|
75
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
76
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
75
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
76
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
77
77
|
@objc deinit
|
|
78
78
|
}
|
|
79
79
|
@_hasMissingDesignatedInitializers @objcMembers @objc(MasonDimensionSizeCompat) public class MasonDimensionSizeCompat : ObjectiveC.NSObject {
|
|
@@ -179,8 +179,8 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
179
179
|
@objc public var jsonValue: Swift.String? {
|
|
180
180
|
@objc get
|
|
181
181
|
}
|
|
182
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
183
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
182
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
183
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
184
184
|
@objc deinit
|
|
185
185
|
}
|
|
186
186
|
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(MasonLayout) @objcMembers public class MasonLayout : ObjectiveC.NSObject, Swift.Codable {
|
|
@@ -194,8 +194,8 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
194
194
|
@objc get
|
|
195
195
|
}
|
|
196
196
|
@objc deinit
|
|
197
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
198
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
197
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
198
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
199
199
|
}
|
|
200
200
|
@_inheritsConvenienceInitializers @objcMembers @objc(MasonReexports) public class MasonReexports : ObjectiveC.NSObject {
|
|
201
201
|
@objc public static func node_set_style(_ mason: Swift.UnsafeMutableRawPointer, _ node: Swift.UnsafeMutableRawPointer, _ style: Swift.UnsafeMutableRawPointer)
|
|
@@ -215,8 +215,11 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
215
215
|
@objc public static func style_set_flex_direction(_ style: Swift.UnsafeMutableRawPointer, _ flex_direction: Swift.Int32)
|
|
216
216
|
@objc public static func style_get_flex_wrap(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
217
217
|
@objc public static func style_set_flex_wrap(_ style: Swift.UnsafeMutableRawPointer, _ flex_wrap: Swift.Int32)
|
|
218
|
-
@objc public static func style_get_overflow(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
219
218
|
@objc public static func style_set_overflow(_ style: Swift.UnsafeMutableRawPointer, _ overflow: Swift.Int32)
|
|
219
|
+
@objc public static func style_set_overflow_x(_ style: Swift.UnsafeMutableRawPointer, _ overflow: Swift.Int32)
|
|
220
|
+
@objc public static func style_set_overflow_y(_ style: Swift.UnsafeMutableRawPointer, _ overflow: Swift.Int32)
|
|
221
|
+
@objc public static func style_get_overflow_x(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
222
|
+
@objc public static func style_get_overflow_y(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
220
223
|
@objc public static func style_get_align_items(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
221
224
|
@objc public static func style_set_align_items(_ style: Swift.UnsafeMutableRawPointer, _ align_items: Swift.Int32)
|
|
222
225
|
@objc public static func style_get_align_self(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
@@ -272,6 +275,8 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
272
275
|
@objc public static func style_set_flex_shrink(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float)
|
|
273
276
|
@objc public static func style_set_flex_basis(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float, _ value_type: Mason.CMasonDimensionType)
|
|
274
277
|
@objc public static func style_get_flex_basis(_ style: Swift.UnsafeMutableRawPointer) -> Mason.CMasonDimension
|
|
278
|
+
@objc public static func style_set_scrollbar_width(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float)
|
|
279
|
+
@objc public static func style_get_scrollbar_width(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Float
|
|
275
280
|
@objc public static func style_get_width(_ style: Swift.UnsafeMutableRawPointer) -> Mason.CMasonDimension
|
|
276
281
|
@objc public static func style_set_width(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float, _ value_type: Mason.CMasonDimensionType)
|
|
277
282
|
@objc public static func style_get_height(_ style: Swift.UnsafeMutableRawPointer) -> Mason.CMasonDimension
|
|
@@ -318,7 +323,7 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
318
323
|
@objc public static func util_parse_non_repeated_track_sizing_function(_ value: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>) -> Swift.String
|
|
319
324
|
@objc public static func util_parse_auto_repeating_track_sizing_function(_ value: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>) -> Swift.String
|
|
320
325
|
@objc public static func util_create_non_repeated_track_sizing_function_with_type_value(_ track_type: Swift.Int32, _ track_value: Swift.Float) -> Mason.CMasonMinMax
|
|
321
|
-
@objc public static func style_update_with_values(_ style: Swift.UnsafeMutableRawPointer, _ display: Swift.Int32, _ position: Swift.Int32, _ direction: Swift.Int32, _ flexDirection: Swift.Int32, _ flexWrap: Swift.Int32, _ overflow: Swift.Int32, _ alignItems: Swift.Int32, _ alignSelf: Swift.Int32, _ alignContent: Swift.Int32, _ justifyItems: Swift.Int32, _ justifySelf: Swift.Int32, _ justifyContent: Swift.Int32, _ insetLeftType: Swift.Int32, _ insetLeftValue: Swift.Float, _ insetRightType: Swift.Int32, _ insetRightValue: Swift.Float, _ insetTopType: Swift.Int32, _ insetTopValue: Swift.Float, _ insetBottomType: Swift.Int32, _ insetBottomValue: Swift.Float, _ marginLeftType: Swift.Int32, _ marginLeftValue: Swift.Float, _ marginRightType: Swift.Int32, _ marginRightValue: Swift.Float, _ marginTopType: Swift.Int32, _ marginTopValue: Swift.Float, _ marginBottomType: Swift.Int32, _ marginBottomValue: Swift.Float, _ paddingLeftType: Swift.Int32, _ paddingLeftValue: Swift.Float, _ paddingRightType: Swift.Int32, _ paddingRightValue: Swift.Float, _ paddingTopType: Swift.Int32, _ paddingTopValue: Swift.Float, _ paddingBottomType: Swift.Int32, _ paddingBottomValue: Swift.Float, _ borderLeftType: Swift.Int32, _ borderLeftValue: Swift.Float, _ borderRightType: Swift.Int32, _ borderRightValue: Swift.Float, _ borderTopType: Swift.Int32, _ borderTopValue: Swift.Float, _ borderBottomType: Swift.Int32, _ borderBottomValue: Swift.Float, _ flexGrow: Swift.Float, _ flexShrink: Swift.Float, _ flexBasisType: Swift.Int32, _ flexBasisValue: Swift.Float, _ widthType: Swift.Int32, _ widthValue: Swift.Float, _ heightType: Swift.Int32, _ heightValue: Swift.Float, _ minWidthType: Swift.Int32, _ minWidthValue: Swift.Float, _ minHeightType: Swift.Int32, _ minHeightValue: Swift.Float, _ maxWidthType: Swift.Int32, _ maxWidthValue: Swift.Float, _ maxHeightType: Swift.Int32, _ maxHeightValue: Swift.Float, _ gapRowType: Swift.Int32, _ gapRowValue: Swift.Float, _ gapColumnType: Swift.Int32, _ gapColumnValue: Swift.Float, _ aspectRatio: Swift.Float, _ gridAutoRows: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoColumns: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoFlow: Swift.Int32, _ gridColumnStartType: Swift.Int32, _ gridColumnStartValue: Swift.Int16, _ gridColumnEndType: Swift.Int32, _ gridColumnEndValue: Swift.Int16, _ gridRowStartType: Swift.Int32, _ gridRowStartValue: Swift.Int16, _ gridRowEndType: Swift.Int32, _ gridRowEndValue: Swift.Int16, _ gridTemplateRows: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>, gridTemplateColumns: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray
|
|
326
|
+
@objc public static func style_update_with_values(_ style: Swift.UnsafeMutableRawPointer, _ display: Swift.Int32, _ position: Swift.Int32, _ direction: Swift.Int32, _ flexDirection: Swift.Int32, _ flexWrap: Swift.Int32, _ overflow: Swift.Int32, _ alignItems: Swift.Int32, _ alignSelf: Swift.Int32, _ alignContent: Swift.Int32, _ justifyItems: Swift.Int32, _ justifySelf: Swift.Int32, _ justifyContent: Swift.Int32, _ insetLeftType: Swift.Int32, _ insetLeftValue: Swift.Float, _ insetRightType: Swift.Int32, _ insetRightValue: Swift.Float, _ insetTopType: Swift.Int32, _ insetTopValue: Swift.Float, _ insetBottomType: Swift.Int32, _ insetBottomValue: Swift.Float, _ marginLeftType: Swift.Int32, _ marginLeftValue: Swift.Float, _ marginRightType: Swift.Int32, _ marginRightValue: Swift.Float, _ marginTopType: Swift.Int32, _ marginTopValue: Swift.Float, _ marginBottomType: Swift.Int32, _ marginBottomValue: Swift.Float, _ paddingLeftType: Swift.Int32, _ paddingLeftValue: Swift.Float, _ paddingRightType: Swift.Int32, _ paddingRightValue: Swift.Float, _ paddingTopType: Swift.Int32, _ paddingTopValue: Swift.Float, _ paddingBottomType: Swift.Int32, _ paddingBottomValue: Swift.Float, _ borderLeftType: Swift.Int32, _ borderLeftValue: Swift.Float, _ borderRightType: Swift.Int32, _ borderRightValue: Swift.Float, _ borderTopType: Swift.Int32, _ borderTopValue: Swift.Float, _ borderBottomType: Swift.Int32, _ borderBottomValue: Swift.Float, _ flexGrow: Swift.Float, _ flexShrink: Swift.Float, _ flexBasisType: Swift.Int32, _ flexBasisValue: Swift.Float, _ widthType: Swift.Int32, _ widthValue: Swift.Float, _ heightType: Swift.Int32, _ heightValue: Swift.Float, _ minWidthType: Swift.Int32, _ minWidthValue: Swift.Float, _ minHeightType: Swift.Int32, _ minHeightValue: Swift.Float, _ maxWidthType: Swift.Int32, _ maxWidthValue: Swift.Float, _ maxHeightType: Swift.Int32, _ maxHeightValue: Swift.Float, _ gapRowType: Swift.Int32, _ gapRowValue: Swift.Float, _ gapColumnType: Swift.Int32, _ gapColumnValue: Swift.Float, _ aspectRatio: Swift.Float, _ gridAutoRows: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoColumns: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoFlow: Swift.Int32, _ gridColumnStartType: Swift.Int32, _ gridColumnStartValue: Swift.Int16, _ gridColumnEndType: Swift.Int32, _ gridColumnEndValue: Swift.Int16, _ gridRowStartType: Swift.Int32, _ gridRowStartValue: Swift.Int16, _ gridRowEndType: Swift.Int32, _ gridRowEndValue: Swift.Int16, _ gridTemplateRows: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>, _ gridTemplateColumns: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>, _ overflowX: Swift.Int32, _ overflowY: Swift.Int32, scrollBarWidth: Swift.Float)
|
|
322
327
|
@objc override dynamic public init()
|
|
323
328
|
@objc deinit
|
|
324
329
|
}
|
|
@@ -476,6 +481,14 @@ public let MasonLengthPercentageRectZero: Mason.MasonRect<Mason.MasonLengthPerce
|
|
|
476
481
|
@objc get
|
|
477
482
|
@objc set
|
|
478
483
|
}
|
|
484
|
+
@objc public var overflowX: Mason.Overflow {
|
|
485
|
+
@objc get
|
|
486
|
+
@objc set
|
|
487
|
+
}
|
|
488
|
+
@objc public var overflowY: Mason.Overflow {
|
|
489
|
+
@objc get
|
|
490
|
+
@objc set
|
|
491
|
+
}
|
|
479
492
|
@objc public var alignItems: Mason.AlignItems {
|
|
480
493
|
@objc get
|
|
481
494
|
@objc set
|
|
@@ -581,6 +594,11 @@ public let MasonLengthPercentageRectZero: Mason.MasonRect<Mason.MasonLengthPerce
|
|
|
581
594
|
set
|
|
582
595
|
}
|
|
583
596
|
@objc public func setFlexBasis(_ value: Swift.Float, _ type: Swift.Int)
|
|
597
|
+
public var scrollBarWidth: Mason.MasonDimension {
|
|
598
|
+
get
|
|
599
|
+
set
|
|
600
|
+
}
|
|
601
|
+
@objc public func setScrollBarWidth(_ value: Swift.Float)
|
|
584
602
|
public var minSize: Mason.MasonSize<Mason.MasonDimension> {
|
|
585
603
|
get
|
|
586
604
|
set
|
|
@@ -752,8 +770,8 @@ public enum MasonDimension : Swift.Codable {
|
|
|
752
770
|
public var jsonValue: Swift.String? {
|
|
753
771
|
get
|
|
754
772
|
}
|
|
755
|
-
public init(from decoder: Swift.Decoder) throws
|
|
756
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
773
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
774
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
757
775
|
}
|
|
758
776
|
public func MasonLengthPercentageFromPoints(value: Swift.Float) -> Mason.MasonLengthPercentage
|
|
759
777
|
public func MasonLengthPercentageFromPercent(value: Swift.Float) -> Mason.MasonLengthPercentage
|
|
@@ -767,8 +785,8 @@ public enum MasonLengthPercentage : Swift.Codable {
|
|
|
767
785
|
public var jsonValue: Swift.String? {
|
|
768
786
|
get
|
|
769
787
|
}
|
|
770
|
-
public init(from decoder: Swift.Decoder) throws
|
|
771
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
788
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
789
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
772
790
|
}
|
|
773
791
|
public func MasonLengthPercentageAutoFromPoints(value: Swift.Float) -> Mason.MasonLengthPercentageAuto
|
|
774
792
|
public func MasonLengthPercentageAutoFromPercent(value: Swift.Float) -> Mason.MasonLengthPercentageAuto
|
|
@@ -784,8 +802,8 @@ public enum MasonLengthPercentageAuto : Swift.Codable {
|
|
|
784
802
|
public var jsonValue: Swift.String? {
|
|
785
803
|
get
|
|
786
804
|
}
|
|
787
|
-
public init(from decoder: Swift.Decoder) throws
|
|
788
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
805
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
806
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
789
807
|
}
|
|
790
808
|
@objc(AlignItems) public enum AlignItems : Swift.Int, Swift.RawRepresentable {
|
|
791
809
|
case Normal = -1
|
|
@@ -848,6 +866,7 @@ public enum MasonLengthPercentageAuto : Swift.Codable {
|
|
|
848
866
|
case None
|
|
849
867
|
case Flex
|
|
850
868
|
case Grid
|
|
869
|
+
case Block
|
|
851
870
|
public typealias RawValue = Swift.Int32
|
|
852
871
|
public var rawValue: Mason.Display.RawValue {
|
|
853
872
|
get
|
|
@@ -913,6 +932,7 @@ public enum MasonLengthPercentageAuto : Swift.Codable {
|
|
|
913
932
|
public init?(rawValue: Mason.JustifyContent.RawValue)
|
|
914
933
|
}
|
|
915
934
|
@objc(Overflow) public enum Overflow : Swift.Int, Swift.RawRepresentable {
|
|
935
|
+
case Unset
|
|
916
936
|
case Visible
|
|
917
937
|
case Hidden
|
|
918
938
|
case Scroll
|
|
@@ -959,8 +979,8 @@ public enum GridPlacement : Swift.Codable {
|
|
|
959
979
|
public var jsonValue: Swift.String? {
|
|
960
980
|
get
|
|
961
981
|
}
|
|
962
|
-
public init(from decoder: Swift.Decoder) throws
|
|
963
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
982
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
983
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
964
984
|
}
|
|
965
985
|
@objc(GridPlacementCompatType) public enum GridPlacementCompatType : Swift.Int, Swift.RawRepresentable {
|
|
966
986
|
case Auto
|
|
@@ -990,6 +1010,7 @@ extension UIKit.UIView {
|
|
|
990
1010
|
}
|
|
991
1011
|
@objc @_Concurrency.MainActor(unsafe) public static func createGridView() -> UIKit.UIView
|
|
992
1012
|
@objc @_Concurrency.MainActor(unsafe) public static func createFlexView() -> UIKit.UIView
|
|
1013
|
+
@objc @_Concurrency.MainActor(unsafe) public static func createBlockView() -> UIKit.UIView
|
|
993
1014
|
@objc @_Concurrency.MainActor(unsafe) dynamic public var mason: Mason.MasonNode {
|
|
994
1015
|
@objc get
|
|
995
1016
|
}
|
|
@@ -1020,7 +1041,7 @@ extension UIKit.UIView {
|
|
|
1020
1041
|
@objc get
|
|
1021
1042
|
@objc set(value)
|
|
1022
1043
|
}
|
|
1023
|
-
@objc @_Concurrency.MainActor(unsafe) dynamic public var
|
|
1044
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var _position: Mason.Position {
|
|
1024
1045
|
@objc get
|
|
1025
1046
|
@objc set(value)
|
|
1026
1047
|
}
|
|
@@ -1040,6 +1061,14 @@ extension UIKit.UIView {
|
|
|
1040
1061
|
@objc get
|
|
1041
1062
|
@objc set(value)
|
|
1042
1063
|
}
|
|
1064
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var overflowX: Mason.Overflow {
|
|
1065
|
+
@objc get
|
|
1066
|
+
@objc set(value)
|
|
1067
|
+
}
|
|
1068
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var overflowY: Mason.Overflow {
|
|
1069
|
+
@objc get
|
|
1070
|
+
@objc set(value)
|
|
1071
|
+
}
|
|
1043
1072
|
@objc @_Concurrency.MainActor(unsafe) dynamic public var alignItems: Mason.AlignItems {
|
|
1044
1073
|
@objc get
|
|
1045
1074
|
@objc set(value)
|
|
@@ -1072,6 +1101,14 @@ extension UIKit.UIView {
|
|
|
1072
1101
|
@objc get
|
|
1073
1102
|
@objc set(value)
|
|
1074
1103
|
}
|
|
1104
|
+
@_Concurrency.MainActor(unsafe) public var scrollBarWidth: Mason.MasonDimension {
|
|
1105
|
+
get
|
|
1106
|
+
set(value)
|
|
1107
|
+
}
|
|
1108
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var scrollBarWidthCompat: Mason.MasonDimensionCompat {
|
|
1109
|
+
@objc get
|
|
1110
|
+
@objc set(value)
|
|
1111
|
+
}
|
|
1075
1112
|
@_Concurrency.MainActor(unsafe) public var flexBasis: Mason.MasonDimension {
|
|
1076
1113
|
get
|
|
1077
1114
|
set(value)
|
|
Binary file
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// swift-interface-format-version: 1.0
|
|
2
|
-
// swift-compiler-version: Apple Swift version 5.
|
|
2
|
+
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
|
|
3
3
|
// swift-module-flags: -target arm64-apple-ios9.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name Mason
|
|
4
4
|
// swift-module-flags-ignorable: -enable-bare-slash-regex
|
|
5
5
|
import Foundation
|
|
@@ -35,8 +35,8 @@ public struct Line<T> {
|
|
|
35
35
|
@objc public var jsonValue: Swift.String? {
|
|
36
36
|
@objc get
|
|
37
37
|
}
|
|
38
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
39
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
38
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
39
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
40
40
|
@objc deinit
|
|
41
41
|
}
|
|
42
42
|
@_inheritsConvenienceInitializers @objc(TSCMason) @objcMembers public class TSCMason : ObjectiveC.NSObject {
|
|
@@ -62,7 +62,7 @@ public struct Line<T> {
|
|
|
62
62
|
@objc public static func Percent(_ percent: Swift.Float) -> Mason.MaxSizing
|
|
63
63
|
@objc public static func FitContent(_ fit: Swift.Float) -> Mason.MaxSizing
|
|
64
64
|
@objc public static func FitContentPercent(_ fit: Swift.Float) -> Mason.MaxSizing
|
|
65
|
-
@objc public static func
|
|
65
|
+
@objc public static func Fraction(_ flex: Swift.Float) -> Mason.MaxSizing
|
|
66
66
|
@objc public static let Auto: Mason.MaxSizing
|
|
67
67
|
@objc public static let MinContent: Mason.MaxSizing
|
|
68
68
|
@objc public static let MaxContent: Mason.MaxSizing
|
|
@@ -72,8 +72,8 @@ public struct Line<T> {
|
|
|
72
72
|
@objc public var jsonValue: Swift.String? {
|
|
73
73
|
@objc get
|
|
74
74
|
}
|
|
75
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
76
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
75
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
76
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
77
77
|
@objc deinit
|
|
78
78
|
}
|
|
79
79
|
@_hasMissingDesignatedInitializers @objcMembers @objc(MasonDimensionSizeCompat) public class MasonDimensionSizeCompat : ObjectiveC.NSObject {
|
|
@@ -179,8 +179,8 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
179
179
|
@objc public var jsonValue: Swift.String? {
|
|
180
180
|
@objc get
|
|
181
181
|
}
|
|
182
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
183
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
182
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
183
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
184
184
|
@objc deinit
|
|
185
185
|
}
|
|
186
186
|
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(MasonLayout) @objcMembers public class MasonLayout : ObjectiveC.NSObject, Swift.Codable {
|
|
@@ -194,8 +194,8 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
194
194
|
@objc get
|
|
195
195
|
}
|
|
196
196
|
@objc deinit
|
|
197
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
198
|
-
required public init(from decoder: Swift.Decoder) throws
|
|
197
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
198
|
+
required public init(from decoder: any Swift.Decoder) throws
|
|
199
199
|
}
|
|
200
200
|
@_inheritsConvenienceInitializers @objcMembers @objc(MasonReexports) public class MasonReexports : ObjectiveC.NSObject {
|
|
201
201
|
@objc public static func node_set_style(_ mason: Swift.UnsafeMutableRawPointer, _ node: Swift.UnsafeMutableRawPointer, _ style: Swift.UnsafeMutableRawPointer)
|
|
@@ -215,8 +215,11 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
215
215
|
@objc public static func style_set_flex_direction(_ style: Swift.UnsafeMutableRawPointer, _ flex_direction: Swift.Int32)
|
|
216
216
|
@objc public static func style_get_flex_wrap(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
217
217
|
@objc public static func style_set_flex_wrap(_ style: Swift.UnsafeMutableRawPointer, _ flex_wrap: Swift.Int32)
|
|
218
|
-
@objc public static func style_get_overflow(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
219
218
|
@objc public static func style_set_overflow(_ style: Swift.UnsafeMutableRawPointer, _ overflow: Swift.Int32)
|
|
219
|
+
@objc public static func style_set_overflow_x(_ style: Swift.UnsafeMutableRawPointer, _ overflow: Swift.Int32)
|
|
220
|
+
@objc public static func style_set_overflow_y(_ style: Swift.UnsafeMutableRawPointer, _ overflow: Swift.Int32)
|
|
221
|
+
@objc public static func style_get_overflow_x(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
222
|
+
@objc public static func style_get_overflow_y(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
220
223
|
@objc public static func style_get_align_items(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
221
224
|
@objc public static func style_set_align_items(_ style: Swift.UnsafeMutableRawPointer, _ align_items: Swift.Int32)
|
|
222
225
|
@objc public static func style_get_align_self(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Int32
|
|
@@ -272,6 +275,8 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
272
275
|
@objc public static func style_set_flex_shrink(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float)
|
|
273
276
|
@objc public static func style_set_flex_basis(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float, _ value_type: Mason.CMasonDimensionType)
|
|
274
277
|
@objc public static func style_get_flex_basis(_ style: Swift.UnsafeMutableRawPointer) -> Mason.CMasonDimension
|
|
278
|
+
@objc public static func style_set_scrollbar_width(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float)
|
|
279
|
+
@objc public static func style_get_scrollbar_width(_ style: Swift.UnsafeMutableRawPointer) -> Swift.Float
|
|
275
280
|
@objc public static func style_get_width(_ style: Swift.UnsafeMutableRawPointer) -> Mason.CMasonDimension
|
|
276
281
|
@objc public static func style_set_width(_ style: Swift.UnsafeMutableRawPointer, _ value: Swift.Float, _ value_type: Mason.CMasonDimensionType)
|
|
277
282
|
@objc public static func style_get_height(_ style: Swift.UnsafeMutableRawPointer) -> Mason.CMasonDimension
|
|
@@ -318,7 +323,7 @@ public let MasonLengthPercentageSizeZero: Mason.MasonSize<Mason.MasonLengthPerce
|
|
|
318
323
|
@objc public static func util_parse_non_repeated_track_sizing_function(_ value: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>) -> Swift.String
|
|
319
324
|
@objc public static func util_parse_auto_repeating_track_sizing_function(_ value: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>) -> Swift.String
|
|
320
325
|
@objc public static func util_create_non_repeated_track_sizing_function_with_type_value(_ track_type: Swift.Int32, _ track_value: Swift.Float) -> Mason.CMasonMinMax
|
|
321
|
-
@objc public static func style_update_with_values(_ style: Swift.UnsafeMutableRawPointer, _ display: Swift.Int32, _ position: Swift.Int32, _ direction: Swift.Int32, _ flexDirection: Swift.Int32, _ flexWrap: Swift.Int32, _ overflow: Swift.Int32, _ alignItems: Swift.Int32, _ alignSelf: Swift.Int32, _ alignContent: Swift.Int32, _ justifyItems: Swift.Int32, _ justifySelf: Swift.Int32, _ justifyContent: Swift.Int32, _ insetLeftType: Swift.Int32, _ insetLeftValue: Swift.Float, _ insetRightType: Swift.Int32, _ insetRightValue: Swift.Float, _ insetTopType: Swift.Int32, _ insetTopValue: Swift.Float, _ insetBottomType: Swift.Int32, _ insetBottomValue: Swift.Float, _ marginLeftType: Swift.Int32, _ marginLeftValue: Swift.Float, _ marginRightType: Swift.Int32, _ marginRightValue: Swift.Float, _ marginTopType: Swift.Int32, _ marginTopValue: Swift.Float, _ marginBottomType: Swift.Int32, _ marginBottomValue: Swift.Float, _ paddingLeftType: Swift.Int32, _ paddingLeftValue: Swift.Float, _ paddingRightType: Swift.Int32, _ paddingRightValue: Swift.Float, _ paddingTopType: Swift.Int32, _ paddingTopValue: Swift.Float, _ paddingBottomType: Swift.Int32, _ paddingBottomValue: Swift.Float, _ borderLeftType: Swift.Int32, _ borderLeftValue: Swift.Float, _ borderRightType: Swift.Int32, _ borderRightValue: Swift.Float, _ borderTopType: Swift.Int32, _ borderTopValue: Swift.Float, _ borderBottomType: Swift.Int32, _ borderBottomValue: Swift.Float, _ flexGrow: Swift.Float, _ flexShrink: Swift.Float, _ flexBasisType: Swift.Int32, _ flexBasisValue: Swift.Float, _ widthType: Swift.Int32, _ widthValue: Swift.Float, _ heightType: Swift.Int32, _ heightValue: Swift.Float, _ minWidthType: Swift.Int32, _ minWidthValue: Swift.Float, _ minHeightType: Swift.Int32, _ minHeightValue: Swift.Float, _ maxWidthType: Swift.Int32, _ maxWidthValue: Swift.Float, _ maxHeightType: Swift.Int32, _ maxHeightValue: Swift.Float, _ gapRowType: Swift.Int32, _ gapRowValue: Swift.Float, _ gapColumnType: Swift.Int32, _ gapColumnValue: Swift.Float, _ aspectRatio: Swift.Float, _ gridAutoRows: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoColumns: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoFlow: Swift.Int32, _ gridColumnStartType: Swift.Int32, _ gridColumnStartValue: Swift.Int16, _ gridColumnEndType: Swift.Int32, _ gridColumnEndValue: Swift.Int16, _ gridRowStartType: Swift.Int32, _ gridRowStartValue: Swift.Int16, _ gridRowEndType: Swift.Int32, _ gridRowEndValue: Swift.Int16, _ gridTemplateRows: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>, gridTemplateColumns: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray
|
|
326
|
+
@objc public static func style_update_with_values(_ style: Swift.UnsafeMutableRawPointer, _ display: Swift.Int32, _ position: Swift.Int32, _ direction: Swift.Int32, _ flexDirection: Swift.Int32, _ flexWrap: Swift.Int32, _ overflow: Swift.Int32, _ alignItems: Swift.Int32, _ alignSelf: Swift.Int32, _ alignContent: Swift.Int32, _ justifyItems: Swift.Int32, _ justifySelf: Swift.Int32, _ justifyContent: Swift.Int32, _ insetLeftType: Swift.Int32, _ insetLeftValue: Swift.Float, _ insetRightType: Swift.Int32, _ insetRightValue: Swift.Float, _ insetTopType: Swift.Int32, _ insetTopValue: Swift.Float, _ insetBottomType: Swift.Int32, _ insetBottomValue: Swift.Float, _ marginLeftType: Swift.Int32, _ marginLeftValue: Swift.Float, _ marginRightType: Swift.Int32, _ marginRightValue: Swift.Float, _ marginTopType: Swift.Int32, _ marginTopValue: Swift.Float, _ marginBottomType: Swift.Int32, _ marginBottomValue: Swift.Float, _ paddingLeftType: Swift.Int32, _ paddingLeftValue: Swift.Float, _ paddingRightType: Swift.Int32, _ paddingRightValue: Swift.Float, _ paddingTopType: Swift.Int32, _ paddingTopValue: Swift.Float, _ paddingBottomType: Swift.Int32, _ paddingBottomValue: Swift.Float, _ borderLeftType: Swift.Int32, _ borderLeftValue: Swift.Float, _ borderRightType: Swift.Int32, _ borderRightValue: Swift.Float, _ borderTopType: Swift.Int32, _ borderTopValue: Swift.Float, _ borderBottomType: Swift.Int32, _ borderBottomValue: Swift.Float, _ flexGrow: Swift.Float, _ flexShrink: Swift.Float, _ flexBasisType: Swift.Int32, _ flexBasisValue: Swift.Float, _ widthType: Swift.Int32, _ widthValue: Swift.Float, _ heightType: Swift.Int32, _ heightValue: Swift.Float, _ minWidthType: Swift.Int32, _ minWidthValue: Swift.Float, _ minHeightType: Swift.Int32, _ minHeightValue: Swift.Float, _ maxWidthType: Swift.Int32, _ maxWidthValue: Swift.Float, _ maxHeightType: Swift.Int32, _ maxHeightValue: Swift.Float, _ gapRowType: Swift.Int32, _ gapRowValue: Swift.Float, _ gapColumnType: Swift.Int32, _ gapColumnValue: Swift.Float, _ aspectRatio: Swift.Float, _ gridAutoRows: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoColumns: Swift.UnsafeMutablePointer<Mason.CMasonNonRepeatedTrackSizingFunctionArray>, _ gridAutoFlow: Swift.Int32, _ gridColumnStartType: Swift.Int32, _ gridColumnStartValue: Swift.Int16, _ gridColumnEndType: Swift.Int32, _ gridColumnEndValue: Swift.Int16, _ gridRowStartType: Swift.Int32, _ gridRowStartValue: Swift.Int16, _ gridRowEndType: Swift.Int32, _ gridRowEndValue: Swift.Int16, _ gridTemplateRows: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>, _ gridTemplateColumns: Swift.UnsafeMutablePointer<Mason.CMasonTrackSizingFunctionArray>, _ overflowX: Swift.Int32, _ overflowY: Swift.Int32, scrollBarWidth: Swift.Float)
|
|
322
327
|
@objc override dynamic public init()
|
|
323
328
|
@objc deinit
|
|
324
329
|
}
|
|
@@ -476,6 +481,14 @@ public let MasonLengthPercentageRectZero: Mason.MasonRect<Mason.MasonLengthPerce
|
|
|
476
481
|
@objc get
|
|
477
482
|
@objc set
|
|
478
483
|
}
|
|
484
|
+
@objc public var overflowX: Mason.Overflow {
|
|
485
|
+
@objc get
|
|
486
|
+
@objc set
|
|
487
|
+
}
|
|
488
|
+
@objc public var overflowY: Mason.Overflow {
|
|
489
|
+
@objc get
|
|
490
|
+
@objc set
|
|
491
|
+
}
|
|
479
492
|
@objc public var alignItems: Mason.AlignItems {
|
|
480
493
|
@objc get
|
|
481
494
|
@objc set
|
|
@@ -581,6 +594,11 @@ public let MasonLengthPercentageRectZero: Mason.MasonRect<Mason.MasonLengthPerce
|
|
|
581
594
|
set
|
|
582
595
|
}
|
|
583
596
|
@objc public func setFlexBasis(_ value: Swift.Float, _ type: Swift.Int)
|
|
597
|
+
public var scrollBarWidth: Mason.MasonDimension {
|
|
598
|
+
get
|
|
599
|
+
set
|
|
600
|
+
}
|
|
601
|
+
@objc public func setScrollBarWidth(_ value: Swift.Float)
|
|
584
602
|
public var minSize: Mason.MasonSize<Mason.MasonDimension> {
|
|
585
603
|
get
|
|
586
604
|
set
|
|
@@ -752,8 +770,8 @@ public enum MasonDimension : Swift.Codable {
|
|
|
752
770
|
public var jsonValue: Swift.String? {
|
|
753
771
|
get
|
|
754
772
|
}
|
|
755
|
-
public init(from decoder: Swift.Decoder) throws
|
|
756
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
773
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
774
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
757
775
|
}
|
|
758
776
|
public func MasonLengthPercentageFromPoints(value: Swift.Float) -> Mason.MasonLengthPercentage
|
|
759
777
|
public func MasonLengthPercentageFromPercent(value: Swift.Float) -> Mason.MasonLengthPercentage
|
|
@@ -767,8 +785,8 @@ public enum MasonLengthPercentage : Swift.Codable {
|
|
|
767
785
|
public var jsonValue: Swift.String? {
|
|
768
786
|
get
|
|
769
787
|
}
|
|
770
|
-
public init(from decoder: Swift.Decoder) throws
|
|
771
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
788
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
789
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
772
790
|
}
|
|
773
791
|
public func MasonLengthPercentageAutoFromPoints(value: Swift.Float) -> Mason.MasonLengthPercentageAuto
|
|
774
792
|
public func MasonLengthPercentageAutoFromPercent(value: Swift.Float) -> Mason.MasonLengthPercentageAuto
|
|
@@ -784,8 +802,8 @@ public enum MasonLengthPercentageAuto : Swift.Codable {
|
|
|
784
802
|
public var jsonValue: Swift.String? {
|
|
785
803
|
get
|
|
786
804
|
}
|
|
787
|
-
public init(from decoder: Swift.Decoder) throws
|
|
788
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
805
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
806
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
789
807
|
}
|
|
790
808
|
@objc(AlignItems) public enum AlignItems : Swift.Int, Swift.RawRepresentable {
|
|
791
809
|
case Normal = -1
|
|
@@ -848,6 +866,7 @@ public enum MasonLengthPercentageAuto : Swift.Codable {
|
|
|
848
866
|
case None
|
|
849
867
|
case Flex
|
|
850
868
|
case Grid
|
|
869
|
+
case Block
|
|
851
870
|
public typealias RawValue = Swift.Int32
|
|
852
871
|
public var rawValue: Mason.Display.RawValue {
|
|
853
872
|
get
|
|
@@ -913,6 +932,7 @@ public enum MasonLengthPercentageAuto : Swift.Codable {
|
|
|
913
932
|
public init?(rawValue: Mason.JustifyContent.RawValue)
|
|
914
933
|
}
|
|
915
934
|
@objc(Overflow) public enum Overflow : Swift.Int, Swift.RawRepresentable {
|
|
935
|
+
case Unset
|
|
916
936
|
case Visible
|
|
917
937
|
case Hidden
|
|
918
938
|
case Scroll
|
|
@@ -959,8 +979,8 @@ public enum GridPlacement : Swift.Codable {
|
|
|
959
979
|
public var jsonValue: Swift.String? {
|
|
960
980
|
get
|
|
961
981
|
}
|
|
962
|
-
public init(from decoder: Swift.Decoder) throws
|
|
963
|
-
public func encode(to encoder: Swift.Encoder) throws
|
|
982
|
+
public init(from decoder: any Swift.Decoder) throws
|
|
983
|
+
public func encode(to encoder: any Swift.Encoder) throws
|
|
964
984
|
}
|
|
965
985
|
@objc(GridPlacementCompatType) public enum GridPlacementCompatType : Swift.Int, Swift.RawRepresentable {
|
|
966
986
|
case Auto
|
|
@@ -990,6 +1010,7 @@ extension UIKit.UIView {
|
|
|
990
1010
|
}
|
|
991
1011
|
@objc @_Concurrency.MainActor(unsafe) public static func createGridView() -> UIKit.UIView
|
|
992
1012
|
@objc @_Concurrency.MainActor(unsafe) public static func createFlexView() -> UIKit.UIView
|
|
1013
|
+
@objc @_Concurrency.MainActor(unsafe) public static func createBlockView() -> UIKit.UIView
|
|
993
1014
|
@objc @_Concurrency.MainActor(unsafe) dynamic public var mason: Mason.MasonNode {
|
|
994
1015
|
@objc get
|
|
995
1016
|
}
|
|
@@ -1020,7 +1041,7 @@ extension UIKit.UIView {
|
|
|
1020
1041
|
@objc get
|
|
1021
1042
|
@objc set(value)
|
|
1022
1043
|
}
|
|
1023
|
-
@objc @_Concurrency.MainActor(unsafe) dynamic public var
|
|
1044
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var _position: Mason.Position {
|
|
1024
1045
|
@objc get
|
|
1025
1046
|
@objc set(value)
|
|
1026
1047
|
}
|
|
@@ -1040,6 +1061,14 @@ extension UIKit.UIView {
|
|
|
1040
1061
|
@objc get
|
|
1041
1062
|
@objc set(value)
|
|
1042
1063
|
}
|
|
1064
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var overflowX: Mason.Overflow {
|
|
1065
|
+
@objc get
|
|
1066
|
+
@objc set(value)
|
|
1067
|
+
}
|
|
1068
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var overflowY: Mason.Overflow {
|
|
1069
|
+
@objc get
|
|
1070
|
+
@objc set(value)
|
|
1071
|
+
}
|
|
1043
1072
|
@objc @_Concurrency.MainActor(unsafe) dynamic public var alignItems: Mason.AlignItems {
|
|
1044
1073
|
@objc get
|
|
1045
1074
|
@objc set(value)
|
|
@@ -1072,6 +1101,14 @@ extension UIKit.UIView {
|
|
|
1072
1101
|
@objc get
|
|
1073
1102
|
@objc set(value)
|
|
1074
1103
|
}
|
|
1104
|
+
@_Concurrency.MainActor(unsafe) public var scrollBarWidth: Mason.MasonDimension {
|
|
1105
|
+
get
|
|
1106
|
+
set(value)
|
|
1107
|
+
}
|
|
1108
|
+
@objc @_Concurrency.MainActor(unsafe) dynamic public var scrollBarWidthCompat: Mason.MasonDimensionCompat {
|
|
1109
|
+
@objc get
|
|
1110
|
+
@objc set(value)
|
|
1111
|
+
}
|
|
1075
1112
|
@_Concurrency.MainActor(unsafe) public var flexBasis: Mason.MasonDimension {
|
|
1076
1113
|
get
|
|
1077
1114
|
set(value)
|