@open-amt-cloud-toolkit/ui-toolkit-react 3.2.9 → 4.0.3
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/README.md +11 -14
- package/dist/package.json +20 -17
- package/package.json +20 -17
- package/reactjs/IDER/ider.d.ts +1 -1
- package/reactjs/KVM/UI.d.ts +1 -1
- package/reactjs/src/ider.bundle.js +1 -1
- package/reactjs/src/kvm.bundle.js +1 -1
- package/reactjs/src/sol.bundle.js +2 -2
package/README.md
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
# UI Toolkit React
|
|
2
2
|
|
|
3
|
-

|
|
4
|
+

|
|
5
|
+

|
|
6
|
+
[](https://api.securityscorecards.dev/projects/github.com/open-amt-cloud-toolkit/ui-toolkir-react)
|
|
7
7
|
[](https://discord.gg/DKHeUNEWVH)
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
> Disclaimer: Production viable releases are tagged and listed under 'Releases'. All other check-ins should be considered 'in-development' and should not be used in production
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
> IMPORTANT: For now, we are continuing to publish both @device-management-toolkit/ui-toolkit-react and @open-amt-cloud-toolkit/ui-toolkit-react npm packages to avoid a breaking change. Please update your package.json at your earliest convenience for when we cease to publish @open-amt-cloud-toolkit/ui-toolkit-react. This is in effort to support the renaming of the toolkit.
|
|
13
|
+
|
|
13
14
|
|
|
14
|
-
|
|
15
|
+
The UI Toolkit provides prebuilt, React-based components for integrating remote management features such as a keyboard, video, mouse (KVM) control into a web-based management console UI. The controls have a reference UI and layout that can be customized further to seamlessly integrate with existing management console solutions.
|
|
15
16
|
|
|
16
|
-
**For detailed documentation** about [Getting Started with the UI Toolkit](https://
|
|
17
|
+
**For detailed documentation** about [Getting Started with the UI Toolkit](https://device-management-toolkit.github.io/docs/2.0/Tutorials/uitoolkit) or other features of the Device Management Toolkit, see the [docs](https://device-management-toolkit.github.io/docs/).
|
|
17
18
|
|
|
18
|
-
<br>
|
|
19
19
|
|
|
20
20
|
## Prerequisites
|
|
21
21
|
|
|
@@ -43,7 +43,7 @@ The React app can be created in any preferred development directory. The MPS can
|
|
|
43
43
|
1. Run the following command to add the UI Toolkit and install the required dependencies:
|
|
44
44
|
|
|
45
45
|
``` bash
|
|
46
|
-
npm install @
|
|
46
|
+
npm install @device-management-toolkit/ui-toolkit-react
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
2. Run the following commands to start the web UI locally:
|
|
@@ -62,22 +62,19 @@ The React app can be created in any preferred development directory. The MPS can
|
|
|
62
62
|
On Your Network: http://172.16.17.4:3000
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
<br>
|
|
66
65
|
|
|
67
66
|
## Additional Resources
|
|
68
67
|
|
|
69
|
-
- For detailed documentation and Getting Started, [visit the docs site](https://
|
|
68
|
+
- For detailed documentation and Getting Started, [visit the docs site](https://device-management-toolkit.github.io/docs).
|
|
70
69
|
|
|
71
70
|
- Looking to contribute? [Find more information here about contribution guidelines and practices](.\CONTRIBUTING.md).
|
|
72
71
|
|
|
73
|
-
- Find a bug? Or have ideas for new features? [Open a new Issue](https://github.com/
|
|
72
|
+
- Find a bug? Or have ideas for new features? [Open a new Issue](https://github.com/device-management-toolkit/ui-toolkit-react/issues).
|
|
74
73
|
|
|
75
74
|
- Need additional support or want to get the latest news and events about Open AMT? Connect with the team directly through Discord.
|
|
76
75
|
|
|
77
76
|
[](https://discord.gg/DKHeUNEWVH)
|
|
78
77
|
|
|
79
|
-
<br>
|
|
80
|
-
|
|
81
78
|
## License Note
|
|
82
79
|
|
|
83
80
|
If you are distributing the FortAwesome Icons, please provide attribution to the source per the [CC-by 4.0](https://creativecommons.org/licenses/by/4.0/deed.ast) license obligations.
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-amt-cloud-toolkit/ui-toolkit-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "React UI controls for Intel AMT features",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -17,43 +17,46 @@
|
|
|
17
17
|
"author": "",
|
|
18
18
|
"license": "Apache-2.0",
|
|
19
19
|
"bugs": {
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/device-management-toolkit/ui-toolkit-react/issues"
|
|
21
21
|
},
|
|
22
|
-
"homepage": "https://github.com/
|
|
22
|
+
"homepage": "https://github.com/device-management-toolkit/ui-toolkit-react#readme",
|
|
23
23
|
"types": "index.d.ts",
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": "^18.2.0",
|
|
26
26
|
"react-dom": "^18.2.0"
|
|
27
27
|
},
|
|
28
|
+
"private": false,
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
28
32
|
"dependencies": {
|
|
29
33
|
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
|
30
|
-
"@fortawesome/free-solid-svg-icons": "^
|
|
34
|
+
"@fortawesome/free-solid-svg-icons": "^7.0.0",
|
|
31
35
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
32
|
-
"@
|
|
36
|
+
"@device-management-toolkit/ui-toolkit": "^3.3.5",
|
|
33
37
|
"@xterm/xterm": "^5.5.0",
|
|
34
|
-
"i18next": "^
|
|
38
|
+
"i18next": "^25.2.1",
|
|
35
39
|
"i18next-browser-languagedetector": "^8.0.0",
|
|
36
40
|
"md5": "^2.2.1",
|
|
37
41
|
"moment": "^2.29.4",
|
|
38
|
-
"react-i18next": "^15.
|
|
42
|
+
"react-i18next": "^15.5.2",
|
|
39
43
|
"sass": "^1.56.1",
|
|
40
|
-
"styled-components": "^6.
|
|
44
|
+
"styled-components": "^6.1.18",
|
|
41
45
|
"winston": "^3.0.0",
|
|
42
|
-
"ws": "^8.
|
|
46
|
+
"ws": "^8.18.2"
|
|
43
47
|
},
|
|
44
48
|
"devDependencies": {
|
|
45
49
|
"@testing-library/jest-dom": "^6.0.0",
|
|
46
50
|
"@testing-library/react": "^16.0.0",
|
|
47
51
|
"@testing-library/user-event": "^14.4.3",
|
|
48
|
-
"@types/jest": "^
|
|
52
|
+
"@types/jest": "^30.0.0",
|
|
49
53
|
"@types/md5": "^2.3.2",
|
|
50
|
-
"@types/node": "^22.
|
|
54
|
+
"@types/node": "^22.15.23",
|
|
51
55
|
"@types/react": "^18.0.25",
|
|
52
56
|
"@types/react-dom": "^18.0.9",
|
|
53
57
|
"@types/ws": "^8.2.0",
|
|
54
58
|
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
55
59
|
"@typescript-eslint/parser": "^6.11.0",
|
|
56
|
-
"canvas": "^2.10.2",
|
|
57
60
|
"css-loader": "^7.1.1",
|
|
58
61
|
"eslint": "^8.27.0",
|
|
59
62
|
"eslint-config-standard": "^17.0.0",
|
|
@@ -64,20 +67,20 @@
|
|
|
64
67
|
"filereader": "^0.10.3",
|
|
65
68
|
"html-webpack-plugin": "^5.5.0",
|
|
66
69
|
"identity-obj-proxy": "^3.0.0",
|
|
67
|
-
"jest": "^
|
|
70
|
+
"jest": "^30.0.5 ",
|
|
68
71
|
"jest-environment-jsdom": "^29.3.1",
|
|
69
72
|
"jest-junit": "^16.0.0",
|
|
70
73
|
"jest-transform-stub": "^2.0.0",
|
|
71
|
-
"react": "^
|
|
72
|
-
"react-dom": "^
|
|
74
|
+
"react": "^19.0.0",
|
|
75
|
+
"react-dom": "^19.0.0",
|
|
73
76
|
"sass-loader": "^16.0.0",
|
|
74
77
|
"source-map-loader": "^5.0.0",
|
|
75
78
|
"style-loader": "^4.0.0",
|
|
76
|
-
"ts-jest": "^29.0
|
|
79
|
+
"ts-jest": "^29.4.0",
|
|
77
80
|
"ts-loader": "^9.4.1",
|
|
78
81
|
"typescript": "^5.0.4",
|
|
79
82
|
"webpack": "^5.75.0",
|
|
80
|
-
"webpack-cli": "^
|
|
83
|
+
"webpack-cli": "^6.0.1",
|
|
81
84
|
"webpack-dev-server": "^5.0.1",
|
|
82
85
|
"webpack-node-externals": "^3.0.0"
|
|
83
86
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@open-amt-cloud-toolkit/ui-toolkit-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "React UI controls for Intel AMT features",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -17,43 +17,46 @@
|
|
|
17
17
|
"author": "",
|
|
18
18
|
"license": "Apache-2.0",
|
|
19
19
|
"bugs": {
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/device-management-toolkit/ui-toolkit-react/issues"
|
|
21
21
|
},
|
|
22
|
-
"homepage": "https://github.com/
|
|
22
|
+
"homepage": "https://github.com/device-management-toolkit/ui-toolkit-react#readme",
|
|
23
23
|
"types": "index.d.ts",
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": "^18.2.0",
|
|
26
26
|
"react-dom": "^18.2.0"
|
|
27
27
|
},
|
|
28
|
+
"private": false,
|
|
29
|
+
"publishConfig": {
|
|
30
|
+
"access": "public"
|
|
31
|
+
},
|
|
28
32
|
"dependencies": {
|
|
29
33
|
"@fortawesome/fontawesome-svg-core": "^6.2.1",
|
|
30
|
-
"@fortawesome/free-solid-svg-icons": "^
|
|
34
|
+
"@fortawesome/free-solid-svg-icons": "^7.0.0",
|
|
31
35
|
"@fortawesome/react-fontawesome": "^0.2.0",
|
|
32
|
-
"@
|
|
36
|
+
"@device-management-toolkit/ui-toolkit": "^3.3.5",
|
|
33
37
|
"@xterm/xterm": "^5.5.0",
|
|
34
|
-
"i18next": "^
|
|
38
|
+
"i18next": "^25.2.1",
|
|
35
39
|
"i18next-browser-languagedetector": "^8.0.0",
|
|
36
40
|
"md5": "^2.2.1",
|
|
37
41
|
"moment": "^2.29.4",
|
|
38
|
-
"react-i18next": "^15.
|
|
42
|
+
"react-i18next": "^15.5.2",
|
|
39
43
|
"sass": "^1.56.1",
|
|
40
|
-
"styled-components": "^6.
|
|
44
|
+
"styled-components": "^6.1.18",
|
|
41
45
|
"winston": "^3.0.0",
|
|
42
|
-
"ws": "^8.
|
|
46
|
+
"ws": "^8.18.2"
|
|
43
47
|
},
|
|
44
48
|
"devDependencies": {
|
|
45
49
|
"@testing-library/jest-dom": "^6.0.0",
|
|
46
50
|
"@testing-library/react": "^16.0.0",
|
|
47
51
|
"@testing-library/user-event": "^14.4.3",
|
|
48
|
-
"@types/jest": "^
|
|
52
|
+
"@types/jest": "^30.0.0",
|
|
49
53
|
"@types/md5": "^2.3.2",
|
|
50
|
-
"@types/node": "^22.
|
|
54
|
+
"@types/node": "^22.15.23",
|
|
51
55
|
"@types/react": "^18.0.25",
|
|
52
56
|
"@types/react-dom": "^18.0.9",
|
|
53
57
|
"@types/ws": "^8.2.0",
|
|
54
58
|
"@typescript-eslint/eslint-plugin": "^6.11.0",
|
|
55
59
|
"@typescript-eslint/parser": "^6.11.0",
|
|
56
|
-
"canvas": "^2.10.2",
|
|
57
60
|
"css-loader": "^7.1.1",
|
|
58
61
|
"eslint": "^8.27.0",
|
|
59
62
|
"eslint-config-standard": "^17.0.0",
|
|
@@ -64,20 +67,20 @@
|
|
|
64
67
|
"filereader": "^0.10.3",
|
|
65
68
|
"html-webpack-plugin": "^5.5.0",
|
|
66
69
|
"identity-obj-proxy": "^3.0.0",
|
|
67
|
-
"jest": "^
|
|
70
|
+
"jest": "^30.0.5 ",
|
|
68
71
|
"jest-environment-jsdom": "^29.3.1",
|
|
69
72
|
"jest-junit": "^16.0.0",
|
|
70
73
|
"jest-transform-stub": "^2.0.0",
|
|
71
|
-
"react": "^
|
|
72
|
-
"react-dom": "^
|
|
74
|
+
"react": "^19.0.0",
|
|
75
|
+
"react-dom": "^19.0.0",
|
|
73
76
|
"sass-loader": "^16.0.0",
|
|
74
77
|
"source-map-loader": "^5.0.0",
|
|
75
78
|
"style-loader": "^4.0.0",
|
|
76
|
-
"ts-jest": "^29.0
|
|
79
|
+
"ts-jest": "^29.4.0",
|
|
77
80
|
"ts-loader": "^9.4.1",
|
|
78
81
|
"typescript": "^5.0.4",
|
|
79
82
|
"webpack": "^5.75.0",
|
|
80
|
-
"webpack-cli": "^
|
|
83
|
+
"webpack-cli": "^6.0.1",
|
|
81
84
|
"webpack-dev-server": "^5.0.1",
|
|
82
85
|
"webpack-node-externals": "^3.0.0"
|
|
83
86
|
}
|
package/reactjs/IDER/ider.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) Intel Corporation 2023
|
|
3
3
|
* SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
**********************************************************************/
|
|
5
|
-
import { AMTRedirector, AMTIDER } from '@
|
|
5
|
+
import { AMTRedirector, AMTIDER } from '@device-management-toolkit/ui-toolkit/core';
|
|
6
6
|
import React from 'react';
|
|
7
7
|
export interface IDERProps {
|
|
8
8
|
iderState: number;
|
package/reactjs/KVM/UI.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
* Author : Ramu Bachala
|
|
5
5
|
**********************************************************************/
|
|
6
|
-
import { IDataProcessor, IKvmDataCommunicator, Desktop, MouseHelper, KeyBoardHelper } from '@
|
|
6
|
+
import { IDataProcessor, IKvmDataCommunicator, Desktop, MouseHelper, KeyBoardHelper } from '@device-management-toolkit/ui-toolkit/core';
|
|
7
7
|
import React from 'react';
|
|
8
8
|
import './UI.scss';
|
|
9
9
|
export interface KVMProps {
|