@capacitor/cli 8.0.0-nightly-20251205T150637.0 → 8.0.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.
Binary file
Binary file
Binary file
@@ -642,11 +642,17 @@ export interface PluginsConfig {
642
642
  */
643
643
  SystemBars?: {
644
644
  /**
645
- * Disables the injection of device css insets into the web view.
645
+ * Specifies how to handle problematic insets on Android.
646
646
  *
647
- * @default false
647
+ * This option is only supported on Android.
648
+ *
649
+ * `css` = Injects CSS variables (`--safe-area-inset-*`) containing correct safe area inset values into the webview.
650
+ *
651
+ * `disable` = Disable all inset handling.
652
+ *
653
+ * @default "css"
648
654
  */
649
- disableInsets?: boolean;
655
+ insetsHandling?: 'css' | 'disable';
650
656
  /**
651
657
  * The style of the text and icons of the system bars.
652
658
  *
@@ -29,6 +29,7 @@ const plugins = [
29
29
  '@capacitor/dialog',
30
30
  '@capacitor/filesystem',
31
31
  '@capacitor/geolocation',
32
+ '@capacitor/google-maps',
32
33
  '@capacitor/haptics',
33
34
  '@capacitor/keyboard',
34
35
  '@capacitor/local-notifications',
@@ -36,8 +37,8 @@ const plugins = [
36
37
  '@capacitor/network',
37
38
  '@capacitor/preferences',
38
39
  '@capacitor/push-notifications',
39
- '@capacitor/screen-reader',
40
40
  '@capacitor/screen-orientation',
41
+ '@capacitor/screen-reader',
41
42
  '@capacitor/share',
42
43
  '@capacitor/splash-screen',
43
44
  '@capacitor/status-bar',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/cli",
3
- "version": "8.0.0-nightly-20251205T150637.0",
3
+ "version": "8.0.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)",