@acorex/components 19.14.2 → 19.14.4
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,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@acorex/components",
|
3
|
-
"version": "19.14.
|
3
|
+
"version": "19.14.4",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": ">=19.0.0",
|
6
6
|
"@angular/core": ">=19.0.0",
|
@@ -33,10 +33,6 @@
|
|
33
33
|
"types": "./alert/index.d.ts",
|
34
34
|
"default": "./fesm2022/acorex-components-alert.mjs"
|
35
35
|
},
|
36
|
-
"./audio-wave": {
|
37
|
-
"types": "./audio-wave/index.d.ts",
|
38
|
-
"default": "./fesm2022/acorex-components-audio-wave.mjs"
|
39
|
-
},
|
40
36
|
"./autocomplete": {
|
41
37
|
"types": "./autocomplete/index.d.ts",
|
42
38
|
"default": "./fesm2022/acorex-components-autocomplete.mjs"
|
@@ -45,6 +41,10 @@
|
|
45
41
|
"types": "./avatar/index.d.ts",
|
46
42
|
"default": "./fesm2022/acorex-components-avatar.mjs"
|
47
43
|
},
|
44
|
+
"./audio-wave": {
|
45
|
+
"types": "./audio-wave/index.d.ts",
|
46
|
+
"default": "./fesm2022/acorex-components-audio-wave.mjs"
|
47
|
+
},
|
48
48
|
"./badge": {
|
49
49
|
"types": "./badge/index.d.ts",
|
50
50
|
"default": "./fesm2022/acorex-components-badge.mjs"
|
@@ -229,14 +229,14 @@
|
|
229
229
|
"types": "./page/index.d.ts",
|
230
230
|
"default": "./fesm2022/acorex-components-page.mjs"
|
231
231
|
},
|
232
|
-
"./paint": {
|
233
|
-
"types": "./paint/index.d.ts",
|
234
|
-
"default": "./fesm2022/acorex-components-paint.mjs"
|
235
|
-
},
|
236
232
|
"./password-box": {
|
237
233
|
"types": "./password-box/index.d.ts",
|
238
234
|
"default": "./fesm2022/acorex-components-password-box.mjs"
|
239
235
|
},
|
236
|
+
"./paint": {
|
237
|
+
"types": "./paint/index.d.ts",
|
238
|
+
"default": "./fesm2022/acorex-components-paint.mjs"
|
239
|
+
},
|
240
240
|
"./pdf-reader": {
|
241
241
|
"types": "./pdf-reader/index.d.ts",
|
242
242
|
"default": "./fesm2022/acorex-components-pdf-reader.mjs"
|
@@ -66,8 +66,9 @@ export type AXSchedulerMultiDayViewAppointment = {
|
|
66
66
|
appointments: AXSchedulerInternalAppointment[];
|
67
67
|
date: AXDateTime;
|
68
68
|
};
|
69
|
+
export type AXSchedulerDateRange = AXRange<Date>;
|
69
70
|
export type AXSchedulerAppointmentDataSourceFilter = {
|
70
|
-
range:
|
71
|
+
range: AXSchedulerDateRange;
|
71
72
|
};
|
72
73
|
export type AXSchedulerAppointmentLoader = (filter?: AXSchedulerAppointmentDataSourceFilter) => AXSchedulerAppointment[];
|
73
74
|
export type AXSchedulerAppointmentLoaderAsync = (filter?: AXSchedulerAppointmentDataSourceFilter) => Promise<AXSchedulerAppointment[]>;
|
@@ -2,7 +2,7 @@ import { AXValueChangedEvent, NXComponent, NXEvent, NXNativeEvent } from '@acore
|
|
2
2
|
import { AXDropZoneDropEvent } from '@acorex/cdk/drag-drop';
|
3
3
|
import { AXDateTime } from '@acorex/core/date-time';
|
4
4
|
import { OnInit } from '@angular/core';
|
5
|
-
import { AXDayOfWeekName, AXSchedulerAppointment, AXSchedulerAppointmentDataSource, AXSchedulerInternalAppointment, AXSchedulerView } from './scheduler.class';
|
5
|
+
import { AXDayOfWeekName, AXSchedulerAppointment, AXSchedulerAppointmentDataSource, AXSchedulerDateRange, AXSchedulerInternalAppointment, AXSchedulerView } from './scheduler.class';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export interface AXSchedulerAppointmentMouseEvent extends NXNativeEvent<AXSchedulerComponent, MouseEvent> {
|
8
8
|
appointment: AXSchedulerAppointment;
|
@@ -38,10 +38,6 @@ export declare class AXSchedulerComponent extends NXComponent implements OnInit
|
|
38
38
|
protected calendarType: import("@angular/core").WritableSignal<string>;
|
39
39
|
startingDate: import("@angular/core").InputSignal<Date>;
|
40
40
|
protected currentDate: import("@angular/core").WritableSignal<AXDateTime>;
|
41
|
-
private _endRange;
|
42
|
-
endRange: import("@angular/core").Signal<Date>;
|
43
|
-
private _fromRange;
|
44
|
-
fromRange: import("@angular/core").Signal<Date>;
|
45
41
|
private _appointments;
|
46
42
|
appointments: import("@angular/core").Signal<AXSchedulerAppointment[]>;
|
47
43
|
protected rtl: import("@angular/core").WritableSignal<boolean>;
|
@@ -62,10 +58,7 @@ export declare class AXSchedulerComponent extends NXComponent implements OnInit
|
|
62
58
|
firstDayOfWeek: import("@angular/core").InputSignal<AXDayOfWeekName>;
|
63
59
|
views: import("@angular/core").InputSignal<AXSchedulerView[]>;
|
64
60
|
selectedView: import("@angular/core").ModelSignal<AXSchedulerView>;
|
65
|
-
onRangeChanged: import("@angular/core").OutputEmitterRef<
|
66
|
-
from: Date;
|
67
|
-
to: Date;
|
68
|
-
}>;
|
61
|
+
onRangeChanged: import("@angular/core").OutputEmitterRef<AXSchedulerDateRange>;
|
69
62
|
onSlotClicked: import("@angular/core").OutputEmitterRef<AXSchedulerSlotMouseEvent>;
|
70
63
|
onSlotDblClicked: import("@angular/core").OutputEmitterRef<AXSchedulerSlotMouseEvent>;
|
71
64
|
onSlotRightClick: import("@angular/core").OutputEmitterRef<AXSchedulerSlotMouseEvent>;
|
@@ -86,6 +79,7 @@ export declare class AXSchedulerComponent extends NXComponent implements OnInit
|
|
86
79
|
currentDateText: import("@angular/core").Signal<string>;
|
87
80
|
calendarDepth: import("@angular/core").Signal<"day" | "month">;
|
88
81
|
mappedAppointments: import("@angular/core").Signal<AXSchedulerInternalAppointment[]>;
|
82
|
+
range: import("@angular/core").Signal<AXSchedulerDateRange>;
|
89
83
|
viewAppointments: import("@angular/core").Signal<AXSchedulerInternalAppointment[]>;
|
90
84
|
viewChanged(e: AXValueChangedEvent<AXSchedulerView>): void;
|
91
85
|
nextClick(): void;
|