@bizy/core 20.10.4 → 21.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.
package/package.json CHANGED
@@ -1,44 +1,46 @@
1
1
  {
2
2
  "name": "@bizy/core",
3
- "version": "20.10.4",
3
+ "version": "21.0.0",
4
4
  "peerDependencies": {
5
- "@angular/cdk": "^20.0.0",
6
- "@angular/common": "^20.0.0",
7
- "@angular/core": "^20.0.0",
8
- "@angular/forms": "^20.0.0",
9
- "@angular/platform-browser": "^20.0.0",
10
- "@angular/platform-browser-dynamic": "^20.0.0",
11
- "@angular/router": "^20.0.0",
12
- "@ngx-translate/core": "16.0.4",
5
+ "@angular/cdk": "^21.0.0",
6
+ "@angular/common": "^21.0.0",
7
+ "@angular/core": "^21.0.0",
8
+ "@angular/forms": "^21.0.0",
9
+ "@angular/platform-browser": "^21.0.0",
10
+ "@angular/platform-browser-dynamic": "^21.0.0",
11
+ "@angular/router": "^21.0.0",
12
+ "@ngx-translate/core": "17.0.0",
13
13
  "@uppy/core": "3.13.1",
14
14
  "@uppy/dashboard": "3.8.3",
15
15
  "@uppy/locales": "3.5.3",
16
16
  "@uppy/xhr-upload": "3.6.7",
17
- "angular-calendar": "0.31.1",
17
+ "angular-calendar": "0.32.0",
18
+ "angular-draggable-droppable": "9.0.1",
19
+ "angular-resizable-element": "8.0.0",
18
20
  "date-fns": "4.1.0",
19
- "autonumeric": "4.10.8",
20
- "echarts": "5.6.0",
21
+ "autonumeric": "4.10.9",
22
+ "echarts": "6.0.0",
21
23
  "flatpickr": "4.6.13",
22
24
  "fuse.js": "7.1.0",
23
25
  "html2canvas": "1.4.1",
24
26
  "lottie-web": "5.13.0",
25
- "ngx-device-detector": "10.0.2",
26
- "validator": "13.15.15",
27
+ "ngx-device-detector": "11.0.0",
28
+ "validator": "13.15.23",
27
29
  "rxjs": "^7.4.0",
28
- "zone.js": "^0.15.0"
30
+ "zone.js": "^0.16.0"
29
31
  },
30
32
  "dependencies": {
31
33
  "tslib": "^2.0.0"
32
34
  },
33
35
  "sideEffects": false,
34
36
  "module": "fesm2022/bizy-core.mjs",
35
- "typings": "index.d.ts",
37
+ "typings": "types/bizy-core.d.ts",
36
38
  "exports": {
37
39
  "./package.json": {
38
40
  "default": "./package.json"
39
41
  },
40
42
  ".": {
41
- "types": "./index.d.ts",
43
+ "types": "./types/bizy-core.d.ts",
42
44
  "default": "./fesm2022/bizy-core.mjs"
43
45
  }
44
46
  }
@@ -156,12 +156,18 @@
156
156
  --bizy-heat-map-chart-tooltip-border-color: #fff;
157
157
  --bizy-heat-map-chart-x-highlight-area-background-color: #c5dcf34d;
158
158
  --bizy-heat-map-chart-x-highlight-area-border-color: var(--bizy-info-color);
159
+ --bizy-heat-map-chart-x-highlight-area-border-width: 0.5;
159
160
  --bizy-heat-map-chart-y-highlight-area-background-color: #f3c5c54d;
160
161
  --bizy-heat-map-chart-y-highlight-area-border-color: var(--bizy-danger-color);
162
+ --bizy-heat-map-chart-y-highlight-area-border-width: 0.5;
161
163
  --bizy-heat-map-chart-x-highlight-line-color: var(--bizy-danger-color);
162
164
  --bizy-heat-map-chart-x-highlight-line-label-color: var(--bizy-default-color);
165
+ --bizy-heat-map-chart-x-highlight-line-width: 1;
166
+ --bizy-heat-map-chart-x-highlight-line-style: solid;
163
167
  --bizy-heat-map-chart-y-highlight-line-color: var(--bizy-danger-color);
164
168
  --bizy-heat-map-chart-y-highlight-line-label-color: var(--bizy-default-color);
169
+ --bizy-heat-map-chart-y-highlight-line-width: 1;
170
+ --bizy-heat-map-chart-y-highlight-line-style: solid;
165
171
 
166
172
  --bizy-input-background-color: #fff;
167
173
  --bizy-input-focus-color: var(--bizy-info-color);
@@ -7,7 +7,7 @@ import { AbstractControl, ValidatorFn } from '@angular/forms';
7
7
  import { Portal, TemplatePortal, ComponentType } from '@angular/cdk/portal';
8
8
  import { DialogRef } from '@angular/cdk/dialog';
9
9
  import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
10
- import { LangChangeEvent, TranslateModule } from '@ngx-translate/core';
10
+ import { LangChangeEvent, StrictTranslation, TranslateModule } from '@ngx-translate/core';
11
11
  import { ActivatedRouteSnapshot, Router, ActivatedRoute } from '@angular/router';
12
12
  import { DomSanitizer, SafeHtml, SafeStyle, SafeScript, SafeUrl, SafeResourceUrl } from '@angular/platform-browser';
13
13
  import Fuse, { FuseGetFunction } from 'fuse.js';
@@ -952,6 +952,7 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
952
952
  x: IBizyHeatMapHighlightLineLabel;
953
953
  y: IBizyHeatMapHighlightLineLabel;
954
954
  };
955
+ slot?: 'start' | 'center' | 'end';
955
956
  };
956
957
  xAxis: {
957
958
  labels: Array<string>;
@@ -1835,11 +1836,11 @@ declare enum LANGUAGE {
1835
1836
  }
1836
1837
  interface ILocale {
1837
1838
  lang: LANGUAGE;
1838
- translations: Record<string, unknown>;
1839
+ translations: Record<string, StrictTranslation>;
1839
1840
  }
1840
1841
  declare class BizyTranslateService {
1841
1842
  #private;
1842
- get language$(): EventEmitter<LangChangeEvent>;
1843
+ get language$(): Observable<LangChangeEvent>;
1843
1844
  loadTranslations(...args: ILocale[]): void;
1844
1845
  addLangs(langs: Array<LANGUAGE>): void;
1845
1846
  getLangs(): Array<LANGUAGE>;