@triniwiz/nativescript-masonkit 1.0.0-alpha.14 → 1.0.0-alpha.15

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.
Files changed (35) hide show
  1. package/common.d.ts +6 -1
  2. package/common.js +59 -22
  3. package/common.js.map +1 -1
  4. package/helpers.d.ts +4 -4
  5. package/helpers.js +1 -0
  6. package/helpers.js.map +1 -1
  7. package/index.ios.js +2 -2
  8. package/package.json +1 -1
  9. package/platforms/android/masonkit-release.aar +0 -0
  10. package/platforms/ios/Mason.xcframework/Info.plist +5 -5
  11. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Headers/Mason-Swift.h +38 -2
  12. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Mason +0 -0
  13. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
  14. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.abi.json +2459 -672
  15. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.private.swiftinterface +65 -1
  16. package/platforms/ios/Mason.xcframework/ios-arm64/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios.swiftinterface +65 -1
  17. package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
  18. package/platforms/ios/Mason.xcframework/ios-arm64/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/aarch64/Mason.yml +1979 -1932
  19. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Headers/Mason-Swift.h +76 -4
  20. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Mason +0 -0
  21. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
  22. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
  23. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json +2459 -672
  24. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +65 -1
  25. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface +65 -1
  26. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json +2459 -672
  27. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +65 -1
  28. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +65 -1
  29. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/Mason.framework/_CodeSignature/CodeResources +22 -22
  30. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/DWARF/Mason +0 -0
  31. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/aarch64/Mason.yml +1979 -1932
  32. package/platforms/ios/Mason.xcframework/ios-arm64_x86_64-simulator/dSYMs/Mason.framework.dSYM/Contents/Resources/Relocations/x86_64/Mason.yml +1929 -1883
  33. package/style.d.ts +16 -16
  34. package/style.js +40 -20
  35. package/style.js.map +1 -1
@@ -52,6 +52,7 @@ public struct Line<T> {
52
52
  @objc public func clear()
53
53
  @objc public func createView() -> Mason.MasonUIView
54
54
  @objc public func createTextView() -> Mason.MasonText
55
+ @objc public func createTextView(type: Mason.MasonTextType) -> Mason.MasonText
55
56
  @objc public func createNode() -> Mason.MasonNode
56
57
  public func createNode(measure: @escaping Mason.MasonNode.MeasureFunc) -> Mason.MasonNode
57
58
  @objc public func printTree(_ node: Mason.MasonNode)
@@ -193,6 +194,29 @@ extension UIKit.UIColor {
193
194
  public static func colorFromRGBA(_ rgba: Swift.UInt32) -> UIKit.UIColor
194
195
  public func toUInt32() -> Swift.UInt32
195
196
  }
197
+ @objc(MasonTextType) public enum MasonTextType : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
198
+ case None
199
+ case P
200
+ case Span
201
+ case Code
202
+ case H1
203
+ case H2
204
+ case H3
205
+ case H4
206
+ case H5
207
+ case H6
208
+ case Li
209
+ case Blockquote
210
+ case B
211
+ public typealias RawValue = Swift.Int32
212
+ public var rawValue: Mason.MasonTextType.RawValue {
213
+ get
214
+ }
215
+ public init?(rawValue: Mason.MasonTextType.RawValue)
216
+ public var description: Swift.String {
217
+ get
218
+ }
219
+ }
196
220
  @_hasMissingDesignatedInitializers @objc(MasonText) @objcMembers @_Concurrency.MainActor @preconcurrency public class MasonText : UIKit.UIView, Mason.MasonView {
197
221
  @objc @_Concurrency.MainActor @preconcurrency public var owner: Mason.MasonText? {
198
222
  get
@@ -201,6 +225,8 @@ extension UIKit.UIColor {
201
225
  @objc @_Concurrency.MainActor @preconcurrency public var textValues: Foundation.Data {
202
226
  get
203
227
  }
228
+ @objc @_Concurrency.MainActor @preconcurrency final public let type: Mason.MasonTextType
229
+ @objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason, type textType: Mason.MasonTextType)
204
230
  @objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason)
205
231
  @objc @_Concurrency.MainActor @preconcurrency public init(node masonNode: Mason.MasonNode)
206
232
  @objc @_Concurrency.MainActor @preconcurrency public var uiView: UIKit.UIView {
@@ -254,6 +280,10 @@ extension UIKit.UIColor {
254
280
  @objc get
255
281
  @objc set
256
282
  }
283
+ @objc @_Concurrency.MainActor @preconcurrency public var whiteSpace: Mason.WhiteSpace {
284
+ @objc get
285
+ @objc set
286
+ }
257
287
  @objc @_Concurrency.MainActor @preconcurrency public var textWrap: Mason.TextWrap {
258
288
  @objc get
259
289
  @objc set
@@ -1068,8 +1098,8 @@ public enum GridPlacement : Swift.Codable {
1068
1098
  }
1069
1099
  }
1070
1100
  @objc(TextWrap) public enum TextWrap : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
1071
- case NoWrap
1072
1101
  case Wrap
1102
+ case NoWrap
1073
1103
  case Balance
1074
1104
  public typealias RawValue = Swift.Int32
1075
1105
  public var rawValue: Mason.TextWrap.RawValue {
@@ -1080,6 +1110,34 @@ public enum GridPlacement : Swift.Codable {
1080
1110
  get
1081
1111
  }
1082
1112
  }
1113
+ @objc(WhiteSpace) public enum WhiteSpace : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
1114
+ case Normal
1115
+ case Pre
1116
+ case PreWrap
1117
+ case PreLine
1118
+ public typealias RawValue = Swift.Int32
1119
+ public var rawValue: Mason.WhiteSpace.RawValue {
1120
+ get
1121
+ }
1122
+ public init?(rawValue: Mason.WhiteSpace.RawValue)
1123
+ public var description: Swift.String {
1124
+ get
1125
+ }
1126
+ }
1127
+ @objc(MasonLineHeight) public enum LineHeight : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
1128
+ case Normal
1129
+ case Pre
1130
+ case PreWrap
1131
+ case PreLine
1132
+ public typealias RawValue = Swift.Int32
1133
+ public var rawValue: Mason.LineHeight.RawValue {
1134
+ get
1135
+ }
1136
+ public init?(rawValue: Mason.LineHeight.RawValue)
1137
+ public var description: Swift.String {
1138
+ get
1139
+ }
1140
+ }
1083
1141
  public protocol MasonView {
1084
1142
  var style: Mason.MasonStyle { get }
1085
1143
  var node: Mason.MasonNode { get }
@@ -1337,6 +1395,8 @@ public protocol MasonView {
1337
1395
  @objc @_Concurrency.MainActor @preconcurrency public func getColumnGap() -> Mason.MasonLengthPercentageCompat
1338
1396
  @objc deinit
1339
1397
  }
1398
+ extension Mason.MasonTextType : Swift.Equatable {}
1399
+ extension Mason.MasonTextType : Swift.Hashable {}
1340
1400
  extension Mason.MasonDimensionCompatType : Swift.Equatable {}
1341
1401
  extension Mason.MasonDimensionCompatType : Swift.Hashable {}
1342
1402
  extension Mason.MasonLengthPercentageAutoCompatType : Swift.Equatable {}
@@ -1383,3 +1443,7 @@ extension Mason.FontStyle : Swift.Equatable {}
1383
1443
  extension Mason.FontStyle : Swift.Hashable {}
1384
1444
  extension Mason.TextWrap : Swift.Equatable {}
1385
1445
  extension Mason.TextWrap : Swift.Hashable {}
1446
+ extension Mason.WhiteSpace : Swift.Equatable {}
1447
+ extension Mason.WhiteSpace : Swift.Hashable {}
1448
+ extension Mason.LineHeight : Swift.Equatable {}
1449
+ extension Mason.LineHeight : Swift.Hashable {}
@@ -52,6 +52,7 @@ public struct Line<T> {
52
52
  @objc public func clear()
53
53
  @objc public func createView() -> Mason.MasonUIView
54
54
  @objc public func createTextView() -> Mason.MasonText
55
+ @objc public func createTextView(type: Mason.MasonTextType) -> Mason.MasonText
55
56
  @objc public func createNode() -> Mason.MasonNode
56
57
  public func createNode(measure: @escaping Mason.MasonNode.MeasureFunc) -> Mason.MasonNode
57
58
  @objc public func printTree(_ node: Mason.MasonNode)
@@ -193,6 +194,29 @@ extension UIKit.UIColor {
193
194
  public static func colorFromRGBA(_ rgba: Swift.UInt32) -> UIKit.UIColor
194
195
  public func toUInt32() -> Swift.UInt32
195
196
  }
197
+ @objc(MasonTextType) public enum MasonTextType : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
198
+ case None
199
+ case P
200
+ case Span
201
+ case Code
202
+ case H1
203
+ case H2
204
+ case H3
205
+ case H4
206
+ case H5
207
+ case H6
208
+ case Li
209
+ case Blockquote
210
+ case B
211
+ public typealias RawValue = Swift.Int32
212
+ public var rawValue: Mason.MasonTextType.RawValue {
213
+ get
214
+ }
215
+ public init?(rawValue: Mason.MasonTextType.RawValue)
216
+ public var description: Swift.String {
217
+ get
218
+ }
219
+ }
196
220
  @_hasMissingDesignatedInitializers @objc(MasonText) @objcMembers @_Concurrency.MainActor @preconcurrency public class MasonText : UIKit.UIView, Mason.MasonView {
197
221
  @objc @_Concurrency.MainActor @preconcurrency public var owner: Mason.MasonText? {
198
222
  get
@@ -201,6 +225,8 @@ extension UIKit.UIColor {
201
225
  @objc @_Concurrency.MainActor @preconcurrency public var textValues: Foundation.Data {
202
226
  get
203
227
  }
228
+ @objc @_Concurrency.MainActor @preconcurrency final public let type: Mason.MasonTextType
229
+ @objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason, type textType: Mason.MasonTextType)
204
230
  @objc @_Concurrency.MainActor @preconcurrency public init(mason: Mason.NSCMason)
205
231
  @objc @_Concurrency.MainActor @preconcurrency public init(node masonNode: Mason.MasonNode)
206
232
  @objc @_Concurrency.MainActor @preconcurrency public var uiView: UIKit.UIView {
@@ -254,6 +280,10 @@ extension UIKit.UIColor {
254
280
  @objc get
255
281
  @objc set
256
282
  }
283
+ @objc @_Concurrency.MainActor @preconcurrency public var whiteSpace: Mason.WhiteSpace {
284
+ @objc get
285
+ @objc set
286
+ }
257
287
  @objc @_Concurrency.MainActor @preconcurrency public var textWrap: Mason.TextWrap {
258
288
  @objc get
259
289
  @objc set
@@ -1068,8 +1098,8 @@ public enum GridPlacement : Swift.Codable {
1068
1098
  }
1069
1099
  }
1070
1100
  @objc(TextWrap) public enum TextWrap : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
1071
- case NoWrap
1072
1101
  case Wrap
1102
+ case NoWrap
1073
1103
  case Balance
1074
1104
  public typealias RawValue = Swift.Int32
1075
1105
  public var rawValue: Mason.TextWrap.RawValue {
@@ -1080,6 +1110,34 @@ public enum GridPlacement : Swift.Codable {
1080
1110
  get
1081
1111
  }
1082
1112
  }
1113
+ @objc(WhiteSpace) public enum WhiteSpace : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
1114
+ case Normal
1115
+ case Pre
1116
+ case PreWrap
1117
+ case PreLine
1118
+ public typealias RawValue = Swift.Int32
1119
+ public var rawValue: Mason.WhiteSpace.RawValue {
1120
+ get
1121
+ }
1122
+ public init?(rawValue: Mason.WhiteSpace.RawValue)
1123
+ public var description: Swift.String {
1124
+ get
1125
+ }
1126
+ }
1127
+ @objc(MasonLineHeight) public enum LineHeight : Swift.Int, Swift.RawRepresentable, Swift.CustomStringConvertible {
1128
+ case Normal
1129
+ case Pre
1130
+ case PreWrap
1131
+ case PreLine
1132
+ public typealias RawValue = Swift.Int32
1133
+ public var rawValue: Mason.LineHeight.RawValue {
1134
+ get
1135
+ }
1136
+ public init?(rawValue: Mason.LineHeight.RawValue)
1137
+ public var description: Swift.String {
1138
+ get
1139
+ }
1140
+ }
1083
1141
  public protocol MasonView {
1084
1142
  var style: Mason.MasonStyle { get }
1085
1143
  var node: Mason.MasonNode { get }
@@ -1337,6 +1395,8 @@ public protocol MasonView {
1337
1395
  @objc @_Concurrency.MainActor @preconcurrency public func getColumnGap() -> Mason.MasonLengthPercentageCompat
1338
1396
  @objc deinit
1339
1397
  }
1398
+ extension Mason.MasonTextType : Swift.Equatable {}
1399
+ extension Mason.MasonTextType : Swift.Hashable {}
1340
1400
  extension Mason.MasonDimensionCompatType : Swift.Equatable {}
1341
1401
  extension Mason.MasonDimensionCompatType : Swift.Hashable {}
1342
1402
  extension Mason.MasonLengthPercentageAutoCompatType : Swift.Equatable {}
@@ -1383,3 +1443,7 @@ extension Mason.FontStyle : Swift.Equatable {}
1383
1443
  extension Mason.FontStyle : Swift.Hashable {}
1384
1444
  extension Mason.TextWrap : Swift.Equatable {}
1385
1445
  extension Mason.TextWrap : Swift.Hashable {}
1446
+ extension Mason.WhiteSpace : Swift.Equatable {}
1447
+ extension Mason.WhiteSpace : Swift.Hashable {}
1448
+ extension Mason.LineHeight : Swift.Equatable {}
1449
+ extension Mason.LineHeight : Swift.Hashable {}
@@ -6,7 +6,7 @@
6
6
  <dict>
7
7
  <key>Headers/Mason-Swift.h</key>
8
8
  <data>
9
- BvaSMSJBsIXpmyAakIMN7Udq8zk=
9
+ cYsnk2GC9XyYRH0dDDABvYWOii0=
10
10
  </data>
11
11
  <key>Headers/Mason.h</key>
12
12
  <data>
@@ -22,19 +22,19 @@
22
22
  </data>
23
23
  <key>Modules/Mason.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo</key>
24
24
  <data>
25
- SRNbtyn9x33/DKrOjjKDDjo70cg=
25
+ R4DEZxshnJ1iKfGuLiuDbDmqui8=
26
26
  </data>
27
27
  <key>Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
28
28
  <data>
29
- IAR4M90Rc1gZCFMCOidNUstCvS4=
29
+ xY6+HE1S2O9/zqwleFgQlCN/B1s=
30
30
  </data>
31
31
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
32
32
  <data>
33
- S4ea3CeZMh/CNyIlBkqMqHxTAXA=
33
+ OIqOUsG2/s2qlP0jnW/xgNb9zrE=
34
34
  </data>
35
35
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
36
36
  <data>
37
- lsWB3aFcFQw2PCGrcpVz9twGTS4=
37
+ qN4BK3JCNzRq8dR/ZwOXrORWqCE=
38
38
  </data>
39
39
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
40
40
  <data>
@@ -42,19 +42,19 @@
42
42
  </data>
43
43
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
44
44
  <data>
45
- lsWB3aFcFQw2PCGrcpVz9twGTS4=
45
+ qN4BK3JCNzRq8dR/ZwOXrORWqCE=
46
46
  </data>
47
47
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
48
48
  <data>
49
- 7OJRkQIaDBGuQG/ZJFDOq/0gnAs=
49
+ Hde5IBBf85Wf7D1OsHz7Q9Ow0dA=
50
50
  </data>
51
51
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
52
52
  <data>
53
- S4ea3CeZMh/CNyIlBkqMqHxTAXA=
53
+ OIqOUsG2/s2qlP0jnW/xgNb9zrE=
54
54
  </data>
55
55
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
56
56
  <data>
57
- Je3ApjyRK0yALNZmhlvA5GU2ljQ=
57
+ FriDlm13mkKWkZjL9ETplweGyxs=
58
58
  </data>
59
59
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
60
60
  <data>
@@ -62,11 +62,11 @@
62
62
  </data>
63
63
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
64
64
  <data>
65
- Je3ApjyRK0yALNZmhlvA5GU2ljQ=
65
+ FriDlm13mkKWkZjL9ETplweGyxs=
66
66
  </data>
67
67
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
68
68
  <data>
69
- M7TvrjYVwT+WU+mJZ2U2LHL9oaY=
69
+ gXMFCDP59XmH1BtH6vNdbca7Z2Q=
70
70
  </data>
71
71
  <key>Modules/module.modulemap</key>
72
72
  <data>
@@ -79,7 +79,7 @@
79
79
  <dict>
80
80
  <key>hash2</key>
81
81
  <data>
82
- UizT7D2MToyezFD6qBV3NUBHEWtNvG105PlW78lznmU=
82
+ 9Bv8VSa/veDbjF2qNqSJXxQ/2wRWtECrejUoxRHgfpw=
83
83
  </data>
84
84
  </dict>
85
85
  <key>Headers/Mason.h</key>
@@ -100,28 +100,28 @@
100
100
  <dict>
101
101
  <key>hash2</key>
102
102
  <data>
103
- qpad9IM35t2FgDvOMgZ1SHpH2w21Fq8SeQIIyb/tH0g=
103
+ TuZbKWpZsUGzllvVXJ+jNIM82Br8CA/2QviDsIsW1pY=
104
104
  </data>
105
105
  </dict>
106
106
  <key>Modules/Mason.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
107
107
  <dict>
108
108
  <key>hash2</key>
109
109
  <data>
110
- hrz8j6YrCrA3rk3Olw5cuH0YY3LGDsJfJSJ1JaqFYpc=
110
+ v06e2Tqd0H6R3mEQNR2JxmYygZLMmdJGjHCPWjsYWNQ=
111
111
  </data>
112
112
  </dict>
113
113
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
114
114
  <dict>
115
115
  <key>hash2</key>
116
116
  <data>
117
- 7kzWFdV9HZeApsGGfGfwr3mFCf24M4CQs5N2ep9FoCI=
117
+ +iO9YUgTa74yErOJeBLDBdrDpEldoV/sg3S45hpVaTc=
118
118
  </data>
119
119
  </dict>
120
120
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
121
121
  <dict>
122
122
  <key>hash2</key>
123
123
  <data>
124
- 7OFeQ5CK4jxjQ3viUzaqFG1HwgFVJv+L06xKKqmtrNY=
124
+ nXP4YOD6QEjJWJUJggQGKl93PVNFCaCeETJuKwVa1Go=
125
125
  </data>
126
126
  </dict>
127
127
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
@@ -135,28 +135,28 @@
135
135
  <dict>
136
136
  <key>hash2</key>
137
137
  <data>
138
- 7OFeQ5CK4jxjQ3viUzaqFG1HwgFVJv+L06xKKqmtrNY=
138
+ nXP4YOD6QEjJWJUJggQGKl93PVNFCaCeETJuKwVa1Go=
139
139
  </data>
140
140
  </dict>
141
141
  <key>Modules/Mason.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
142
142
  <dict>
143
143
  <key>hash2</key>
144
144
  <data>
145
- D20+hIs2FUxnbFfjFJgzisMQKdTH5GymMMPKlfMz3NQ=
145
+ uNFMIeA6Pd+xMc4wuGhP14qyMgId80MbetibR6mdCQA=
146
146
  </data>
147
147
  </dict>
148
148
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
149
149
  <dict>
150
150
  <key>hash2</key>
151
151
  <data>
152
- 7kzWFdV9HZeApsGGfGfwr3mFCf24M4CQs5N2ep9FoCI=
152
+ +iO9YUgTa74yErOJeBLDBdrDpEldoV/sg3S45hpVaTc=
153
153
  </data>
154
154
  </dict>
155
155
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
156
156
  <dict>
157
157
  <key>hash2</key>
158
158
  <data>
159
- oSk3gXV2+79xckHT/8ZR20g9lyNgPMzhmk9+FTW0Tb0=
159
+ g5+08lWmVHBXvfikeM0z26zz+zX00He//nxhYUv/PRs=
160
160
  </data>
161
161
  </dict>
162
162
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
@@ -170,14 +170,14 @@
170
170
  <dict>
171
171
  <key>hash2</key>
172
172
  <data>
173
- oSk3gXV2+79xckHT/8ZR20g9lyNgPMzhmk9+FTW0Tb0=
173
+ g5+08lWmVHBXvfikeM0z26zz+zX00He//nxhYUv/PRs=
174
174
  </data>
175
175
  </dict>
176
176
  <key>Modules/Mason.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
177
177
  <dict>
178
178
  <key>hash2</key>
179
179
  <data>
180
- 9G2rwjm+l2c97TGZCItGoYfJTCaExD0zjZuRMft5fCI=
180
+ DzoGXaLMcITcKjH5aTjnEyNgYVxaiaggZvKWhhvoAVw=
181
181
  </data>
182
182
  </dict>
183
183
  <key>Modules/module.modulemap</key>