@glodon-aiot/agent-cli-ui 3.3.5-alpha.25 → 3.3.5-alpha.26
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/dist/es/index.mjs +267 -263
- package/dist/es/packages/agent-cli-ui/package.json.mjs +3 -3
- package/dist/es/packages/react-components/dist/es/index.mjs +1 -1
- package/dist/es/src/style11.css +1 -1
- package/dist/es/src/style12.css +1 -1
- package/dist/es/src/style17.css +1 -1
- package/dist/es/src/style18.css +1 -1
- package/dist/es/src/style19.css +1 -1
- package/dist/es/src/style20.css +1 -1
- package/dist/es/src/style26.css +1 -1
- package/dist/es/src/style27.css +1 -1
- package/dist/es/src/style5.css +1 -1
- package/dist/es/src/style6.css +1 -1
- package/dist/es/src/style7.css +1 -1
- package/dist/es/src/style8.css +1 -1
- package/dist/lib/index.js +52 -52
- package/dist/src/index.d.ts +2 -0
- package/package.json +3 -3
package/dist/src/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export default class AgentClientUI {
|
|
|
9
9
|
private _inputDisabled;
|
|
10
10
|
private _defatulSessionId;
|
|
11
11
|
private _agentClientRef;
|
|
12
|
+
private _config;
|
|
12
13
|
readonly apiUrl: string;
|
|
13
14
|
readonly docViewerUrl: string;
|
|
14
15
|
readonly env: Env;
|
|
@@ -23,6 +24,7 @@ export default class AgentClientUI {
|
|
|
23
24
|
wrapper: HTMLElement;
|
|
24
25
|
botClient: BotClient | null;
|
|
25
26
|
constructor(config: InitalData);
|
|
27
|
+
private updateUIConfig;
|
|
26
28
|
get token(): string;
|
|
27
29
|
set token(v: string);
|
|
28
30
|
get mode(): AgentClientMode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glodon-aiot/agent-cli-ui",
|
|
3
|
-
"version": "3.3.5-alpha.
|
|
3
|
+
"version": "3.3.5-alpha.26",
|
|
4
4
|
"module": "./dist/es/index.mjs",
|
|
5
5
|
"main": "./dist/lib/index.js",
|
|
6
6
|
"typings": "./dist/src/index.d.ts",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@ant-design/icons": "^5.3.4",
|
|
37
|
-
"@glodon-aiot/apis": "^3.3.5-alpha.
|
|
38
|
-
"@glodon-aiot/bot-client-sdk": "^3.3.5-alpha.
|
|
37
|
+
"@glodon-aiot/apis": "^3.3.5-alpha.26",
|
|
38
|
+
"@glodon-aiot/bot-client-sdk": "^3.3.5-alpha.26",
|
|
39
39
|
"@matejmazur/react-mathjax": "^0.1.10",
|
|
40
40
|
"@react-pdf-viewer/core": "^3.12.0",
|
|
41
41
|
"@react-pdf-viewer/default-layout": "^3.12.0",
|