@speechos/core 0.2.6 → 0.2.7
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 +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/state.d.cts +2 -1
- package/dist/state.d.ts +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -339,14 +339,16 @@ var StateManager = class {
|
|
|
339
339
|
});
|
|
340
340
|
}
|
|
341
341
|
/**
|
|
342
|
-
* Complete the recording flow and return to idle
|
|
342
|
+
* Complete the recording flow and return to idle.
|
|
343
|
+
* Keeps widget visible but collapsed (just mic button, no action bubbles).
|
|
343
344
|
*/
|
|
344
345
|
completeRecording() {
|
|
345
346
|
this.setState({
|
|
346
347
|
recordingState: "idle",
|
|
347
348
|
activeAction: null,
|
|
348
349
|
isConnected: false,
|
|
349
|
-
isMicEnabled: false
|
|
350
|
+
isMicEnabled: false,
|
|
351
|
+
isExpanded: false
|
|
350
352
|
});
|
|
351
353
|
}
|
|
352
354
|
/**
|