@griddo/core 1.75.148 → 1.75.150
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/components/GriddoImage/index.d.ts +1 -1
- package/dist/functions/autotypes/getTypeFromField.d.ts +1 -1
- package/dist/functions/autotypes/utils.d.ts +1 -1
- package/dist/hooks/themes/useTheme.d.ts +1 -1
- package/dist/hooks/themes/useThemeColors.d.ts +1 -1
- package/dist/hooks/themes/useThemeFont.d.ts +1 -1
- package/dist/hooks/themes/useThemePrimitives.d.ts +1 -1
- package/dist/hooks/useDataFilters.d.ts +1 -1
- package/dist/hooks/useList.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/types/api-response-fields/index.d.ts +1 -0
- package/dist/types/global.d.ts +1 -1
- package/dist/types/schema-fields/base.d.ts +1 -1
- package/dist/types/schemas/PageContentType.d.ts +2 -2
- package/dist/types/schemas/SimpleContentType.d.ts +2 -2
- package/dist/types/schemas/UI.d.ts +2 -2
- package/package.json +2 -2
|
@@ -131,6 +131,7 @@ export declare type TextArea = string;
|
|
|
131
131
|
/** Return type of an Text */
|
|
132
132
|
export declare type Text = string;
|
|
133
133
|
export declare type Time = string;
|
|
134
|
+
export declare type Toggle = boolean;
|
|
134
135
|
export declare type UniqueCheck = boolean;
|
|
135
136
|
export declare type Url = {
|
|
136
137
|
href?: string;
|
package/dist/types/global.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Fields } from "../index";
|
|
2
1
|
import { ListContentType } from "./core";
|
|
2
|
+
import { Fields } from "../index";
|
|
3
3
|
export declare type HTMLHeadingTag = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
4
4
|
export interface SetQueryProps<ContentType> {
|
|
5
5
|
/** The ReferenceField prop */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { WithDisabled, WithEntity, WithGroup, Option, WithSource, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption } from "./props";
|
|
1
2
|
import { HTMLHeadingTag } from "../global";
|
|
2
3
|
import { DistributiveOmit } from "../utilities";
|
|
3
|
-
import { WithDisabled, WithEntity, WithGroup, Option, WithSource, ThemeColors, ThemeFixedColors, ThemeVisualUniqueSelection, ThumbnailOption } from "./props";
|
|
4
4
|
/** Type generator options */
|
|
5
5
|
declare type TypeGeneratorBase = {
|
|
6
6
|
/** Comment for the Types generator */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PageContentTypeFields, TextField } from "../schema-fields/page-content-type-fields";
|
|
2
|
-
import { SearchFrom, WithSearchable } from "../schema-fields/props";
|
|
3
1
|
import { BaseContentType } from "./base";
|
|
4
2
|
import { DataPacks, ExpirationData } from "./props";
|
|
3
|
+
import { PageContentTypeFields, TextField } from "../schema-fields/page-content-type-fields";
|
|
4
|
+
import { SearchFrom, WithSearchable } from "../schema-fields/props";
|
|
5
5
|
declare type PageContentTypeProp<WhitelistElements> = SearchFrom & {
|
|
6
6
|
/** The name of the Reacttemplates to use with the page type Schema. */
|
|
7
7
|
templates: Array<string>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { SearchFrom, WithSearchable } from "../schema-fields/props";
|
|
2
|
-
import { SimpleContentTypeFields, TextField } from "../schema-fields/simple-content-type-fields";
|
|
3
1
|
import { BaseContentType } from "./base";
|
|
4
2
|
import { DataPacks, ExpirationData } from "./props";
|
|
3
|
+
import { SearchFrom, WithSearchable } from "../schema-fields/props";
|
|
4
|
+
import { SimpleContentTypeFields, TextField } from "../schema-fields/simple-content-type-fields";
|
|
5
5
|
declare type SimpleContentTypeProp<WhitelistElements> = SearchFrom & {
|
|
6
6
|
/** An array of Griddo fields. */
|
|
7
7
|
fields: [
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Fields } from "../..";
|
|
2
|
-
import { UIFields } from "../schema-fields/ui-fields";
|
|
3
1
|
import { BaseUI } from "./base";
|
|
4
2
|
import { ConfigTabs, Dimension } from "./props";
|
|
3
|
+
import { Fields } from "../..";
|
|
4
|
+
import { UIFields } from "../schema-fields/ui-fields";
|
|
5
5
|
export interface BaseDefault {
|
|
6
6
|
/** Component or module name of this schema. */
|
|
7
7
|
component: string;
|
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.
|
|
5
|
+
"version": "1.75.150",
|
|
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": "
|
|
81
|
+
"gitHead": "9f49513708f3cbeb66ebfd788975f6175bd2d462"
|
|
82
82
|
}
|