@daypilot/daypilot-lite-angular 3.0.0-sandbox.338

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/lib/util.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ export declare function rand(): number;
2
+ export declare function optHash(options: any): string;
3
+ export declare class EventDiff {
4
+ orig: any;
5
+ diff(list: any[]): any;
6
+ }
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@daypilot/daypilot-lite-angular",
3
+ "version": "3.0.0-sandbox.338",
4
+ "description": "DayPilot Lite for JavaScript (Angular)",
5
+ "homepage": "https://javascript.daypilot.org/",
6
+ "author": "Annpoint, s.r.o.",
7
+ "license": "Apache-2.0",
8
+ "keywords": [
9
+ "calendar",
10
+ "scheduler",
11
+ "event-calendar",
12
+ "date-picker",
13
+ "front-end",
14
+ "components",
15
+ "javascript",
16
+ "typescript",
17
+ "angular"
18
+ ],
19
+ "peerDependencies": {
20
+ "@angular/common": ">=12.0.0",
21
+ "@angular/core": ">=12.0.0"
22
+ },
23
+ "dependencies": {
24
+ "tslib": "^2.3.0"
25
+ },
26
+ "module": "fesm2015/daypilot-daypilot-lite-angular.mjs",
27
+ "es2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",
28
+ "esm2020": "esm2020/daypilot-daypilot-lite-angular.mjs",
29
+ "fesm2020": "fesm2020/daypilot-daypilot-lite-angular.mjs",
30
+ "fesm2015": "fesm2015/daypilot-daypilot-lite-angular.mjs",
31
+ "typings": "daypilot-daypilot-lite-angular.d.ts",
32
+ "exports": {
33
+ "./package.json": {
34
+ "default": "./package.json"
35
+ },
36
+ ".": {
37
+ "types": "./daypilot-daypilot-lite-angular.d.ts",
38
+ "esm2020": "./esm2020/daypilot-daypilot-lite-angular.mjs",
39
+ "es2020": "./fesm2020/daypilot-daypilot-lite-angular.mjs",
40
+ "es2015": "./fesm2015/daypilot-daypilot-lite-angular.mjs",
41
+ "node": "./fesm2015/daypilot-daypilot-lite-angular.mjs",
42
+ "default": "./fesm2020/daypilot-daypilot-lite-angular.mjs"
43
+ }
44
+ },
45
+ "sideEffects": false
46
+ }
@@ -0,0 +1,5 @@
1
+ export * from './lib/daypilot-calendar.component';
2
+ export * from './lib/daypilot-month.component';
3
+ export * from './lib/daypilot-navigator.component';
4
+ export * from './lib/daypilot.module';
5
+ export { DayPilot } from "./lib/core/daypilot-core";