@apteva/apteva-kit 0.1.128 → 0.1.130
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.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +413 -94
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +413 -94
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -237,8 +237,8 @@ declare const WIDGET_DEFINITIONS: {
|
|
|
237
237
|
readonly example: "@ui:button_group[{\"buttons\": [{\"id\": \"ok\", \"label\": \"OK\"}]}]";
|
|
238
238
|
};
|
|
239
239
|
readonly form: {
|
|
240
|
-
readonly schema: "title?, fields: [{name, type: \"text\"|\"password\"|\"number\"|\"select\"|\"checkbox\"|\"textarea\"|\"date\", label, required?, placeholder?, options?: [{label, value}]}],
|
|
241
|
-
readonly example: "@ui:form[{\"title\": \"Settings\", \"fields\": [{\"name\": \"key\", \"type\": \"password\", \"label\": \"API Key\", \"required\": true}]
|
|
240
|
+
readonly schema: "title?, fields: [{name, type: \"text\"|\"password\"|\"number\"|\"select\"|\"checkbox\"|\"textarea\"|\"date\", label, required?, placeholder?, options?: [{label, value}]}], submitLabel?: string";
|
|
241
|
+
readonly example: "@ui:form[{\"title\": \"Settings\", \"fields\": [{\"name\": \"key\", \"type\": \"password\", \"label\": \"API Key\", \"required\": true}]}]";
|
|
242
242
|
};
|
|
243
243
|
readonly table: {
|
|
244
244
|
readonly schema: "columns: [{key, label}], rows: [{key: value, …}], striped?, compact?";
|
|
@@ -312,6 +312,9 @@ interface ChatProps {
|
|
|
312
312
|
silenceTimeout?: number;
|
|
313
313
|
autoSend?: boolean;
|
|
314
314
|
};
|
|
315
|
+
enableVoice?: boolean;
|
|
316
|
+
voiceProvider?: string;
|
|
317
|
+
voiceId?: string;
|
|
315
318
|
className?: string;
|
|
316
319
|
}
|
|
317
320
|
interface CommandProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -237,8 +237,8 @@ declare const WIDGET_DEFINITIONS: {
|
|
|
237
237
|
readonly example: "@ui:button_group[{\"buttons\": [{\"id\": \"ok\", \"label\": \"OK\"}]}]";
|
|
238
238
|
};
|
|
239
239
|
readonly form: {
|
|
240
|
-
readonly schema: "title?, fields: [{name, type: \"text\"|\"password\"|\"number\"|\"select\"|\"checkbox\"|\"textarea\"|\"date\", label, required?, placeholder?, options?: [{label, value}]}],
|
|
241
|
-
readonly example: "@ui:form[{\"title\": \"Settings\", \"fields\": [{\"name\": \"key\", \"type\": \"password\", \"label\": \"API Key\", \"required\": true}]
|
|
240
|
+
readonly schema: "title?, fields: [{name, type: \"text\"|\"password\"|\"number\"|\"select\"|\"checkbox\"|\"textarea\"|\"date\", label, required?, placeholder?, options?: [{label, value}]}], submitLabel?: string";
|
|
241
|
+
readonly example: "@ui:form[{\"title\": \"Settings\", \"fields\": [{\"name\": \"key\", \"type\": \"password\", \"label\": \"API Key\", \"required\": true}]}]";
|
|
242
242
|
};
|
|
243
243
|
readonly table: {
|
|
244
244
|
readonly schema: "columns: [{key, label}], rows: [{key: value, …}], striped?, compact?";
|
|
@@ -312,6 +312,9 @@ interface ChatProps {
|
|
|
312
312
|
silenceTimeout?: number;
|
|
313
313
|
autoSend?: boolean;
|
|
314
314
|
};
|
|
315
|
+
enableVoice?: boolean;
|
|
316
|
+
voiceProvider?: string;
|
|
317
|
+
voiceId?: string;
|
|
315
318
|
className?: string;
|
|
316
319
|
}
|
|
317
320
|
interface CommandProps {
|