@cocreate/users 1.37.5 → 1.37.6

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,10 @@
1
+ ## [1.37.6](https://github.com/CoCreate-app/CoCreate-users/compare/v1.37.5...v1.37.6) (2024-11-02)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * observer taget has been renamed to selector ([37637e2](https://github.com/CoCreate-app/CoCreate-users/commit/37637e2ee91ad6796fbea284dd0ec269c618c535))
7
+
1
8
  ## [1.37.5](https://github.com/CoCreate-app/CoCreate-users/compare/v1.37.4...v1.37.5) (2024-08-24)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/users",
3
- "version": "1.37.5",
3
+ "version": "1.37.6",
4
4
  "description": "A simple users component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "users",
package/src/client.js CHANGED
@@ -473,7 +473,7 @@ function checkSession() {
473
473
  Observer.init({
474
474
  name: 'CoCreateUserSessionAddedNodes',
475
475
  observe: ['addedNodes'],
476
- target: '[session]',
476
+ selector: '[session]',
477
477
  callback: () => {
478
478
  checkSession();
479
479
  }