@griddo/core 10.2.24 → 10.2.25

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.
@@ -137,17 +137,6 @@ declare function schemasToArray(objectSchemas: Record<string, SchemaType>): ({
137
137
  component: Capitalize<string>;
138
138
  };
139
139
  configTabs: import("../../types/schemas/props").ConfigTabs[];
140
- /**
141
- * Return a serialized type from a Griddo schema field.
142
- *
143
- * @param Fields A Griddo field object
144
- * @param options An options object
145
- * @returns A string that represent a interface prop type.
146
- * @example
147
- * interface SomeInterface {
148
- * prop: boolean; // this function returns a string for this: `prop: boolean`
149
- * }
150
- */
151
140
  singleInstance?: boolean | undefined;
152
141
  category?: any;
153
142
  displayName: string;
@@ -170,17 +159,6 @@ declare function schemasToArray(objectSchemas: Record<string, SchemaType>): ({
170
159
  };
171
160
  };
172
161
  configTabs: import("../../types/schemas/props").ConfigTabs[];
173
- /**
174
- * Return a serialized type from a Griddo schema field.
175
- *
176
- * @param Fields A Griddo field object
177
- * @param options An options object
178
- * @returns A string that represent a interface prop type.
179
- * @example
180
- * interface SomeInterface {
181
- * prop: boolean; // this function returns a string for this: `prop: boolean`
182
- * }
183
- */
184
162
  singleInstance?: boolean | undefined;
185
163
  category?: any;
186
164
  displayName: string;
@@ -200,17 +178,6 @@ declare function schemasToArray(objectSchemas: Record<string, SchemaType>): ({
200
178
  elements: unknown[];
201
179
  };
202
180
  configTabs: import("../../types/schemas/props").ConfigTabs[];
203
- /**
204
- * Return a serialized type from a Griddo schema field.
205
- *
206
- * @param Fields A Griddo field object
207
- * @param options An options object
208
- * @returns A string that represent a interface prop type.
209
- * @example
210
- * interface SomeInterface {
211
- * prop: boolean; // this function returns a string for this: `prop: boolean`
212
- * }
213
- */
214
181
  singleInstance?: boolean | undefined;
215
182
  category?: any;
216
183
  displayName: string;
@@ -228,17 +195,6 @@ declare function schemasToArray(objectSchemas: Record<string, SchemaType>): ({
228
195
  component: Capitalize<string>;
229
196
  };
230
197
  configTabs: import("../../types/schemas/props").ConfigTabs[];
231
- /**
232
- * Return a serialized type from a Griddo schema field.
233
- *
234
- * @param Fields A Griddo field object
235
- * @param options An options object
236
- * @returns A string that represent a interface prop type.
237
- * @example
238
- * interface SomeInterface {
239
- * prop: boolean; // this function returns a string for this: `prop: boolean`
240
- * }
241
- */
242
198
  singleInstance?: boolean | undefined;
243
199
  category?: any;
244
200
  displayName: string;
@@ -265,17 +221,6 @@ declare function schemasToArray(objectSchemas: Record<string, SchemaType>): ({
265
221
  dimensions?: import("../../types/schemas/props").Dimension[] | undefined;
266
222
  content: UIFields[];
267
223
  config?: UIFields[] | undefined;
268
- /**
269
- * Return a serialized type from a Griddo schema field.
270
- *
271
- * @param Fields A Griddo field object
272
- * @param options An options object
273
- * @returns A string that represent a interface prop type.
274
- * @example
275
- * interface SomeInterface {
276
- * prop: boolean; // this function returns a string for this: `prop: boolean`
277
- * }
278
- */
279
224
  singleInstance?: boolean | undefined;
280
225
  category?: any;
281
226
  displayName: string;
@@ -305,17 +250,6 @@ declare function schemasToArray(objectSchemas: Record<string, SchemaType>): ({
305
250
  dimensions?: import("../../types/schemas/props").Dimension[] | undefined;
306
251
  content: UIFields[];
307
252
  config?: UIFields[] | undefined;
308
- /**
309
- * Return a serialized type from a Griddo schema field.
310
- *
311
- * @param Fields A Griddo field object
312
- * @param options An options object
313
- * @returns A string that represent a interface prop type.
314
- * @example
315
- * interface SomeInterface {
316
- * prop: boolean; // this function returns a string for this: `prop: boolean`
317
- * }
318
- */
319
253
  singleInstance?: boolean | undefined;
320
254
  category?: any;
321
255
  displayName: string;
@@ -344,4 +278,10 @@ declare function getElementsUnionType(schemas: Array<SchemaType>): string;
344
278
  * aparecer un módulo.
345
279
  */
346
280
  declare function getSectionList(schemas: Array<SchemaType>): string;
347
- export { extendsType, getAllFields, getElementsUnionType, getGenericFromOptions, getGenericFromWhitelist, getInterfacePropType, returnType, schemasToArray, getGenericFromCheckBoxOptions, getSectionList, };
281
+ /**
282
+ * Returns the instance or monorepo paths.
283
+ *
284
+ * @param customPath The path for the instance components
285
+ */
286
+ declare function resolveComponentsPath(customPath?: string): string;
287
+ export { extendsType, getAllFields, getElementsUnionType, getGenericFromCheckBoxOptions, getGenericFromOptions, getGenericFromWhitelist, getInterfacePropType, getSectionList, resolveComponentsPath, returnType, schemasToArray, };
@@ -1,4 +1,4 @@
1
- import __AT__ from "../../../../../../autotypes";
1
+ import __AT__ from "@autoTypes";
2
2
  export type WithAuxText = {
3
3
  /** Sets a label text to show besides the toggle field control */
4
4
  auxText?: string;
@@ -1,5 +1,5 @@
1
+ import __AT__ from "@autoTypes";
1
2
  import { DataPacks, Thumbnails, _AutoTypes } from "./props";
2
- import __AT__ from "../../../../../../autotypes";
3
3
  interface BaseContentType extends _AutoTypes {
4
4
  /** Title for the Content Type */
5
5
  title: string;
@@ -1,4 +1,4 @@
1
- import __AT__ from "../../../../../../autotypes";
1
+ import __AT__ from "@autoTypes";
2
2
  import { UIFields } from "../schema-fields/ui-fields";
3
3
  import { NonEmptyArray } from "../utilities";
4
4
  type DataPacks = {
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": "10.2.24",
5
+ "version": "10.2.25",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -81,5 +81,5 @@
81
81
  "resolutions": {
82
82
  "colors": "1.4.0"
83
83
  },
84
- "gitHead": "c15819b6b6ef01e589bc9669e0356dca242df6c7"
84
+ "gitHead": "648778151f4d044e09a409274b508dd0ae401825"
85
85
  }