@enso-ui/packaging-units 4.0.1 → 4.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 people who already contributed to Enso!
25
25
 
26
26
  ## License
27
27
 
28
- [ISC](https://opensource.org/licenses/ISC)
28
+ [MIT](https://opensource.org/licenses/MIT)
package/package.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "name": "@enso-ui/packaging-units",
3
- "version": "4.0.1",
3
+ "version": "4.1.0",
4
4
  "description": "Basic packaging units package",
5
5
  "main": "src/bulma/pages/administration/packagingUnits/Index.vue",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
9
6
  "repository": {
10
7
  "type": "git",
11
8
  "url": "git+https://github.com/enso-ui/packaging-units.git"
@@ -15,28 +12,17 @@
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/packaging-units/issues"
21
18
  },
22
19
  "homepage": "https://github.com/enso-ui/packaging-units#readme",
23
20
  "dependencies": {
24
- "@enso-ui/forms": "^3.0",
25
- "@enso-ui/tables": "^3.0",
26
- "@enso-ui/ui": "^6.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",
29
26
  "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
27
  }
42
28
  }
@@ -1,7 +1,7 @@
1
1
  <template>
2
2
  <div class="columns is-centered">
3
3
  <div class="column is-half-desktop">
4
- <enso-form class="box form-box has-background-light raises-on-hover"/>
4
+ <enso-form class="box form-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">
4
- <enso-form class="box form-box has-background-light raises-on-hover"/>
4
+ <enso-form class="box form-box"/>
5
5
  </div>
6
6
  </div>
7
7
  </template>
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <enso-table
3
- class="box is-paddingless raises-on-hover"
3
+ class="box p-0"
4
4
  id="packaging_units"/>
5
5
  </template>
6
6
 
@@ -1,6 +1,6 @@
1
1
  import routeImporter from '@enso-ui/ui/src/modules/importers/routeImporter';
2
2
 
3
- const routes = routeImporter(require.context('./packagingUnits', false, /.*\.js$/));
3
+ const routes = routeImporter.fromGlob(import.meta.glob('./packagingUnits/*.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',
package/src/icons.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import { library } from '@fortawesome/fontawesome-svg-core';
2
- import { faArchive } from '@fortawesome/free-solid-svg-icons';
2
+ import { faBoxArchive } from '@fortawesome/free-solid-svg-icons';
3
3
 
4
- library.add(faArchive);
4
+ library.add(faBoxArchive);