@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.
- 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 +7002 -1194
- 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 +7002 -1194
- 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 +7002 -1194
- 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
package/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { CoreTypes } from '@nativescript/core';
|
|
2
2
|
|
|
3
3
|
import { TSCViewBase } from './common';
|
|
4
|
+
import { LengthPercentage } from '@nativescript/core/css/parser';
|
|
4
5
|
|
|
5
6
|
export type Length = CoreTypes.dip | CoreTypes.LengthDipUnit | CoreTypes.LengthPxUnit;
|
|
6
7
|
|
|
@@ -10,7 +11,9 @@ export type SizeLength = { width: LengthType; height: LengthType };
|
|
|
10
11
|
|
|
11
12
|
export type Position = 'absolute' | 'relative';
|
|
12
13
|
|
|
13
|
-
export type Display = 'none' | 'flex' | 'grid';
|
|
14
|
+
export type Display = 'none' | 'flex' | 'grid' | 'block';
|
|
15
|
+
|
|
16
|
+
export type Overflow = 'visible' | 'hidden' | 'scroll';
|
|
14
17
|
|
|
15
18
|
export type FlexWrap = 'no-wrap' | 'wrap' | 'wrap-reverse';
|
|
16
19
|
|
|
@@ -32,16 +35,63 @@ export type JustifySelf = AlignSelf;
|
|
|
32
35
|
|
|
33
36
|
export type JustifyContent = AlignContent;
|
|
34
37
|
|
|
35
|
-
export type GridAutoFlow = 'row' | 'column' | 'row
|
|
38
|
+
export type GridAutoFlow = 'row' | 'column' | 'row dense' | 'column dense';
|
|
36
39
|
|
|
37
40
|
export { applyMixins } from './helpers';
|
|
38
41
|
|
|
39
|
-
export class TSCView extends TSCViewBase {
|
|
42
|
+
export class TSCView extends TSCViewBase {
|
|
43
|
+
display: Display;
|
|
44
|
+
position: Position;
|
|
45
|
+
flexDirection: FlexDirection;
|
|
46
|
+
flexWrap: FlexWrap;
|
|
47
|
+
flex: string | 'auto' | 'none' | number | 'initial';
|
|
48
|
+
flexFlow: string;
|
|
49
|
+
width: Length;
|
|
50
|
+
height: Length;
|
|
51
|
+
maxWidth: Length;
|
|
52
|
+
maxHeight: Length;
|
|
53
|
+
left: Length;
|
|
54
|
+
right: Length;
|
|
55
|
+
top: Length;
|
|
56
|
+
bottom: Length;
|
|
57
|
+
gridGap: Gap;
|
|
58
|
+
gap: Gap;
|
|
59
|
+
rowGap: Length;
|
|
60
|
+
columnGap: Length;
|
|
61
|
+
aspectRatio: number;
|
|
62
|
+
flexBasis: Length;
|
|
63
|
+
alignItems: AlignItems;
|
|
64
|
+
alignSelf: import('@nativescript/core/ui/layouts/flexbox-layout').AlignSelf;
|
|
65
|
+
alignContent: AlignContent;
|
|
66
|
+
justifyItems: JustifyItems;
|
|
67
|
+
justifySelf: JustifySelf;
|
|
68
|
+
justifyContent: JustifyContent;
|
|
69
|
+
gridAutoRows: string;
|
|
70
|
+
gridAutoColumns: string;
|
|
71
|
+
gridAutoFlow: GridAutoFlow;
|
|
72
|
+
gridRowGap: Gap;
|
|
73
|
+
gridColumnGap: Gap;
|
|
74
|
+
gridArea: string;
|
|
75
|
+
gridColumn: string;
|
|
76
|
+
gridColumnStart: string;
|
|
77
|
+
gridColumnEnd: string;
|
|
78
|
+
gridRow: string;
|
|
79
|
+
gridRowStart: string;
|
|
80
|
+
gridRowEnd: string;
|
|
81
|
+
gridTemplateRows: string;
|
|
82
|
+
gridTemplateColumns: string;
|
|
83
|
+
overflow: Overflow;
|
|
84
|
+
overflowX: Overflow;
|
|
85
|
+
overflowY: Overflow;
|
|
86
|
+
scrollBarWidth: number | CoreTypes.LengthType;
|
|
87
|
+
}
|
|
40
88
|
|
|
41
89
|
export class Grid extends TSCView {}
|
|
42
90
|
|
|
43
91
|
export class Flex extends TSCView {}
|
|
44
92
|
|
|
93
|
+
export class Box extends TSCView {}
|
|
94
|
+
|
|
45
95
|
export class Container extends TSCView {}
|
|
46
96
|
|
|
47
97
|
declare module '@nativescript/core/ui/styling/style' {
|
|
@@ -50,10 +100,12 @@ declare module '@nativescript/core/ui/styling/style' {
|
|
|
50
100
|
position: Position;
|
|
51
101
|
flexDirection: FlexDirection;
|
|
52
102
|
flexWrap: FlexWrap;
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
103
|
+
flex: string | 'auto' | 'none' | number | 'initial';
|
|
104
|
+
flexFlow: string;
|
|
105
|
+
width: LengthPercentage | string | number;
|
|
106
|
+
height: LengthPercentage | string | number;
|
|
107
|
+
maxWidth: LengthPercentage | string | number;
|
|
108
|
+
maxHeight: LengthPercentage | string | number;
|
|
57
109
|
left: Length;
|
|
58
110
|
right: Length;
|
|
59
111
|
top: Length;
|
|
@@ -63,6 +115,7 @@ declare module '@nativescript/core/ui/styling/style' {
|
|
|
63
115
|
rowGap: Length;
|
|
64
116
|
columnGap: Length;
|
|
65
117
|
aspectRatio: number;
|
|
118
|
+
flexBasis: LengthPercentage | string | number;
|
|
66
119
|
alignItems: AlignItems;
|
|
67
120
|
alignSelf: AlignSelf;
|
|
68
121
|
alignContent: AlignContent;
|
|
@@ -83,5 +136,9 @@ declare module '@nativescript/core/ui/styling/style' {
|
|
|
83
136
|
gridRowEnd: string;
|
|
84
137
|
gridTemplateRows: string;
|
|
85
138
|
gridTemplateColumns: string;
|
|
139
|
+
overflow: Overflow;
|
|
140
|
+
overflowX: Overflow;
|
|
141
|
+
overflowY: Overflow;
|
|
142
|
+
scrollBarWidth: number | CoreTypes.LengthType;
|
|
86
143
|
}
|
|
87
144
|
}
|
package/index.ios.d.ts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ViewBase } from '@nativescript/core';
|
|
2
2
|
import { TSCViewBase } from './common';
|
|
3
3
|
export declare class TSCView extends TSCViewBase {
|
|
4
|
-
__masonStylePtr:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
get
|
|
8
|
-
|
|
9
|
-
get _masonPtr():
|
|
4
|
+
__masonStylePtr: bigint;
|
|
5
|
+
__masonNodePtr: bigint;
|
|
6
|
+
__masonPtr: bigint;
|
|
7
|
+
get _masonStylePtr(): bigint;
|
|
8
|
+
get _masonNodePtr(): bigint;
|
|
9
|
+
get _masonPtr(): bigint;
|
|
10
10
|
_hasNativeView: boolean;
|
|
11
11
|
createNativeView(): UIView;
|
|
12
12
|
disposeNativeView(): void;
|
|
@@ -23,5 +23,8 @@ export declare class Grid extends TSCView {
|
|
|
23
23
|
export declare class Flex extends TSCView {
|
|
24
24
|
createNativeView(): any;
|
|
25
25
|
}
|
|
26
|
+
export declare class Box extends TSCView {
|
|
27
|
+
createNativeView(): any;
|
|
28
|
+
}
|
|
26
29
|
export declare class Container extends TSCView {
|
|
27
30
|
}
|
package/index.ios.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CSSType, Utils, View } from '@nativescript/core';
|
|
2
2
|
import { TSCViewBase } from './common';
|
|
3
|
+
const BigIntZero = BigInt(0);
|
|
3
4
|
function parseLength(length, parent = 0) {
|
|
4
5
|
switch (length.unit) {
|
|
5
6
|
case '%':
|
|
@@ -13,26 +14,26 @@ function parseLength(length, parent = 0) {
|
|
|
13
14
|
export class TSCView extends TSCViewBase {
|
|
14
15
|
constructor() {
|
|
15
16
|
super(...arguments);
|
|
16
|
-
this.__masonStylePtr =
|
|
17
|
-
this.__masonNodePtr =
|
|
18
|
-
this.__masonPtr =
|
|
17
|
+
this.__masonStylePtr = BigIntZero;
|
|
18
|
+
this.__masonNodePtr = BigIntZero;
|
|
19
|
+
this.__masonPtr = BigIntZero;
|
|
19
20
|
this._hasNativeView = false;
|
|
20
21
|
}
|
|
21
22
|
get _masonStylePtr() {
|
|
22
|
-
if (this.__masonStylePtr ===
|
|
23
|
-
this.__masonStylePtr = String(this.ios?.masonStylePtr ?? 0);
|
|
23
|
+
if (this.__masonStylePtr === BigIntZero) {
|
|
24
|
+
this.__masonStylePtr = BigInt(String(this.ios?.masonStylePtr ?? 0));
|
|
24
25
|
}
|
|
25
26
|
return this.__masonStylePtr;
|
|
26
27
|
}
|
|
27
28
|
get _masonNodePtr() {
|
|
28
|
-
if (this.__masonNodePtr ===
|
|
29
|
-
this.__masonNodePtr =
|
|
29
|
+
if (this.__masonNodePtr === BigIntZero) {
|
|
30
|
+
this.__masonNodePtr = BigInt(this.ios?.masonNodePtr ?? 0);
|
|
30
31
|
}
|
|
31
32
|
return this.__masonNodePtr;
|
|
32
33
|
}
|
|
33
34
|
get _masonPtr() {
|
|
34
|
-
if (this.__masonPtr ===
|
|
35
|
-
this.__masonPtr =
|
|
35
|
+
if (this.__masonPtr === BigIntZero) {
|
|
36
|
+
this.__masonPtr = BigInt(UIView.masonPtr ?? 0);
|
|
36
37
|
}
|
|
37
38
|
return this.__masonPtr;
|
|
38
39
|
}
|
|
@@ -46,6 +47,7 @@ export class TSCView extends TSCViewBase {
|
|
|
46
47
|
this._hasNativeView = false;
|
|
47
48
|
super.disposeNativeView();
|
|
48
49
|
}
|
|
50
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
49
51
|
//@ts-ignore
|
|
50
52
|
get ios() {
|
|
51
53
|
return this.nativeViewProtected;
|
|
@@ -54,11 +56,14 @@ export class TSCView extends TSCViewBase {
|
|
|
54
56
|
super.onLayout(left, top, right, bottom);
|
|
55
57
|
const nativeView = this.nativeView;
|
|
56
58
|
if (nativeView) {
|
|
59
|
+
const insets = this.getSafeAreaInsets();
|
|
57
60
|
this.eachLayoutChild((child) => {
|
|
58
61
|
const layout = child.ios.mason.layout();
|
|
59
|
-
child.setMeasuredDimension(layout.width, layout.height);
|
|
60
|
-
|
|
61
|
-
|
|
62
|
+
// child.setMeasuredDimension(layout.width, layout.height);
|
|
63
|
+
const left = layout.x + insets.left;
|
|
64
|
+
const top = layout.y + insets.top;
|
|
65
|
+
View.layoutChild(this, child, left, top, layout.width + left, layout.height + top);
|
|
66
|
+
// return true;
|
|
62
67
|
});
|
|
63
68
|
}
|
|
64
69
|
}
|
|
@@ -83,11 +88,12 @@ export class TSCView extends TSCViewBase {
|
|
|
83
88
|
else {
|
|
84
89
|
let width;
|
|
85
90
|
switch (typeof this.width) {
|
|
86
|
-
case 'object':
|
|
91
|
+
case 'object': {
|
|
87
92
|
const parent = this.parent;
|
|
88
93
|
const mw = parent?.getMeasuredWidth?.() || Utils.layout.toDevicePixels(parent?.nativeView?.frame?.size?.width ?? 0) || specWidth;
|
|
89
94
|
width = parseLength(this.width, mw);
|
|
90
95
|
break;
|
|
96
|
+
}
|
|
91
97
|
case 'string':
|
|
92
98
|
width = -2;
|
|
93
99
|
break;
|
|
@@ -97,11 +103,12 @@ export class TSCView extends TSCViewBase {
|
|
|
97
103
|
}
|
|
98
104
|
let height;
|
|
99
105
|
switch (typeof this.height) {
|
|
100
|
-
case 'object':
|
|
106
|
+
case 'object': {
|
|
101
107
|
const parent = this.parent;
|
|
102
108
|
const mh = parent?.getMeasuredHeight?.() || Utils.layout.toDevicePixels(parent?.nativeView?.frame?.size?.height ?? 0) || specHeight;
|
|
103
109
|
height = parseLength(this.height, mh);
|
|
104
110
|
break;
|
|
111
|
+
}
|
|
105
112
|
case 'string':
|
|
106
113
|
height = -2;
|
|
107
114
|
break;
|
|
@@ -113,7 +120,9 @@ export class TSCView extends TSCViewBase {
|
|
|
113
120
|
}
|
|
114
121
|
}
|
|
115
122
|
const layout = this.ios.mason.layout();
|
|
116
|
-
|
|
123
|
+
const w = Utils.layout.makeMeasureSpec(layout.width, Utils.layout.EXACTLY);
|
|
124
|
+
const h = Utils.layout.makeMeasureSpec(layout.height, Utils.layout.EXACTLY);
|
|
125
|
+
this.setMeasuredDimension(w, h);
|
|
117
126
|
}
|
|
118
127
|
}
|
|
119
128
|
layoutNativeView() {
|
|
@@ -123,15 +132,11 @@ export class TSCView extends TSCViewBase {
|
|
|
123
132
|
const nativeView = this.nativeView;
|
|
124
133
|
view._masonParent = this;
|
|
125
134
|
super._addViewToNativeVisualTree(view, atIndex);
|
|
126
|
-
// if (nativeView && view.nativeViewProtected) {
|
|
127
|
-
// console.log(view.nativeViewProtected);
|
|
128
|
-
// nativeView.addSubview(view.nativeViewProtected);
|
|
129
|
-
// }
|
|
130
135
|
const index = atIndex ?? Infinity;
|
|
131
136
|
if (nativeView && view.nativeViewProtected) {
|
|
132
137
|
view['_hasNativeView'] = true;
|
|
133
|
-
view['_isMasonChild'] =
|
|
134
|
-
if (index >=
|
|
138
|
+
view['_isMasonChild'] = !!view._masonParent;
|
|
139
|
+
if (index >= this._children.length) {
|
|
135
140
|
nativeView.addSubview(view.nativeViewProtected);
|
|
136
141
|
}
|
|
137
142
|
else {
|
|
@@ -146,10 +151,8 @@ export class TSCView extends TSCViewBase {
|
|
|
146
151
|
view._isMasonView = false;
|
|
147
152
|
view._isMasonChild = false;
|
|
148
153
|
super._removeViewFromNativeVisualTree(view);
|
|
149
|
-
if (view.nativeViewProtected) {
|
|
150
|
-
|
|
151
|
-
view.nativeViewProtected.removeFromSuperview();
|
|
152
|
-
}
|
|
154
|
+
if (view.nativeViewProtected && view.nativeViewProtected.superview === nativeView) {
|
|
155
|
+
view.nativeViewProtected.removeFromSuperview();
|
|
153
156
|
}
|
|
154
157
|
}
|
|
155
158
|
}
|
|
@@ -175,6 +178,17 @@ Flex = __decorate([
|
|
|
175
178
|
CSSType('Flex')
|
|
176
179
|
], Flex);
|
|
177
180
|
export { Flex };
|
|
181
|
+
let Box = class Box extends TSCView {
|
|
182
|
+
createNativeView() {
|
|
183
|
+
const view = UIView.createBlockView();
|
|
184
|
+
this._hasNativeView = true;
|
|
185
|
+
return view;
|
|
186
|
+
}
|
|
187
|
+
};
|
|
188
|
+
Box = __decorate([
|
|
189
|
+
CSSType('Box')
|
|
190
|
+
], Box);
|
|
191
|
+
export { Box };
|
|
178
192
|
let Container = class Container extends TSCView {
|
|
179
193
|
};
|
|
180
194
|
Container = __decorate([
|
package/index.ios.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.ios.js","sourceRoot":"","sources":["../../../packages/nativescript-masonkit/index.ios.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,OAAO,EAAU,KAAK,EAAE,IAAI,EAAY,MAAM,oBAAoB,CAAC;AACvF,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,SAAS,WAAW,CAAC,MAAsF,EAAE,MAAM,GAAG,CAAC;IACrH,QAAQ,MAAM,CAAC,IAAI,EAAE;QACnB,KAAK,GAAG;YACN,OAAO,MAAM,CAAC,KAAK,GAAG,MAAM,CAAC;QAC/B,KAAK,KAAK;YACR,OAAO,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACnD,KAAK,IAAI;YACP,OAAO,MAAM,CAAC,KAAK,CAAC;KACvB;AACH,CAAC;AAED,MAAM,OAAO,OAAQ,SAAQ,WAAW;IAAxC;;QACE,oBAAe,GAAG,
|
|
1
|
+
{"version":3,"file":"index.ios.js","sourceRoot":"","sources":["../../../packages/nativescript-masonkit/index.ios.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,OAAO,EAAU,KAAK,EAAE,IAAI,EAAY,MAAM,oBAAoB,CAAC;AACvF,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,UAAU,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC;AAE7B,SAAS,WAAW,CAAC,MAAsF,EAAE,MAAM,GAAG,CAAC;IACrH,QAAQ,MAAM,CAAC,IAAI,EAAE;QACnB,KAAK,GAAG;YACN,OAAO,MAAM,CAAC,KAAK,GAAG,MAAM,CAAC;QAC/B,KAAK,KAAK;YACR,OAAO,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;QACnD,KAAK,IAAI;YACP,OAAO,MAAM,CAAC,KAAK,CAAC;KACvB;AACH,CAAC;AAED,MAAM,OAAO,OAAQ,SAAQ,WAAW;IAAxC;;QACE,oBAAe,GAAG,UAAU,CAAC;QAC7B,mBAAc,GAAG,UAAU,CAAC;QAC5B,eAAU,GAAG,UAAU,CAAC;QAsBxB,mBAAc,GAAG,KAAK,CAAC;IA0IzB,CAAC;IA/JC,IAAI,cAAc;QAChB,IAAI,IAAI,CAAC,eAAe,KAAK,UAAU,EAAE;YACvC,IAAI,CAAC,eAAe,GAAG,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,aAAa,IAAI,CAAC,CAAC,CAAC,CAAC;SACrE;QACD,OAAO,IAAI,CAAC,eAAe,CAAC;IAC9B,CAAC;IAED,IAAI,aAAa;QACf,IAAI,IAAI,CAAC,cAAc,KAAK,UAAU,EAAE;YACtC,IAAI,CAAC,cAAc,GAAG,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE,YAAY,IAAI,CAAC,CAAC,CAAC;SAC3D;QACD,OAAO,IAAI,CAAC,cAAc,CAAC;IAC7B,CAAC;IAED,IAAI,SAAS;QACX,IAAI,IAAI,CAAC,UAAU,KAAK,UAAU,EAAE;YAClC,IAAI,CAAC,UAAU,GAAG,MAAM,CAAE,MAAc,CAAC,QAAQ,IAAI,CAAC,CAAC,CAAC;SACzD;QACD,OAAO,IAAI,CAAC,UAAU,CAAC;IACzB,CAAC;IAID,gBAAgB;QACd,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;QAC3B,MAAM,IAAI,GAAG,MAAM,CAAC,KAAK,EAAE,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC;QACtD,IAAI,CAAC,KAAK,CAAC,SAAS,GAAG,IAAI,CAAC;QAC5B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,iBAAiB;QACf,IAAI,CAAC,cAAc,GAAG,KAAK,CAAC;QAC5B,KAAK,CAAC,iBAAiB,EAAE,CAAC;IAC5B,CAAC;IAED,6DAA6D;IAC7D,YAAY;IACZ,IAAI,GAAG;QACL,OAAO,IAAI,CAAC,mBAA6B,CAAC;IAC5C,CAAC;IAEM,QAAQ,CAAC,IAAY,EAAE,GAAW,EAAE,KAAa,EAAE,MAAc;QACtE,KAAK,CAAC,QAAQ,CAAC,IAAI,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,CAAC,CAAC;QAEzC,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QAEnC,IAAI,UAAU,EAAE;YACd,MAAM,MAAM,GAAG,IAAI,CAAC,iBAAiB,EAAE,CAAC;YACxC,IAAI,CAAC,eAAe,CAAC,CAAC,KAAK,EAAE,EAAE;gBAC7B,MAAM,MAAM,GAAG,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;gBAExC,2DAA2D;gBAE3D,MAAM,IAAI,GAAG,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,IAAI,CAAC;gBACpC,MAAM,GAAG,GAAG,MAAM,CAAC,CAAC,GAAG,MAAM,CAAC,GAAG,CAAC;gBAClC,IAAI,CAAC,WAAW,CAAC,IAAW,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,CAAC,KAAK,GAAG,IAAI,EAAE,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC,CAAC;gBAC1F,kBAAkB;YACpB,CAAC,CAAC,CAAC;SACJ;IACH,CAAC;IAEM,SAAS,CAAC,gBAAwB,EAAE,iBAAyB;QAClE,MAAM,UAAU,GAAG,IAAI,CAAC,UAAU,CAAC;QACnC,IAAI,UAAU,EAAE;YACd,MAAM,SAAS,GAAG,KAAK,CAAC,MAAM,CAAC,kBAAkB,CAAC,gBAAgB,CAAC,CAAC;YACpE,MAAM,UAAU,GAAG,KAAK,CAAC,MAAM,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,CAAC;YACtE,qCAAqC;YACrC,6CAA6C;YAC7C,+CAA+C;YAC/C,wBAAwB;YACxB,iCAAiC;YACjC,0CAA0C;YAC1C,SAAS;YACT,IAAI;YAEJ,IAAI,CAAC,IAAI,CAAC,aAAa,EAAE;gBACvB,kCAAkC;gBAElC,IAAI,IAAI,CAAC,KAAK,KAAK,MAAM,IAAI,IAAI,CAAC,MAAM,KAAK,MAAM,EAAE;oBACnD,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,qBAAqB,EAAE,CAAC;iBACxC;qBAAM;oBACL,IAAI,KAAK,CAAC;oBACV,QAAQ,OAAO,IAAI,CAAC,KAAK,EAAE;wBACzB,KAAK,QAAQ,CAAC,CAAC;4BACb,MAAM,MAAM,GAAG,IAAI,CAAC,MAAa,CAAC;4BAClC,MAAM,EAAE,GAAG,MAAM,EAAE,gBAAgB,EAAE,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,IAAI,CAAC,CAAC,IAAI,SAAS,CAAC;4BACjI,KAAK,GAAG,WAAW,CAAC,IAAI,CAAC,KAAK,EAAE,EAAE,CAAC,CAAC;4BACpC,MAAM;yBACP;wBACD,KAAK,QAAQ;4BACX,KAAK,GAAG,CAAC,CAAC,CAAC;4BACX,MAAM;wBACR,KAAK,QAAQ;4BACX,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;4BAChD,MAAM;qBACT;oBAED,IAAI,MAAM,CAAC;oBACX,QAAQ,OAAO,IAAI,CAAC,MAAM,EAAE;wBAC1B,KAAK,QAAQ,CAAC,CAAC;4BACb,MAAM,MAAM,GAAG,IAAI,CAAC,MAAa,CAAC;4BAClC,MAAM,EAAE,GAAG,MAAM,EAAE,iBAAiB,EAAE,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,MAAM,EAAE,UAAU,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,IAAI,CAAC,CAAC,IAAI,UAAU,CAAC;4BACpI,MAAM,GAAG,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC;4BACtC,MAAM;yBACP;wBAED,KAAK,QAAQ;4BACX,MAAM,GAAG,CAAC,CAAC,CAAC;4BACZ,MAAM;wBACR,KAAK,QAAQ;4BACX,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;4BAClD,MAAM;qBACT;oBACD,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,eAAe,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;iBAC/C;aACF;YAED,MAAM,MAAM,GAAG,IAAI,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;YACvC,MAAM,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAC3E,MAAM,CAAC,GAAG,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;YAE5E,IAAI,CAAC,oBAAoB,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;SACjC;IACH,CAAC;IAEM,gBAAgB;QACrB,OAAO;IACT,CAAC;IAEM,0BAA0B,CAAC,IAAc,EAAE,OAAgB;QAChE,MAAM,UAAU,GAAG,IAAI,CAAC,UAAoB,CAAC;QAC5C,IAAY,CAAC,YAAY,GAAG,IAAI,CAAC;QAClC,KAAK,CAAC,0BAA0B,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;QAEhD,MAAM,KAAK,GAAG,OAAO,IAAI,QAAQ,CAAC;QAClC,IAAI,UAAU,IAAI,IAAI,CAAC,mBAAmB,EAAE;YAC1C,IAAI,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC;YAC9B,IAAI,CAAC,eAAe,CAAC,GAAG,CAAC,CAAE,IAAY,CAAC,YAAY,CAAC;YAErD,IAAI,KAAK,IAAI,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE;gBAClC,UAAU,CAAC,UAAU,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC;aACjD;iBAAM;gBACL,UAAU,CAAC,oBAAoB,CAAC,IAAI,CAAC,mBAAmB,EAAE,KAAK,CAAC,CAAC;aAClE;SACF;QAED,OAAO,IAAI,CAAC;IACd,CAAC;IAEM,+BAA+B,CAAC,IAAc;QACnD,MAAM,UAAU,GAAG,IAAI,CAAC,cAAc,CAAC,IAAI,CAAC;QAC3C,IAAY,CAAC,YAAY,GAAG,SAAS,CAAC;QACtC,IAAY,CAAC,YAAY,GAAG,KAAK,CAAC;QAClC,IAAY,CAAC,aAAa,GAAG,KAAK,CAAC;QACpC,KAAK,CAAC,+BAA+B,CAAC,IAAI,CAAC,CAAC;QAC5C,IAAI,IAAI,CAAC,mBAAmB,IAAK,IAAI,CAAC,mBAA8B,CAAC,SAAS,KAAK,UAAU,EAAE;YAC5F,IAAI,CAAC,mBAA8B,CAAC,mBAAmB,EAAE,CAAC;SAC5D;IACH,CAAC;CACF;AAGM,IAAM,IAAI,GAAV,MAAM,IAAK,SAAQ,OAAO;IAC/B,gBAAgB;QACd,MAAM,IAAI,GAAI,MAAc,CAAC,cAAc,EAAS,CAAC;QACrD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;QAC3B,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAA;AANY,IAAI;IADhB,OAAO,CAAC,MAAM,CAAC;GACH,IAAI,CAMhB;SANY,IAAI;AASV,IAAM,IAAI,GAAV,MAAM,IAAK,SAAQ,OAAO;IAC/B,gBAAgB;QACd,MAAM,IAAI,GAAI,MAAc,CAAC,cAAc,EAAS,CAAC;QACrD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;QAC3B,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAA;AANY,IAAI;IADhB,OAAO,CAAC,MAAM,CAAC;GACH,IAAI,CAMhB;SANY,IAAI;AASV,IAAM,GAAG,GAAT,MAAM,GAAI,SAAQ,OAAO;IAC9B,gBAAgB;QACd,MAAM,IAAI,GAAI,MAAc,CAAC,eAAe,EAAS,CAAC;QACtD,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC;QAC3B,OAAO,IAAI,CAAC;IACd,CAAC;CACF,CAAA;AANY,GAAG;IADf,OAAO,CAAC,KAAK,CAAC;GACF,GAAG,CAMf;SANY,GAAG;AAST,IAAM,SAAS,GAAf,MAAM,SAAU,SAAQ,OAAO;CAAG,CAAA;AAA5B,SAAS;IADrB,OAAO,CAAC,WAAW,CAAC;GACR,SAAS,CAAmB;SAA5B,SAAS"}
|
package/package.json
CHANGED
|
@@ -1 +1,18 @@
|
|
|
1
|
-
dependencies {implementation 'com.google.code.gson:gson:2.10'}
|
|
1
|
+
dependencies {implementation 'com.google.code.gson:gson:2.10'}
|
|
2
|
+
|
|
3
|
+
android {
|
|
4
|
+
defaultConfig {
|
|
5
|
+
multiDexEnabled true
|
|
6
|
+
}
|
|
7
|
+
packagingOptions {
|
|
8
|
+
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
|
|
9
|
+
pickFirst 'lib/arm64-v8a/libc++_shared.so'
|
|
10
|
+
pickFirst 'lib/x86_64/libc++_shared.so'
|
|
11
|
+
pickFirst 'lib/x86/libc++_shared.so'
|
|
12
|
+
|
|
13
|
+
pickFirst 'lib/armeabi-v7a/libNativeScript.so'
|
|
14
|
+
pickFirst 'lib/arm64-v8a/libNativeScript.so'
|
|
15
|
+
pickFirst 'lib/x86_64/libNativeScript.so'
|
|
16
|
+
pickFirst 'lib/x86/libNativeScript.so'
|
|
17
|
+
}
|
|
18
|
+
}
|
|
Binary file
|