@griddo/core 11.4.15 → 11.4.17-rc.0

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,6 +1,6 @@
1
- import type { Option, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption, WithDisabled, WithEntity, WithGroup, WithSource, WithTemplatesWhiteList } from "./props";
2
1
  import type { HTMLHeadingTag } from "../global";
3
2
  import type { DistributiveOmit } from "../utilities";
3
+ import type { Option, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption, WithDisabled, WithEntity, WithGroup, WithSource, WithTemplatesWhiteList } from "./props";
4
4
  /** Type generator options */
5
5
  type TypeGeneratorBase = {
6
6
  /** Comment for the Types generator */
@@ -167,7 +167,7 @@ export interface BaseFileField extends GenericField {
167
167
  allowedFormats?: Array<string>;
168
168
  }
169
169
  export interface BaseFormCategorySelect extends GenericField {
170
- /** Field to render multiple MultiCheckSelec with Form Categories */
170
+ /** Field to render multiple MultiCheckSelect with Form Categories */
171
171
  type: "FormCategorySelect";
172
172
  /** If filled is `true` the field will have a white background. Default: `false`. */
173
173
  filled?: boolean;
@@ -178,4 +178,8 @@ type WithOverwrite = {
178
178
  /** Allows to overwrite form field content in page editor */
179
179
  overwrite?: boolean;
180
180
  };
181
- export type { Option, SearchFrom, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption, WithAuxText, WithBackground, WithComputed, WithDataSources, WithDisabled, WithEntity, WithFrom, WithFullWidth, WithGroup, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIndexable, WithIsMockup, WithOverwrite, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSearchable, WithShowList, WithSimpleContentTypeComputed, WithSlugTo, WithSource, WithSources, WithValidators, WithWhiteList, };
181
+ type WithSiteLanguage = {
182
+ /** Allows loading content types of a specific language */
183
+ contentLanguages?: "all" | "current" | Array<__AT__.SiteLanguage["locale"]>;
184
+ };
185
+ export type { Option, SearchFrom, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption, WithAuxText, WithBackground, WithComputed, WithDataSources, WithDisabled, WithEntity, WithFrom, WithFullWidth, WithGroup, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIndexable, WithIsMockup, WithOverwrite, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSearchable, WithShowList, WithSimpleContentTypeComputed, WithSiteLanguage, WithSlugTo, WithSource, WithSources, WithValidators, WithWhiteList, };
@@ -1,11 +1,11 @@
1
- import type { BaseAIReferenceField, BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
2
- import type { WithAuxText, WithBackground, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHumanReadable, WithIndexable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithShowList, WithSimpleContentTypeComputed, WithSlugTo, WithValidators, WithWhiteList } from "./props";
3
1
  import type { Fields } from "../..";
2
+ import type { BaseAIReferenceField, BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
3
+ import type { WithAuxText, WithBackground, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHumanReadable, WithIndexable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithShowList, WithSimpleContentTypeComputed, WithSiteLanguage, WithSlugTo, WithValidators, WithWhiteList } from "./props";
4
4
  type Common = WithIndexable & WithShowList & WithHelpText & WithHidden;
5
5
  export type AIReferenceField = BaseAIReferenceField & Common;
6
6
  export type ArrayFieldGroup = BaseArrayFieldGroup<SimpleContentTypeFields> & Common;
7
- export type AsyncCheckGroup = BaseAsyncCheckGroup & Common;
8
- export type AsyncSelect = BaseAsyncSelect & Common & WithPlaceHolder;
7
+ export type AsyncCheckGroup = BaseAsyncCheckGroup & Common & WithSiteLanguage;
8
+ export type AsyncSelect = BaseAsyncSelect & Common & WithPlaceHolder & WithSiteLanguage;
9
9
  export type CheckGroup = BaseCheckGroup & Common;
10
10
  export type ColorPicker = BaseColorPicker & Common;
11
11
  export type ConditionalField = BaseConditionalField<SimpleContentTypeFields> & Common;
@@ -16,7 +16,7 @@ export type FileField = BaseFileField & Common & WithPlaceHolder;
16
16
  export type HeadingField = BaseHeadingField & WithIsMockup & WithValidators & Common & WithPlaceHolder & WithHumanReadable;
17
17
  export type ImageField = BaseImageField & WithIsMockup & WithFullWidth & Common;
18
18
  export type LinkField = BaseLinkField & WithWhiteList & Common;
19
- export type MultiCheckSelect<ContentType> = BaseMultiCheckSelect & WithSimpleContentTypeComputed<ContentType, Fields.MultiCheckSelect> & WithRelations_AutoTypes & Common;
19
+ export type MultiCheckSelect<ContentType> = BaseMultiCheckSelect & WithSimpleContentTypeComputed<ContentType, Fields.MultiCheckSelect> & WithRelations_AutoTypes & Common & WithSiteLanguage;
20
20
  export type MultiCheckSelectGroup<ContentType> = BaseMultiCheckSelectGroup & WithSimpleContentTypeComputed<ContentType, Array<Fields.MultiCheckSelect>> & WithRelations_AutoTypes & Common;
21
21
  export type NoteField = BaseNoteField & Common;
22
22
  export type NumberField = BaseNumberField & WithValidators & Common & WithPlaceHolder;
@@ -1,9 +1,9 @@
1
- import type { BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseComponentArray, BaseComponentContainer, BaseConditionalField, BaseDateField, BaseFormContainer, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg, BaseAIReferenceField } from "./base";
2
- import type { WithAuxText, WithBackground, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSlugTo, WithTemplatesWhiteList, WithValidators, WithWhiteList } from "./props";
1
+ import type { BaseAIReferenceField, BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseComponentArray, BaseComponentContainer, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseFormContainer, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
2
+ import type { WithAuxText, WithBackground, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSiteLanguage, WithSlugTo, WithTemplatesWhiteList, WithValidators, WithWhiteList } from "./props";
3
3
  export type AIReferenceField = BaseAIReferenceField & WithTemplatesWhiteList;
4
4
  export type ArrayFieldGroup = BaseArrayFieldGroup<UIFields> & WithHelpText & WithHideable & WithHidden;
5
- export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden;
6
- export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden;
5
+ export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden & WithSiteLanguage;
6
+ export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden & WithSiteLanguage;
7
7
  export type CheckGroup = BaseCheckGroup & WithHelpText & WithHideable & WithHidden;
8
8
  export type ColorPicker = BaseColorPicker & WithHelpText & WithHideable & WithHidden;
9
9
  export type ComponentArray = BaseComponentArray & WithWhiteList & WithHelpText & WithHidden;
@@ -17,7 +17,7 @@ export type FormContainer = BaseFormContainer & WithHelpText & WithHideable & Wi
17
17
  export type HeadingField = BaseHeadingField & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable & WithHidden;
18
18
  export type ImageField = BaseImageField & WithIsMockup & WithFullWidth & WithHelpText & WithHideable & WithHidden;
19
19
  export type LinkField = BaseLinkField & WithWhiteList & WithHelpText & WithHideable & WithHidden;
20
- export type MultiCheckSelect = BaseMultiCheckSelect & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden;
20
+ export type MultiCheckSelect = BaseMultiCheckSelect & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden & WithSiteLanguage;
21
21
  export type MultiCheckSelectGroup = BaseMultiCheckSelectGroup & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden;
22
22
  export type NoteField = BaseNoteField & WithHelpText & WithHideable & WithHidden;
23
23
  export type NumberField = BaseNumberField & WithValidators & WithHelpText & WithHideable & WithHidden;
@@ -1,8 +1,8 @@
1
1
  import type { BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
2
- import type { WithAuxText, WithBackground, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSlugTo, WithValidators, WithWhiteList } from "./props";
2
+ import type { WithAuxText, WithBackground, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSiteLanguage, WithSlugTo, WithValidators, WithWhiteList } from "./props";
3
3
  export type ArrayFieldGroup = BaseArrayFieldGroup<UIFormFields> & WithHelpText & WithHideable & WithHidden;
4
- export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden;
5
- export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden;
4
+ export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden & WithSiteLanguage;
5
+ export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden & WithSiteLanguage;
6
6
  export type CheckGroup = BaseCheckGroup & WithHelpText & WithHideable & WithHidden;
7
7
  export type ColorPicker = BaseColorPicker & WithHelpText & WithHideable & WithHidden;
8
8
  export type ConditionalField = BaseConditionalField<UIFormFields> & WithHelpText & WithHideable & WithHidden;
@@ -13,7 +13,7 @@ export type FileField = BaseFileField & WithHelpText & WithHideable & WithPlaceH
13
13
  export type HeadingField = BaseHeadingField & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable & WithHidden;
14
14
  export type ImageField = BaseImageField & WithIsMockup & WithFullWidth & WithHelpText & WithHideable & WithHidden;
15
15
  export type LinkField = BaseLinkField & WithWhiteList & WithHelpText & WithHideable & WithHidden;
16
- export type MultiCheckSelect = BaseMultiCheckSelect & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden;
16
+ export type MultiCheckSelect = BaseMultiCheckSelect & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden & WithSiteLanguage;
17
17
  export type MultiCheckSelectGroup = BaseMultiCheckSelectGroup & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden;
18
18
  export type NoteField = BaseNoteField & WithHelpText & WithHideable & WithHidden;
19
19
  export type NumberField = BaseNumberField & WithValidators & WithHelpText & WithHideable & WithHidden;
@@ -1,9 +1,9 @@
1
- import type { BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseFormCategorySelect, BaseFormFieldArray, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
2
- import type { WithAuxText, WithBackground, WithComputed, WithDataSources, WithFormFieldsWhiteList, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithOverwrite, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSlugTo, WithValidators, WithWhiteList } from "./props";
3
1
  import type { Fields } from "../..";
2
+ import type { BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseFormCategorySelect, BaseFormFieldArray, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
3
+ import type { WithAuxText, WithBackground, WithComputed, WithDataSources, WithFormFieldsWhiteList, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithOverwrite, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSiteLanguage, WithSlugTo, WithValidators, WithWhiteList } from "./props";
4
4
  export type ArrayFieldGroup = BaseArrayFieldGroup<UIFormTemplateFields> & WithHelpText & WithHideable & WithHidden & WithOverwrite;
5
- export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden & WithOverwrite;
6
- export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden & WithOverwrite;
5
+ export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden & WithOverwrite & WithSiteLanguage;
6
+ export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden & WithOverwrite & WithSiteLanguage;
7
7
  export type CheckGroup = BaseCheckGroup & WithHelpText & WithHideable & WithHidden & WithOverwrite;
8
8
  export type ColorPicker = BaseColorPicker & WithHelpText & WithHideable & WithHidden & WithOverwrite;
9
9
  export type ConditionalField = BaseConditionalField<UIFormTemplateFields> & WithHelpText & WithHideable & WithHidden;
@@ -16,7 +16,7 @@ export type FormFieldArray = BaseFormFieldArray & WithFormFieldsWhiteList & With
16
16
  export type HeadingField = BaseHeadingField & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable & WithHidden & WithOverwrite;
17
17
  export type ImageField = BaseImageField & WithIsMockup & WithFullWidth & WithHelpText & WithHideable & WithHidden & WithOverwrite;
18
18
  export type LinkField = BaseLinkField & WithWhiteList & WithHelpText & WithHideable & WithHidden & WithOverwrite;
19
- export type MultiCheckSelect = BaseMultiCheckSelect & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden & WithOverwrite;
19
+ export type MultiCheckSelect = BaseMultiCheckSelect & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden & WithOverwrite & WithSiteLanguage;
20
20
  export type MultiCheckSelectGroup = BaseMultiCheckSelectGroup & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden & WithOverwrite;
21
21
  export type NoteField = BaseNoteField & WithHelpText & WithHideable & WithHidden;
22
22
  export type NumberField = BaseNumberField & WithValidators & WithHelpText & WithHideable & WithHidden & WithOverwrite;
@@ -1,10 +1,10 @@
1
- import type { BaseAIReferenceField, BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseComponentArray, BaseComponentContainer, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseFormContainer, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
2
- import type { WithAuxText, WithBackground, WithComputed, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSlugTo, WithValidators, WithWhiteList } from "./props";
3
1
  import type { Fields } from "../..";
2
+ import type { BaseAIReferenceField, BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseComponentArray, BaseComponentContainer, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseFormContainer, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagsField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
3
+ import type { WithAuxText, WithBackground, WithComputed, WithDataSources, WithFullWidth, WithHelpText, WithHidden, WithHideable, WithHumanReadable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSiteLanguage, WithSlugTo, WithValidators, WithWhiteList } from "./props";
4
4
  export type AIReferenceField = BaseAIReferenceField & WithHelpText & WithHidden;
5
5
  export type ArrayFieldGroup = BaseArrayFieldGroup<UITemplateFields> & WithHelpText & WithHideable & WithHidden;
6
- export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden;
7
- export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden;
6
+ export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable & WithHidden & WithSiteLanguage;
7
+ export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder & WithHidden & WithSiteLanguage;
8
8
  export type CheckGroup = BaseCheckGroup & WithHelpText & WithHideable & WithHidden;
9
9
  export type ColorPicker = BaseColorPicker & WithHelpText & WithHideable & WithHidden;
10
10
  export type ComponentArray = BaseComponentArray & WithWhiteList & WithHelpText & WithHidden;
@@ -18,7 +18,7 @@ export type FormContainer = BaseFormContainer & WithHelpText & WithHidden;
18
18
  export type HeadingField = BaseHeadingField & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable & WithHidden;
19
19
  export type ImageField = BaseImageField & WithIsMockup & WithFullWidth & WithHelpText & WithHideable & WithHidden;
20
20
  export type LinkField = BaseLinkField & WithWhiteList & WithHelpText & WithHideable & WithHidden;
21
- export type MultiCheckSelect = BaseMultiCheckSelect & WithComputed<Fields.MultiCheckSelect> & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden;
21
+ export type MultiCheckSelect = BaseMultiCheckSelect & WithComputed<Fields.MultiCheckSelect> & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden & WithSiteLanguage;
22
22
  export type MultiCheckSelectGroup = BaseMultiCheckSelectGroup & WithComputed<Array<Fields.MultiCheckSelect>> & WithRelations_AutoTypes & WithHelpText & WithHideable & WithHidden;
23
23
  export type NoteField = BaseNoteField & WithHelpText & WithHideable & WithHidden;
24
24
  export type NumberField = BaseNumberField & WithValidators & WithHelpText & WithHideable & WithHidden;
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.15",
5
+ "version": "11.4.17-rc.0",
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": "f08b17b4a6fc51dfa1a5dbec2107b0442341df45"
131
+ "gitHead": "1da7f09539993ef14898bf012d0d1e9182f89dab"
132
132
  }