@triniwiz/nativescript-masonkit 1.0.0-alpha.17 → 1.0.0-alpha.19
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 +4 -0
- package/common.js +8 -0
- package/common.js.map +1 -1
- package/index.android.d.ts +12 -1
- package/index.android.js +41 -2
- package/index.android.js.map +1 -1
- package/index.d.ts +48 -0
- package/index.ios.d.ts +14 -1
- package/index.ios.js +83 -2
- package/index.ios.js.map +1 -1
- package/package.json +1 -1
- package/platforms/android/include.gradle +5 -1
- package/platforms/android/masonkit-release.aar +0 -0
- package/platforms/ios/Mason.xcframework/Info.plist +5 -5
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +25 -3
- 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 +780 -59
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +20 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +20 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/aarch64/Mason.yml +1999 -1945
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +50 -6
- 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 +780 -59
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +20 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +20 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +780 -59
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +20 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +20 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/_CodeSignature/CodeResources +22 -22
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/aarch64/Mason.yml +2416 -2362
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/x86_64/Mason.yml +2352 -2299
|
@@ -144,6 +144,7 @@ public struct Line<T> {
|
|
|
144
144
|
@objc public func createView() -> Mason.MasonUIView
|
|
145
145
|
@objc public func createTextView() -> Mason.MasonText
|
|
146
146
|
@objc public func createTextView(type: Mason.MasonTextType) -> Mason.MasonText
|
|
147
|
+
@objc public func createImageView() -> Mason.MasonImg
|
|
147
148
|
@objc public func createNode() -> Mason.MasonNode
|
|
148
149
|
public func createNode(measure: @escaping Mason.MasonNode.MeasureFunc) -> Mason.MasonNode
|
|
149
150
|
@objc public func printTree(_ node: Mason.MasonNode)
|
|
@@ -875,6 +876,25 @@ public let MasonLengthPercentageRectZero: Mason.MasonRect<Mason.MasonLengthPerce
|
|
|
875
876
|
}
|
|
876
877
|
@objc deinit
|
|
877
878
|
}
|
|
879
|
+
@_hasMissingDesignatedInitializers @objcMembers @objc(MasonImg) @_Concurrency.MainActor @preconcurrency public class MasonImg : UIKit.UIImageView, Mason.MasonView {
|
|
880
|
+
@objc @_Concurrency.MainActor @preconcurrency public var style: Mason.MasonStyle {
|
|
881
|
+
@objc get
|
|
882
|
+
}
|
|
883
|
+
@objc @_Concurrency.MainActor @preconcurrency public func markNodeDirty()
|
|
884
|
+
@objc @_Concurrency.MainActor @preconcurrency public func isNodeDirty() -> Swift.Bool
|
|
885
|
+
@objc @_Concurrency.MainActor @preconcurrency public func configure(_ block: (Mason.MasonNode) -> Swift.Void)
|
|
886
|
+
@objc @_Concurrency.MainActor @preconcurrency public var uiView: UIKit.UIView {
|
|
887
|
+
@objc get
|
|
888
|
+
}
|
|
889
|
+
@objc @_Concurrency.MainActor @preconcurrency final public let node: Mason.MasonNode
|
|
890
|
+
@objc @_Concurrency.MainActor @preconcurrency final public let mason: Mason.NSCMason
|
|
891
|
+
@objc @_Concurrency.MainActor @preconcurrency public var src: Swift.String? {
|
|
892
|
+
@objc get
|
|
893
|
+
@objc set
|
|
894
|
+
}
|
|
895
|
+
@objc @_Concurrency.MainActor @preconcurrency public func syncStyle(_ state: Swift.String)
|
|
896
|
+
@objc deinit
|
|
897
|
+
}
|
|
878
898
|
@objc(MasonDimensionCompatType) public enum MasonDimensionCompatType : Swift.Int, Swift.RawRepresentable, Swift.Codable {
|
|
879
899
|
case Auto
|
|
880
900
|
case Points
|
|
@@ -144,6 +144,7 @@ public struct Line<T> {
|
|
|
144
144
|
@objc public func createView() -> Mason.MasonUIView
|
|
145
145
|
@objc public func createTextView() -> Mason.MasonText
|
|
146
146
|
@objc public func createTextView(type: Mason.MasonTextType) -> Mason.MasonText
|
|
147
|
+
@objc public func createImageView() -> Mason.MasonImg
|
|
147
148
|
@objc public func createNode() -> Mason.MasonNode
|
|
148
149
|
public func createNode(measure: @escaping Mason.MasonNode.MeasureFunc) -> Mason.MasonNode
|
|
149
150
|
@objc public func printTree(_ node: Mason.MasonNode)
|
|
@@ -875,6 +876,25 @@ public let MasonLengthPercentageRectZero: Mason.MasonRect<Mason.MasonLengthPerce
|
|
|
875
876
|
}
|
|
876
877
|
@objc deinit
|
|
877
878
|
}
|
|
879
|
+
@_hasMissingDesignatedInitializers @objcMembers @objc(MasonImg) @_Concurrency.MainActor @preconcurrency public class MasonImg : UIKit.UIImageView, Mason.MasonView {
|
|
880
|
+
@objc @_Concurrency.MainActor @preconcurrency public var style: Mason.MasonStyle {
|
|
881
|
+
@objc get
|
|
882
|
+
}
|
|
883
|
+
@objc @_Concurrency.MainActor @preconcurrency public func markNodeDirty()
|
|
884
|
+
@objc @_Concurrency.MainActor @preconcurrency public func isNodeDirty() -> Swift.Bool
|
|
885
|
+
@objc @_Concurrency.MainActor @preconcurrency public func configure(_ block: (Mason.MasonNode) -> Swift.Void)
|
|
886
|
+
@objc @_Concurrency.MainActor @preconcurrency public var uiView: UIKit.UIView {
|
|
887
|
+
@objc get
|
|
888
|
+
}
|
|
889
|
+
@objc @_Concurrency.MainActor @preconcurrency final public let node: Mason.MasonNode
|
|
890
|
+
@objc @_Concurrency.MainActor @preconcurrency final public let mason: Mason.NSCMason
|
|
891
|
+
@objc @_Concurrency.MainActor @preconcurrency public var src: Swift.String? {
|
|
892
|
+
@objc get
|
|
893
|
+
@objc set
|
|
894
|
+
}
|
|
895
|
+
@objc @_Concurrency.MainActor @preconcurrency public func syncStyle(_ state: Swift.String)
|
|
896
|
+
@objc deinit
|
|
897
|
+
}
|
|
878
898
|
@objc(MasonDimensionCompatType) public enum MasonDimensionCompatType : Swift.Int, Swift.RawRepresentable, Swift.Codable {
|
|
879
899
|
case Auto
|
|
880
900
|
case Points
|