@lodev09/react-native-true-sheet 3.1.0-beta.1 → 3.1.0-beta.2
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.
|
@@ -26,10 +26,6 @@ using namespace facebook::react;
|
|
|
26
26
|
@interface TrueSheetContainerView () <TrueSheetContentViewDelegate, TrueSheetHeaderViewDelegate>
|
|
27
27
|
@end
|
|
28
28
|
|
|
29
|
-
Class<RCTComponentViewProtocol> TrueSheetContainerViewCls(void) {
|
|
30
|
-
return TrueSheetContainerView.class;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
29
|
@implementation TrueSheetContainerView {
|
|
34
30
|
TrueSheetContentView *_contentView;
|
|
35
31
|
TrueSheetHeaderView *_headerView;
|
|
@@ -185,4 +181,8 @@ Class<RCTComponentViewProtocol> TrueSheetContainerViewCls(void) {
|
|
|
185
181
|
|
|
186
182
|
@end
|
|
187
183
|
|
|
184
|
+
Class<RCTComponentViewProtocol> TrueSheetContainerViewCls(void) {
|
|
185
|
+
return TrueSheetContainerView.class;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
188
|
#endif
|
|
@@ -19,10 +19,6 @@
|
|
|
19
19
|
|
|
20
20
|
using namespace facebook::react;
|
|
21
21
|
|
|
22
|
-
Class<RCTComponentViewProtocol> TrueSheetContentViewCls(void) {
|
|
23
|
-
return TrueSheetContentView.class;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
22
|
@implementation TrueSheetContentView {
|
|
27
23
|
RCTScrollViewComponentView *_pinnedScrollView;
|
|
28
24
|
UIView *_pinnedTopView;
|
|
@@ -200,4 +196,8 @@ Class<RCTComponentViewProtocol> TrueSheetContentViewCls(void) {
|
|
|
200
196
|
|
|
201
197
|
@end
|
|
202
198
|
|
|
199
|
+
Class<RCTComponentViewProtocol> TrueSheetContentViewCls(void) {
|
|
200
|
+
return TrueSheetContentView.class;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
203
|
#endif
|
|
@@ -18,10 +18,6 @@
|
|
|
18
18
|
|
|
19
19
|
using namespace facebook::react;
|
|
20
20
|
|
|
21
|
-
Class<RCTComponentViewProtocol> TrueSheetFooterViewCls(void) {
|
|
22
|
-
return TrueSheetFooterView.class;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
21
|
@implementation TrueSheetFooterView {
|
|
26
22
|
CGFloat _lastHeight;
|
|
27
23
|
BOOL _didInitialLayout;
|
|
@@ -102,4 +98,8 @@ Class<RCTComponentViewProtocol> TrueSheetFooterViewCls(void) {
|
|
|
102
98
|
|
|
103
99
|
@end
|
|
104
100
|
|
|
101
|
+
Class<RCTComponentViewProtocol> TrueSheetFooterViewCls(void) {
|
|
102
|
+
return TrueSheetFooterView.class;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
105
|
#endif
|
|
@@ -17,10 +17,6 @@
|
|
|
17
17
|
|
|
18
18
|
using namespace facebook::react;
|
|
19
19
|
|
|
20
|
-
Class<RCTComponentViewProtocol> TrueSheetHeaderViewCls(void) {
|
|
21
|
-
return TrueSheetHeaderView.class;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
20
|
@implementation TrueSheetHeaderView {
|
|
25
21
|
CGSize _lastSize;
|
|
26
22
|
}
|
|
@@ -61,4 +57,8 @@ Class<RCTComponentViewProtocol> TrueSheetHeaderViewCls(void) {
|
|
|
61
57
|
|
|
62
58
|
@end
|
|
63
59
|
|
|
60
|
+
Class<RCTComponentViewProtocol> TrueSheetHeaderViewCls(void) {
|
|
61
|
+
return TrueSheetHeaderView.class;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
64
|
#endif
|
package/package.json
CHANGED