@cocreate/users 1.10.24 → 1.11.0

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,17 @@
1
+ # [1.11.0](https://github.com/CoCreate-app/CoCreate-users/compare/v1.10.25...v1.11.0) (2022-12-15)
2
+
3
+
4
+ ### Features
5
+
6
+ * index.css for user-status ([ed329c4](https://github.com/CoCreate-app/CoCreate-users/commit/ed329c4470f65ddd3733d3180526eedff959f6ed))
7
+
8
+ ## [1.10.25](https://github.com/CoCreate-app/CoCreate-users/compare/v1.10.24...v1.10.25) (2022-12-13)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * removed un used devDependencies ([8aabc0d](https://github.com/CoCreate-app/CoCreate-users/commit/8aabc0d51ef49b10ebfd47a20ff79865f8910a90))
14
+
1
15
  ## [1.10.24](https://github.com/CoCreate-app/CoCreate-users/compare/v1.10.23...v1.10.24) (2022-12-13)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/users",
3
- "version": "1.10.24",
3
+ "version": "1.11.0",
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",
@@ -51,9 +51,7 @@
51
51
  "babel-loader": "^8.1.0",
52
52
  "clean-webpack-plugin": "^3.0.0",
53
53
  "file-loader": "^6.2.0",
54
- "html-webpack-plugin": "^4.5.0",
55
54
  "mini-css-extract-plugin": "^1.5.0",
56
- "style-loader": "^2.0.0",
57
55
  "terser-webpack-plugin": "^5.1.1",
58
56
  "uglifyjs-webpack-plugin": "^2.2.0",
59
57
  "webpack": "^5.24.4",
package/src/client.js CHANGED
@@ -3,6 +3,8 @@ import crud from '@cocreate/crud-client';
3
3
  import action from '@cocreate/actions';
4
4
  import render from '@cocreate/render';
5
5
  import '@cocreate/element-prototype';
6
+ import './index.css';
7
+
6
8
 
7
9
  const CONST_PERMISSION_CLASS = 'checkPermission';
8
10