@lodev09/react-native-true-sheet 3.1.0-beta.0 → 3.1.0-beta.1

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,6 +26,10 @@ 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
+
29
33
  @implementation TrueSheetContainerView {
30
34
  TrueSheetContentView *_contentView;
31
35
  TrueSheetHeaderView *_headerView;
@@ -19,6 +19,10 @@
19
19
 
20
20
  using namespace facebook::react;
21
21
 
22
+ Class<RCTComponentViewProtocol> TrueSheetContentViewCls(void) {
23
+ return TrueSheetContentView.class;
24
+ }
25
+
22
26
  @implementation TrueSheetContentView {
23
27
  RCTScrollViewComponentView *_pinnedScrollView;
24
28
  UIView *_pinnedTopView;
@@ -18,6 +18,10 @@
18
18
 
19
19
  using namespace facebook::react;
20
20
 
21
+ Class<RCTComponentViewProtocol> TrueSheetFooterViewCls(void) {
22
+ return TrueSheetFooterView.class;
23
+ }
24
+
21
25
  @implementation TrueSheetFooterView {
22
26
  CGFloat _lastHeight;
23
27
  BOOL _didInitialLayout;
@@ -17,6 +17,10 @@
17
17
 
18
18
  using namespace facebook::react;
19
19
 
20
+ Class<RCTComponentViewProtocol> TrueSheetHeaderViewCls(void) {
21
+ return TrueSheetHeaderView.class;
22
+ }
23
+
20
24
  @implementation TrueSheetHeaderView {
21
25
  CGSize _lastSize;
22
26
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lodev09/react-native-true-sheet",
3
- "version": "3.1.0-beta.0",
3
+ "version": "3.1.0-beta.1",
4
4
  "description": "The true native bottom sheet experience for your React Native Apps.",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./lib/module/index.js",