@capacitor/ios 8.0.0-nightly-20251020T150552.0 → 8.0.0-nightly-20251021T150638.0

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.
@@ -24,12 +24,6 @@
24
24
  #import "CDVAvailability.h"
25
25
  #import <WebKit/WebKit.h>
26
26
 
27
- @interface UIView (org_apache_cordova_UIView_Extension)
28
-
29
- @property (nonatomic, weak) UIScrollView* scrollView;
30
-
31
- @end
32
-
33
27
  extern NSString* const CDVPageDidLoadNotification;
34
28
  extern NSString* const CDVPluginHandleOpenURLNotification;
35
29
  extern NSString* const CDVPluginHandleOpenURLWithAppSourceAndAnnotationNotification;
@@ -54,7 +48,7 @@ extern NSString* const CDVViewWillTransitionToSizeNotification;
54
48
  @interface CDVPlugin : NSObject {}
55
49
 
56
50
  - (instancetype)initWithWebViewEngine:(WKWebView *)theWebViewEngine;
57
- @property (nonatomic, weak) UIView* webView;
51
+ @property (nonatomic, weak) WKWebView* webView;
58
52
  @property (nonatomic, weak) WKWebView * webViewEngine;
59
53
  @property (nonatomic, strong) NSString * className;
60
54
 
@@ -18,24 +18,6 @@
18
18
  */
19
19
 
20
20
  #import "CDVPlugin.h"
21
- #include <objc/message.h>
22
-
23
- @implementation UIView (org_apache_cordova_UIView_Extension)
24
-
25
- @dynamic scrollView;
26
-
27
- - (UIScrollView*)scrollView
28
- {
29
- SEL scrollViewSelector = NSSelectorFromString(@"scrollView");
30
-
31
- if ([self respondsToSelector:scrollViewSelector]) {
32
- return ((id (*)(id, SEL))objc_msgSend)(self, scrollViewSelector);
33
- }
34
-
35
- return nil;
36
- }
37
-
38
- @end
39
21
 
40
22
  NSString* const CDVPageDidLoadNotification = @"CDVPageDidLoadNotification";
41
23
  NSString* const CDVPluginHandleOpenURLNotification = @"CDVPluginHandleOpenURLNotification";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/ios",
3
- "version": "8.0.0-nightly-20251020T150552.0",
3
+ "version": "8.0.0-nightly-20251021T150638.0",
4
4
  "description": "Capacitor: Cross-platform apps with JavaScript and the web",
5
5
  "homepage": "https://capacitorjs.com",
6
6
  "author": "Ionic Team <hi@ionic.io> (https://ionic.io)",
@@ -25,7 +25,7 @@
25
25
  "xc:build:CapacitorCordova": "cd CapacitorCordova && xcodebuild && cd .."
26
26
  },
27
27
  "peerDependencies": {
28
- "@capacitor/core": "^8.0.0-nightly-20251020T150552.0"
28
+ "@capacitor/core": "^8.0.0-nightly-20251021T150638.0"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"