@iobroker/dm-gui-components 7.7.5 → 8.0.2

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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +5 -3
  3. package/package.json +63 -55
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023-2024 Jey Cee <iobroker@all-smart.net>
3
+ Copyright (c) 2023-2025 Jey Cee <iobroker@all-smart.net>
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
@@ -23,10 +23,12 @@ render() {
23
23
  -->
24
24
 
25
25
  ## Changelog
26
+ ### 8.0.2 (2025-10-23)
27
+ - (@GermanBluefox) Renamed gui-components to adapter-react-v5
26
28
 
27
- ### **WORK IN PROGRESS**
29
+ ### 8.0.1 (2025-10-23)
28
30
 
29
- - (foxriver76) update adapter-react-v5 version
31
+ - (@GermanBluefox) Make package independent
30
32
 
31
33
  ### 0.0.10 (2023-12-14)
32
34
 
@@ -48,7 +50,7 @@ render() {
48
50
 
49
51
  MIT License
50
52
 
51
- Copyright (c) 2023-2024 Jey Cee <iobroker@all-smart.net>
53
+ Copyright (c) 2023-2025 Jey Cee <iobroker@all-smart.net>
52
54
 
53
55
  Permission is hereby granted, free of charge, to any person obtaining a copy
54
56
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,58 +1,66 @@
1
1
  {
2
- "name": "@iobroker/dm-gui-components",
3
- "version": "7.7.5",
4
- "description": "ReactJS components to develop admin interface for ioBroker device manager.",
5
- "author": {
6
- "name": "Jey Cee",
7
- "email": "iobroker@all-smart.net"
2
+ "name": "@iobroker/dm-gui-components",
3
+ "version": "8.0.2",
4
+ "description": "ReactJS components to develop admin interface for ioBroker device manager.",
5
+ "author": {
6
+ "name": "Jey Cee",
7
+ "email": "iobroker@all-smart.net"
8
+ },
9
+ "contributors": [
10
+ {
11
+ "name": "UncleSamSwiss"
8
12
  },
9
- "contributors": [
10
- {
11
- "name": "UncleSamSwiss"
12
- },
13
- {
14
- "name": "bluefox",
15
- "email": "dogafox@gmail.com"
16
- }
17
- ],
18
- "scripts": {
19
- "prepublishOnly": "npm run build",
20
- "clean": "rimraf build",
21
- "build": "tsc && tsc-alias",
22
- "check-ts": "tsc --noEmit --checkJS false",
23
- "lint": "eslint -c eslint.config.mjs src",
24
- "prettier": "prettier --write src/**/*.{ts,tsx,js,jsx,json,css,scss,md,html}"
25
- },
26
- "repository": {
27
- "type": "git",
28
- "url": "git+https://github.com/ioBroker/dm-gui-components.git"
29
- },
30
- "publishConfig": {
31
- "access": "public"
32
- },
33
- "files": [
34
- "build/",
35
- "LICENSE",
36
- "README.md"
37
- ],
38
- "module": "./build/index.js",
39
- "types": "./build/index.d.ts",
40
- "keywords": [
41
- "iobroker",
42
- "adapter",
43
- "iot"
44
- ],
45
- "license": "MIT",
46
- "bugs": {
47
- "url": "https://github.com/ioBroker/dm-gui-components/issues"
48
- },
49
- "homepage": "https://github.com/ioBroker/dm-gui-components#readme",
50
- "dependencies": {
51
- "@iobroker/adapter-react-v5": "7.7.5",
52
- "@iobroker/json-config": "7.7.5"
53
- },
54
- "devDependencies": {
55
- "@iobroker/dm-utils": "^1.0.13"
56
- },
57
- "gitHead": "195d5b66dbec074361d7d4f258b68e1d66bfa985"
13
+ {
14
+ "name": "bluefox",
15
+ "email": "dogafox@gmail.com"
16
+ }
17
+ ],
18
+ "scripts": {
19
+ "prepublishOnly": "npm run build",
20
+ "clean": "rimraf build",
21
+ "build": "tsc && tsc-alias",
22
+ "check-ts": "tsc --noEmit --checkJS false",
23
+ "lint": "eslint -c eslint.config.mjs src",
24
+ "release": "release-script -y --noPush --no-update-lockfile",
25
+ "release-patch": "release-script patch --yes --no-update-lockfile --publishAll",
26
+ "release-minor": "release-script minor --yes --no-update-lockfile --publishAll",
27
+ "release-major": "release-script major --yes --no-update-lockfile --publishAll"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/ioBroker/dm-gui-components.git"
32
+ },
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "files": [
37
+ "build/",
38
+ "LICENSE",
39
+ "README.md"
40
+ ],
41
+ "module": "./build/index.js",
42
+ "types": "./build/index.d.ts",
43
+ "keywords": [
44
+ "iobroker",
45
+ "adapter",
46
+ "iot"
47
+ ],
48
+ "license": "MIT",
49
+ "bugs": {
50
+ "url": "https://github.com/ioBroker/dm-gui-components/issues"
51
+ },
52
+ "homepage": "https://github.com/ioBroker/dm-gui-components#readme",
53
+ "dependencies": {
54
+ "@iobroker/adapter-react-v5": "^8.0.3",
55
+ "@iobroker/json-config": "^8.0.2"
56
+ },
57
+ "devDependencies": {
58
+ "@alcalzone/release-script": "^5.0.0",
59
+ "@alcalzone/release-script-plugin-license": "^4.0.0",
60
+ "@iobroker/build-tools": "^2.0.15",
61
+ "@iobroker/dm-utils": "^1.0.13",
62
+ "@iobroker/eslint-config": "^2.2.0",
63
+ "tsc-alias": "^1.8.16",
64
+ "typescript": "^5.9.3"
65
+ }
58
66
  }