@griddo/core 1.75.36 → 1.75.37

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.
@@ -24,6 +24,11 @@ interface GenericComponentField extends GenericField {
24
24
  elementUniqueSelection?: boolean;
25
25
  /** Maximum number of components that can be added. */
26
26
  maxItems?: number | null;
27
+ /** Auto type generator */
28
+ _autoType?: TypeGeneratorBase & {
29
+ /** Suffix for the components in the Whiltelist */
30
+ suffix?: string;
31
+ };
27
32
  }
28
33
  interface GenericArrayFieldGroup extends GenericField {
29
34
  /** Name of the item to be repeated. */
@@ -34,6 +39,11 @@ interface GenericArrayFieldGroup extends GenericField {
34
39
  arrayType: string;
35
40
  /** Fields template to be repeated in each item. */
36
41
  fields: Array<unknown>;
42
+ /** Type generator options */
43
+ _autoType?: TypeGeneratorBase & {
44
+ /** Suffix for the components in the Whiltelist */
45
+ suffix?: string;
46
+ };
37
47
  }
38
48
  export interface BaseArrayFieldGroup<FieldsType> extends GenericArrayFieldGroup {
39
49
  type: "ArrayFieldGroup";
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@griddo/core",
3
3
  "description": "Reload version of Griddo Core",
4
4
  "license": "MIT",
5
- "version": "1.75.36",
5
+ "version": "1.75.37",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -78,5 +78,5 @@
78
78
  "resolutions": {
79
79
  "colors": "1.4.0"
80
80
  },
81
- "gitHead": "2d221923450bac0e467a2f6b3c30db8b29a9f5f0"
81
+ "gitHead": "41e8c3e94e959bdf33b22b44523533673d1a59f2"
82
82
  }