@daypilot/daypilot-lite-javascript 5.4.1 → 5.5.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.813-lite
7
7
  */
8
8
  type GlobalDate = Date;
9
9
 
@@ -1266,6 +1266,7 @@ export namespace DayPilot {
1266
1266
  menuTitle?: string;
1267
1267
  onShow?: EventHandler<MenuShowArgs>;
1268
1268
  onHide?: EventHandler<MenuHideArgs>;
1269
+ rtl?: boolean;
1269
1270
  showMenuTitle?: boolean;
1270
1271
  zIndex?: number;
1271
1272
  theme?: string;
@@ -1439,8 +1440,6 @@ export namespace DayPilot {
1439
1440
 
1440
1441
  getDayOfWeek(): number;
1441
1442
 
1442
- getYear(): number;
1443
-
1444
1443
  getHours(): number;
1445
1444
 
1446
1445
  getMilliseconds(): number;
@@ -1504,12 +1503,12 @@ export namespace DayPilot {
1504
1503
  static delete<T = any>(url: string, params?: Http.RequestParams): Promise<Http.Result<T>>;
1505
1504
  }
1506
1505
 
1507
- namespace Http {
1508
- interface RequestParams {
1506
+ export namespace Http {
1507
+ export interface RequestParams {
1509
1508
  contentType?: string;
1510
1509
  headers?: Record<string, string>;
1511
1510
  }
1512
- interface Result<T = any> {
1511
+ export interface Result<T = any> {
1513
1512
  request: XMLHttpRequest;
1514
1513
  data?: T;
1515
1514
  }
@@ -1589,7 +1588,7 @@ export namespace DayPilot {
1589
1588
  export class Selection {
1590
1589
  start: DayPilot.Date;
1591
1590
  end: DayPilot.Date;
1592
- resource: string;
1591
+ resource?: ResourceId;
1593
1592
  }
1594
1593
 
1595
1594
  export interface EventDataShort {