@triniwiz/nativescript-masonkit 1.0.0-beta.1 → 1.0.0-beta.3
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 +2 -1
- package/common.js +118 -1
- package/common.js.map +1 -1
- package/index.d.ts +5 -0
- package/package.json +1 -1
- package/platforms/android/masonkit-release.aar +0 -0
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +4 -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 +15444 -10063
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +187 -183
- package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +187 -183
- 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 +3800 -3787
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +8 -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 +7764 -2383
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +4 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +4 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +7764 -2383
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +4 -0
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +4 -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 +3789 -3775
- package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/x86_64/Mason.yml +3680 -3666
- package/style.d.ts +9 -5
- package/style.js +159 -1
- package/style.js.map +1 -1
|
@@ -296,187 +296,6 @@ extension Mason.Button {
|
|
|
296
296
|
@objc override dynamic public init()
|
|
297
297
|
@objc deinit
|
|
298
298
|
}
|
|
299
|
-
@objc(MasonTextContainer) public protocol TextContainer : ObjectiveC.NSObjectProtocol {
|
|
300
|
-
@objc var engine: Mason.TextEngine { get }
|
|
301
|
-
@objc var node: Mason.MasonNode { get }
|
|
302
|
-
}
|
|
303
|
-
@_hasMissingDesignatedInitializers @objc(MasonTextEngine) public class TextEngine : ObjectiveC.NSObject {
|
|
304
|
-
public var textContent: Swift.String {
|
|
305
|
-
get
|
|
306
|
-
set
|
|
307
|
-
}
|
|
308
|
-
@objc deinit
|
|
309
|
-
}
|
|
310
|
-
@objc(MasonTextType) public enum MasonTextType : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
|
|
311
|
-
case None
|
|
312
|
-
case P
|
|
313
|
-
case Span
|
|
314
|
-
case Code
|
|
315
|
-
case H1
|
|
316
|
-
case H2
|
|
317
|
-
case H3
|
|
318
|
-
case H4
|
|
319
|
-
case H5
|
|
320
|
-
case H6
|
|
321
|
-
case Li
|
|
322
|
-
case Blockquote
|
|
323
|
-
case B
|
|
324
|
-
case Pre
|
|
325
|
-
public typealias RawValue = Swift.Int32
|
|
326
|
-
public var rawValue: Mason.MasonTextType.RawValue {
|
|
327
|
-
get
|
|
328
|
-
}
|
|
329
|
-
public init?(rawValue: Mason.MasonTextType.RawValue)
|
|
330
|
-
public var description: Swift.String {
|
|
331
|
-
get
|
|
332
|
-
}
|
|
333
|
-
}
|
|
334
|
-
public enum InlineSegmentPayload {
|
|
335
|
-
case text(width: Swift.Float, ascent: Swift.Float, descent: Swift.Float)
|
|
336
|
-
case inline(id: Swift.OpaquePointer, width: Swift.Float, height: Swift.Float, baseline: Swift.Float)
|
|
337
|
-
}
|
|
338
|
-
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MasonTextLayer : QuartzCore.CALayer {
|
|
339
|
-
@objc override dynamic public init()
|
|
340
|
-
@objc override dynamic public init(layer: Any)
|
|
341
|
-
@objc override dynamic public func draw(in context: CoreGraphics.CGContext)
|
|
342
|
-
@objc deinit
|
|
343
|
-
}
|
|
344
|
-
@_hasMissingDesignatedInitializers @objc(MasonText) @objcMembers @_Concurrency.MainActor @preconcurrency public class MasonText : UIKit.UIView, Mason.MasonElement, Mason.MasonElementObjc, Mason.TextContainer {
|
|
345
|
-
@_Concurrency.MainActor @preconcurrency @objc final public let node: Mason.MasonNode
|
|
346
|
-
@objc @_Concurrency.MainActor @preconcurrency final public let type: Mason.MasonTextType
|
|
347
|
-
@_Concurrency.MainActor @preconcurrency @objc public var engine: Mason.TextEngine {
|
|
348
|
-
@objc get
|
|
349
|
-
@objc set
|
|
350
|
-
}
|
|
351
|
-
@_Concurrency.MainActor @preconcurrency @objc override dynamic public class var layerClass: Swift.AnyClass {
|
|
352
|
-
@objc get
|
|
353
|
-
}
|
|
354
|
-
@objc @_Concurrency.MainActor @preconcurrency public var textValues: Foundation.NSMutableData {
|
|
355
|
-
@objc get
|
|
356
|
-
}
|
|
357
|
-
@_Concurrency.MainActor @preconcurrency @objc public var uiView: UIKit.UIView {
|
|
358
|
-
@objc get
|
|
359
|
-
}
|
|
360
|
-
@_Concurrency.MainActor @preconcurrency @objc public var style: Mason.MasonStyle {
|
|
361
|
-
@objc get
|
|
362
|
-
}
|
|
363
|
-
@objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason, type textType: Mason.MasonTextType)
|
|
364
|
-
@objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason)
|
|
365
|
-
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func setNeedsDisplay()
|
|
366
|
-
@objc @_Concurrency.MainActor @preconcurrency public func requestLayout()
|
|
367
|
-
@objc @_Concurrency.MainActor @preconcurrency public func addView(_ view: UIKit.UIView)
|
|
368
|
-
@objc @_Concurrency.MainActor @preconcurrency public func addView(_ view: UIKit.UIView, at: Swift.Int)
|
|
369
|
-
@_Concurrency.MainActor @preconcurrency public var textOverflow: Mason.TextOverflow {
|
|
370
|
-
get
|
|
371
|
-
set
|
|
372
|
-
}
|
|
373
|
-
@objc @_Concurrency.MainActor @preconcurrency public var textOverflowCompat: Mason.TextOverflowCompat {
|
|
374
|
-
@objc get
|
|
375
|
-
@objc set
|
|
376
|
-
}
|
|
377
|
-
@objc @_Concurrency.MainActor @preconcurrency public var color: Swift.UInt32 {
|
|
378
|
-
@objc get
|
|
379
|
-
@objc set
|
|
380
|
-
}
|
|
381
|
-
@objc @_Concurrency.MainActor @preconcurrency public func setColor(ui color: UIKit.UIColor)
|
|
382
|
-
@objc @_Concurrency.MainActor @preconcurrency public var backgroundColorValue: Swift.UInt32 {
|
|
383
|
-
@objc get
|
|
384
|
-
@objc set
|
|
385
|
-
}
|
|
386
|
-
@objc @_Concurrency.MainActor @preconcurrency public func setBackgroundColor(ui color: UIKit.UIColor)
|
|
387
|
-
@objc @_Concurrency.MainActor @preconcurrency public var decorationColor: Swift.UInt32 {
|
|
388
|
-
@objc get
|
|
389
|
-
@objc set
|
|
390
|
-
}
|
|
391
|
-
@objc @_Concurrency.MainActor @preconcurrency public func setDecorationColor(ui color: UIKit.UIColor)
|
|
392
|
-
@objc @_Concurrency.MainActor @preconcurrency public var decorationLine: Mason.DecorationLine {
|
|
393
|
-
@objc get
|
|
394
|
-
@objc set
|
|
395
|
-
}
|
|
396
|
-
@objc @_Concurrency.MainActor @preconcurrency public var fontSize: Swift.Int32 {
|
|
397
|
-
@objc get
|
|
398
|
-
@objc set
|
|
399
|
-
}
|
|
400
|
-
@objc @_Concurrency.MainActor @preconcurrency public var fontStyle: Mason.FontStyle {
|
|
401
|
-
@objc get
|
|
402
|
-
@objc set
|
|
403
|
-
}
|
|
404
|
-
@objc @_Concurrency.MainActor @preconcurrency public func setFontStyle(_ style: Mason.FontStyle, slant: Swift.Int32)
|
|
405
|
-
@objc @_Concurrency.MainActor @preconcurrency public var fontWeight: Swift.String {
|
|
406
|
-
@objc get
|
|
407
|
-
@objc set
|
|
408
|
-
}
|
|
409
|
-
@objc @_Concurrency.MainActor @preconcurrency public var textTransform: Mason.TextTransform {
|
|
410
|
-
@objc get
|
|
411
|
-
@objc set
|
|
412
|
-
}
|
|
413
|
-
@objc @_Concurrency.MainActor @preconcurrency public var whiteSpace: Mason.WhiteSpace {
|
|
414
|
-
@objc get
|
|
415
|
-
@objc set
|
|
416
|
-
}
|
|
417
|
-
@objc @_Concurrency.MainActor @preconcurrency public var textWrap: Mason.TextWrap {
|
|
418
|
-
@objc get
|
|
419
|
-
@objc set
|
|
420
|
-
}
|
|
421
|
-
@objc @_Concurrency.MainActor @preconcurrency public var lineHeight: Swift.Float {
|
|
422
|
-
@objc get
|
|
423
|
-
@objc set
|
|
424
|
-
}
|
|
425
|
-
@objc @_Concurrency.MainActor @preconcurrency public var textContent: Swift.String {
|
|
426
|
-
@objc get
|
|
427
|
-
@objc set
|
|
428
|
-
}
|
|
429
|
-
@objc deinit
|
|
430
|
-
}
|
|
431
|
-
extension Mason.MasonText {
|
|
432
|
-
@objc @discardableResult
|
|
433
|
-
@_Concurrency.MainActor @preconcurrency dynamic public func removeChild(_ child: Mason.MasonNode) -> Mason.MasonNode?
|
|
434
|
-
}
|
|
435
|
-
extension Mason.MasonText {
|
|
436
|
-
@objc @_Concurrency.MainActor @preconcurrency dynamic public func addChild(_ child: Mason.MasonNode)
|
|
437
|
-
}
|
|
438
|
-
@objc public protocol MasonCharacterData {
|
|
439
|
-
@objc var data: Swift.String { get set }
|
|
440
|
-
@objc var length: Swift.Int { get }
|
|
441
|
-
@objc @discardableResult
|
|
442
|
-
func appendData(_ s: Swift.String) -> Self
|
|
443
|
-
@objc @discardableResult
|
|
444
|
-
func insertData(_ s: Swift.String, at offset: Swift.Int) -> Self
|
|
445
|
-
@objc @discardableResult
|
|
446
|
-
func deleteData(offset: Swift.Int, count: Swift.Int) -> Self
|
|
447
|
-
@objc @discardableResult
|
|
448
|
-
func replaceData(offset: Swift.Int, count: Swift.Int, with s: Swift.String) -> Self
|
|
449
|
-
@objc func substringData(offset: Swift.Int, count: Swift.Int) -> Swift.String
|
|
450
|
-
@objc @discardableResult
|
|
451
|
-
func deleteData(range: Foundation.NSRange) -> Self
|
|
452
|
-
@objc @discardableResult
|
|
453
|
-
func replaceData(range: Foundation.NSRange, with s: Swift.String) -> Self
|
|
454
|
-
}
|
|
455
|
-
@_hasMissingDesignatedInitializers @objc(MasonTextNode) @objcMembers public class MasonTextNode : Mason.MasonNode, Mason.MasonCharacterData {
|
|
456
|
-
@objc public var data: Swift.String
|
|
457
|
-
@objc public init(mason doc: Mason.NSCMason, data text: Swift.String, attributes attrs: [Foundation.NSAttributedString.Key : Any]? = nil)
|
|
458
|
-
@objc override dynamic public func appendChild(_ child: Mason.MasonNode)
|
|
459
|
-
@objc public var length: Swift.Int {
|
|
460
|
-
@objc get
|
|
461
|
-
}
|
|
462
|
-
@objc public func substringData(offset: Swift.Int, count: Swift.Int) -> Swift.String
|
|
463
|
-
@discardableResult
|
|
464
|
-
@objc public func appendData(_ s: Swift.String) -> Self
|
|
465
|
-
@discardableResult
|
|
466
|
-
@objc public func insertData(_ s: Swift.String, at offset: Swift.Int) -> Self
|
|
467
|
-
@discardableResult
|
|
468
|
-
@objc public func deleteData(offset: Swift.Int, count: Swift.Int) -> Self
|
|
469
|
-
@discardableResult
|
|
470
|
-
@objc public func replaceData(offset: Swift.Int, count: Swift.Int, with s: Swift.String) -> Self
|
|
471
|
-
@discardableResult
|
|
472
|
-
@objc public func deleteData(range: Foundation.NSRange) -> Self
|
|
473
|
-
@discardableResult
|
|
474
|
-
@objc public func replaceData(range: Foundation.NSRange, with s: Swift.String) -> Self
|
|
475
|
-
@objc deinit
|
|
476
|
-
}
|
|
477
|
-
extension Mason.MasonTextNode {
|
|
478
|
-
@objc dynamic public func attributed() -> Foundation.NSAttributedString
|
|
479
|
-
}
|
|
480
299
|
@_hasMissingDesignatedInitializers @objcMembers @objc(MaxSizing) public class MaxSizing : ObjectiveC.NSObject, Swift.Codable {
|
|
481
300
|
@objc public var value: Swift.Float {
|
|
482
301
|
get
|
|
@@ -740,6 +559,187 @@ extension Mason.MasonElement {
|
|
|
740
559
|
public func encode(to encoder: any Swift.Encoder) throws
|
|
741
560
|
required public init(from decoder: any Swift.Decoder) throws
|
|
742
561
|
}
|
|
562
|
+
@objc public protocol MasonCharacterData {
|
|
563
|
+
@objc var data: Swift.String { get set }
|
|
564
|
+
@objc var length: Swift.Int { get }
|
|
565
|
+
@objc @discardableResult
|
|
566
|
+
func appendData(_ s: Swift.String) -> Self
|
|
567
|
+
@objc @discardableResult
|
|
568
|
+
func insertData(_ s: Swift.String, at offset: Swift.Int) -> Self
|
|
569
|
+
@objc @discardableResult
|
|
570
|
+
func deleteData(offset: Swift.Int, count: Swift.Int) -> Self
|
|
571
|
+
@objc @discardableResult
|
|
572
|
+
func replaceData(offset: Swift.Int, count: Swift.Int, with s: Swift.String) -> Self
|
|
573
|
+
@objc func substringData(offset: Swift.Int, count: Swift.Int) -> Swift.String
|
|
574
|
+
@objc @discardableResult
|
|
575
|
+
func deleteData(range: Foundation.NSRange) -> Self
|
|
576
|
+
@objc @discardableResult
|
|
577
|
+
func replaceData(range: Foundation.NSRange, with s: Swift.String) -> Self
|
|
578
|
+
}
|
|
579
|
+
@_hasMissingDesignatedInitializers @objc(MasonTextNode) @objcMembers public class MasonTextNode : Mason.MasonNode, Mason.MasonCharacterData {
|
|
580
|
+
@objc public var data: Swift.String
|
|
581
|
+
@objc public init(mason doc: Mason.NSCMason, data text: Swift.String, attributes attrs: [Foundation.NSAttributedString.Key : Any]? = nil)
|
|
582
|
+
@objc override dynamic public func appendChild(_ child: Mason.MasonNode)
|
|
583
|
+
@objc public var length: Swift.Int {
|
|
584
|
+
@objc get
|
|
585
|
+
}
|
|
586
|
+
@objc public func substringData(offset: Swift.Int, count: Swift.Int) -> Swift.String
|
|
587
|
+
@discardableResult
|
|
588
|
+
@objc public func appendData(_ s: Swift.String) -> Self
|
|
589
|
+
@discardableResult
|
|
590
|
+
@objc public func insertData(_ s: Swift.String, at offset: Swift.Int) -> Self
|
|
591
|
+
@discardableResult
|
|
592
|
+
@objc public func deleteData(offset: Swift.Int, count: Swift.Int) -> Self
|
|
593
|
+
@discardableResult
|
|
594
|
+
@objc public func replaceData(offset: Swift.Int, count: Swift.Int, with s: Swift.String) -> Self
|
|
595
|
+
@discardableResult
|
|
596
|
+
@objc public func deleteData(range: Foundation.NSRange) -> Self
|
|
597
|
+
@discardableResult
|
|
598
|
+
@objc public func replaceData(range: Foundation.NSRange, with s: Swift.String) -> Self
|
|
599
|
+
@objc deinit
|
|
600
|
+
}
|
|
601
|
+
extension Mason.MasonTextNode {
|
|
602
|
+
@objc dynamic public func attributed() -> Foundation.NSAttributedString
|
|
603
|
+
}
|
|
604
|
+
@objc(MasonTextContainer) public protocol TextContainer : ObjectiveC.NSObjectProtocol {
|
|
605
|
+
@objc var engine: Mason.TextEngine { get }
|
|
606
|
+
@objc var node: Mason.MasonNode { get }
|
|
607
|
+
}
|
|
608
|
+
@_hasMissingDesignatedInitializers @objc(MasonTextEngine) public class TextEngine : ObjectiveC.NSObject {
|
|
609
|
+
public var textContent: Swift.String {
|
|
610
|
+
get
|
|
611
|
+
set
|
|
612
|
+
}
|
|
613
|
+
@objc deinit
|
|
614
|
+
}
|
|
615
|
+
@objc(MasonTextType) public enum MasonTextType : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
|
|
616
|
+
case None
|
|
617
|
+
case P
|
|
618
|
+
case Span
|
|
619
|
+
case Code
|
|
620
|
+
case H1
|
|
621
|
+
case H2
|
|
622
|
+
case H3
|
|
623
|
+
case H4
|
|
624
|
+
case H5
|
|
625
|
+
case H6
|
|
626
|
+
case Li
|
|
627
|
+
case Blockquote
|
|
628
|
+
case B
|
|
629
|
+
case Pre
|
|
630
|
+
public typealias RawValue = Swift.Int32
|
|
631
|
+
public var rawValue: Mason.MasonTextType.RawValue {
|
|
632
|
+
get
|
|
633
|
+
}
|
|
634
|
+
public init?(rawValue: Mason.MasonTextType.RawValue)
|
|
635
|
+
public var description: Swift.String {
|
|
636
|
+
get
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
public enum InlineSegmentPayload {
|
|
640
|
+
case text(width: Swift.Float, ascent: Swift.Float, descent: Swift.Float)
|
|
641
|
+
case inline(id: Swift.OpaquePointer, width: Swift.Float, height: Swift.Float, baseline: Swift.Float)
|
|
642
|
+
}
|
|
643
|
+
@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class MasonTextLayer : QuartzCore.CALayer {
|
|
644
|
+
@objc override dynamic public init()
|
|
645
|
+
@objc override dynamic public init(layer: Any)
|
|
646
|
+
@objc override dynamic public func draw(in context: CoreGraphics.CGContext)
|
|
647
|
+
@objc deinit
|
|
648
|
+
}
|
|
649
|
+
@_hasMissingDesignatedInitializers @objc(MasonText) @objcMembers @_Concurrency.MainActor @preconcurrency public class MasonText : UIKit.UIView, Mason.MasonElement, Mason.MasonElementObjc, Mason.TextContainer {
|
|
650
|
+
@_Concurrency.MainActor @preconcurrency @objc final public let node: Mason.MasonNode
|
|
651
|
+
@objc @_Concurrency.MainActor @preconcurrency final public let type: Mason.MasonTextType
|
|
652
|
+
@_Concurrency.MainActor @preconcurrency @objc public var engine: Mason.TextEngine {
|
|
653
|
+
@objc get
|
|
654
|
+
@objc set
|
|
655
|
+
}
|
|
656
|
+
@_Concurrency.MainActor @preconcurrency @objc override dynamic public class var layerClass: Swift.AnyClass {
|
|
657
|
+
@objc get
|
|
658
|
+
}
|
|
659
|
+
@objc @_Concurrency.MainActor @preconcurrency public var textValues: Foundation.NSMutableData {
|
|
660
|
+
@objc get
|
|
661
|
+
}
|
|
662
|
+
@_Concurrency.MainActor @preconcurrency @objc public var uiView: UIKit.UIView {
|
|
663
|
+
@objc get
|
|
664
|
+
}
|
|
665
|
+
@_Concurrency.MainActor @preconcurrency @objc public var style: Mason.MasonStyle {
|
|
666
|
+
@objc get
|
|
667
|
+
}
|
|
668
|
+
@objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason, type textType: Mason.MasonTextType)
|
|
669
|
+
@objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason)
|
|
670
|
+
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func setNeedsDisplay()
|
|
671
|
+
@objc @_Concurrency.MainActor @preconcurrency public func requestLayout()
|
|
672
|
+
@objc @_Concurrency.MainActor @preconcurrency public func addView(_ view: UIKit.UIView)
|
|
673
|
+
@objc @_Concurrency.MainActor @preconcurrency public func addView(_ view: UIKit.UIView, at: Swift.Int)
|
|
674
|
+
@_Concurrency.MainActor @preconcurrency public var textOverflow: Mason.TextOverflow {
|
|
675
|
+
get
|
|
676
|
+
set
|
|
677
|
+
}
|
|
678
|
+
@objc @_Concurrency.MainActor @preconcurrency public var textOverflowCompat: Mason.TextOverflowCompat {
|
|
679
|
+
@objc get
|
|
680
|
+
@objc set
|
|
681
|
+
}
|
|
682
|
+
@objc @_Concurrency.MainActor @preconcurrency public var color: Swift.UInt32 {
|
|
683
|
+
@objc get
|
|
684
|
+
@objc set
|
|
685
|
+
}
|
|
686
|
+
@objc @_Concurrency.MainActor @preconcurrency public func setColor(ui color: UIKit.UIColor)
|
|
687
|
+
@objc @_Concurrency.MainActor @preconcurrency public var backgroundColorValue: Swift.UInt32 {
|
|
688
|
+
@objc get
|
|
689
|
+
@objc set
|
|
690
|
+
}
|
|
691
|
+
@objc @_Concurrency.MainActor @preconcurrency public func setBackgroundColor(ui color: UIKit.UIColor)
|
|
692
|
+
@objc @_Concurrency.MainActor @preconcurrency public var decorationColor: Swift.UInt32 {
|
|
693
|
+
@objc get
|
|
694
|
+
@objc set
|
|
695
|
+
}
|
|
696
|
+
@objc @_Concurrency.MainActor @preconcurrency public func setDecorationColor(ui color: UIKit.UIColor)
|
|
697
|
+
@objc @_Concurrency.MainActor @preconcurrency public var decorationLine: Mason.DecorationLine {
|
|
698
|
+
@objc get
|
|
699
|
+
@objc set
|
|
700
|
+
}
|
|
701
|
+
@objc @_Concurrency.MainActor @preconcurrency public var fontSize: Swift.Int32 {
|
|
702
|
+
@objc get
|
|
703
|
+
@objc set
|
|
704
|
+
}
|
|
705
|
+
@objc @_Concurrency.MainActor @preconcurrency public var fontStyle: Mason.FontStyle {
|
|
706
|
+
@objc get
|
|
707
|
+
@objc set
|
|
708
|
+
}
|
|
709
|
+
@objc @_Concurrency.MainActor @preconcurrency public func setFontStyle(_ style: Mason.FontStyle, slant: Swift.Int32)
|
|
710
|
+
@objc @_Concurrency.MainActor @preconcurrency public var fontWeight: Swift.String {
|
|
711
|
+
@objc get
|
|
712
|
+
@objc set
|
|
713
|
+
}
|
|
714
|
+
@objc @_Concurrency.MainActor @preconcurrency public var textTransform: Mason.TextTransform {
|
|
715
|
+
@objc get
|
|
716
|
+
@objc set
|
|
717
|
+
}
|
|
718
|
+
@objc @_Concurrency.MainActor @preconcurrency public var whiteSpace: Mason.WhiteSpace {
|
|
719
|
+
@objc get
|
|
720
|
+
@objc set
|
|
721
|
+
}
|
|
722
|
+
@objc @_Concurrency.MainActor @preconcurrency public var textWrap: Mason.TextWrap {
|
|
723
|
+
@objc get
|
|
724
|
+
@objc set
|
|
725
|
+
}
|
|
726
|
+
@objc @_Concurrency.MainActor @preconcurrency public var lineHeight: Swift.Float {
|
|
727
|
+
@objc get
|
|
728
|
+
@objc set
|
|
729
|
+
}
|
|
730
|
+
@objc @_Concurrency.MainActor @preconcurrency public var textContent: Swift.String {
|
|
731
|
+
@objc get
|
|
732
|
+
@objc set
|
|
733
|
+
}
|
|
734
|
+
@objc deinit
|
|
735
|
+
}
|
|
736
|
+
extension Mason.MasonText {
|
|
737
|
+
@objc @discardableResult
|
|
738
|
+
@_Concurrency.MainActor @preconcurrency dynamic public func removeChild(_ child: Mason.MasonNode) -> Mason.MasonNode?
|
|
739
|
+
}
|
|
740
|
+
extension Mason.MasonText {
|
|
741
|
+
@objc @_Concurrency.MainActor @preconcurrency dynamic public func addChild(_ child: Mason.MasonNode)
|
|
742
|
+
}
|
|
743
743
|
@_hasMissingDesignatedInitializers @objc(TrackSizingFunction) @objcMembers public class TrackSizingFunction : ObjectiveC.NSObject {
|
|
744
744
|
@objc public var isRepeating: Swift.Bool {
|
|
745
745
|
get
|
|
@@ -973,6 +973,8 @@ public let MasonLengthPercentageRectZero: Mason.MasonRect<Mason.MasonLengthPerce
|
|
|
973
973
|
@objc get
|
|
974
974
|
@objc set
|
|
975
975
|
}
|
|
976
|
+
@objc public func getBackgroundColor() -> Swift.String
|
|
977
|
+
@objc public func setBackgroundColor(string color: Swift.String)
|
|
976
978
|
@objc public func setBackgroundColor(ui color: UIKit.UIColor)
|
|
977
979
|
@objc public func setLineHeight(_ value: Swift.Float, _ isRelative: Swift.Bool)
|
|
978
980
|
@objc public var lineHeight: Swift.Float {
|
|
@@ -2042,6 +2044,7 @@ public enum VerticalAlign {
|
|
|
2042
2044
|
@objc deinit
|
|
2043
2045
|
}
|
|
2044
2046
|
@_hasMissingDesignatedInitializers @objcMembers @objc(MasonUIView) @_Concurrency.MainActor @preconcurrency public class MasonUIView : UIKit.UIView, Mason.MasonElement, Mason.MasonElementObjc {
|
|
2047
|
+
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect)
|
|
2045
2048
|
@_Concurrency.MainActor @preconcurrency @objc final public let node: Mason.MasonNode
|
|
2046
2049
|
@objc @_Concurrency.MainActor @preconcurrency final public let mason: Mason.NSCMason
|
|
2047
2050
|
@_Concurrency.MainActor @preconcurrency @objc public var uiView: UIKit.UIView {
|
|
@@ -2267,6 +2270,7 @@ public enum VerticalAlign {
|
|
|
2267
2270
|
@objc deinit
|
|
2268
2271
|
}
|
|
2269
2272
|
@_hasMissingDesignatedInitializers @objc(MasonScroll) @objcMembers @_Concurrency.MainActor @preconcurrency public class Scroll : UIKit.UIScrollView, UIKit.UIScrollViewDelegate, Mason.MasonElement, Mason.MasonElementObjc {
|
|
2273
|
+
@_Concurrency.MainActor @preconcurrency @objc override dynamic public func draw(_ rect: CoreFoundation.CGRect)
|
|
2270
2274
|
@_Concurrency.MainActor @preconcurrency @objc final public let node: Mason.MasonNode
|
|
2271
2275
|
@objc @_Concurrency.MainActor @preconcurrency final public let mason: Mason.NSCMason
|
|
2272
2276
|
@_Concurrency.MainActor @preconcurrency @objc public var uiView: UIKit.UIView {
|
|
@@ -2290,10 +2294,10 @@ extension Mason.NSCFontFaceStatus : Swift.Equatable {}
|
|
|
2290
2294
|
extension Mason.NSCFontFaceStatus : Swift.Hashable {}
|
|
2291
2295
|
extension Mason.CSSBorderRenderer.Side : Swift.Equatable {}
|
|
2292
2296
|
extension Mason.CSSBorderRenderer.Side : Swift.Hashable {}
|
|
2293
|
-
extension Mason.MasonTextType : Swift.Equatable {}
|
|
2294
|
-
extension Mason.MasonTextType : Swift.Hashable {}
|
|
2295
2297
|
extension Mason.MasonNodeType : Swift.Equatable {}
|
|
2296
2298
|
extension Mason.MasonNodeType : Swift.Hashable {}
|
|
2299
|
+
extension Mason.MasonTextType : Swift.Equatable {}
|
|
2300
|
+
extension Mason.MasonTextType : Swift.Hashable {}
|
|
2297
2301
|
extension Mason.NSCFontFaceSetStatus : Swift.Equatable {}
|
|
2298
2302
|
extension Mason.NSCFontFaceSetStatus : Swift.Hashable {}
|
|
2299
2303
|
extension Mason.LoadingState : Swift.Equatable {}
|