@daypilot/daypilot-lite-angular 3.26.0 → 3.28.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/esm2020/lib/core/daypilot-core.mjs +531 -501
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +618 -603
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +531 -501
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +4 -0
- package/package.json +3 -2
|
@@ -12,6 +12,7 @@ export declare module DayPilot {
|
|
|
12
12
|
days?: number;
|
|
13
13
|
doubleClickTimeout?: number;
|
|
14
14
|
durationBarVisible?: boolean;
|
|
15
|
+
eventBorderRadius?: string | number;
|
|
15
16
|
eventClickHandling?: "Enabled" | "Disabled" | "CallBack" | "ContextMenu";
|
|
16
17
|
eventDeleteHandling?: "Update" | "Disabled" | "CallBack";
|
|
17
18
|
eventMoveHandling?: "Update" | "CallBack" | "Disabled";
|
|
@@ -94,9 +95,11 @@ export declare module DayPilot {
|
|
|
94
95
|
clearSelection(): void;
|
|
95
96
|
dispose(): void;
|
|
96
97
|
disposed(): boolean;
|
|
98
|
+
getScrollY(): number;
|
|
97
99
|
getSelection(): DayPilot.Selection;
|
|
98
100
|
hide(): void;
|
|
99
101
|
init(): void;
|
|
102
|
+
setScrollY(scrollY: number): void;
|
|
100
103
|
show(): void;
|
|
101
104
|
update(options?: CalendarConfig): void;
|
|
102
105
|
visibleStart(): DayPilot.Date;
|
|
@@ -595,6 +598,7 @@ export declare module DayPilot {
|
|
|
595
598
|
}
|
|
596
599
|
export class SwitcherPropsAndEvents {
|
|
597
600
|
selectedClass?: string;
|
|
601
|
+
syncScrollbar?: boolean;
|
|
598
602
|
onChange?: EventHandler<SwitcherChangeArgs>;
|
|
599
603
|
onChanged?: EventHandler<SwitcherChangedArgs>;
|
|
600
604
|
onSelect?: EventHandler<SwitcherSelectArgs>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daypilot/daypilot-lite-angular",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.28.0",
|
|
4
4
|
"description": "DayPilot Lite for Angular",
|
|
5
5
|
"homepage": "https://javascript.daypilot.org/",
|
|
6
6
|
"author": "Annpoint, s.r.o.",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"@angular/core": ">=12.0.0"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"tslib": "^2.3.0"
|
|
24
|
+
"tslib": "^2.3.0",
|
|
25
|
+
"@daypilot/daypilot-lite-javascript": "3.28.0"
|
|
25
26
|
},
|
|
26
27
|
"module": "fesm2015/daypilot-daypilot-lite-angular.mjs",
|
|
27
28
|
"es2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",
|