@sumaris-net/ngx-components 18.22.28 → 18.22.29-alpha1

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sumaris-net/ngx-components",
3
3
  "description": "SUMARiS Angular components",
4
- "version": "18.22.28",
4
+ "version": "18.22.29-alpha1",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -38,24 +38,26 @@
38
38
  "zone.js": "~0.14.10"
39
39
  },
40
40
  "optionalDependencies": {
41
- "@capacitor-community/native-audio": "~6.0.0",
42
- "@capacitor/android": "~6.2.0",
43
- "@capacitor/app": "~6.0.2",
44
- "@capacitor/browser": "~6.0.4",
45
- "@capacitor/camera": "~6.1.2",
46
- "@capacitor/clipboard": "~6.0.2",
47
- "@capacitor/core": "~6.2.0",
48
- "@capacitor/geolocation": "~6.1.0",
49
- "@capacitor/haptics": "~6.0.2",
50
- "@capacitor/keyboard": "~6.0.3",
51
- "@capacitor/network": "~6.0.3",
52
- "@capacitor/splash-screen": "~6.0.3",
53
- "@capacitor/status-bar": "~6.0.2",
41
+ "@capacitor-community/native-audio": "^7.0.1",
42
+ "@capacitor/android": "^7.4.4",
43
+ "@capacitor/app": "^7.1.0",
44
+ "@capacitor/browser": "^7.0.3",
45
+ "@capacitor/camera": "^7.0.2",
46
+ "@capacitor/clipboard": "^7.0.2",
47
+ "@capacitor/core": "^7.4.4",
48
+ "@capacitor/geolocation": "^7.1.6",
49
+ "@capacitor/haptics": "^7.0.2",
50
+ "@capacitor/ios": "^7.4.4",
51
+ "@capacitor/keyboard": "^7.0.3",
52
+ "@capacitor/network": "^7.0.3",
53
+ "@capacitor/splash-screen": "^7.0.3",
54
+ "@capacitor/status-bar": "^7.0.3",
54
55
  "@e-is/cordova-plugin-audiomanagement": "^1.0.3",
55
56
  "@e-is/cordova-plugin-downloader": "^1.2.0",
56
57
  "@awesome-cordova-plugins/core": "^6.16.0",
57
58
  "@awesome-cordova-plugins/audio-management": "^6.16.0",
58
59
  "@awesome-cordova-plugins/downloader": "^6.16.0",
60
+ "@capawesome/capacitor-android-edge-to-edge-support": "^7.2.3",
59
61
  "clipboard": "^2.0.11",
60
62
  "cordova-sqlite-storage": "~6.0.0",
61
63
  "emoji-toolkit": ">= 8.0.0 < 10.0.0",
@@ -91,6 +91,15 @@ export declare class PlatformService extends StartableService {
91
91
  filename?: string;
92
92
  } & Partial<DownloadRequest>): Observable<string | undefined>;
93
93
  copyToClipboard(data: string | WriteOptions, opts?: ShowToastOptions): Promise<void>;
94
+ updateTheme(options: {
95
+ darkMode?: boolean;
96
+ colors?: {
97
+ [color: string]: string;
98
+ };
99
+ vars?: {
100
+ [color: string]: string;
101
+ };
102
+ }): Promise<void>;
94
103
  toggleDarkTheme(enable: boolean): Promise<void>;
95
104
  toggleHighContrast(enable: boolean): void;
96
105
  showToast(opts: ShowToastOptions): Promise<HTMLIonToastElement>;
@@ -3,5 +3,6 @@ export declare class CapacitorPlugins {
3
3
  static readonly Camera = "Camera";
4
4
  static readonly StatusBar = "StatusBar";
5
5
  static readonly Keyboard = "Keyboard";
6
+ static readonly EdgeToEdge = "EdgeToEdge";
6
7
  static isAvailable: (name: string) => boolean;
7
8
  }
@@ -88,6 +88,18 @@ html {
88
88
  }
89
89
  }
90
90
 
91
+ ion-content {
92
+ --padding-bottom: var(--ion-safe-area-bottom);
93
+ }
94
+
95
+ ion-footer {
96
+ padding-bottom: var(--ion-safe-area-bottom);
97
+ }
98
+
99
+ ion-fab[vertical="bottom"] {
100
+ margin-bottom: var(--ion-safe-area-bottom);
101
+ }
102
+
91
103
  // --------------------------------------------------
92
104
  // Back button in app toolbar
93
105
  // --------------------------------------------------