@griddo/core 1.75.75 → 1.75.77

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.
@@ -1,3 +1,4 @@
1
+ import { HTMLHeadingTag } from "../global";
1
2
  export declare type FieldsDivider = string;
2
3
  export declare type ArrayFieldGroup<Fields> = Array<Fields>;
3
4
  export declare type AsyncCheckGroup = Array<{
@@ -25,7 +26,7 @@ export declare type File = {
25
26
  /** Upload date */
26
27
  uploadDate?: string;
27
28
  };
28
- export declare type Heading<HeadingTagsType = "h1" | "h2" | "h3" | "h4" | "h5" | "h6"> = {
29
+ export declare type Heading<HeadingTagsType = HTMLHeadingTag> = {
29
30
  /** Text content */
30
31
  content?: string;
31
32
  /** HTML tag used to render the content */
@@ -1,4 +1,5 @@
1
1
  import { Fields } from "../index";
2
+ export declare type HTMLHeadingTag = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
2
3
  export interface SetQueryProps<ContentType> {
3
4
  /** The ReferenceField prop */
4
5
  data?: Fields.Reference<ContentType>;
@@ -1,5 +1,6 @@
1
+ import { HTMLHeadingTag } from "../global";
1
2
  import { DistributiveOmit } from "../utilities";
2
- import { WithDisabled, WithEntity, WithGroup, HTMLHeadingTag, Option, WithSource, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption } from "./props";
3
+ import { WithDisabled, WithEntity, WithGroup, Option, WithSource, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption } from "./props";
3
4
  /** Type generator options */
4
5
  declare type TypeGeneratorBase = {
5
6
  /** Comment for the Types generator */
@@ -22,7 +22,6 @@ export declare type WithHideable = {
22
22
  /** If `true` the field can be hidden in the editor. */
23
23
  hideable?: boolean;
24
24
  };
25
- export declare type HTMLHeadingTag = "h1" | "h2" | "h3" | "h4";
26
25
  export declare type WithIndexable = {
27
26
  /** Default is false. If that field is to be used as an index (to be able to sort by that field, etc.) */
28
27
  indexable?: boolean;
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.75",
5
+ "version": "1.75.77",
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": "f777266b224f1fdb3a20faacf8e28d6413dd94f2"
81
+ "gitHead": "c7b617b408faaab26efaf60e04b4a86e88c96cf7"
82
82
  }