@griddo/core 1.75.253 → 1.75.255
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.
- package/dist/autotypes.cjs.js +1 -1
- package/dist/autotypes.cjs.js.map +1 -1
- package/dist/autotypes.js +1 -1
- package/dist/autotypes.js.map +1 -1
- package/dist/functions/autotypes/getTypeFromField.d.ts +3 -2
- package/dist/functions/autotypes/getTypesFromSchemas.d.ts +3 -2
- package/dist/functions/autotypes/main.d.ts +3 -2
- package/dist/functions/autotypes/types.d.ts +2 -8
- package/dist/functions/autotypes/utils.d.ts +3 -2
- package/dist/types/api-response-fields/index.d.ts +5 -2
- package/dist/types/schema-fields/base.d.ts +5 -1
- package/dist/types/schema-fields/page-content-type-fields.d.ts +3 -2
- package/dist/types/schema-fields/simple-content-type-fields.d.ts +3 -2
- package/dist/types/schema-fields/ui-fields.d.ts +35 -35
- package/dist/types/schemas/AutoTypes.d.ts +6 -0
- package/dist/types/schemas/index.d.ts +2 -1
- package/package.json +2 -2
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
import { BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseComponentArray, BaseComponentContainer, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
|
|
1
|
+
import { BaseArrayFieldGroup, BaseAsyncCheckGroup, BaseAsyncSelect, BaseCheckGroup, BaseColorPicker, BaseComponentArray, BaseComponentContainer, BaseConditionalField, BaseDateField, BaseFieldGroup, BaseFieldsDivider, BaseFileField, BaseHeadingField, BaseImageField, BaseLinkField, BaseMultiCheckSelect, BaseMultiCheckSelectGroup, BaseNoteField, BaseNumberField, BaseRadioGroup, BaseReferenceField, BaseRichText, BaseSelect, BaseSliderField, BaseTagField, BaseTextArea, BaseTextField, BaseTimeField, BaseToggleField, BaseUniqueCheck, BaseUrlField, BaseVisualUniqueSelection, BaseWysiwyg } from "./base";
|
|
2
2
|
import { WithAuxText, WithBackground, WithFullWidth, WithHelpText, WithHideable, WithHumanReadable, WithIsMockup, WithPlaceHolder, WithPrefix, WithReadonly, WithRelations_AutoTypes, WithSlugTo, WithValidators, WithWhiteList } from "./props";
|
|
3
|
-
export type
|
|
4
|
-
export type
|
|
5
|
-
export type
|
|
6
|
-
export type
|
|
7
|
-
export type
|
|
8
|
-
export type
|
|
9
|
-
export type
|
|
10
|
-
export type
|
|
11
|
-
export type
|
|
12
|
-
export type
|
|
13
|
-
export type
|
|
14
|
-
export type
|
|
15
|
-
export type
|
|
16
|
-
export type
|
|
17
|
-
export type
|
|
18
|
-
export type
|
|
19
|
-
export type
|
|
20
|
-
export type
|
|
21
|
-
export type
|
|
22
|
-
export type
|
|
23
|
-
export type
|
|
24
|
-
export type
|
|
25
|
-
export type
|
|
26
|
-
export type
|
|
27
|
-
export type
|
|
28
|
-
export type TextArea = BaseTextArea & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable &
|
|
29
|
-
export type TextField = BaseTextField & WithIsMockup & WithValidators & WithReadonly & WithSlugTo & WithPrefix & WithPlaceHolder & WithHumanReadable &
|
|
30
|
-
export type ToggleField = BaseToggleField & WithBackground & WithAuxText &
|
|
31
|
-
export type TimeField = BaseTimeField & WithIsMockup & WithReadonly &
|
|
32
|
-
export type UniqueCheck = BaseUniqueCheck &
|
|
33
|
-
export type UrlField = BaseUrlField & WithValidators &
|
|
34
|
-
export type VisualUniqueSelection = BaseVisualUniqueSelection &
|
|
35
|
-
export type Wysiwyg = BaseWysiwyg & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable &
|
|
36
|
-
export type UIFields = ArrayFieldGroup | AsyncCheckGroup | AsyncSelect | CheckGroup | ColorPicker | ComponentArray | ComponentContainer | ConditionalField | DateField | FieldGroup | FieldsDivider | FileField | HeadingField | ImageField | LinkField | MultiCheckSelect | MultiCheckSelectGroup | NoteField | NumberField | RadioGroup | ReferenceField | RichText | Select | SliderField | TextArea | TextField | TimeField | ToggleField | UniqueCheck | UrlField | VisualUniqueSelection | Wysiwyg;
|
|
3
|
+
export type ArrayFieldGroup = BaseArrayFieldGroup<UIFields> & WithHelpText & WithHideable;
|
|
4
|
+
export type AsyncCheckGroup = BaseAsyncCheckGroup & WithHelpText & WithHideable;
|
|
5
|
+
export type AsyncSelect = BaseAsyncSelect & WithHelpText & WithHideable & WithPlaceHolder;
|
|
6
|
+
export type CheckGroup = BaseCheckGroup & WithHelpText & WithHideable;
|
|
7
|
+
export type ColorPicker = BaseColorPicker & WithHelpText & WithHideable;
|
|
8
|
+
export type ComponentArray = BaseComponentArray & WithWhiteList & WithHelpText;
|
|
9
|
+
export type ComponentContainer = BaseComponentContainer & WithWhiteList & WithHelpText & WithHideable;
|
|
10
|
+
export type ConditionalField = BaseConditionalField<UIFields> & WithHelpText & WithHideable;
|
|
11
|
+
export type DateField = BaseDateField & WithValidators & WithHelpText & WithHideable & WithPlaceHolder;
|
|
12
|
+
export type FieldGroup = BaseFieldGroup<UIFields> & WithHelpText & WithHideable;
|
|
13
|
+
export type FieldsDivider = BaseFieldsDivider & WithHelpText & WithHideable;
|
|
14
|
+
export type FileField = BaseFileField & WithHelpText & WithHideable & WithPlaceHolder;
|
|
15
|
+
export type HeadingField = BaseHeadingField & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable;
|
|
16
|
+
export type ImageField = BaseImageField & WithIsMockup & WithFullWidth & WithHelpText & WithHideable;
|
|
17
|
+
export type LinkField = BaseLinkField & WithWhiteList & WithHelpText & WithHideable;
|
|
18
|
+
export type MultiCheckSelect = BaseMultiCheckSelect & WithRelations_AutoTypes & WithHelpText & WithHideable;
|
|
19
|
+
export type MultiCheckSelectGroup = BaseMultiCheckSelectGroup & WithRelations_AutoTypes & WithHelpText & WithHideable;
|
|
20
|
+
export type NoteField = BaseNoteField & WithHelpText & WithHideable;
|
|
21
|
+
export type NumberField = BaseNumberField & WithValidators & WithHelpText & WithHideable;
|
|
22
|
+
export type RadioGroup = BaseRadioGroup & WithHelpText & WithHideable;
|
|
23
|
+
export type ReferenceField = BaseReferenceField & WithHelpText & WithHideable;
|
|
24
|
+
export type RichText = BaseRichText & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable;
|
|
25
|
+
export type Select = BaseSelect & WithValidators & WithHelpText & WithHideable & WithPlaceHolder;
|
|
26
|
+
export type SliderField = BaseSliderField & WithValidators & WithHelpText & WithHideable;
|
|
27
|
+
export type TagField = BaseTagField & WithHideable;
|
|
28
|
+
export type TextArea = BaseTextArea & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable;
|
|
29
|
+
export type TextField = BaseTextField & WithIsMockup & WithValidators & WithReadonly & WithSlugTo & WithPrefix & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable;
|
|
30
|
+
export type ToggleField = BaseToggleField & WithBackground & WithAuxText & WithHelpText & WithHideable;
|
|
31
|
+
export type TimeField = BaseTimeField & WithIsMockup & WithReadonly & WithHelpText & WithHideable;
|
|
32
|
+
export type UniqueCheck = BaseUniqueCheck & WithHelpText & WithHideable;
|
|
33
|
+
export type UrlField = BaseUrlField & WithValidators & WithHelpText & WithHideable & WithPlaceHolder;
|
|
34
|
+
export type VisualUniqueSelection = BaseVisualUniqueSelection & WithHelpText & WithHideable;
|
|
35
|
+
export type Wysiwyg = BaseWysiwyg & WithIsMockup & WithValidators & WithPlaceHolder & WithHumanReadable & WithHelpText & WithHideable;
|
|
36
|
+
export type UIFields = ArrayFieldGroup | AsyncCheckGroup | AsyncSelect | CheckGroup | ColorPicker | ComponentArray | ComponentContainer | ConditionalField | DateField | FieldGroup | FieldsDivider | FileField | HeadingField | ImageField | LinkField | MultiCheckSelect | MultiCheckSelectGroup | NoteField | NumberField | RadioGroup | ReferenceField | RichText | Select | SliderField | TagField | TextArea | TextField | TimeField | ToggleField | UniqueCheck | UrlField | VisualUniqueSelection | Wysiwyg;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AutoTypesConfig } from "./AutoTypes";
|
|
1
2
|
import { CategoryContentType, PageContentType, SimpleContentType } from "./ContentType";
|
|
2
3
|
import { DamDefaults } from "./DamDefaults";
|
|
3
4
|
import { DataPack } from "./DataPack";
|
|
@@ -9,4 +10,4 @@ import { ModuleCategories } from "./ModuleCategories";
|
|
|
9
10
|
import { Themes } from "./Themes";
|
|
10
11
|
import { Translations } from "./Translations";
|
|
11
12
|
import { Component, ContentTypeModule, ListTemplate, Module, MultiPageComponent, MultiPageModule, Template } from "./UI";
|
|
12
|
-
export { CategoryContentType, Component, ContentTypeModule, DamDefaults, DataPack, DataPackCategory, Footer, Header, Languages, ListTemplate, Menu, MenuItem, Module, ModuleCategories, MultiPageComponent, MultiPageModule, PageContentType, SimpleContentType, Template, Themes, Translations, };
|
|
13
|
+
export { AutoTypesConfig, CategoryContentType, Component, ContentTypeModule, DamDefaults, DataPack, DataPackCategory, Footer, Header, Languages, ListTemplate, Menu, MenuItem, Module, ModuleCategories, MultiPageComponent, MultiPageModule, PageContentType, SimpleContentType, Template, Themes, Translations, };
|
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": "1.75.
|
|
5
|
+
"version": "1.75.255",
|
|
6
6
|
"authors": [
|
|
7
7
|
"Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
|
|
8
8
|
"Diego M. Béjar <diego.bejar@secuoyas.com>",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"resolutions": {
|
|
79
79
|
"colors": "1.4.0"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "5eb1acb0661051a96cf40b52512b0400eaa60651"
|
|
82
82
|
}
|