@forestadmin/datasource-toolkit
Advanced tools
Comparing version 1.10.0 to 1.11.0
@@ -35,2 +35,6 @@ /// <reference types="node" /> | ||
}; | ||
export type ActionFieldCheckbox = ActionFieldBase & { | ||
type: 'Boolean'; | ||
widget: 'Checkbox'; | ||
}; | ||
export type ActionFieldEnum = ActionFieldBase & { | ||
@@ -48,4 +52,4 @@ type: 'Enum'; | ||
}; | ||
export type ActionField = ActionFieldBase | ActionFieldEnum | ActionFieldEnumList | ActionFieldCollection | ActionFieldDropdown<'Date' | 'Dateonly' | 'Number' | 'String', string> | ActionFieldDropdown<'Number', number>; | ||
export type ActionFieldWidget = 'Dropdown'; | ||
export type ActionField = ActionFieldBase | ActionFieldEnum | ActionFieldEnumList | ActionFieldCollection | ActionFieldDropdown<'Date' | 'Dateonly' | 'Number' | 'String', string> | ActionFieldDropdown<'Number', number> | ActionFieldCheckbox; | ||
export type ActionFieldWidget = 'Dropdown' | 'Checkbox'; | ||
export type SuccessResult = { | ||
@@ -52,0 +56,0 @@ type: 'Success'; |
{ | ||
"name": "@forestadmin/datasource-toolkit", | ||
"version": "1.10.0", | ||
"version": "1.11.0", | ||
"main": "dist/src/index.js", | ||
@@ -5,0 +5,0 @@ "license": "GPL-3.0", |
258230
2737