@triniwiz/nativescript-masonkit 1.0.0-alpha.16 → 1.0.0-alpha.18
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 +39 -15
- 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 +49 -1
- 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/ios-arm64/Mason.framework/Headers/Mason-Swift.h +26 -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 +1195 -88
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +33 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +33 -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 +2416 -2260
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +52 -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 +1195 -88
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +33 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +33 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +1195 -88
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +33 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +33 -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 -2260
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/x86_64/Mason.yml +2352 -2198
|
@@ -525,6 +525,30 @@ SWIFT_CLASS_NAMED("MasonDimensionSizeCompat")
|
|
|
525
525
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
526
526
|
@end
|
|
527
527
|
|
|
528
|
+
@class MasonStyle;
|
|
529
|
+
@class MasonNode;
|
|
530
|
+
@class UIView;
|
|
531
|
+
@class NSCMason;
|
|
532
|
+
@class NSCoder;
|
|
533
|
+
@class UIImage;
|
|
534
|
+
|
|
535
|
+
SWIFT_CLASS_NAMED("MasonImg")
|
|
536
|
+
@interface MasonImg : UIImageView
|
|
537
|
+
@property (nonatomic, readonly, strong) MasonStyle * _Nonnull style;
|
|
538
|
+
- (void)markNodeDirty;
|
|
539
|
+
- (BOOL)isNodeDirty SWIFT_WARN_UNUSED_RESULT;
|
|
540
|
+
- (void)configure:(SWIFT_NOESCAPE void (^ _Nonnull)(MasonNode * _Nonnull))block;
|
|
541
|
+
@property (nonatomic, readonly, strong) UIView * _Nonnull uiView;
|
|
542
|
+
@property (nonatomic, readonly, strong) MasonNode * _Nonnull node;
|
|
543
|
+
@property (nonatomic, readonly, strong) NSCMason * _Nonnull mason;
|
|
544
|
+
@property (nonatomic, copy) NSString * _Nullable src;
|
|
545
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
|
|
546
|
+
- (void)syncStyle:(NSString * _Nonnull)state;
|
|
547
|
+
- (nonnull instancetype)initWithImage:(UIImage * _Nullable)image SWIFT_UNAVAILABLE;
|
|
548
|
+
- (nonnull instancetype)initWithImage:(UIImage * _Nullable)image highlightedImage:(UIImage * _Nullable)highlightedImage SWIFT_UNAVAILABLE;
|
|
549
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
|
|
550
|
+
@end
|
|
551
|
+
|
|
528
552
|
|
|
529
553
|
SWIFT_CLASS_NAMED("MasonLayout")
|
|
530
554
|
@interface MasonLayout : NSObject
|
|
@@ -626,8 +650,6 @@ SWIFT_CLASS_NAMED("MasonLengthPercentageSizeCompat")
|
|
|
626
650
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
627
651
|
@end
|
|
628
652
|
|
|
629
|
-
@class MasonStyle;
|
|
630
|
-
@class NSCMason;
|
|
631
653
|
|
|
632
654
|
SWIFT_CLASS_NAMED("MasonNode")
|
|
633
655
|
@interface MasonNode : NSObject
|
|
@@ -753,7 +775,6 @@ SWIFT_CLASS_NAMED("MasonStyle")
|
|
|
753
775
|
|
|
754
776
|
enum MasonTextType : NSInteger;
|
|
755
777
|
@class NSCFontFace;
|
|
756
|
-
@class NSCoder;
|
|
757
778
|
@class NSMutableAttributedString;
|
|
758
779
|
enum TextTransform : NSInteger;
|
|
759
780
|
@class UIColor;
|
|
@@ -1115,6 +1136,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) NSCMason * _Nonnull sh
|
|
|
1115
1136
|
- (MasonUIView * _Nonnull)createView SWIFT_WARN_UNUSED_RESULT;
|
|
1116
1137
|
- (MasonText * _Nonnull)createTextView SWIFT_WARN_UNUSED_RESULT;
|
|
1117
1138
|
- (MasonText * _Nonnull)createTextViewWithType:(enum MasonTextType)type SWIFT_WARN_UNUSED_RESULT;
|
|
1139
|
+
- (MasonImg * _Nonnull)createImageView SWIFT_WARN_UNUSED_RESULT;
|
|
1118
1140
|
- (MasonNode * _Nonnull)createNode SWIFT_WARN_UNUSED_RESULT;
|
|
1119
1141
|
- (void)printTree:(MasonNode * _Nonnull)node;
|
|
1120
1142
|
- (MasonNode * _Nonnull)createTextNode SWIFT_WARN_UNUSED_RESULT;
|
|
@@ -1165,6 +1187,7 @@ typedef SWIFT_ENUM_NAMED(NSInteger, WhiteSpace, "WhiteSpace", open) {
|
|
|
1165
1187
|
WhiteSpacePre = 1,
|
|
1166
1188
|
WhiteSpacePreWrap = 2,
|
|
1167
1189
|
WhiteSpacePreLine = 3,
|
|
1190
|
+
WhiteSpaceNowrap = 4,
|
|
1168
1191
|
};
|
|
1169
1192
|
|
|
1170
1193
|
#endif
|
|
@@ -1702,6 +1725,30 @@ SWIFT_CLASS_NAMED("MasonDimensionSizeCompat")
|
|
|
1702
1725
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1703
1726
|
@end
|
|
1704
1727
|
|
|
1728
|
+
@class MasonStyle;
|
|
1729
|
+
@class MasonNode;
|
|
1730
|
+
@class UIView;
|
|
1731
|
+
@class NSCMason;
|
|
1732
|
+
@class NSCoder;
|
|
1733
|
+
@class UIImage;
|
|
1734
|
+
|
|
1735
|
+
SWIFT_CLASS_NAMED("MasonImg")
|
|
1736
|
+
@interface MasonImg : UIImageView
|
|
1737
|
+
@property (nonatomic, readonly, strong) MasonStyle * _Nonnull style;
|
|
1738
|
+
- (void)markNodeDirty;
|
|
1739
|
+
- (BOOL)isNodeDirty SWIFT_WARN_UNUSED_RESULT;
|
|
1740
|
+
- (void)configure:(SWIFT_NOESCAPE void (^ _Nonnull)(MasonNode * _Nonnull))block;
|
|
1741
|
+
@property (nonatomic, readonly, strong) UIView * _Nonnull uiView;
|
|
1742
|
+
@property (nonatomic, readonly, strong) MasonNode * _Nonnull node;
|
|
1743
|
+
@property (nonatomic, readonly, strong) NSCMason * _Nonnull mason;
|
|
1744
|
+
@property (nonatomic, copy) NSString * _Nullable src;
|
|
1745
|
+
- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
|
|
1746
|
+
- (void)syncStyle:(NSString * _Nonnull)state;
|
|
1747
|
+
- (nonnull instancetype)initWithImage:(UIImage * _Nullable)image SWIFT_UNAVAILABLE;
|
|
1748
|
+
- (nonnull instancetype)initWithImage:(UIImage * _Nullable)image highlightedImage:(UIImage * _Nullable)highlightedImage SWIFT_UNAVAILABLE;
|
|
1749
|
+
- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
|
|
1750
|
+
@end
|
|
1751
|
+
|
|
1705
1752
|
|
|
1706
1753
|
SWIFT_CLASS_NAMED("MasonLayout")
|
|
1707
1754
|
@interface MasonLayout : NSObject
|
|
@@ -1803,8 +1850,6 @@ SWIFT_CLASS_NAMED("MasonLengthPercentageSizeCompat")
|
|
|
1803
1850
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
1804
1851
|
@end
|
|
1805
1852
|
|
|
1806
|
-
@class MasonStyle;
|
|
1807
|
-
@class NSCMason;
|
|
1808
1853
|
|
|
1809
1854
|
SWIFT_CLASS_NAMED("MasonNode")
|
|
1810
1855
|
@interface MasonNode : NSObject
|
|
@@ -1930,7 +1975,6 @@ SWIFT_CLASS_NAMED("MasonStyle")
|
|
|
1930
1975
|
|
|
1931
1976
|
enum MasonTextType : NSInteger;
|
|
1932
1977
|
@class NSCFontFace;
|
|
1933
|
-
@class NSCoder;
|
|
1934
1978
|
@class NSMutableAttributedString;
|
|
1935
1979
|
enum TextTransform : NSInteger;
|
|
1936
1980
|
@class UIColor;
|
|
@@ -2292,6 +2336,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) NSCMason * _Nonnull sh
|
|
|
2292
2336
|
- (MasonUIView * _Nonnull)createView SWIFT_WARN_UNUSED_RESULT;
|
|
2293
2337
|
- (MasonText * _Nonnull)createTextView SWIFT_WARN_UNUSED_RESULT;
|
|
2294
2338
|
- (MasonText * _Nonnull)createTextViewWithType:(enum MasonTextType)type SWIFT_WARN_UNUSED_RESULT;
|
|
2339
|
+
- (MasonImg * _Nonnull)createImageView SWIFT_WARN_UNUSED_RESULT;
|
|
2295
2340
|
- (MasonNode * _Nonnull)createNode SWIFT_WARN_UNUSED_RESULT;
|
|
2296
2341
|
- (void)printTree:(MasonNode * _Nonnull)node;
|
|
2297
2342
|
- (MasonNode * _Nonnull)createTextNode SWIFT_WARN_UNUSED_RESULT;
|
|
@@ -2342,6 +2387,7 @@ typedef SWIFT_ENUM_NAMED(NSInteger, WhiteSpace, "WhiteSpace", open) {
|
|
|
2342
2387
|
WhiteSpacePre = 1,
|
|
2343
2388
|
WhiteSpacePreWrap = 2,
|
|
2344
2389
|
WhiteSpacePreLine = 3,
|
|
2390
|
+
WhiteSpaceNowrap = 4,
|
|
2345
2391
|
};
|
|
2346
2392
|
|
|
2347
2393
|
#endif
|
|
Binary file
|
|
Binary file
|