forked from opentiny/tiny-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
191 lines (185 loc) · 4.97 KB
/
Copy pathindex.ts
File metadata and controls
191 lines (185 loc) · 4.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import './styles/root.css'
import './styles/components/index.css'
import { App } from 'vue'
import Attachments from './attachments'
import { Bubble, BubbleList, BubbleProvider } from './bubble'
import Container from './container'
import Anchor from './anchor'
import Conversations from './conversations'
import DragOverlay from './drag-overlay'
import DropdownMenu from './dropdown-menu'
import Feedback from './feedback'
import History from './history'
import IconButton from './icon-button'
import { Layout, LayoutAsideToggle, LayoutProxyScrollbar } from './layout'
import { Prompt, Prompts } from './prompts'
import Sender from './sender'
import SenderCompat from './sender-compat'
import SuggestionPills, { SuggestionPillButton } from './suggestion-pills'
import SuggestionPopover from './suggestion-popover'
import ThemeProvider from './theme-provider'
import Welcome from './welcome'
import McpServerPicker from './mcp-server-picker'
import McpAddForm from './mcp-add-form'
import {
ActionButton,
SubmitButton,
ClearButton,
UploadButton,
VoiceButton,
WordCounter,
DefaultActionButtons,
} from './sender-actions'
// ============================================
// 组件类型导出
// ============================================
export * from './attachments/index.type'
export * from './bubble/index.type'
export * from './container/index.type'
export * from './anchor/index.type'
export * from './drag-overlay/index.type'
export * from './dropdown-menu/index.type'
export * from './feedback/index.type'
export * from './history/index.type'
export * from './icon-button/index.type'
export * from './layout/index.type'
export * from './prompts/index.type'
export * from './sender/index.type'
export * from './sender-actions/index.type'
export * from './suggestion-pills/index.type'
export * from './suggestion-popover/index.type'
export * from './theme-provider/index.type'
export * from './welcome/index.type'
export * from './mcp-server-picker/index.type'
export * from './mcp-add-form/index.type'
export {
setupSenderContentRegistration,
useSenderContentRegistration,
} from './shared/composables/useSenderContentRegistration'
export {
BubbleRendererMatchPriority,
BubbleRenderers,
useBubbleBoxRenderer,
useBubbleContentRenderer,
useBubbleEventFn,
useBubbleStateChangeFn,
useMessageContent,
useOmitMessageFields,
useToolCall,
} from './bubble'
export { useTheme } from './theme-provider/useTheme'
export { useSenderContext, useSenderContentRegistry } from './sender'
export type { SenderContentRegister, UseSenderContentRegistryReturn } from './sender'
export { vDropzone } from './drag-overlay/directives/vDropzone'
export { useAutoScroll, useTouchDevice } from './shared/composables'
const components = [
Attachments,
Bubble,
BubbleList,
BubbleProvider,
Container,
Anchor,
Conversations,
DragOverlay,
DropdownMenu,
Feedback,
History,
IconButton,
Layout,
LayoutProxyScrollbar,
LayoutAsideToggle,
Prompt,
Prompts,
Sender,
SenderCompat,
SuggestionPills,
SuggestionPillButton,
SuggestionPopover,
ThemeProvider,
Welcome,
McpServerPicker,
McpAddForm,
ActionButton,
SubmitButton,
ClearButton,
UploadButton,
VoiceButton,
WordCounter,
DefaultActionButtons,
]
export default {
install<T>(app: App<T>) {
components.forEach((component) => {
const name = component.name!.replace(/^Tiny/, '').replace(/^Tr/, '')
app.component(`Tr${name}`, component)
})
},
}
export {
Attachments,
Attachments as TrAttachments,
Bubble,
Bubble as TrBubble,
BubbleList,
BubbleList as TrBubbleList,
BubbleProvider,
BubbleProvider as TrBubbleProvider,
Container,
Container as TrContainer,
Anchor,
Anchor as TrAnchor,
Conversations,
Conversations as TrConversations,
DragOverlay,
DragOverlay as TrDragOverlay,
DropdownMenu,
DropdownMenu as TrDropdownMenu,
Feedback,
Feedback as TrFeedback,
History,
History as TrHistory,
IconButton,
IconButton as TrIconButton,
Layout,
Layout as TrLayout,
LayoutProxyScrollbar,
LayoutProxyScrollbar as TrLayoutProxyScrollbar,
LayoutAsideToggle,
LayoutAsideToggle as TrLayoutAsideToggle,
Prompt,
Prompt as TrPrompt,
Prompts,
Prompts as TrPrompts,
Sender,
Sender as TrSender,
SenderCompat,
SenderCompat as TrSenderCompat,
SuggestionPillButton,
SuggestionPillButton as TrSuggestionPillButton,
SuggestionPills,
SuggestionPills as TrSuggestionPills,
SuggestionPopover,
SuggestionPopover as TrSuggestionPopover,
ThemeProvider,
ThemeProvider as TrThemeProvider,
Welcome,
Welcome as TrWelcome,
McpServerPicker,
McpServerPicker as TrMcpServerPicker,
McpAddForm,
McpAddForm as TrMcpAddForm,
ActionButton,
ActionButton as TrActionButton,
SubmitButton,
SubmitButton as TrSubmitButton,
ClearButton,
ClearButton as TrClearButton,
UploadButton,
UploadButton as TrUploadButton,
VoiceButton,
VoiceButton as TrVoiceButton,
WordCounter,
WordCounter as TrWordCounter,
DefaultActionButtons,
DefaultActionButtons as TrDefaultActionButtons,
}