From 29b283da05d0839bac5900e27f67ffbc50f9a355 Mon Sep 17 00:00:00 2001 From: frankpagan Date: Thu, 23 Nov 2023 22:56:08 -0600 Subject: [PATCH] fix: renamed calculation to calculate --- CoCreate.config.js | 4 ++-- docs/components/menu.html | 4 ++-- package.json | 2 +- src/components.js | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CoCreate.config.js b/CoCreate.config.js index f257a6e..4965a4c 100644 --- a/CoCreate.config.js +++ b/CoCreate.config.js @@ -105,8 +105,8 @@ module.exports = { "repo": "github.com/CoCreate-app/CoCreate-attributes.git" }, { - "path": "../CoCreate-components/CoCreate-calculation", - "repo": "github.com/CoCreate-app/CoCreate-calculation.git" + "path": "../CoCreate-components/CoCreate-calculate", + "repo": "github.com/CoCreate-app/CoCreate-calculate.git" }, { "path": "../CoCreate-components/CoCreate-cache", diff --git a/docs/components/menu.html b/docs/components/menu.html index ea89183..dd19f7f 100644 --- a/docs/components/menu.html +++ b/docs/components/menu.html @@ -585,9 +585,9 @@
  • - + CalculationsCalculates
  • diff --git a/package.json b/package.json index 67886d6..969fac6 100644 --- a/package.json +++ b/package.json @@ -71,7 +71,7 @@ "@cocreate/api": "^1.17.0", "@cocreate/attributes": "^1.13.0", "@cocreate/cache": "^1.3.0", - "@cocreate/calculation": "^1.13.0", + "@cocreate/calculate": "^1.13.0", "@cocreate/charts": "^1.11.0", "@cocreate/clone": "^1.9.0", "@cocreate/cocreatecss": "^1.19.0", diff --git a/src/components.js b/src/components.js index f6dd1e6..b166e2c 100644 --- a/src/components.js +++ b/src/components.js @@ -44,7 +44,7 @@ lazyLoad('uuid', '[uuid]', () => import(/*webpackChunkName: "uuid-chunk"*/ '@coc lazyLoad('search', '[search_id]', () => import(/*webpackChunkName: "search-chunk"*/ '@cocreate/search')); lazyLoad('elementConfig', '[config-selector]', () => import(/*webpackChunkName: "elementConfig-chunk"*/ '@cocreate/element-config')); lazyLoad('validation', '[actions*="validate"], required, unique', () => import(/*webpackChunkName: "validation-chunk"*/ '@cocreate/validation')); -lazyLoad('calculation', '[calculate]', () => import(/*webpackChunkName: "calculation-chunk"*/ '@cocreate/calculation')); +lazyLoad('calculate', '[calculate]', () => import(/*webpackChunkName: "calculate-chunk"*/ '@cocreate/calculate')); // Collabortion Components lazyLoad('selection', 'input, textarea, [contenteditable]', () => import(/*webpackChunkName: "selection-chunk"*/ '@cocreate/selection'));