@acorex/components 20.1.7 → 20.1.9
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/conversation/index.d.ts +15 -4
- package/fesm2022/acorex-components-conversation.mjs +39 -11
- package/fesm2022/acorex-components-conversation.mjs.map +1 -1
- package/fesm2022/acorex-components-scheduler.mjs +83 -16
- package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
- package/fesm2022/acorex-components-time-duration.mjs +113 -26
- package/fesm2022/acorex-components-time-duration.mjs.map +1 -1
- package/package.json +9 -9
- package/scheduler/index.d.ts +54 -8
- package/time-duration/index.d.ts +2 -1
package/scheduler/index.d.ts
CHANGED
@@ -113,6 +113,8 @@ declare class AXSchedulerComponent extends NXComponent implements OnInit {
|
|
113
113
|
hasHeader: _angular_core.InputSignal<boolean>;
|
114
114
|
readonly: _angular_core.InputSignal<boolean>;
|
115
115
|
draggable: _angular_core.InputSignal<boolean>;
|
116
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
117
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
116
118
|
allowFullScreen: _angular_core.InputSignal<boolean>;
|
117
119
|
multiDayViewDaysCount: _angular_core.InputSignal<number>;
|
118
120
|
dataSource: _angular_core.InputSignal<AXSchedulerAppointmentDataSource>;
|
@@ -126,6 +128,9 @@ declare class AXSchedulerComponent extends NXComponent implements OnInit {
|
|
126
128
|
onSlotDblClicked: _angular_core.OutputEmitterRef<AXSchedulerSlotMouseEvent>;
|
127
129
|
onSlotRightClick: _angular_core.OutputEmitterRef<AXSchedulerSlotMouseEvent>;
|
128
130
|
onAppointmentDrop: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
131
|
+
onActionClick: _angular_core.OutputEmitterRef<{
|
132
|
+
appointment: AXSchedulerAppointment;
|
133
|
+
}>;
|
129
134
|
onAppointmentClicked: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
130
135
|
onAppointmentDblClicked: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
131
136
|
onAppointmentRightClick: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
@@ -152,7 +157,7 @@ declare class AXSchedulerComponent extends NXComponent implements OnInit {
|
|
152
157
|
handleFullScreen(): void;
|
153
158
|
refresh(appointments?: AXSchedulerAppointment[]): Promise<void>;
|
154
159
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerComponent, never>;
|
155
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerComponent, "ax-scheduler", never, { "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "startingDate": { "alias": "startingDate"; "required": false; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": false; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": false; "isSignal": true; }; "hasHeader": { "alias": "hasHeader"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "allowFullScreen": { "alias": "allowFullScreen"; "required": false; "isSignal": true; }; "multiDayViewDaysCount": { "alias": "multiDayViewDaysCount"; "required": false; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "views": { "alias": "views"; "required": false; "isSignal": true; }; "selectedView": { "alias": "selectedView"; "required": false; "isSignal": true; }; }, { "selectedView": "selectedViewChange"; "onDataLoaded": "onDataLoaded"; "onRangeChanged": "onRangeChanged"; "onSlotClicked": "onSlotClicked"; "onSlotDblClicked": "onSlotDblClicked"; "onSlotRightClick": "onSlotRightClick"; "onAppointmentDrop": "onAppointmentDrop"; "onAppointmentClicked": "onAppointmentClicked"; "onAppointmentDblClicked": "onAppointmentDblClicked"; "onAppointmentRightClick": "onAppointmentRightClick"; }, never, never, true, never>;
|
160
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerComponent, "ax-scheduler", never, { "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "startingDate": { "alias": "startingDate"; "required": false; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": false; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": false; "isSignal": true; }; "hasHeader": { "alias": "hasHeader"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "allowFullScreen": { "alias": "allowFullScreen"; "required": false; "isSignal": true; }; "multiDayViewDaysCount": { "alias": "multiDayViewDaysCount"; "required": false; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "views": { "alias": "views"; "required": false; "isSignal": true; }; "selectedView": { "alias": "selectedView"; "required": false; "isSignal": true; }; }, { "selectedView": "selectedViewChange"; "onDataLoaded": "onDataLoaded"; "onRangeChanged": "onRangeChanged"; "onSlotClicked": "onSlotClicked"; "onSlotDblClicked": "onSlotDblClicked"; "onSlotRightClick": "onSlotRightClick"; "onAppointmentDrop": "onAppointmentDrop"; "onActionClick": "onActionClick"; "onAppointmentClicked": "onAppointmentClicked"; "onAppointmentDblClicked": "onAppointmentDblClicked"; "onAppointmentRightClick": "onAppointmentRightClick"; }, never, never, true, never>;
|
156
161
|
}
|
157
162
|
|
158
163
|
declare class AXSchedulerDayViewComponent extends NXComponent {
|
@@ -162,6 +167,8 @@ declare class AXSchedulerDayViewComponent extends NXComponent {
|
|
162
167
|
readonly GAP_PX = 1;
|
163
168
|
readonly: _angular_core.InputSignal<boolean>;
|
164
169
|
draggable: _angular_core.InputSignal<boolean>;
|
170
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
171
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
165
172
|
calendar: _angular_core.InputSignal<string>;
|
166
173
|
date: _angular_core.InputSignal<AXDateTime>;
|
167
174
|
endDayHour: _angular_core.InputSignal<number>;
|
@@ -177,12 +184,16 @@ declare class AXSchedulerDayViewComponent extends NXComponent {
|
|
177
184
|
appointmentDblClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
178
185
|
appointmentRightClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
179
186
|
onAppointmentDropInternal: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
187
|
+
onActionClickInternal: _angular_core.OutputEmitterRef<{
|
188
|
+
appointment: AXSchedulerAppointment;
|
189
|
+
}>;
|
180
190
|
private readonly eventOutputMap;
|
181
191
|
handleAppointmentEvent(mouseEvent: MouseEvent, appointment: AXSchedulerAppointment): void;
|
182
192
|
handleSingleSlotEvent(mouseEvent: MouseEvent, startDate: AXDateTime): void;
|
183
193
|
handleAllDaySlotEvent(mouseEvent: MouseEvent): void;
|
184
194
|
handleAllDayDrop(e: AXDropZoneDropEvent): void;
|
185
195
|
handleSingleDayDrop(e: AXDropZoneDropEvent, startDate: AXDateTime): void;
|
196
|
+
handleActionClick(event: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
186
197
|
hoursArray: _angular_core.Signal<AXDateTime[]>;
|
187
198
|
appointmentLayouts: _angular_core.Signal<Map<any, AXSchedulerDayAppointmentLayout>>;
|
188
199
|
getAppointmentLayout(key: any): AXSchedulerDayAppointmentLayout | undefined;
|
@@ -192,7 +203,7 @@ declare class AXSchedulerDayViewComponent extends NXComponent {
|
|
192
203
|
getAppointmentHeight(key: any): string;
|
193
204
|
get isReadonly(): boolean;
|
194
205
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerDayViewComponent, never>;
|
195
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerDayViewComponent, "ax-scheduler-day-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; }, never, never, true, never>;
|
206
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerDayViewComponent, "ax-scheduler-day-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; "onActionClickInternal": "onActionClickInternal"; }, never, never, true, never>;
|
196
207
|
}
|
197
208
|
|
198
209
|
type AXSchedulerGridBadgeInfo = AXSchedulerOverflowBadge & {
|
@@ -205,6 +216,8 @@ declare class AXSchedulerWeekViewComponent extends NXComponent {
|
|
205
216
|
readonly GAP_PX = 1;
|
206
217
|
readonly: _angular_core.InputSignal<boolean>;
|
207
218
|
draggable: _angular_core.InputSignal<boolean>;
|
219
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
220
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
208
221
|
calendar: _angular_core.InputSignal<string>;
|
209
222
|
date: _angular_core.InputSignal<AXDateTime>;
|
210
223
|
endDayHour: _angular_core.InputSignal<number>;
|
@@ -228,12 +241,16 @@ declare class AXSchedulerWeekViewComponent extends NXComponent {
|
|
228
241
|
appointmentDblClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
229
242
|
appointmentRightClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
230
243
|
onAppointmentDropInternal: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
244
|
+
onActionClickInternal: _angular_core.OutputEmitterRef<{
|
245
|
+
appointment: AXSchedulerAppointment;
|
246
|
+
}>;
|
231
247
|
private readonly eventOutputMap;
|
232
248
|
handleAppointmentEvent(mouseEvent: MouseEvent, appointmentSegment: AXSchedulerAppointment): void;
|
233
249
|
handleSingleSlotEvent(mouseEvent: MouseEvent, hour: AXDateTime, day: AXDateTime, minuteIndex: number): void;
|
234
250
|
handleAllDaySlotEvent(mouseEvent: MouseEvent, day: AXDateTime): void;
|
235
251
|
handleAllDayDrop(e: AXDropZoneDropEvent, day: AXDateTime): void;
|
236
252
|
handleSingleDayDrop(e: AXDropZoneDropEvent, hour: AXDateTime, day: AXDateTime, minuteIndex: number): void;
|
253
|
+
handleActionClick(event: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
237
254
|
hoursArray: _angular_core.Signal<AXDateTime[]>;
|
238
255
|
daysArray: _angular_core.Signal<{
|
239
256
|
date: AXDateTime;
|
@@ -260,7 +277,7 @@ declare class AXSchedulerWeekViewComponent extends NXComponent {
|
|
260
277
|
};
|
261
278
|
get isReadonly(): boolean;
|
262
279
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerWeekViewComponent, never>;
|
263
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerWeekViewComponent, "ax-scheduler-week-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; }, never, never, true, never>;
|
280
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerWeekViewComponent, "ax-scheduler-week-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; "onActionClickInternal": "onActionClickInternal"; }, never, never, true, never>;
|
264
281
|
}
|
265
282
|
|
266
283
|
type AXSchedulerMonthDayCell = {
|
@@ -280,6 +297,8 @@ declare class AXSchedulerMonthViewComponent extends NXComponent {
|
|
280
297
|
private schedulerService;
|
281
298
|
readonly: _angular_core.InputSignal<boolean>;
|
282
299
|
draggable: _angular_core.InputSignal<boolean>;
|
300
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
301
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
283
302
|
calendar: _angular_core.InputSignal<string>;
|
284
303
|
date: _angular_core.InputSignal<AXDateTime>;
|
285
304
|
firstDayOfWeek: _angular_core.InputSignal<AXDayOfWeekName>;
|
@@ -293,10 +312,14 @@ declare class AXSchedulerMonthViewComponent extends NXComponent {
|
|
293
312
|
appointmentDblClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
294
313
|
appointmentRightClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
295
314
|
onAppointmentDropInternal: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
315
|
+
onActionClickInternal: _angular_core.OutputEmitterRef<{
|
316
|
+
appointment: AXSchedulerAppointment;
|
317
|
+
}>;
|
296
318
|
private readonly eventOutputMap;
|
297
319
|
handleAppointmentEvent(mouseEvent: MouseEvent, appointmentSegmentOrOriginal: AXSchedulerAppointment): void;
|
298
320
|
handleSlotEvent(mouseEvent: MouseEvent, date: AXDateTime): void;
|
299
321
|
handleDrop(e: AXDropZoneDropEvent, date: AXDateTime): void;
|
322
|
+
handleActionClick(event: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
300
323
|
monthStartDate: _angular_core.Signal<AXDateTime>;
|
301
324
|
daysArray: _angular_core.Signal<AXDateTime[]>;
|
302
325
|
calendarDaysInfo: _angular_core.Signal<{
|
@@ -314,7 +337,7 @@ declare class AXSchedulerMonthViewComponent extends NXComponent {
|
|
314
337
|
gridTemplateRowsStyle: _angular_core.Signal<string>;
|
315
338
|
get isReadonly(): boolean;
|
316
339
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerMonthViewComponent, never>;
|
317
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerMonthViewComponent, "ax-scheduler-month-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; }, never, never, true, never>;
|
340
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerMonthViewComponent, "ax-scheduler-month-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; "onActionClickInternal": "onActionClickInternal"; }, never, never, true, never>;
|
318
341
|
}
|
319
342
|
|
320
343
|
declare class AXSchedulerTimelineDayViewComponent extends NXComponent {
|
@@ -324,6 +347,8 @@ declare class AXSchedulerTimelineDayViewComponent extends NXComponent {
|
|
324
347
|
readonly GAP_PX = 1;
|
325
348
|
readonly: _angular_core.InputSignal<boolean>;
|
326
349
|
draggable: _angular_core.InputSignal<boolean>;
|
350
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
351
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
327
352
|
calendar: _angular_core.InputSignal<string>;
|
328
353
|
date: _angular_core.InputSignal<AXDateTime>;
|
329
354
|
endDayHour: _angular_core.InputSignal<number>;
|
@@ -341,15 +366,19 @@ declare class AXSchedulerTimelineDayViewComponent extends NXComponent {
|
|
341
366
|
appointmentDblClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
342
367
|
appointmentRightClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
343
368
|
onAppointmentDropInternal: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
369
|
+
onActionClickInternal: _angular_core.OutputEmitterRef<{
|
370
|
+
appointment: AXSchedulerAppointment;
|
371
|
+
}>;
|
344
372
|
private readonly eventOutputMap;
|
345
373
|
handleAppointmentEvent(mouseEvent: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
346
374
|
handleSlotEvent(mouseEvent: MouseEvent, startDate: AXDateTime): void;
|
347
375
|
handleDrop(e: AXDropZoneDropEvent, startDate: AXDateTime): void;
|
376
|
+
handleActionClick(event: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
348
377
|
hoursArray: _angular_core.Signal<AXDateTime[]>;
|
349
378
|
appointmentLayouts: _angular_core.Signal<AXSchedulerAppointmentLayout[]>;
|
350
379
|
get isReadonly(): boolean;
|
351
380
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerTimelineDayViewComponent, never>;
|
352
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerTimelineDayViewComponent, "ax-scheduler-timeline-day-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; }, never, never, true, never>;
|
381
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerTimelineDayViewComponent, "ax-scheduler-timeline-day-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; "onActionClickInternal": "onActionClickInternal"; }, never, never, true, never>;
|
353
382
|
}
|
354
383
|
|
355
384
|
declare class AXSchedulerModule {
|
@@ -448,6 +477,8 @@ declare class AXSchedulerAgendaViewComponent extends NXComponent {
|
|
448
477
|
daysCount: _angular_core.InputSignal<number>;
|
449
478
|
readonly: _angular_core.InputSignal<boolean>;
|
450
479
|
draggable: _angular_core.InputSignal<boolean>;
|
480
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
481
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
451
482
|
calendar: _angular_core.InputSignal<string>;
|
452
483
|
date: _angular_core.InputSignal<AXDateTime>;
|
453
484
|
appointments: _angular_core.InputSignal<AXSchedulerAppointment[]>;
|
@@ -459,10 +490,14 @@ declare class AXSchedulerAgendaViewComponent extends NXComponent {
|
|
459
490
|
appointmentDblClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
460
491
|
appointmentRightClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
461
492
|
onAppointmentDropInternal: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
493
|
+
onActionClickInternal: _angular_core.OutputEmitterRef<{
|
494
|
+
appointment: AXSchedulerAppointment;
|
495
|
+
}>;
|
462
496
|
private readonly eventOutputMap;
|
463
497
|
handleAppointmentEvent(mouseEvent: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
464
498
|
handleSlotEvent(mouseEvent: MouseEvent, date: AXDateTime): void;
|
465
499
|
handleDrop(e: AXDropZoneDropEvent, date: AXDateTime): void;
|
500
|
+
handleActionClick(event: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
466
501
|
protected isToday(date: AXDateTime): boolean;
|
467
502
|
protected isHoliday(date: AXDateTime): {
|
468
503
|
state: 'holiday' | 'weekend' | 'none';
|
@@ -470,7 +505,7 @@ declare class AXSchedulerAgendaViewComponent extends NXComponent {
|
|
470
505
|
};
|
471
506
|
get isReadonly(): boolean;
|
472
507
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerAgendaViewComponent, never>;
|
473
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerAgendaViewComponent, "ax-scheduler-agenda-view", never, { "daysCount": { "alias": "daysCount"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; }, never, never, true, never>;
|
508
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerAgendaViewComponent, "ax-scheduler-agenda-view", never, { "daysCount": { "alias": "daysCount"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; "onActionClickInternal": "onActionClickInternal"; }, never, never, true, never>;
|
474
509
|
}
|
475
510
|
|
476
511
|
interface TimelineMonthViewDayData {
|
@@ -490,6 +525,8 @@ declare class AXSchedulerTimelineMonthViewComponent extends NXComponent {
|
|
490
525
|
private readonly MAX_VISIBLE_APPOINTMENTS_PER_DAY;
|
491
526
|
readonly: _angular_core.InputSignal<boolean>;
|
492
527
|
draggable: _angular_core.InputSignal<boolean>;
|
528
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
529
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
493
530
|
calendar: _angular_core.InputSignal<string>;
|
494
531
|
date: _angular_core.InputSignal<AXDateTime>;
|
495
532
|
appointments: _angular_core.InputSignal<AXSchedulerAppointment[]>;
|
@@ -501,10 +538,14 @@ declare class AXSchedulerTimelineMonthViewComponent extends NXComponent {
|
|
501
538
|
appointmentDblClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
502
539
|
appointmentRightClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
503
540
|
onAppointmentDropInternal: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
541
|
+
onActionClickInternal: _angular_core.OutputEmitterRef<{
|
542
|
+
appointment: AXSchedulerAppointment;
|
543
|
+
}>;
|
504
544
|
private readonly eventOutputMap;
|
505
545
|
handleAppointmentEvent(mouseEvent: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
506
546
|
handleSlotEvent(mouseEvent: MouseEvent, date: AXDateTime): void;
|
507
547
|
handleDrop(e: AXDropZoneDropEvent, date: AXDateTime): void;
|
548
|
+
handleActionClick(event: MouseEvent, appointmentItem: AXSchedulerAppointment): void;
|
508
549
|
protected isToday(date: AXDateTime): boolean;
|
509
550
|
protected isHoliday(date: AXDateTime): {
|
510
551
|
state: 'holiday' | 'weekend' | 'none';
|
@@ -512,7 +553,7 @@ declare class AXSchedulerTimelineMonthViewComponent extends NXComponent {
|
|
512
553
|
};
|
513
554
|
get isReadonly(): boolean;
|
514
555
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerTimelineMonthViewComponent, never>;
|
515
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerTimelineMonthViewComponent, "ax-scheduler-timeline-month-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; }, never, never, true, never>;
|
556
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerTimelineMonthViewComponent, "ax-scheduler-timeline-month-view", never, { "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; "onActionClickInternal": "onActionClickInternal"; }, never, never, true, never>;
|
516
557
|
}
|
517
558
|
|
518
559
|
interface TimelineMultiDayDaySlot {
|
@@ -529,6 +570,8 @@ declare class AXSchedulerTimelineMultiDayViewComponent extends NXComponent {
|
|
529
570
|
daysCount: _angular_core.InputSignal<number>;
|
530
571
|
readonly: _angular_core.InputSignal<boolean>;
|
531
572
|
draggable: _angular_core.InputSignal<boolean>;
|
573
|
+
hasActions: _angular_core.InputSignal<boolean>;
|
574
|
+
dragStartDelay: _angular_core.InputSignal<number>;
|
532
575
|
calendar: _angular_core.InputSignal<string>;
|
533
576
|
date: _angular_core.InputSignal<AXDateTime>;
|
534
577
|
endDayHour: _angular_core.InputSignal<number>;
|
@@ -542,13 +585,16 @@ declare class AXSchedulerTimelineMultiDayViewComponent extends NXComponent {
|
|
542
585
|
appointmentDblClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
543
586
|
appointmentRightClickedInternal: _angular_core.OutputEmitterRef<AXSchedulerAppointmentMouseEvent>;
|
544
587
|
onAppointmentDropInternal: _angular_core.OutputEmitterRef<AXSchedulerSlotDropEvent>;
|
588
|
+
onActionClickInternal: _angular_core.OutputEmitterRef<{
|
589
|
+
appointment: AXSchedulerAppointment;
|
590
|
+
}>;
|
545
591
|
protected isToday(date: AXDateTime): boolean;
|
546
592
|
protected isHoliday(date: AXDateTime): {
|
547
593
|
state: 'holiday' | 'weekend' | 'none';
|
548
594
|
holiday?: AXHolidayDate;
|
549
595
|
};
|
550
596
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSchedulerTimelineMultiDayViewComponent, never>;
|
551
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerTimelineMultiDayViewComponent, "ax-scheduler-timeline-multi-day-view", never, { "daysCount": { "alias": "daysCount"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; }, never, never, true, never>;
|
597
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSchedulerTimelineMultiDayViewComponent, "ax-scheduler-timeline-multi-day-view", never, { "daysCount": { "alias": "daysCount"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "draggable": { "alias": "draggable"; "required": false; "isSignal": true; }; "hasActions": { "alias": "hasActions"; "required": false; "isSignal": true; }; "dragStartDelay": { "alias": "dragStartDelay"; "required": false; "isSignal": true; }; "calendar": { "alias": "calendar"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": true; "isSignal": true; }; "endDayHour": { "alias": "endDayHour"; "required": true; "isSignal": true; }; "startDayHour": { "alias": "startDayHour"; "required": true; "isSignal": true; }; "appointments": { "alias": "appointments"; "required": false; "isSignal": true; }; }, { "slotClickedInternal": "slotClickedInternal"; "slotDblClickedInternal": "slotDblClickedInternal"; "slotRightClickedInternal": "slotRightClickedInternal"; "appointmentClickedInternal": "appointmentClickedInternal"; "appointmentDblClickedInternal": "appointmentDblClickedInternal"; "appointmentRightClickedInternal": "appointmentRightClickedInternal"; "onAppointmentDropInternal": "onAppointmentDropInternal"; "onActionClickInternal": "onActionClickInternal"; }, never, never, true, never>;
|
552
598
|
}
|
553
599
|
|
554
600
|
export { AXSchedulerAgendaViewComponent, AXSchedulerComponent, AXSchedulerDayViewComponent, AXSchedulerModule, AXSchedulerMonthViewComponent, AXSchedulerService, AXSchedulerTimelineDayViewComponent, AXSchedulerTimelineMonthViewComponent, AXSchedulerTimelineMultiDayViewComponent, AXSchedulerWeekViewComponent };
|
package/time-duration/index.d.ts
CHANGED
@@ -14,6 +14,7 @@ declare class AXTimeDurationComponent extends AXTimeDurationComponent_base {
|
|
14
14
|
protected inputValue: string;
|
15
15
|
readonly valueStart: _angular_core.InputSignal<AXTimeDurationUnit>;
|
16
16
|
readonly valueEnd: _angular_core.InputSignal<AXTimeDurationUnit>;
|
17
|
+
readonly label: _angular_core.InputSignal<boolean>;
|
17
18
|
protected maskOptions: _angular_core.WritableSignal<any>;
|
18
19
|
private translationService;
|
19
20
|
private timeDurationFormatter;
|
@@ -35,7 +36,7 @@ declare class AXTimeDurationComponent extends AXTimeDurationComponent_base {
|
|
35
36
|
private maskToMilliseconds;
|
36
37
|
private updateMask;
|
37
38
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXTimeDurationComponent, never>;
|
38
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXTimeDurationComponent, "ax-time-duration", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "look": { "alias": "look"; "required": false; }; "valueStart": { "alias": "valueStart"; "required": false; "isSignal": true; }; "valueEnd": { "alias": "valueEnd"; "required": false; "isSignal": true; }; }, { "onValueChanged": "onValueChanged"; }, never, ["ax-validation-rule"], true, never>;
|
39
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXTimeDurationComponent, "ax-time-duration", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "look": { "alias": "look"; "required": false; }; "valueStart": { "alias": "valueStart"; "required": false; "isSignal": true; }; "valueEnd": { "alias": "valueEnd"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; }, { "onValueChanged": "onValueChanged"; }, never, ["ax-validation-rule"], true, never>;
|
39
40
|
}
|
40
41
|
|
41
42
|
declare class AXTimeDurationModule {
|