@stoker-platform/types 0.5.52 → 0.5.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stoker-platform/types",
3
- "version": "0.5.52",
3
+ "version": "0.5.53",
4
4
  "type": "module",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "main": "src/main.ts",
@@ -908,7 +908,7 @@ export interface FieldAdmin {
908
908
  icon?: FormFieldIcon | (() => FormFieldIcon | Promise<FormFieldIcon>)
909
909
  condition?: {
910
910
  list?: boolean | ((parentCollection?: CollectionSchema, parentRecord?: StokerRecord) => boolean)
911
- form?: boolean | ((operation?: "create" | "update", record?: StokerRecord) => boolean)
911
+ form?: boolean | ((operation?: "create" | "update", record?: StokerRecord, isExport?: boolean) => boolean)
912
912
  }
913
913
  readOnly?: boolean | ((operation?: "create" | "update", record?: StokerRecord) => boolean)
914
914
  description?: FieldDescription