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

@paroicms/bo-plugin-lib

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paroicms/bo-plugin-lib - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

2

package.json
{
"name": "@paroicms/bo-plugin-lib",
"version": "0.2.0",
"version": "0.3.0",
"description": "Common utilitaries for paroicms plugins (back-office side).",

@@ -5,0 +5,0 @@ "author": "Paroi Team",

@@ -20,2 +20,18 @@ import type { FieldType } from "@paroicms/anywhere-lib";

onChange: (value: T | undefined) => void;
createModalDialog(dialog: PluginDialog): PluginDialogHandler;
}
export interface PluginDialog {
content?: HTMLElement;
footer?: HTMLElement;
header?: string;
/**
* The `handler` is called when the user clicks on the `x` button
*/
onCancel?: () => void;
}
export interface PluginDialogHandler {
show(): void;
hide(): void;
}
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