@copilotz/chat-ui 0.1.32 → 0.1.34
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/index.cjs +347 -94
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +362 -109
- package/dist/index.js.map +1 -1
- package/dist/styles.css +86 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -123,15 +123,18 @@ interface ChatConfig {
|
|
|
123
123
|
voiceEnter?: string;
|
|
124
124
|
voiceExit?: string;
|
|
125
125
|
voiceTitle?: string;
|
|
126
|
+
voiceIdle?: string;
|
|
126
127
|
voicePreparing?: string;
|
|
127
128
|
voiceWaiting?: string;
|
|
128
129
|
voiceListening?: string;
|
|
129
130
|
voiceFinishing?: string;
|
|
130
131
|
voiceReview?: string;
|
|
132
|
+
voiceSending?: string;
|
|
131
133
|
voiceStart?: string;
|
|
132
134
|
voiceStop?: string;
|
|
133
135
|
voiceSendNow?: string;
|
|
134
136
|
voiceCancel?: string;
|
|
137
|
+
voiceDiscard?: string;
|
|
135
138
|
voiceRecordAgain?: string;
|
|
136
139
|
voiceAutoSendIn?: string;
|
|
137
140
|
voiceTranscriptPending?: string;
|
|
@@ -198,6 +201,7 @@ interface ChatConfig {
|
|
|
198
201
|
};
|
|
199
202
|
voiceCompose?: {
|
|
200
203
|
enabled?: boolean;
|
|
204
|
+
defaultMode?: 'text' | 'voice';
|
|
201
205
|
autoSendDelayMs?: number;
|
|
202
206
|
persistComposer?: boolean;
|
|
203
207
|
showTranscriptPreview?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -123,15 +123,18 @@ interface ChatConfig {
|
|
|
123
123
|
voiceEnter?: string;
|
|
124
124
|
voiceExit?: string;
|
|
125
125
|
voiceTitle?: string;
|
|
126
|
+
voiceIdle?: string;
|
|
126
127
|
voicePreparing?: string;
|
|
127
128
|
voiceWaiting?: string;
|
|
128
129
|
voiceListening?: string;
|
|
129
130
|
voiceFinishing?: string;
|
|
130
131
|
voiceReview?: string;
|
|
132
|
+
voiceSending?: string;
|
|
131
133
|
voiceStart?: string;
|
|
132
134
|
voiceStop?: string;
|
|
133
135
|
voiceSendNow?: string;
|
|
134
136
|
voiceCancel?: string;
|
|
137
|
+
voiceDiscard?: string;
|
|
135
138
|
voiceRecordAgain?: string;
|
|
136
139
|
voiceAutoSendIn?: string;
|
|
137
140
|
voiceTranscriptPending?: string;
|
|
@@ -198,6 +201,7 @@ interface ChatConfig {
|
|
|
198
201
|
};
|
|
199
202
|
voiceCompose?: {
|
|
200
203
|
enabled?: boolean;
|
|
204
|
+
defaultMode?: 'text' | 'voice';
|
|
201
205
|
autoSendDelayMs?: number;
|
|
202
206
|
persistComposer?: boolean;
|
|
203
207
|
showTranscriptPreview?: boolean;
|