@cocreate/organizations 1.7.13 → 1.7.15

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,19 @@
1
+ ## [1.7.15](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.7.14...v1.7.15) (2022-12-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump dependencies ([1058409](https://github.com/CoCreate-app/CoCreate-organizations/commit/1058409d015584389e9e7ac3671028a2e3cce39a))
7
+ * renamed filter-sort-type to filter-sort-direction ([890f786](https://github.com/CoCreate-app/CoCreate-organizations/commit/890f7868a64af6548c76904fa57467afc51507fa))
8
+ * set broadcastBrowser to false ([d1a03d3](https://github.com/CoCreate-app/CoCreate-organizations/commit/d1a03d32392a02fdfa7dbf763f41ffb1bf58fc3c))
9
+
10
+ ## [1.7.14](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.7.13...v1.7.14) (2022-11-28)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * bump dependencies ([5dee3d6](https://github.com/CoCreate-app/CoCreate-organizations/commit/5dee3d6a9638d4851f8af89adef81c2032df9ab5))
16
+
1
17
  ## [1.7.13](https://github.com/CoCreate-app/CoCreate-organizations/compare/v1.7.12...v1.7.13) (2022-11-28)
2
18
 
3
19
 
@@ -43,7 +43,7 @@
43
43
  fetch-name=""
44
44
  filter-value=""
45
45
  filter-sort-name="name"
46
- filter-sort-type="asc"
46
+ filter-sort-direction="asc"
47
47
  template_id="datatable">
48
48
 
49
49
  <tr class="template background:gainsboro:hover border-bottom:1px_solid_darkgray">
@@ -47,7 +47,7 @@
47
47
  filter-value-type="or"
48
48
  fetch-limit=""
49
49
  filter-sort-name="name"
50
- filter-sort-type="asc"
50
+ filter-sort-direction="asc"
51
51
  template_id="datatable"
52
52
  pass_to="me1234">
53
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/organizations",
3
- "version": "1.7.13",
3
+ "version": "1.7.15",
4
4
  "description": "A simple organizations component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "organizations",
@@ -61,10 +61,10 @@
61
61
  "webpack-log": "^3.0.1"
62
62
  },
63
63
  "dependencies": {
64
- "@cocreate/actions": "^1.5.25",
65
- "@cocreate/crud-client": "^1.15.6",
66
- "@cocreate/docs": "^1.4.7",
67
- "@cocreate/element-prototype": "^1.1.12",
64
+ "@cocreate/actions": "^1.5.27",
65
+ "@cocreate/crud-client": "^1.15.10",
66
+ "@cocreate/docs": "^1.4.10",
67
+ "@cocreate/element-prototype": "^1.1.15",
68
68
  "mongodb": "^4.4.0"
69
69
  }
70
70
  }
package/src/client.js CHANGED
@@ -53,7 +53,8 @@ const CoCreateOrganization = {
53
53
  } else {
54
54
  crud.socket.send('createOrg', {
55
55
  collection: 'organizations',
56
- ...data
56
+ ...data,
57
+ broadcastBrowser: false
57
58
  });
58
59
  }
59
60
  },