@griddo/core 11.0.18 → 11.0.19

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.
Files changed (49) hide show
  1. package/dist/autotypes-legacy.js +2 -0
  2. package/dist/autotypes-legacy.js.map +1 -0
  3. package/dist/autotypes.js +1 -1
  4. package/dist/autotypes.js.map +1 -1
  5. package/dist/functions/autotypes/factories/index.d.ts +18 -0
  6. package/dist/functions/autotypes/factories/names/getComponents.d.ts +2 -0
  7. package/dist/functions/autotypes/factories/names/getDetailTemplates.d.ts +2 -0
  8. package/dist/functions/autotypes/factories/names/getModules.d.ts +2 -0
  9. package/dist/functions/autotypes/factories/names/getPageData.d.ts +2 -0
  10. package/dist/functions/autotypes/factories/names/getSimpleData.d.ts +2 -0
  11. package/dist/functions/autotypes/factories/names/getTaxonomy.d.ts +2 -0
  12. package/dist/functions/autotypes/factories/names/getTemplates.d.ts +2 -0
  13. package/dist/functions/autotypes/factories/props/getPageData.d.ts +2 -0
  14. package/dist/functions/autotypes/factories/props/getSectionList.d.ts +8 -0
  15. package/dist/functions/autotypes/factories/props/getSimpleData.d.ts +2 -0
  16. package/dist/functions/autotypes/factories/props/getTaxonomyData.d.ts +2 -0
  17. package/dist/functions/autotypes/factories/props/getTypeFromField/index.d.ts +22 -0
  18. package/dist/functions/autotypes/factories/props/getTypeFromField/utils.d.ts +41 -0
  19. package/dist/functions/autotypes/factories/props/getUIAndData/index.d.ts +2 -0
  20. package/dist/functions/autotypes/factories/props/getUIAndData/utils.d.ts +39 -0
  21. package/dist/functions/autotypes/factories/schemas/getDataPacks.d.ts +5 -0
  22. package/dist/functions/autotypes/factories/schemas/getLanguages.d.ts +2 -0
  23. package/dist/functions/autotypes/factories/schemas/getMenuItems/index.d.ts +2 -0
  24. package/dist/functions/autotypes/factories/schemas/getMenuItems/utils.d.ts +3 -0
  25. package/dist/functions/autotypes/factories/schemas/getModuleCategories.d.ts +14 -0
  26. package/dist/functions/autotypes/factories/schemas/getThemes.d.ts +5 -0
  27. package/dist/functions/autotypes/index.d.ts +2 -1
  28. package/dist/functions/autotypes/misc/ascii.d.ts +3 -0
  29. package/dist/functions/autotypes/misc/types.d.ts +55 -0
  30. package/dist/functions/autotypes/misc/utils.d.ts +17 -0
  31. package/dist/functions/autotypes-legacy/index.d.ts +1 -0
  32. package/dist/functions/react-svg-library/utils.d.ts +5 -0
  33. package/dist/react-svg-library.js.map +1 -1
  34. package/dist/types/core/index.d.ts +1 -1
  35. package/dist/types/schemas/AutoTypes.d.ts +3 -3
  36. package/dist/types/schemas/HeaderFooter.d.ts +4 -4
  37. package/dist/types/schemas/UI.d.ts +8 -8
  38. package/dist/types/schemas/base.d.ts +1 -1
  39. package/dist/types/schemas/index.d.ts +2 -2
  40. package/package.json +3 -2
  41. /package/dist/functions/{autotypes → autotypes-legacy}/ascii.d.ts +0 -0
  42. /package/dist/functions/{autotypes → autotypes-legacy}/constants.d.ts +0 -0
  43. /package/dist/functions/{autotypes → autotypes-legacy}/getMenuItemsProps.d.ts +0 -0
  44. /package/dist/functions/{autotypes → autotypes-legacy}/getTypeFromField.d.ts +0 -0
  45. /package/dist/functions/{autotypes → autotypes-legacy}/getTypesFromSchemas.d.ts +0 -0
  46. /package/dist/functions/{autotypes → autotypes-legacy}/index.cjs.d.ts +0 -0
  47. /package/dist/functions/{autotypes → autotypes-legacy}/main.d.ts +0 -0
  48. /package/dist/functions/{autotypes → autotypes-legacy}/types.d.ts +0 -0
  49. /package/dist/functions/{autotypes → autotypes-legacy}/utils.d.ts +0 -0
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.0.18",
5
+ "version": "11.0.19",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -19,6 +19,7 @@
19
19
  "main": "dist/index.js",
20
20
  "types": "dist/index.d.ts",
21
21
  "bin": {
22
+ "griddo-autotypes-legacy": "dist/autotypes-legacy.js",
22
23
  "griddo-autotypes": "dist/autotypes.js",
23
24
  "griddo-react-svg-library": "dist/react-svg-library.js"
24
25
  },
@@ -111,5 +112,5 @@
111
112
  "publishConfig": {
112
113
  "access": "public"
113
114
  },
114
- "gitHead": "9d2d527ba1cce8195db081b51b2ae4cdb08dd74d"
115
+ "gitHead": "d09e9282475596c0b1c7b26d431f73dc3355d4f1"
115
116
  }