diff --git a/CHANGELOG.md b/CHANGELOG.md index 20493b8..85a1c32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.1.3](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.2...v1.1.3) (2022-11-25) + + +### Bug Fixes + +* bump dependencies ([200c48c](https://github.com/CoCreate-app/CoCreate-css-parser/commit/200c48cd2653fcb8606e79466bf5c849ef1ed97b)) +* CoCreate.crud.default removed bug causing default object ([2dec74d](https://github.com/CoCreate-app/CoCreate-css-parser/commit/2dec74d6785141b7c151644a0b935f14a4462666)) + ## [1.1.2](https://github.com/CoCreate-app/CoCreate-css-parser/compare/v1.1.1...v1.1.2) (2022-11-24) diff --git a/package.json b/package.json index 0842bc9..fffcc8f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cocreate/css-parser", - "version": "1.1.2", + "version": "1.1.3", "description": "A simple css-parser component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.", "keywords": [ "css-parser", @@ -61,9 +61,9 @@ "webpack-log": "^3.0.1" }, "dependencies": { - "@cocreate/crud-client": "^1.14.2", - "@cocreate/docs": "^1.4.3", - "@cocreate/hosting": "^1.6.2", - "@cocreate/observer": "^1.5.26" + "@cocreate/crud-client": "^1.15.1", + "@cocreate/docs": "^1.4.4", + "@cocreate/hosting": "^1.6.3", + "@cocreate/observer": "^1.5.27" } } diff --git a/src/index.js b/src/index.js index 5299894..5e3db27 100644 --- a/src/index.js +++ b/src/index.js @@ -5,13 +5,7 @@ * SPDX-License-Identifier: MIT ********************************************************************************/ import observer from '@cocreate/observer'; -import CRUD from '@cocreate/crud-client'; - -let crud -if (CRUD && CRUD.default) - crud = CRUD.default -else - crud = CRUD +import crud from '@cocreate/crud-client'; const themes = ["light", "dark"]; const mediaRangeNames = ["xs", "sm", "md", "lg", "xl"];