@yh-ui/nuxt 0.1.10 → 0.1.15
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/module.cjs +29 -2
- package/dist/module.mjs +29 -2
- package/package.json +3 -3
package/dist/module.cjs
CHANGED
|
@@ -142,7 +142,26 @@ const yhNuxtModule = kit.defineNuxtModule({
|
|
|
142
142
|
"Grid",
|
|
143
143
|
"GridItem",
|
|
144
144
|
// Mention
|
|
145
|
-
"Mention"
|
|
145
|
+
"Mention",
|
|
146
|
+
// AI Components
|
|
147
|
+
"AiChat",
|
|
148
|
+
"AiBubble",
|
|
149
|
+
"AiSender",
|
|
150
|
+
"AiThoughtChain",
|
|
151
|
+
"AiCodeBlock",
|
|
152
|
+
"AiThinking",
|
|
153
|
+
"AiWelcome",
|
|
154
|
+
"AiActionGroup",
|
|
155
|
+
"AiEditorSender",
|
|
156
|
+
"AiArtifacts",
|
|
157
|
+
"AiVoiceTrigger",
|
|
158
|
+
"AiConversations",
|
|
159
|
+
"AiPrompts",
|
|
160
|
+
// New AI Components (Phase 2-5)
|
|
161
|
+
"AiAgentCard",
|
|
162
|
+
"AiSources",
|
|
163
|
+
"AiProvider",
|
|
164
|
+
"AiMention"
|
|
146
165
|
];
|
|
147
166
|
components.forEach((name) => {
|
|
148
167
|
kit.addComponent({
|
|
@@ -164,7 +183,15 @@ const yhNuxtModule = kit.defineNuxtModule({
|
|
|
164
183
|
"useEventListener",
|
|
165
184
|
"useScrollLock",
|
|
166
185
|
"useClickOutside",
|
|
167
|
-
"useConfig"
|
|
186
|
+
"useConfig",
|
|
187
|
+
"useAiChat",
|
|
188
|
+
"useAiStream",
|
|
189
|
+
"useAiConversations",
|
|
190
|
+
// Adapters / parsers
|
|
191
|
+
"openaiParser",
|
|
192
|
+
"ernieParser",
|
|
193
|
+
"qwenParser",
|
|
194
|
+
"plainTextParser"
|
|
168
195
|
];
|
|
169
196
|
hooks.forEach((name) => {
|
|
170
197
|
kit.addImports({
|
package/dist/module.mjs
CHANGED
|
@@ -135,7 +135,26 @@ const yhNuxtModule = defineNuxtModule({
|
|
|
135
135
|
"Grid",
|
|
136
136
|
"GridItem",
|
|
137
137
|
// Mention
|
|
138
|
-
"Mention"
|
|
138
|
+
"Mention",
|
|
139
|
+
// AI Components
|
|
140
|
+
"AiChat",
|
|
141
|
+
"AiBubble",
|
|
142
|
+
"AiSender",
|
|
143
|
+
"AiThoughtChain",
|
|
144
|
+
"AiCodeBlock",
|
|
145
|
+
"AiThinking",
|
|
146
|
+
"AiWelcome",
|
|
147
|
+
"AiActionGroup",
|
|
148
|
+
"AiEditorSender",
|
|
149
|
+
"AiArtifacts",
|
|
150
|
+
"AiVoiceTrigger",
|
|
151
|
+
"AiConversations",
|
|
152
|
+
"AiPrompts",
|
|
153
|
+
// New AI Components (Phase 2-5)
|
|
154
|
+
"AiAgentCard",
|
|
155
|
+
"AiSources",
|
|
156
|
+
"AiProvider",
|
|
157
|
+
"AiMention"
|
|
139
158
|
];
|
|
140
159
|
components.forEach((name) => {
|
|
141
160
|
addComponent({
|
|
@@ -157,7 +176,15 @@ const yhNuxtModule = defineNuxtModule({
|
|
|
157
176
|
"useEventListener",
|
|
158
177
|
"useScrollLock",
|
|
159
178
|
"useClickOutside",
|
|
160
|
-
"useConfig"
|
|
179
|
+
"useConfig",
|
|
180
|
+
"useAiChat",
|
|
181
|
+
"useAiStream",
|
|
182
|
+
"useAiConversations",
|
|
183
|
+
// Adapters / parsers
|
|
184
|
+
"openaiParser",
|
|
185
|
+
"ernieParser",
|
|
186
|
+
"qwenParser",
|
|
187
|
+
"plainTextParser"
|
|
161
188
|
];
|
|
162
189
|
hooks.forEach((name) => {
|
|
163
190
|
addImports({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yh-ui/nuxt",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.15",
|
|
4
4
|
"description": "Nuxt module for YH-UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/module.cjs",
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
],
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@nuxt/kit": "^3.11.0 || ^4.0.0",
|
|
21
|
-
"@yh-ui/theme": "0.1.
|
|
22
|
-
"@yh-ui/components": "0.1.
|
|
21
|
+
"@yh-ui/theme": "0.1.15",
|
|
22
|
+
"@yh-ui/components": "0.1.15"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@nuxt/schema": "^3.11.0 || ^4.0.0",
|