@daypilot/daypilot-lite-angular 3.18.0 → 3.20.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/README.md +9 -1
- package/esm2020/lib/core/daypilot-core.mjs +196 -182
- package/fesm2015/daypilot-daypilot-lite-angular.mjs +210 -192
- package/fesm2015/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/fesm2020/daypilot-daypilot-lite-angular.mjs +195 -181
- package/fesm2020/daypilot-daypilot-lite-angular.mjs.map +1 -1
- package/lib/core/daypilot-core.d.ts +4 -0
- package/package.json +1 -1
|
@@ -90,6 +90,7 @@ export declare module DayPilot {
|
|
|
90
90
|
constructor(id: string | HTMLElement, options?: CalendarConfig);
|
|
91
91
|
clearSelection(): void;
|
|
92
92
|
dispose(): void;
|
|
93
|
+
disposed(): boolean;
|
|
93
94
|
getSelection(): DayPilot.Selection;
|
|
94
95
|
hide(): void;
|
|
95
96
|
init(): void;
|
|
@@ -104,6 +105,7 @@ export declare module DayPilot {
|
|
|
104
105
|
start?: DayPilot.Date | string;
|
|
105
106
|
html?: string;
|
|
106
107
|
toolTip?: string;
|
|
108
|
+
tags?: any;
|
|
107
109
|
}
|
|
108
110
|
export interface CalendarAfterEventRenderArgs {
|
|
109
111
|
readonly e: DayPilot.Event;
|
|
@@ -122,6 +124,7 @@ export declare module DayPilot {
|
|
|
122
124
|
html: string;
|
|
123
125
|
backColor: string;
|
|
124
126
|
cssClass?: string;
|
|
127
|
+
verticalAlignment?: "top" | "center" | "bottom";
|
|
125
128
|
toolTip: string;
|
|
126
129
|
areas: AreaData[];
|
|
127
130
|
};
|
|
@@ -290,6 +293,7 @@ export declare module DayPilot {
|
|
|
290
293
|
constructor(id: string | HTMLElement, options?: MonthConfig);
|
|
291
294
|
clearSelection(): void;
|
|
292
295
|
dispose(): void;
|
|
296
|
+
disposed(): boolean;
|
|
293
297
|
init(): void;
|
|
294
298
|
show(): void;
|
|
295
299
|
hide(): void;
|