@griddo/core 1.75.62 → 1.75.65

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.
@@ -66,9 +66,18 @@ declare type SourceOrEntity = ExclusiveSource | ExclusiveEntity;
66
66
  export declare type BaseAsyncSelect = GenericField & WithDisabled & SourceOrEntity & {
67
67
  type: "AsyncSelect";
68
68
  };
69
- export interface BaseCheckGroup extends GenericField, WithGroup {
69
+ export interface BaseCheckGroup extends GenericField {
70
70
  /** Agrupación de Check Fields. */
71
71
  type: "CheckGroup";
72
+ /** Array of elements to be displayed */
73
+ options: Array<{
74
+ /** Label that will appear in the form. */
75
+ title: string;
76
+ /** Field name. */
77
+ name: string;
78
+ /** If the option is disabled. */
79
+ disabled?: boolean;
80
+ }>;
72
81
  }
73
82
  interface GenericColorPicker extends GenericField {
74
83
  /** Texfield that allows to display a modal to choose a color. */
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.62",
5
+ "version": "1.75.65",
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": "9ec2ea0fbfd4d5a31bef8bd3025b790126e030e2"
81
+ "gitHead": "1883060370dd847c7c755784e21ec9f67bc3522b"
82
82
  }