@opentiny/genui-sdk-vue 1.1.2 → 1.2.0-alpha.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/dist/ConfigProvider-BaJsiFgd.js +86 -0
- package/dist/SchemaCardRenderer-CdV5OdhD.js +13440 -0
- package/dist/___vite-browser-external_commonjs-proxy-4gYZYw55.js +56 -0
- package/dist/chat.d.ts +2882 -0
- package/dist/chat.js +22 -0
- package/dist/chat.types-Bz1iNdhu.js +1753 -0
- package/dist/config-provider.d.ts +54 -0
- package/dist/config-provider.js +5 -0
- package/dist/index.d.ts +20 -0
- package/dist/index.js +27 -82441
- package/dist/injection-tokens-D8CFCpjy.js +114 -0
- package/dist/renderer.d.ts +2099 -0
- package/dist/renderer.js +5 -0
- package/dist/transform-jsx.d.ts +3 -0
- package/dist/transform-jsx.js +67051 -0
- package/package.json +47 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentiny/genui-sdk-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0-alpha.2",
|
|
4
4
|
"description": "A Vue3 component library for enhanced LLM display and interaction",
|
|
5
5
|
"author": "OpenTiny Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,6 +22,28 @@
|
|
|
22
22
|
],
|
|
23
23
|
"main": "dist/index.js",
|
|
24
24
|
"types": "dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./chat": {
|
|
31
|
+
"types": "./dist/chat.d.ts",
|
|
32
|
+
"import": "./dist/chat.js"
|
|
33
|
+
},
|
|
34
|
+
"./renderer": {
|
|
35
|
+
"types": "./dist/renderer.d.ts",
|
|
36
|
+
"import": "./dist/renderer.js"
|
|
37
|
+
},
|
|
38
|
+
"./config-provider": {
|
|
39
|
+
"types": "./dist/config-provider.d.ts",
|
|
40
|
+
"import": "./dist/config-provider.js"
|
|
41
|
+
},
|
|
42
|
+
"./transform-jsx": {
|
|
43
|
+
"types": "./dist/transform-jsx.d.ts",
|
|
44
|
+
"import": "./dist/transform-jsx.js"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
25
47
|
"type": "module",
|
|
26
48
|
"files": [
|
|
27
49
|
"dist",
|
|
@@ -37,15 +59,38 @@
|
|
|
37
59
|
"@opentiny/vue-theme": "^3.28.0",
|
|
38
60
|
"uuid": "^11.1.0",
|
|
39
61
|
"vue": "^3.5.13",
|
|
40
|
-
"@opentiny/vue-button": "^3.28.0",
|
|
41
62
|
"@opentiny/vue-chart-bar": "~3.14.0",
|
|
42
63
|
"@opentiny/vue-chart-histogram": "~3.14.0",
|
|
43
64
|
"@opentiny/vue-chart-line": "~3.14.0",
|
|
44
65
|
"@opentiny/vue-chart-pie": "~3.14.0",
|
|
45
66
|
"@opentiny/vue-chart-radar": "~3.14.0",
|
|
46
67
|
"@opentiny/vue-chart-ring": "3.14.0",
|
|
68
|
+
"@opentiny/vue-carousel": "^3.28.0",
|
|
69
|
+
"@opentiny/vue-carousel-item": "^3.28.0",
|
|
70
|
+
"@opentiny/vue-checkbox-button": "^3.28.0",
|
|
71
|
+
"@opentiny/vue-checkbox-group": "^3.28.0",
|
|
72
|
+
"@opentiny/vue-col": "^3.28.0",
|
|
73
|
+
"@opentiny/vue-date-picker": "^3.28.0",
|
|
74
|
+
"@opentiny/vue-layout": "^3.28.0",
|
|
75
|
+
"@opentiny/vue-row": "^3.28.0",
|
|
76
|
+
"@opentiny/vue-search": "^3.28.0",
|
|
47
77
|
"@opentiny/vue-select": "^3.28.0",
|
|
78
|
+
"@opentiny/vue-transfer": "^3.28.0",
|
|
79
|
+
"@opentiny/vue-button": "^3.28.0",
|
|
80
|
+
"@opentiny/vue-grid": "^3.28.0",
|
|
81
|
+
"@opentiny/vue-form": "^3.28.0",
|
|
82
|
+
"@opentiny/vue-form-item": "^3.28.0",
|
|
83
|
+
"@opentiny/vue-input": "^3.28.0",
|
|
84
|
+
"@opentiny/vue-notify": "^3.28.0",
|
|
85
|
+
"@opentiny/vue-card": "^3.28.0",
|
|
86
|
+
"@opentiny/vue-checkbox": "^3.28.0",
|
|
87
|
+
"@opentiny/vue-numeric": "^3.28.0",
|
|
88
|
+
"@opentiny/vue-radio": "^3.28.0",
|
|
89
|
+
"@opentiny/vue-switch": "^3.28.0",
|
|
48
90
|
"@opentiny/vue-tabs": "^3.28.0",
|
|
91
|
+
"@opentiny/vue-tab-item": "^3.28.0",
|
|
92
|
+
"@opentiny/vue-tree": "^3.28.0",
|
|
93
|
+
"@opentiny/vue-radio-group": "^3.28.0",
|
|
49
94
|
"@opentiny/tiny-engine-builtin-component": "^2.6.0"
|
|
50
95
|
}
|
|
51
96
|
}
|