@cocreate/file 1.5.0 → 1.5.2
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/CHANGELOG.md +14 -0
- package/package.json +1 -1
- package/src/client.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.5.2](https://github.com/CoCreate-app/CoCreate-file/compare/v1.5.1...v1.5.2) (2023-08-18)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* typo "@cocreate/Actions" to "@cocreate/actions" ([48d98cd](https://github.com/CoCreate-app/CoCreate-file/commit/48d98cda211f907e47f096d9cb52922950a8a2d6))
|
|
7
|
+
|
|
8
|
+
## [1.5.1](https://github.com/CoCreate-app/CoCreate-file/compare/v1.5.0...v1.5.1) (2023-08-17)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* typo @cocreate/observer ([211cb9a](https://github.com/CoCreate-app/CoCreate-file/commit/211cb9a31a45c9b72f6f4ef6fc7471180477bb85))
|
|
14
|
+
|
|
1
15
|
# [1.5.0](https://github.com/CoCreate-app/CoCreate-file/compare/v1.4.0...v1.5.0) (2023-08-17)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
package/src/client.js
CHANGED
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
// you must obtain a commercial license from CoCreate LLC.
|
|
21
21
|
// For details, visit <https://cocreate.app/licenses/> or contact us at sales@cocreate.app.
|
|
22
22
|
|
|
23
|
-
import Observer from '@cocreate/
|
|
23
|
+
import Observer from '@cocreate/observer';
|
|
24
24
|
import Crud from '@cocreate/crud-client';
|
|
25
25
|
import Elements from '@cocreate/elements';
|
|
26
|
-
import Actions from '@cocreate/
|
|
26
|
+
import Actions from '@cocreate/actions';
|
|
27
27
|
import render from '@cocreate/render';
|
|
28
28
|
import { queryElements } from '@cocreate/utils';
|
|
29
29
|
import '@cocreate/element-prototype';
|