@acorex/components 16.20.8 → 16.20.10
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/index.d.ts
CHANGED
|
@@ -1471,6 +1471,7 @@ declare class AXDataSourceReceivedEvent extends AXDataEvent<AXDataSourceReceived
|
|
|
1471
1471
|
declare class AXDataSourceComponent {
|
|
1472
1472
|
onDataReceived: EventEmitter<AXDataSourceReceivedEvent>;
|
|
1473
1473
|
onFetchStart: EventEmitter<AXBaseEvent>;
|
|
1474
|
+
onFetchError: EventEmitter<AXDataSourceReceivedEvent>;
|
|
1474
1475
|
provideData: (params: AXDataSourceReadParams) => Promise<any>;
|
|
1475
1476
|
params: any;
|
|
1476
1477
|
fetch(params: AXDataSourceReadParams): void;
|
|
@@ -2978,7 +2979,7 @@ declare class AXSwitchPropertyEditorModule {
|
|
|
2978
2979
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXSwitchPropertyEditorModule>;
|
|
2979
2980
|
}
|
|
2980
2981
|
|
|
2981
|
-
declare class AXDatePropertyEditorComponent extends AXProperyEditorComponent<Date> {
|
|
2982
|
+
declare class AXDatePropertyEditorComponent extends AXProperyEditorComponent<Date> implements AfterViewInit {
|
|
2982
2983
|
protected cdr: ChangeDetectorRef;
|
|
2983
2984
|
showTodayButton: boolean;
|
|
2984
2985
|
selectableHoliday: boolean;
|
|
@@ -2997,6 +2998,10 @@ declare class AXDatePropertyEditorComponent extends AXProperyEditorComponent<Dat
|
|
|
2997
2998
|
private date;
|
|
2998
2999
|
constructor(cdr: ChangeDetectorRef);
|
|
2999
3000
|
handleValueChange(e: any): void;
|
|
3001
|
+
navigate(value: number | AXDateTime): void;
|
|
3002
|
+
open(): void;
|
|
3003
|
+
close(): void;
|
|
3004
|
+
toggle(): void;
|
|
3000
3005
|
ngAfterViewInit(): void;
|
|
3001
3006
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXDatePropertyEditorComponent, never>;
|
|
3002
3007
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXDatePropertyEditorComponent, "ng-component", never, {}, {}, never, never, false, never>;
|