@forestadmin/datasource-toolkit
Advanced tools
Comparing version 1.41.0 to 1.42.0
@@ -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[]; |
{ | ||
"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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
287121
3200