@daypilot/daypilot-lite-react 5.10.0-sandbox.850 → 5.10.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/daypilot-react.min.d.ts +88 -19
- package/daypilot-react.min.js +7 -7
- package/package.json +2 -2
package/daypilot-react.min.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ DayPilot Lite
|
|
|
3
3
|
Copyright (c) 2005 - 2026 Annpoint s.r.o.
|
|
4
4
|
https://www.daypilot.org/
|
|
5
5
|
Licensed under Apache Software License 2.0
|
|
6
|
-
Version: 2026.3.
|
|
6
|
+
Version: 2026.3.854-lite
|
|
7
7
|
*/
|
|
8
8
|
type GlobalDate = Date;
|
|
9
9
|
|
|
@@ -218,26 +218,23 @@ export namespace DayPilot {
|
|
|
218
218
|
}
|
|
219
219
|
|
|
220
220
|
export interface SchedulerBeforeCellRenderArgs {
|
|
221
|
-
readonly
|
|
222
|
-
|
|
223
|
-
readonly end: DayPilot.Date;
|
|
224
|
-
readonly resource: ResourceId;
|
|
225
|
-
readonly row: DayPilot.Row;
|
|
226
|
-
readonly x: number;
|
|
227
|
-
readonly y: number;
|
|
228
|
-
readonly properties: {
|
|
229
|
-
html: string;
|
|
230
|
-
business: boolean;
|
|
231
|
-
backColor: string;
|
|
232
|
-
backImage: string;
|
|
233
|
-
backRepeat: string;
|
|
234
|
-
fontColor: string;
|
|
235
|
-
cssClass: string;
|
|
236
|
-
text: string;
|
|
237
|
-
};
|
|
238
|
-
};
|
|
221
|
+
readonly control: Scheduler;
|
|
222
|
+
readonly cell: Cell;
|
|
239
223
|
}
|
|
240
224
|
|
|
225
|
+
export interface SchedulerBeforeCellDomAddArgs {
|
|
226
|
+
readonly control: Scheduler;
|
|
227
|
+
readonly cell: Cell;
|
|
228
|
+
element: any;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
export interface SchedulerBeforeCellDomRemoveArgs {
|
|
232
|
+
readonly control: Scheduler;
|
|
233
|
+
readonly cell: Cell;
|
|
234
|
+
readonly element: any;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
|
|
241
238
|
export interface SchedulerBeforeCornerRenderArgs {
|
|
242
239
|
readonly control: Scheduler;
|
|
243
240
|
html: string;
|
|
@@ -254,10 +251,38 @@ export namespace DayPilot {
|
|
|
254
251
|
readonly data: EventData;
|
|
255
252
|
}
|
|
256
253
|
|
|
254
|
+
export interface SchedulerBeforeEventDomAddArgs {
|
|
255
|
+
readonly control: Scheduler;
|
|
256
|
+
readonly e: DayPilot.Event;
|
|
257
|
+
element: any;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export interface SchedulerBeforeEventDomRemoveArgs {
|
|
261
|
+
readonly control: Scheduler;
|
|
262
|
+
readonly e: DayPilot.Event;
|
|
263
|
+
readonly element: any;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
|
|
257
267
|
export interface SchedulerBeforeRowHeaderRenderArgs {
|
|
258
268
|
readonly row: RenderRow;
|
|
259
269
|
}
|
|
260
270
|
|
|
271
|
+
export interface SchedulerBeforeRowHeaderDomAddArgs {
|
|
272
|
+
readonly control: DayPilot.Scheduler;
|
|
273
|
+
readonly row: DayPilot.Row;
|
|
274
|
+
element: any;
|
|
275
|
+
target: "Cell" | "Text";
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export interface SchedulerBeforeRowHeaderDomRemoveArgs {
|
|
279
|
+
readonly control: DayPilot.Scheduler;
|
|
280
|
+
readonly row: DayPilot.Row;
|
|
281
|
+
readonly element: any;
|
|
282
|
+
readonly target: "Cell" | "Text";
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
|
|
261
286
|
export interface SchedulerBeforeTimeHeaderRenderArgs {
|
|
262
287
|
readonly control: Scheduler;
|
|
263
288
|
readonly header: {
|
|
@@ -274,6 +299,27 @@ export namespace DayPilot {
|
|
|
274
299
|
};
|
|
275
300
|
}
|
|
276
301
|
|
|
302
|
+
export interface SchedulerBeforeTimeHeaderDomAddArgs {
|
|
303
|
+
readonly control: Scheduler;
|
|
304
|
+
readonly header: {
|
|
305
|
+
readonly start: DayPilot.Date;
|
|
306
|
+
readonly end: DayPilot.Date;
|
|
307
|
+
readonly level: number;
|
|
308
|
+
};
|
|
309
|
+
element: any;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
export interface SchedulerBeforeTimeHeaderDomRemoveArgs {
|
|
313
|
+
readonly control: Scheduler;
|
|
314
|
+
readonly header: {
|
|
315
|
+
readonly start: DayPilot.Date;
|
|
316
|
+
readonly end: DayPilot.Date;
|
|
317
|
+
readonly level: number;
|
|
318
|
+
};
|
|
319
|
+
readonly element: any;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
|
|
277
323
|
export interface SchedulerEventClickArgs {
|
|
278
324
|
readonly e: DayPilot.Event;
|
|
279
325
|
readonly div: HTMLElement;
|
|
@@ -1364,6 +1410,29 @@ export namespace DayPilot {
|
|
|
1364
1410
|
preventDefault(): void;
|
|
1365
1411
|
}
|
|
1366
1412
|
|
|
1413
|
+
export interface Cell {
|
|
1414
|
+
readonly start: DayPilot.Date;
|
|
1415
|
+
readonly end: DayPilot.Date;
|
|
1416
|
+
readonly resource: ResourceId;
|
|
1417
|
+
readonly row: DayPilot.Row;
|
|
1418
|
+
properties: CellProperties;
|
|
1419
|
+
readonly x: number;
|
|
1420
|
+
readonly y: number;
|
|
1421
|
+
}
|
|
1422
|
+
|
|
1423
|
+
export interface CellProperties {
|
|
1424
|
+
areas: AreaData[];
|
|
1425
|
+
backColor: string;
|
|
1426
|
+
backImage: string;
|
|
1427
|
+
backRepeat: string;
|
|
1428
|
+
business: boolean;
|
|
1429
|
+
cssClass: string;
|
|
1430
|
+
fontColor: string;
|
|
1431
|
+
html: string;
|
|
1432
|
+
text: string;
|
|
1433
|
+
verticalAlignment: string;
|
|
1434
|
+
horizontalAlignment: string;
|
|
1435
|
+
}
|
|
1367
1436
|
|
|
1368
1437
|
export class SwitcherPropsAndEvents {
|
|
1369
1438
|
selectedClass?: string;
|