@griddo/core 11.1.0 → 11.1.1-rc.3

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.
@@ -360,7 +360,11 @@ interface Config {
360
360
  dataPacksCategories: Record<string, Schema.DataPackCategory>;
361
361
  structuredData: Record<string, Schema.CategoryContentType | Schema.PageContentType | Schema.SimpleContentType>;
362
362
  };
363
- forms?: any;
363
+ forms?: {
364
+ templates: Record<string, Schema.FormTemplate>;
365
+ fields: Record<string, Schema.FormField>;
366
+ categories: Schema.FormCategories;
367
+ };
364
368
  };
365
369
  }
366
370
  export type { BackgroundImageSizesProps, Breadcrumb, CloudinaryDefaults, Config, ContentPresence, ContentTypeRelations, FetchPriority, FooterModule, FullPath, GriddoDamDefaults, HeaderModule, ImageCropType, ImageDecoding, ImageFormats, ImageLoading, ImagePosition, ImageTransform, ISOLocale, LibraryComponentProps, ListContentType, Locale, LocaleTranslations, NavigationModule, Page, PageIntegration, PageLanguage, Renderers, ResponsiveImageProps, Site, SiteLanguage, SocialName, TimeZone, };
@@ -6,4 +6,4 @@ export interface FormCategoryEntry {
6
6
  /** Shows the caegory in the list of forms inside de Griddo editor */
7
7
  featured?: boolean;
8
8
  }
9
- export type FormCategories = ReadonlyArray<FormCategoryEntry>;
9
+ export type FormCategories = Array<FormCategoryEntry>;
@@ -3,7 +3,7 @@ import type { CategoryContentType, PageContentType, SimpleContentType } from "./
3
3
  import type { DamDefaults } from "./DamDefaults";
4
4
  import type { DataPack } from "./DataPack";
5
5
  import type { DataPackCategory } from "./DataPackCategory";
6
- import type { FormCategories } from "./FormCategories";
6
+ import type { FormCategories, FormCategoryEntry } from "./FormCategories";
7
7
  import type { Footer, Header } from "./HeaderFooter";
8
8
  import type { Languages } from "./Languages";
9
9
  import type { Menu, MenuItem } from "./Menu";
@@ -12,4 +12,4 @@ import type { RichTextConfig } from "./RichTextConfig";
12
12
  import type { ThemeEntry, Themes } from "./Themes";
13
13
  import type { Translations } from "./Translations";
14
14
  import type { Component, ContentTypeModule, FormTemplate, ListTemplate, Module, MultiPageComponent, MultiPageModule, PaginatedDataTemplate, Template, FormField, FormComponent } from "./UI";
15
- export type { AutoTypesConfig, CategoryContentType, Component, ContentTypeModule, DamDefaults, DataPack, DataPackCategory, Footer, FormTemplate, FormField, FormComponent, FormCategories, Header, Languages, ListTemplate, Menu, MenuItem, Module, ModuleCategories, MultiPageComponent, MultiPageModule, PageContentType, PaginatedDataTemplate, RichTextConfig, SimpleContentType, Template, Themes, Translations, ThemeEntry, };
15
+ export type { AutoTypesConfig, CategoryContentType, Component, ContentTypeModule, DamDefaults, DataPack, DataPackCategory, Footer, FormTemplate, FormField, FormComponent, FormCategories, FormCategoryEntry, Header, Languages, ListTemplate, Menu, MenuItem, Module, ModuleCategories, MultiPageComponent, MultiPageModule, PageContentType, PaginatedDataTemplate, RichTextConfig, SimpleContentType, Template, Themes, Translations, ThemeEntry, };
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.1.0",
5
+ "version": "11.1.1-rc.3",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -119,5 +119,5 @@
119
119
  "publishConfig": {
120
120
  "access": "public"
121
121
  },
122
- "gitHead": "2f37f62fb8e7ba767b64cf984a94d7d045bbb7ff"
122
+ "gitHead": "b9c0ddb21e9991a947967efc3ce467cb29412d6f"
123
123
  }