@griddo/core 11.4.14 → 11.4.15

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.
@@ -189,6 +189,8 @@ export interface BaseHeadingField extends GenericField {
189
189
  value: HTMLHeadingTag;
190
190
  label: string;
191
191
  }>;
192
+ /** Shows inline toolbar with options and exports html */
193
+ toolbar?: boolean;
192
194
  }
193
195
  export interface BaseImageField extends GenericField {
194
196
  /** Allows the user to upload an image. */
@@ -32,5 +32,18 @@ interface RichTextConfig {
32
32
  */
33
33
  className: string;
34
34
  }>;
35
+ /** Language configuration for the language accessibility options */
36
+ editorLangs?: Array<{
37
+ /** The label that appears in the Griddo rich-text editor */
38
+ name: string;
39
+ /**
40
+ * The language ISO code
41
+ * @example
42
+ * iso: "es-ES"
43
+ */
44
+ iso: string;
45
+ /** If true shows de language on top */
46
+ featured?: boolean;
47
+ }>;
35
48
  }
36
49
  export type { RichTextConfig };
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": "11.4.14",
5
+ "version": "11.4.15",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -128,5 +128,5 @@
128
128
  "publishConfig": {
129
129
  "access": "public"
130
130
  },
131
- "gitHead": "91a7a9998319a6dc21dab4a22d38e87f8b59b6c5"
131
+ "gitHead": "f08b17b4a6fc51dfa1a5dbec2107b0442341df45"
132
132
  }