@evoke-platform/context 1.3.0-testing.7 → 1.3.0-testing.9

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.
@@ -87,6 +87,8 @@ export type DocumentValidation = {
87
87
  errorMessage?: string;
88
88
  maxDocuments?: number;
89
89
  minDocuments?: number;
90
+ allowedFileExtensions?: string[];
91
+ maxSizeInKB?: number;
90
92
  };
91
93
  export type PropertyValidation = StringValidation | NumericValidation | DateValidation | CriteriaValidation | DocumentValidation;
92
94
  export type Property = {
@@ -304,6 +306,8 @@ export type ActionInput = {
304
306
  minDocuments?: number;
305
307
  maxDocuments?: number;
306
308
  customMessage?: string;
309
+ allowedFileExtensions?: string[];
310
+ maxSizeInKB?: number;
307
311
  };
308
312
  /**
309
313
  * An array of sub-components to be rendered inside sections.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evoke-platform/context",
3
- "version": "1.3.0-testing.7",
3
+ "version": "1.3.0-testing.9",
4
4
  "description": "Utilities that provide context to Evoke platform widgets",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",