@bizy/core 19.10.4 → 19.11.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.
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class BizyDeviceService {
3
+ #private;
4
+ getUserAgent(): Promise<string>;
5
+ isMobile: () => boolean;
6
+ isTablet: () => boolean;
7
+ isDesktop: () => boolean;
8
+ isPortrait: () => boolean;
9
+ isLandscape: () => boolean;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<BizyDeviceService, never>;
11
+ static ɵprov: i0.ɵɵInjectableDeclaration<BizyDeviceService>;
12
+ }
@@ -1,6 +1,6 @@
1
1
  export { BizyServicesModule } from './services.module';
2
2
  export { BizyAnimationService, BIZY_ANIMATION } from './animation.service';
3
- export { BizyUserAgentService } from "./user-agent/user-agent.service";
3
+ export { BizyDeviceService } from "./device/device.service";
4
4
  export { BizyCacheService } from './cache.service';
5
5
  export { BizyCopyToClipboardService } from "./copy-to-clipboard.service";
6
6
  export { BizyExportToCSVService } from './export-to-csv.service';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "19.10.4",
3
+ "version": "19.11.0",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "19.2.7",
6
6
  "@angular/cdk": "19.2.10",
@@ -23,6 +23,7 @@
23
23
  "fuse.js": "7.1.0",
24
24
  "html2canvas": "1.4.1",
25
25
  "rxjs": "7.8.2",
26
+ "ngx-device-detector": "9.0.0",
26
27
  "zone.js": "0.15.0"
27
28
  },
28
29
  "dependencies": {
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class BizyUserAgentService {
3
- get(): Promise<string>;
4
- static ɵfac: i0.ɵɵFactoryDeclaration<BizyUserAgentService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<BizyUserAgentService>;
6
- }