Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@forestadmin/datasource-toolkit

Package Overview
Dependencies
Maintainers
0
Versions
116
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forestadmin/datasource-toolkit - npm Package Compare versions

Comparing version 1.41.0 to 1.42.0

20

dist/src/interfaces/action.d.ts

@@ -172,6 +172,18 @@ /// <reference types="node" />

}
interface LayoutElementRowRecursive extends ActionLayoutElementBase {
interface LayoutElementPage extends ActionLayoutElementBase {
component: 'Page';
nextButtonLabel?: string;
previousButtonLabel?: string;
elements: ActionLayoutElement[];
}
interface LayoutElementRowWithField extends ActionLayoutElementBase {
component: 'Row';
fields: ActionField[];
}
export interface LayoutElementPageWithField extends ActionLayoutElementBase {
component: 'Page';
nextButtonLabel?: string;
previousButtonLabel?: string;
elements: ActionLayoutElementWithField[];
}
export interface LayoutElementInput extends ActionLayoutElementBase {

@@ -181,5 +193,5 @@ component: 'Input';

}
export type ActionLayoutElement = LayoutElementSeparator | LayoutElementHtmlBlock | LayoutElementRow | LayoutElementInput;
export type ActionLayoutElementRecursive = LayoutElementSeparator | LayoutElementHtmlBlock | LayoutElementRowRecursive | LayoutElementInput;
export type ActionFormElement = ActionLayoutElementRecursive | ActionField;
export type ActionLayoutElement = LayoutElementSeparator | LayoutElementHtmlBlock | LayoutElementRow | LayoutElementPage | LayoutElementInput;
export type ActionLayoutElementWithField = LayoutElementSeparator | LayoutElementHtmlBlock | LayoutElementRowWithField | ActionField;
export type ActionFormElement = ActionLayoutElementWithField | LayoutElementPageWithField;
export type ActionForm = {

@@ -186,0 +198,0 @@ fields: ActionField[];

2

package.json
{
"name": "@forestadmin/datasource-toolkit",
"version": "1.41.0",
"version": "1.42.0",
"main": "dist/src/index.js",

@@ -5,0 +5,0 @@ "license": "GPL-3.0",

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