@cocreate/text 1.12.31 → 1.12.32

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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## [1.12.32](https://github.com/CoCreate-app/CoCreate-text/compare/v1.12.31...v1.12.32) (2021-11-27)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * actions import typo ([66f914e](https://github.com/CoCreate-app/CoCreate-text/commit/66f914e725a5862d99c2cdb1d462da461f9f46d7))
7
+ * update dependencies ([de6cd6a](https://github.com/CoCreate-app/CoCreate-text/commit/de6cd6a4f9ca77d52588b633b8dd96bf4de4043a))
8
+
1
9
  ## [1.12.31](https://github.com/CoCreate-app/CoCreate-text/compare/v1.12.30...v1.12.31) (2021-11-27)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/text",
3
- "version": "1.12.31",
3
+ "version": "1.12.32",
4
4
  "description": "A simple text component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "text",
@@ -61,13 +61,13 @@
61
61
  "webpack-log": "^3.0.1"
62
62
  },
63
63
  "dependencies": {
64
- "@cocreate/actions": "^1.3.22",
65
- "@cocreate/crdt": "^1.8.25",
66
- "@cocreate/crud-client": "^1.4.37",
67
- "@cocreate/cursors": "^1.10.15",
68
- "@cocreate/docs": "^1.2.59",
69
- "@cocreate/hosting": "^1.2.55",
70
- "@cocreate/observer": "^1.3.51",
71
- "@cocreate/selection": "^1.2.18"
64
+ "@cocreate/actions": "^1.3.23",
65
+ "@cocreate/crdt": "^1.8.26",
66
+ "@cocreate/crud-client": "^1.4.38",
67
+ "@cocreate/cursors": "^1.10.16",
68
+ "@cocreate/docs": "^1.2.60",
69
+ "@cocreate/hosting": "^1.2.56",
70
+ "@cocreate/observer": "^1.3.52",
71
+ "@cocreate/selection": "^1.2.19"
72
72
  }
73
73
  }
@@ -1,5 +1,5 @@
1
1
  /*globals CustomEvent*/
2
- import action from '@cocreate/action';
2
+ import action from '@cocreate/actions';
3
3
  import crud from '@cocreate/crud-client';
4
4
  import crdt from '@cocreate/crdt';
5
5