@bizy/core 21.9.0 → 21.9.1
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/fesm2022/bizy-core.mjs +156 -111
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/package.json +1 -2
- package/types/bizy-core.d.ts +6 -4
package/package.json
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bizy/core",
|
|
3
|
-
"version": "21.9.
|
|
3
|
+
"version": "21.9.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/cdk": "^21.0.0",
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
8
|
"@angular/forms": "^21.0.0",
|
|
9
9
|
"@angular/platform-browser": "^21.0.0",
|
|
10
|
-
"@angular/platform-browser-dynamic": "^21.0.0",
|
|
11
10
|
"@angular/router": "^21.0.0",
|
|
12
11
|
"@ngx-translate/core": "17.0.0",
|
|
13
12
|
"@uppy/core": "5.2.0",
|
package/types/bizy-core.d.ts
CHANGED
|
@@ -453,7 +453,7 @@ declare class BizyContentModule {
|
|
|
453
453
|
static ɵinj: i0.ɵɵInjectorDeclaration<BizyContentModule>;
|
|
454
454
|
}
|
|
455
455
|
|
|
456
|
-
declare class BizyDatePickerComponent {
|
|
456
|
+
declare class BizyDatePickerComponent implements OnDestroy {
|
|
457
457
|
#private;
|
|
458
458
|
private bizyDatePicker;
|
|
459
459
|
id: string;
|
|
@@ -492,6 +492,7 @@ declare class BizyDatePickerComponent {
|
|
|
492
492
|
value: string;
|
|
493
493
|
set type(type: 'date' | 'date-time' | 'time' | 'year-month');
|
|
494
494
|
ngAfterViewInit(): void;
|
|
495
|
+
ngOnDestroy(): void;
|
|
495
496
|
setTouched(touched: boolean): void;
|
|
496
497
|
getNativeElement: () => any;
|
|
497
498
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyDatePickerComponent, never>;
|
|
@@ -641,7 +642,7 @@ declare class BizyFileUploaderComponent implements AfterViewInit, OnDestroy {
|
|
|
641
642
|
loadedFiles: EventEmitter<BizyFileUploaderFile[]>;
|
|
642
643
|
attachedFiles: EventEmitter<BizyFileUploaderAttachment[]>;
|
|
643
644
|
readonly TEMPLATE_ID = "bizy-file-uploader-template";
|
|
644
|
-
ngAfterViewInit(): void
|
|
645
|
+
ngAfterViewInit(): Promise<void>;
|
|
645
646
|
getNativeElement: () => any;
|
|
646
647
|
ngOnDestroy(): void;
|
|
647
648
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFileUploaderComponent, never>;
|
|
@@ -690,7 +691,7 @@ declare class BizyFileUploaderService {
|
|
|
690
691
|
disableLocalFiles: boolean;
|
|
691
692
|
enableUpload: boolean;
|
|
692
693
|
headers: Record<string, string>;
|
|
693
|
-
}): void
|
|
694
|
+
}): Promise<void>;
|
|
694
695
|
load: (data: BizyFileUploaderInputFile) => string | null;
|
|
695
696
|
remove: (fileId: string) => void;
|
|
696
697
|
disable(value: boolean): void;
|
|
@@ -699,6 +700,7 @@ declare class BizyFileUploaderService {
|
|
|
699
700
|
headers?: Record<string, string>;
|
|
700
701
|
}) => void;
|
|
701
702
|
cleanAllFiles: () => void;
|
|
703
|
+
destroy: () => void;
|
|
702
704
|
static ɵfac: i0.ɵɵFactoryDeclaration<BizyFileUploaderService, never>;
|
|
703
705
|
static ɵprov: i0.ɵɵInjectableDeclaration<BizyFileUploaderService>;
|
|
704
706
|
}
|
|
@@ -2679,7 +2681,7 @@ declare class BizyCurrencyFormatDirective implements OnInit, OnDestroy {
|
|
|
2679
2681
|
bizyCurrencyFormat: boolean;
|
|
2680
2682
|
options: AutoNumeric.Options;
|
|
2681
2683
|
constructor(elementRef: ElementRef);
|
|
2682
|
-
ngOnInit(): void
|
|
2684
|
+
ngOnInit(): Promise<void>;
|
|
2683
2685
|
ngOnDestroy(): void;
|
|
2684
2686
|
getValue: () => number;
|
|
2685
2687
|
setValue: (value: number) => void;
|