@sumaris-net/ngx-components 18.26.13 → 18.26.15

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.26.13",
4
+ "version": "18.26.15",
5
5
  "author": "contact@e-is.pro",
6
6
  "license": "AGPL-3.0",
7
7
  "readmeFilename": "README.md",
@@ -43,19 +43,20 @@
43
43
  "@awesome-cordova-plugins/core": "^6.16.0",
44
44
  "@awesome-cordova-plugins/downloader": "^6.16.0",
45
45
  "@capacitor-community/native-audio": "^7.0.1",
46
- "@capacitor/android": "^7.4.4",
47
- "@capacitor/app": "^7.1.0",
48
- "@capacitor/browser": "^7.0.3",
49
- "@capacitor/camera": "^7.0.2",
50
- "@capacitor/clipboard": "^7.0.2",
51
- "@capacitor/core": "^7.4.4",
46
+ "@capacitor/android": "^7.4.5",
47
+ "@capacitor/app": "^7.1.2",
48
+ "@capacitor/browser": "^7.0.5",
49
+ "@capacitor/camera": "^7.0.5",
50
+ "@capacitor/clipboard": "^7.0.4",
51
+ "@capacitor/core": "^7.4.5",
52
+ "@capacitor/device": "^7.0.5",
52
53
  "@capacitor/geolocation": "^7.1.6",
53
- "@capacitor/haptics": "^7.0.2",
54
- "@capacitor/ios": "^7.4.4",
55
- "@capacitor/keyboard": "^7.0.3",
56
- "@capacitor/network": "^7.0.3",
57
- "@capacitor/splash-screen": "^7.0.3",
58
- "@capacitor/status-bar": "^7.0.3",
54
+ "@capacitor/haptics": "^7.0.5",
55
+ "@capacitor/ios": "^7.4.5",
56
+ "@capacitor/keyboard": "^7.0.6",
57
+ "@capacitor/network": "^7.0.4",
58
+ "@capacitor/splash-screen": "^7.0.5",
59
+ "@capacitor/status-bar": "^7.0.6",
59
60
  "@capawesome/capacitor-android-edge-to-edge-support": "^7.2.3",
60
61
  "@e-is/cordova-plugin-audiomanagement": "^1.0.3",
61
62
  "@e-is/cordova-plugin-downloader": "^1.2.0",
@@ -19,6 +19,7 @@ import { OpenOptions } from '@capacitor/browser';
19
19
  import { ILoggingService } from '../../shared/logging/logger.model';
20
20
  import { Clipboard as CdkClipboard } from '@angular/cdk/clipboard';
21
21
  import { WriteOptions } from '@capacitor/clipboard/dist/esm/definitions';
22
+ import { DeviceInfo } from '@capacitor/device';
22
23
  import * as i0 from "@angular/core";
23
24
  export declare const AndroidOsEnvironment: Readonly<{
24
25
  DIRECTORY_DOWNLOADS: "Download";
@@ -112,6 +113,7 @@ export declare class PlatformService extends StartableService {
112
113
  }) => void): Promise<Subscription>;
113
114
  showToast(opts: ShowToastOptions): Promise<HTMLIonToastElement>;
114
115
  closeToast(id?: string): Promise<boolean>;
116
+ getDeviceInfo(): Promise<DeviceInfo>;
115
117
  protected configureTheme(mobile: boolean, win?: any): Promise<void>;
116
118
  protected configureCapacitorPlugins(): Promise<void>;
117
119
  protected configureTranslate(): void;
@@ -53,7 +53,7 @@ export declare class SettingsPage extends AppForm<LocalSettings> implements OnIn
53
53
  setAccountInheritance(enable: boolean, opts?: {
54
54
  emitEvent?: boolean;
55
55
  }): void;
56
- showSelectPeerModal(opts?: Partial<ISelectPeerModalOptions>): Promise<void>;
56
+ showSelectPeerModal(event?: Event, opts?: Partial<ISelectPeerModalOptions>): Promise<void>;
57
57
  protected setForceOffline(value: boolean): void;
58
58
  cancel(event?: Event): Promise<void>;
59
59
  close(_?: Event): Promise<boolean>;
@@ -4,5 +4,6 @@ export declare class CapacitorPlugins {
4
4
  static readonly StatusBar = "StatusBar";
5
5
  static readonly Keyboard = "Keyboard";
6
6
  static readonly EdgeToEdge = "EdgeToEdge";
7
+ static readonly Device = "Device";
7
8
  static isAvailable: (name: string) => boolean;
8
9
  }
@@ -14,3 +14,4 @@ export declare function isAndroid(win: Window): boolean;
14
14
  export declare function isCapacitor(win: any): boolean;
15
15
  export declare function isMobile(win: Window): any;
16
16
  export declare function isPrint(win?: Window): boolean;
17
+ export declare function isWebAnimationsSupported(): boolean;
@@ -2,7 +2,7 @@
2
2
  "name": "ngx-sumaris-components",
3
3
  "short_name": "ngx-sumaris-components",
4
4
  "manifest_version": 1,
5
- "version": "18.26.13",
5
+ "version": "18.26.15",
6
6
  "default_locale": "fr",
7
7
  "description": "Angular components for building beautiful and responsive Apps",
8
8
  "icons": [{
@@ -115,6 +115,8 @@
115
115
  .mat-mdc-footer-cell {
116
116
  // Remove default padding
117
117
  padding-inline: 0;
118
+ padding-inline-start: 0; // Compat Chrome < 87 (padding-inline not exists yet)
119
+ padding-inline-end: 0; // Compat Chrome < 87 (padding-inline not exists yet)
118
120
 
119
121
  &.ion-padding-start {
120
122
  padding-inline-start: var(--mat-cell-horizontal-padding);
@@ -352,7 +354,10 @@
352
354
  }
353
355
 
354
356
  .mdc-text-field {
357
+ // Remove default padding
355
358
  padding-inline: 0;
359
+ padding-inline-start: 0; // Compat Chrome < 87 (padding-inline not exists yet)
360
+ padding-inline-end: 0; // Compat Chrome < 87 (padding-inline not exists yet)
356
361
  }
357
362
 
358
363
  // Prefix