@opentiny/tiny-robot 0.2.9 → 0.2.10
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.d.ts +3 -0
- package/dist/sender/index.js +386 -380
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -172,6 +172,7 @@ hasContent: boolean;
|
|
|
172
172
|
allowSpeech: boolean;
|
|
173
173
|
allowFiles: boolean;
|
|
174
174
|
submitType: SubmitTrigger_2;
|
|
175
|
+
stopText: string;
|
|
175
176
|
autoSize: AutoSize_2;
|
|
176
177
|
maxLength: number;
|
|
177
178
|
suggestions: string[];
|
|
@@ -1784,6 +1785,7 @@ export declare interface ActionButtonsProps {
|
|
|
1784
1785
|
submitType?: SubmitTrigger;
|
|
1785
1786
|
showShortcuts?: boolean;
|
|
1786
1787
|
isOverLimit?: boolean;
|
|
1788
|
+
stopText?: string;
|
|
1787
1789
|
}
|
|
1788
1790
|
|
|
1789
1791
|
export declare type AutoSize = boolean | {
|
|
@@ -2333,6 +2335,7 @@ export declare interface SenderProps {
|
|
|
2333
2335
|
template?: string;
|
|
2334
2336
|
hasContent?: boolean;
|
|
2335
2337
|
templateInitialValues?: Record<string, string>;
|
|
2338
|
+
stopText?: string;
|
|
2336
2339
|
}
|
|
2337
2340
|
|
|
2338
2341
|
/**
|