@blocklet/pages-kit 0.2.370 → 0.2.372
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/lib/cjs/builtin/async/ai-runtime/api/session.js +48 -50
- package/lib/cjs/builtin/async/ai-runtime/components/AgentInputField/LanguageField.js +18 -33
- package/lib/cjs/builtin/async/ai-runtime/index.js +3 -1
- package/lib/cjs/builtin/async/ai-runtime/runtime-components/AutoForm/index.js +6 -2
- package/lib/cjs/builtin/async/ai-runtime/state/session.js +3 -2
- package/lib/cjs/builtin/async/ai-runtime/utils/languages.js +36 -0
- package/lib/cjs/builtin/components.js +8 -0
- package/lib/cjs/builtin/mui/material.js +3 -2
- package/lib/cjs/tsconfig.tsbuildinfo +1 -1
- package/lib/cjs/utils/builtin.js +1 -0
- package/lib/cjs/utils/inject-global-components.js +2 -0
- package/lib/esm/builtin/async/ai-runtime/api/session.js +48 -50
- package/lib/esm/builtin/async/ai-runtime/components/AgentInputField/LanguageField.js +20 -35
- package/lib/esm/builtin/async/ai-runtime/index.js +1 -0
- package/lib/esm/builtin/async/ai-runtime/runtime-components/AutoForm/index.js +6 -2
- package/lib/esm/builtin/async/ai-runtime/state/session.js +3 -2
- package/lib/esm/builtin/async/ai-runtime/utils/languages.js +33 -0
- package/lib/esm/builtin/components.js +1 -0
- package/lib/esm/builtin/mui/material.js +1 -1
- package/lib/esm/tsconfig.tsbuildinfo +1 -1
- package/lib/esm/utils/builtin.js +1 -0
- package/lib/esm/utils/inject-global-components.js +2 -0
- package/lib/types/builtin/async/ai-runtime/api/session.d.ts +16 -5
- package/lib/types/builtin/async/ai-runtime/index.d.ts +1 -0
- package/lib/types/builtin/async/ai-runtime/utils/languages.d.ts +8 -0
- package/lib/types/builtin/components.d.ts +1 -0
- package/lib/types/builtin/mui/material.d.ts +1 -1
- package/lib/types/tsconfig.tsbuildinfo +1 -1
- package/lib/types/utils/builtin.d.ts +1 -0
- package/package.json +12 -11
|
@@ -31,6 +31,7 @@ export declare const BuiltinModules: {
|
|
|
31
31
|
'@blocklet/pages-kit/builtin/react-wrap-balancer': typeof reactWrapBalancer;
|
|
32
32
|
'@blocklet/pages-kit/builtin/react-router-dom': typeof reactRouterDOM;
|
|
33
33
|
'@blocklet/pages-kit/builtin/async/react-scroll-to-bottom': typeof reactScrollToBottom;
|
|
34
|
+
'@blocklet/pages-kit/builtin/components': {};
|
|
34
35
|
'@blocklet/pages-kit/builtin/session': {};
|
|
35
36
|
'@blocklet/pages-kit/builtin/locale': {};
|
|
36
37
|
'@blocklet/pages-kit/builtin/page/header': {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blocklet/pages-kit",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.372",
|
|
4
4
|
"description": "Pages Kit components and utils",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -92,13 +92,13 @@
|
|
|
92
92
|
"url": "git+https://github.com/blocklet/pages-kit.git"
|
|
93
93
|
},
|
|
94
94
|
"dependencies": {
|
|
95
|
-
"@arcblock/did-connect": "^2.10.
|
|
96
|
-
"@blocklet/ai-kit": "^0.1.
|
|
97
|
-
"@blocklet/ai-runtime": "^0.3.
|
|
95
|
+
"@arcblock/did-connect": "^2.10.5",
|
|
96
|
+
"@blocklet/ai-kit": "^0.1.44",
|
|
97
|
+
"@blocklet/ai-runtime": "^0.3.31",
|
|
98
98
|
"@blocklet/js-sdk": "^1.16.28",
|
|
99
99
|
"@blocklet/sdk": "^1.16.28",
|
|
100
|
-
"@iconify/react": "^
|
|
101
|
-
"@lottiefiles/lottie-player": "^
|
|
100
|
+
"@iconify/react": "^5.0.1",
|
|
101
|
+
"@lottiefiles/lottie-player": "^2.0.4",
|
|
102
102
|
"@types/file-saver": "^2.0.7",
|
|
103
103
|
"axios": "^1.7.2",
|
|
104
104
|
"dayjs": "^1.11.11",
|
|
@@ -113,6 +113,7 @@
|
|
|
113
113
|
"nanoid": "^3.3.7",
|
|
114
114
|
"node-fetch": "^2.7.0",
|
|
115
115
|
"react-error-boundary": "^4.0.13",
|
|
116
|
+
"react-flags-select": "^2.2.3",
|
|
116
117
|
"react-frame-component": "^5.2.7",
|
|
117
118
|
"react-helmet": "^6.1.0",
|
|
118
119
|
"react-hook-form": "^7.52.1",
|
|
@@ -141,13 +142,13 @@
|
|
|
141
142
|
"react-router-dom": "^6.16.0"
|
|
142
143
|
},
|
|
143
144
|
"devDependencies": {
|
|
144
|
-
"@arcblock/ux": "^2.10.
|
|
145
|
+
"@arcblock/ux": "^2.10.5",
|
|
145
146
|
"@emotion/cache": "^11.11.0",
|
|
146
147
|
"@emotion/css": "^11.11.2",
|
|
147
148
|
"@emotion/react": "^11.11.4",
|
|
148
|
-
"@mui/icons-material": "^5.16.
|
|
149
|
-
"@mui/lab": "^5.0.0-alpha.
|
|
150
|
-
"@mui/material": "^5.16.
|
|
149
|
+
"@mui/icons-material": "^5.16.1",
|
|
150
|
+
"@mui/lab": "^5.0.0-alpha.172",
|
|
151
|
+
"@mui/material": "^5.16.1",
|
|
151
152
|
"@types/lodash": "^4.17.6",
|
|
152
153
|
"@types/mustache": "^4.2.5",
|
|
153
154
|
"@types/node-fetch": "^2.6.11",
|
|
@@ -160,7 +161,7 @@
|
|
|
160
161
|
"react": "^18.3.1",
|
|
161
162
|
"react-dom": "^18.3.1",
|
|
162
163
|
"react-router-dom": "^6.24.1",
|
|
163
|
-
"rimraf": "^
|
|
164
|
+
"rimraf": "^6.0.1"
|
|
164
165
|
},
|
|
165
166
|
"scripts": {
|
|
166
167
|
"lint": "eslint src --ext .mjs,.js,.jsx,.ts,.tsx",
|