@daypilot/daypilot-lite-angular 4.5.0 → 4.6.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 +2239 -2411
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +2861 -2980
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +2214 -2386
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +9 -0
- package/package.json +2 -2
|
@@ -29,6 +29,7 @@ export declare module DayPilot {
|
|
|
29
29
|
eventHeight?: number;
|
|
30
30
|
eventMinWidth?: number;
|
|
31
31
|
eventMoveHandling?: "Update" | "Disabled";
|
|
32
|
+
eventPadding?: string | number;
|
|
32
33
|
eventResizeHandling?: "Update" | "Disabled";
|
|
33
34
|
eventResizeMargin?: number;
|
|
34
35
|
eventRightClickHandling?: "Enabled" | "Disabled" | "ContextMenu";
|
|
@@ -150,6 +151,12 @@ export declare module DayPilot {
|
|
|
150
151
|
dispose(): void;
|
|
151
152
|
disposed(): boolean;
|
|
152
153
|
dragInProgress(): boolean;
|
|
154
|
+
getCoords(): {
|
|
155
|
+
x: number;
|
|
156
|
+
y: number;
|
|
157
|
+
row: DayPilot.Row;
|
|
158
|
+
time: DayPilot.Date;
|
|
159
|
+
};
|
|
153
160
|
getDate(pixels: number, precise?: boolean, isEnd?: boolean): DayPilot.Date;
|
|
154
161
|
getScrollX(): number;
|
|
155
162
|
getScrollY(): number;
|
|
@@ -1249,6 +1256,8 @@ export declare module DayPilot {
|
|
|
1249
1256
|
barColor?: string;
|
|
1250
1257
|
barHidden?: boolean;
|
|
1251
1258
|
borderColor?: string;
|
|
1259
|
+
borderRadius?: string | number;
|
|
1260
|
+
padding?: string | number;
|
|
1252
1261
|
cssClass?: string;
|
|
1253
1262
|
fontColor?: string;
|
|
1254
1263
|
html?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daypilot/daypilot-lite-angular",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"description": "DayPilot Lite for Angular",
|
|
5
5
|
"homepage": "https://javascript.daypilot.org/",
|
|
6
6
|
"author": "Annpoint, s.r.o.",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"tslib": "^2.3.0",
|
|
35
|
-
"@daypilot/daypilot-lite-javascript": "4.
|
|
35
|
+
"@daypilot/daypilot-lite-javascript": "4.6.1"
|
|
36
36
|
},
|
|
37
37
|
"module": "fesm2015/daypilot-daypilot-lite-angular.mjs",
|
|
38
38
|
"es2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",
|