@daypilot/daypilot-lite-angular 3.29.0 → 3.30.1
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/esm2020/lib/core/daypilot-core.mjs +259 -236
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +135 -136
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +258 -235
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +6 -0
- package/package.json +2 -2
|
@@ -123,13 +123,17 @@ export declare module DayPilot {
|
|
|
123
123
|
readonly start: DayPilot.Date;
|
|
124
124
|
readonly end: DayPilot.Date;
|
|
125
125
|
readonly resource: ResourceId;
|
|
126
|
+
readonly x: number;
|
|
127
|
+
readonly y: number;
|
|
126
128
|
readonly properties: {
|
|
127
129
|
html: string;
|
|
128
130
|
business: boolean;
|
|
129
131
|
backColor: string;
|
|
130
132
|
backImage: string;
|
|
131
133
|
backRepeat: string;
|
|
134
|
+
fontColor: string;
|
|
132
135
|
cssClass: string;
|
|
136
|
+
text: string;
|
|
133
137
|
};
|
|
134
138
|
};
|
|
135
139
|
}
|
|
@@ -257,6 +261,7 @@ export declare module DayPilot {
|
|
|
257
261
|
cellMarginBottom?: number;
|
|
258
262
|
contextMenu?: DayPilot.Menu;
|
|
259
263
|
eventBarVisible?: boolean;
|
|
264
|
+
eventBorderRadius?: string | number;
|
|
260
265
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
261
266
|
eventRightClickHandling?: "ContextMenu" | "Enabled" | "Disabled";
|
|
262
267
|
eventHeight?: number;
|
|
@@ -804,6 +809,7 @@ export declare module DayPilot {
|
|
|
804
809
|
action?: "Default" | "None" | "ContextMenu" | "ResizeEnd" | "ResizeStart" | "Move";
|
|
805
810
|
backColor?: string;
|
|
806
811
|
background?: string;
|
|
812
|
+
borderRadius?: number | string;
|
|
807
813
|
bottom?: number | string;
|
|
808
814
|
cssClass?: string;
|
|
809
815
|
fontColor?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daypilot/daypilot-lite-angular",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.30.1",
|
|
4
4
|
"description": "DayPilot Lite for Angular",
|
|
5
5
|
"homepage": "https://javascript.daypilot.org/",
|
|
6
6
|
"author": "Annpoint, s.r.o.",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"tslib": "^2.3.0",
|
|
25
|
-
"@daypilot/daypilot-lite-javascript": "3.
|
|
25
|
+
"@daypilot/daypilot-lite-javascript": "3.30.1"
|
|
26
26
|
},
|
|
27
27
|
"module": "fesm2015/daypilot-daypilot-lite-angular.mjs",
|
|
28
28
|
"es2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",
|