New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

primefaces

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

primefaces - npm Package Compare versions

Comparing version 10.0.0 to 11.0.0

72

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc