tsv2-library 1.0.61-alpha.23 → 1.0.61-alpha.24
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/package.json
CHANGED
|
@@ -105,6 +105,8 @@ export type FormEmits = {
|
|
|
105
105
|
* @group components
|
|
106
106
|
*/
|
|
107
107
|
declare class Form extends ClassComponent<FormProps, FormSlots, FormEmits> {
|
|
108
|
+
values: GenericObject;
|
|
109
|
+
errors: ComputedRef<Partial<Record<string, string | undefined>>>;
|
|
108
110
|
/**
|
|
109
111
|
* Wether to keep the dialog remains visible or not after submit.
|
|
110
112
|
*/
|