@griddo/core 1.75.174 → 1.75.176

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.
@@ -149,10 +149,11 @@ type ConfigBase = {
149
149
  footerStyle?: string;
150
150
  };
151
151
  type MenuItemBase = {
152
- label?: string;
153
- url?: Url;
154
152
  auxText?: string;
155
153
  image?: Image;
154
+ label?: string;
155
+ special: boolean;
156
+ url?: Url;
156
157
  };
157
158
  interface GroupLinkType extends ConfigBase {
158
159
  type?: "group";
@@ -169,6 +169,8 @@ export interface BaseLinkField extends GenericField {
169
169
  export interface BaseMultiCheckSelect extends GenericField, WithSource {
170
170
  /** Campo que permite renderizar un AsyncCheckGroup dentro de una lista desplegable. */
171
171
  type: "MultiCheckSelect";
172
+ /** Title for the field */
173
+ placeholder: string;
172
174
  }
173
175
  export interface BaseMultiCheckSelectGroup extends GenericField {
174
176
  /** Field to render multiple MultiCheckSelect. */
@@ -176,7 +178,7 @@ export interface BaseMultiCheckSelectGroup extends GenericField {
176
178
  /** `NoteField` with help text appearing under the label. */
177
179
  note?: string;
178
180
  /** Array with the data from the different `MultiCheckSelect`. */
179
- elements: Array<DistributiveOmit<BaseMultiCheckSelect, "type">>;
181
+ elements: Array<DistributiveOmit<BaseMultiCheckSelect, "type" | "title">>;
180
182
  /** If filled is `true` the field will have a white background. Default: `false`. */
181
183
  filled?: boolean;
182
184
  }
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.174",
5
+ "version": "1.75.176",
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": "67875dc3507d11389793aa9d3613c3479d1fa125"
81
+ "gitHead": "b8e57731229eff666f0aa5aa3b1ffc4a601b677e"
82
82
  }