@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.
- package/LICENSE +1 -1
- package/README.md +5 -3
- package/package.json +63 -55
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2023-
|
|
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
|
-
###
|
|
29
|
+
### 8.0.1 (2025-10-23)
|
|
28
30
|
|
|
29
|
-
- (
|
|
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-
|
|
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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"
|
|
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
|
}
|