@daypilot/daypilot-lite-vue 5.4.1 → 5.6.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.
@@ -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.1.809-lite
6
+ Version: 2026.2.817-lite
7
7
  */
8
8
  type GlobalDate = Date;
9
9
 
@@ -314,6 +314,7 @@ export namespace DayPilot {
314
314
  newStart: DayPilot.Date;
315
315
  newEnd: DayPilot.Date;
316
316
  newResource: ResourceId;
317
+ readonly alt: boolean;
317
318
  readonly ctrl: boolean;
318
319
  readonly shift: boolean;
319
320
  readonly meta: boolean;
@@ -330,6 +331,7 @@ export namespace DayPilot {
330
331
  readonly newStart: DayPilot.Date;
331
332
  readonly newEnd: DayPilot.Date;
332
333
  readonly newResource: ResourceId;
334
+ readonly alt: boolean;
333
335
  readonly ctrl: boolean;
334
336
  readonly shift: boolean;
335
337
  readonly meta: boolean;
@@ -343,6 +345,10 @@ export namespace DayPilot {
343
345
  newStart: DayPilot.Date;
344
346
  newEnd: DayPilot.Date;
345
347
  readonly what: "start" | "end"; // TODO check
348
+ readonly ctrl: boolean;
349
+ readonly shift: boolean;
350
+ readonly meta: boolean;
351
+ readonly alt: boolean;
346
352
 
347
353
  loaded(): void;
348
354
  preventDefault(): void;
@@ -356,6 +362,11 @@ export namespace DayPilot {
356
362
  readonly newStart: DayPilot.Date;
357
363
  readonly newEnd: DayPilot.Date;
358
364
  readonly what: "start" | "end";
365
+ readonly ctrl: boolean;
366
+ readonly shift: boolean;
367
+ readonly meta: boolean;
368
+ readonly alt: boolean;
369
+
359
370
  }
360
371
 
361
372
  export interface SchedulerEventRightClickArgs {
@@ -1266,6 +1277,7 @@ export namespace DayPilot {
1266
1277
  menuTitle?: string;
1267
1278
  onShow?: EventHandler<MenuShowArgs>;
1268
1279
  onHide?: EventHandler<MenuHideArgs>;
1280
+ rtl?: boolean;
1269
1281
  showMenuTitle?: boolean;
1270
1282
  zIndex?: number;
1271
1283
  theme?: string;
@@ -1439,8 +1451,6 @@ export namespace DayPilot {
1439
1451
 
1440
1452
  getDayOfWeek(): number;
1441
1453
 
1442
- getYear(): number;
1443
-
1444
1454
  getHours(): number;
1445
1455
 
1446
1456
  getMilliseconds(): number;
@@ -1504,12 +1514,12 @@ export namespace DayPilot {
1504
1514
  static delete<T = any>(url: string, params?: Http.RequestParams): Promise<Http.Result<T>>;
1505
1515
  }
1506
1516
 
1507
- namespace Http {
1508
- interface RequestParams {
1517
+ export namespace Http {
1518
+ export interface RequestParams {
1509
1519
  contentType?: string;
1510
1520
  headers?: Record<string, string>;
1511
1521
  }
1512
- interface Result<T = any> {
1522
+ export interface Result<T = any> {
1513
1523
  request: XMLHttpRequest;
1514
1524
  data?: T;
1515
1525
  }
@@ -1589,7 +1599,7 @@ export namespace DayPilot {
1589
1599
  export class Selection {
1590
1600
  start: DayPilot.Date;
1591
1601
  end: DayPilot.Date;
1592
- resource: string;
1602
+ resource?: ResourceId;
1593
1603
  }
1594
1604
 
1595
1605
  export interface EventDataShort {
@@ -1628,6 +1638,7 @@ export namespace DayPilot {
1628
1638
  borderRadius?: number | string;
1629
1639
  bottom?: number | string;
1630
1640
  cssClass?: string;
1641
+ cursor?: string;
1631
1642
  fontColor?: string;
1632
1643
  height?: number | string;
1633
1644
  horizontalAlignment?: HorizontalAlignment;