@griddo/core 10.4.23 → 10.4.24

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.
@@ -65,7 +65,7 @@ export type File = {
65
65
  }>;
66
66
  };
67
67
  /** File type */
68
- fileType?: "pdf" | "doc" | "docx" | "xls" | "xlsx" | "zip";
68
+ fileType?: string;
69
69
  /** File tags */
70
70
  tags?: Array<string>;
71
71
  /** File or folder */
@@ -144,6 +144,7 @@ export interface BaseFieldsDivider extends GenericField {
144
144
  export interface BaseFileField extends GenericField {
145
145
  /** Field for uploading files. */
146
146
  type: "FileField";
147
+ allowedFormats?: Array<string>;
147
148
  }
148
149
  export interface BaseHeadingField extends GenericField {
149
150
  /** Field with TextField + Select. Select is hidden by default. */
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@griddo/core",
3
3
  "description": "Reload version of Griddo Core",
4
4
  "license": "UNLICENSED",
5
- "version": "10.4.23",
5
+ "version": "10.4.24",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -73,5 +73,5 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "gitHead": "f9661d6520228413159145fc76f70e0c6c358512"
76
+ "gitHead": "63b4ccb1fb279a272dcc4b6d6050372e366a171e"
77
77
  }