Comparing version 10.0.0 to 11.0.0
{ | ||
"name": "primefaces", | ||
"version": "10.0.0", | ||
"version": "11.0.0", | ||
"description": "TypeScript definitions for the client side API of PrimeFaces", | ||
@@ -58,28 +58,58 @@ "main": "", | ||
"dependencies": { | ||
"@fullcalendar/common": "^5.5.1", | ||
"@fullcalendar/core": "^5.5.1", | ||
"@fullcalendar/daygrid": "^5.5.0", | ||
"@fullcalendar/interaction": "^5.5.0", | ||
"@fullcalendar/list": "^5.5.0", | ||
"@fullcalendar/moment": "^5.5.0", | ||
"@fullcalendar/timegrid": "^5.5.1", | ||
"@types/chart.js": "^2.9.31", | ||
"@fullcalendar/common": "^5.9.0", | ||
"@fullcalendar/core": "^5.9.0", | ||
"@fullcalendar/daygrid": "^5.9.0", | ||
"@fullcalendar/interaction": "^5.9.0", | ||
"@fullcalendar/list": "^5.9.0", | ||
"@fullcalendar/moment": "^5.9.0", | ||
"@fullcalendar/timegrid": "^5.9.0", | ||
"@types/chart.js": "^2.9.34", | ||
"@types/downloadjs": "^1.4.2", | ||
"@types/googlemaps": "^3.43.3", | ||
"@types/hammerjs": "^2.0.39", | ||
"@types/inputmask": "^5.0.0", | ||
"@types/jquery": "^3.5.5", | ||
"@types/jqueryui": "^1.12.15", | ||
"@types/js-cookie": "^2.2.6", | ||
"@types/google.maps": "^3.45.6", | ||
"@types/hammerjs": "^2.0.40", | ||
"@types/inputmask": "^5.0.1", | ||
"@types/jquery": "^3.5.6", | ||
"@types/jqueryui": "^1.12.16", | ||
"@types/js-cookie": "^2.2.7", | ||
"@types/quill": "~1.3.10", | ||
"@types/raphael": "^2.3.1", | ||
"@types/raphael": "^2.3.2", | ||
"autonumeric": "~4.6.0", | ||
"cropperjs": "^1.5.11", | ||
"jsplumb": "^2.15.5", | ||
"cropperjs": "^1.5.12", | ||
"jsplumb": "^2.15.6", | ||
"moment": "^2.29.1", | ||
"moment-timezone": "^0.5.33", | ||
"print-js": "^1.6.0", | ||
"vis-data": "^7.1.2", | ||
"vis-timeline": "^7.4.6", | ||
"vis-util": "^5.0.2" | ||
} | ||
"vis-timeline": "^7.4.9", | ||
"vis-util": "^5.0.2", | ||
"xss": "^1.0.9" | ||
}, | ||
"peerDependencies": { | ||
"@egjs/hammerjs": "*", | ||
"component-emitter": "*", | ||
"keycharm": "*", | ||
"propagating-hammerjs": "*", | ||
"uuid": "*" | ||
}, | ||
"peerDependenciesMeta": { | ||
"propagating-hammerjs": { | ||
"optional": true | ||
}, | ||
"component-emitter": { | ||
"optional": true | ||
}, | ||
"@egjs/hammerjs": { | ||
"optional": true | ||
}, | ||
"keycharm": { | ||
"optional": true | ||
}, | ||
"uuid": { | ||
"optional": true | ||
} | ||
}, | ||
"_id": "primefaces@1.0.0", | ||
"_integrity": null, | ||
"_resolved": "C:\\dev\\primefaces\\primefaces-melloware\\primefaces\\src\\main\\type-definitions", | ||
"_from": "file:C:\\dev\\primefaces\\primefaces-melloware\\primefaces\\src\\main\\type-definitions" | ||
} |
@@ -7,2 +7,23 @@ import "raphael"; | ||
/** | ||
* A connection between two mindmap nodes | ||
*/ | ||
export interface MindmapConnection { | ||
/** | ||
* The background element of the connection line. | ||
*/ | ||
bg: import("raphael").RaphaelElement; | ||
/** | ||
* The line element representing the connection. | ||
*/ | ||
line: import("raphael").RaphaelElement; | ||
/** | ||
* The source element where the connection starts. | ||
*/ | ||
from: import("raphael").RaphaelElement; | ||
/** | ||
* The target element the connection ends at. | ||
*/ | ||
to: import("raphael").RaphaelElement; | ||
} | ||
/** | ||
* Additional methods defined on the paper, in addition to the builtin methods of the RaphaelPaper. | ||
@@ -20,9 +41,4 @@ */ | ||
*/ | ||
connection(obj1: import("raphael").RaphaelElement, obj2: import("raphael").RaphaelElement, line: string | null, bg: string | null, effectSpeed: number): undefined | { | ||
bg: import("raphael").RaphaelElement; | ||
line: import("raphael").RaphaelElement; | ||
from: import("raphael").RaphaelElement; | ||
to: import("raphael").RaphaelElement; | ||
}; | ||
connection(obj1: import("raphael").RaphaelElement, obj2: import("raphael").RaphaelElement, line: string | null, bg: string | null, effectSpeed: number): undefined | MindmapConnection; | ||
} | ||
} |
@@ -34,1 +34,11 @@ # PrimeFaces | ||
``` | ||
Or add it to the compiler settings in your `tsconfig.json`: | ||
```json | ||
{ | ||
"compilerOptions": { | ||
"types": ["primefaces"] | ||
} | ||
} | ||
``` |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
1523956
36192
44
32
+ Added@types/google.maps@^3.45.6
+ Addedprint-js@^1.6.0
+ Addedxss@^1.0.9
+ Added@types/google.maps@3.58.1(transitive)
+ Addedcomponent-emitter@2.0.0(transitive)
+ Addedprint-js@1.6.0(transitive)
+ Addedpropagating-hammerjs@3.0.0(transitive)
+ Addeduuid@11.0.5(transitive)
- Removed@types/googlemaps@^3.43.3
- Removed@types/googlemaps@3.43.3(transitive)
Updated@fullcalendar/common@^5.9.0
Updated@fullcalendar/core@^5.9.0
Updated@fullcalendar/daygrid@^5.9.0
Updated@fullcalendar/list@^5.9.0
Updated@fullcalendar/moment@^5.9.0
Updated@types/chart.js@^2.9.34
Updated@types/hammerjs@^2.0.40
Updated@types/inputmask@^5.0.1
Updated@types/jquery@^3.5.6
Updated@types/jqueryui@^1.12.16
Updated@types/js-cookie@^2.2.7
Updated@types/raphael@^2.3.2
Updatedcropperjs@^1.5.12
Updatedjsplumb@^2.15.6
Updatedvis-timeline@^7.4.9