@enso-ui/user-groups 2.0.7 → 3.1.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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2018 laravel-enso
3
+ Copyright (c) 2026 laravel-enso
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -25,4 +25,4 @@ Thank you to all the users who already contributed to Enso!
25
25
 
26
26
  ## License
27
27
 
28
- [ISC](https://opensource.org/licenses/ISC)
28
+ MIT
package/package.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "name": "@enso-ui/user-groups",
3
- "version": "2.0.7",
3
+ "version": "3.1.0",
4
4
  "description": "Basic user groups package",
5
- "main": "src/bulma/pages/userGroups/Index.vue",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
5
+ "main": "bulma/index.js",
9
6
  "repository": {
10
7
  "type": "git",
11
8
  "url": "git+https://github.com/enso-ui/user-groups.git"
@@ -15,28 +12,18 @@
15
12
  "vue"
16
13
  ],
17
14
  "author": "Adrian Ocneanu <aocneanu@gmail.com>",
18
- "license": "ISC",
15
+ "license": "MIT",
19
16
  "bugs": {
20
17
  "url": "https://github.com/enso-ui/user-groups/issues"
21
18
  },
22
19
  "homepage": "https://github.com/enso-ui/user-groups#readme",
23
20
  "dependencies": {
24
- "@enso-ui/forms": "^3.0",
25
- "@enso-ui/tables": "^3.0",
26
- "@enso-ui/ui": "^5.0",
27
- "@fortawesome/fontawesome-svg-core": "^1.2.2",
28
- "@fortawesome/free-solid-svg-icons": "^5.11.2",
21
+ "@enso-ui/forms": "^4.0.0",
22
+ "@enso-ui/tables": "^4.0.0",
23
+ "@enso-ui/ui": "^7.0.0",
24
+ "@fortawesome/fontawesome-svg-core": "^7.2.0",
25
+ "@fortawesome/free-solid-svg-icons": "^7.2.0",
26
+ "@fortawesome/vue-fontawesome": "3.1.3",
29
27
  "vue": "^3.0"
30
- },
31
- "devDependencies": {
32
- "@vue/cli-plugin-babel": "5.0.0-beta.6",
33
- "@vue/cli-plugin-eslint": "5.0.0-beta.6",
34
- "@vue/eslint-config-airbnb": "^5.0.0",
35
- "autoprefixer": "^9.6.1",
36
- "babel-eslint": "^10.0.1",
37
- "cross-env": "^6.0.0",
38
- "eslint": "^7.0.0",
39
- "eslint-import-resolver-alias": "^1.1.2",
40
- "eslint-plugin-vue": "^8.0.3"
41
28
  }
42
29
  }
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="columns is-centered">
3
3
  <div class="column is-half-desktop is-full-touch">
4
- <enso-form class="box has-background-light raises-on-hover"/>
4
+ <enso-form class="box"/>
5
5
  </div>
6
6
  </div>
7
7
  </template>
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="columns is-centered">
3
3
  <div class="column is-half-desktop is-full-touch">
4
- <enso-form class="box has-background-light raises-on-hover"/>
4
+ <enso-form class="box"/>
5
5
  </div>
6
6
  </div>
7
7
  </template>
@@ -1,5 +1,5 @@
1
1
  <template>
2
- <enso-table class="box is-paddingless raises-on-hover"
2
+ <enso-table class="box p-0"
3
3
  id="userGroups"/>
4
4
  </template>
5
5
 
@@ -1,6 +1,6 @@
1
1
  import routeImporter from '@enso-ui/ui/src/modules/importers/routeImporter';
2
2
 
3
- const routes = routeImporter(require.context('./userGroups', false, /.*\.js$/));
3
+ const routes = routeImporter.fromGlob(import.meta.glob('./userGroups/*.js', { eager: true }));
4
4
  const Router = () => import('@enso-ui/ui/src/bulma/pages/Router.vue');
5
5
 
6
6
  export default {
@@ -1,6 +1,6 @@
1
1
  import routeImporter from '@enso-ui/ui/src/modules/importers/routeImporter';
2
2
 
3
- const routes = routeImporter(require.context('./administration', false, /.*\.js$/));
3
+ const routes = routeImporter.fromGlob(import.meta.glob('./administration/*.js', { eager: true }));
4
4
 
5
5
  export default {
6
6
  path: '/administration',