@opentiny/tiny-robot 0.3.0-alpha.35 → 0.3.0-alpha.37
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 +21 -1
- package/dist/sender/index.js +769 -736
- package/dist/style.css +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -376,8 +376,8 @@ allowSpeech: boolean;
|
|
|
376
376
|
allowFiles: boolean;
|
|
377
377
|
submitType: SubmitTrigger;
|
|
378
378
|
stopText: string;
|
|
379
|
-
suggestions: ISuggestionItem[];
|
|
380
379
|
autoSize: AutoSize;
|
|
380
|
+
suggestions: ISuggestionItem[];
|
|
381
381
|
clearable: boolean;
|
|
382
382
|
maxLength: number;
|
|
383
383
|
showWordLimit: boolean;
|
|
@@ -389,6 +389,11 @@ senderRef: HTMLDivElement;
|
|
|
389
389
|
inputWrapperRef: HTMLDivElement;
|
|
390
390
|
templateEditorRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
391
391
|
modelValue?: UserItem[];
|
|
392
|
+
} & {
|
|
393
|
+
autoSize: boolean | {
|
|
394
|
+
minRows: number;
|
|
395
|
+
maxRows: number;
|
|
396
|
+
};
|
|
392
397
|
}> & Readonly<{
|
|
393
398
|
onSubmit?: (() => any) | undefined;
|
|
394
399
|
"onUpdate:modelValue"?: ((value: UserItem[]) => any) | undefined;
|
|
@@ -410,6 +415,11 @@ M: {};
|
|
|
410
415
|
Defaults: {};
|
|
411
416
|
}, Readonly<{
|
|
412
417
|
modelValue?: UserItem[];
|
|
418
|
+
} & {
|
|
419
|
+
autoSize: boolean | {
|
|
420
|
+
minRows: number;
|
|
421
|
+
maxRows: number;
|
|
422
|
+
};
|
|
413
423
|
}> & Readonly<{
|
|
414
424
|
onSubmit?: (() => any) | undefined;
|
|
415
425
|
"onUpdate:modelValue"?: ((value: UserItem[]) => any) | undefined;
|
|
@@ -1233,6 +1243,11 @@ declare function __VLS_template_7(): {
|
|
|
1233
1243
|
inputWrapperRef: HTMLDivElement;
|
|
1234
1244
|
templateEditorRef: CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1235
1245
|
modelValue?: UserItem[];
|
|
1246
|
+
} & {
|
|
1247
|
+
autoSize: boolean | {
|
|
1248
|
+
minRows: number;
|
|
1249
|
+
maxRows: number;
|
|
1250
|
+
};
|
|
1236
1251
|
}> & Readonly<{
|
|
1237
1252
|
onSubmit?: (() => any) | undefined;
|
|
1238
1253
|
"onUpdate:modelValue"?: ((value: UserItem[]) => any) | undefined;
|
|
@@ -1254,6 +1269,11 @@ declare function __VLS_template_7(): {
|
|
|
1254
1269
|
Defaults: {};
|
|
1255
1270
|
}, Readonly<{
|
|
1256
1271
|
modelValue?: UserItem[];
|
|
1272
|
+
} & {
|
|
1273
|
+
autoSize: boolean | {
|
|
1274
|
+
minRows: number;
|
|
1275
|
+
maxRows: number;
|
|
1276
|
+
};
|
|
1257
1277
|
}> & Readonly<{
|
|
1258
1278
|
onSubmit?: (() => any) | undefined;
|
|
1259
1279
|
"onUpdate:modelValue"?: ((value: UserItem[]) => any) | undefined;
|