jenesius-vue-form
Advanced tools
Comparing version 2.0.19 to 2.0.20
@@ -55,3 +55,3 @@ import EventEmitter from "jenesius-event-emitter"; | ||
* Нужно это протестировать | ||
* И переименовать метод: changeValuesOfItem(values: any); | ||
* И переименовать метод: setValuesOfItem(values: any); | ||
* А лучше добавить новый просто метод, рекурсию сохранив | ||
@@ -70,3 +70,3 @@ * | ||
* */ | ||
protected changeValuesOfItem(values: any): void; | ||
protected setValuesOfItem(values: any): void; | ||
protected recursiveChangeItem(values: any, path?: string): void; | ||
@@ -93,2 +93,5 @@ cleanChanges(values?: {}): void; | ||
protected mergeValues(values: Values): void; | ||
/** | ||
* @description subscribe is alice for depend. Subscribe element to Form. | ||
* */ | ||
subscribe(item: any): () => void; | ||
@@ -95,0 +98,0 @@ depend(item: any): () => void; |
@@ -12,2 +12,3 @@ import EventEmitter from "jenesius-event-emitter"; | ||
change(v: any): void; | ||
setValues(v: any): void; | ||
/** | ||
@@ -14,0 +15,0 @@ * @description Run all guards from validation. Input is not validated If on |
@@ -16,3 +16,4 @@ export interface Values { | ||
enable: (name?: string | string[]) => void; | ||
change: (v: any) => void; | ||
change?: (v: any) => void; | ||
setValues?: (v: any) => void; | ||
validate: () => boolean | string; | ||
@@ -19,0 +20,0 @@ } |
{ | ||
"name": "jenesius-vue-form", | ||
"version": "2.0.19", | ||
"version": "2.0.20", | ||
"description": "Heavy form system for Vue.js", | ||
@@ -5,0 +5,0 @@ "author": "Jenesius", |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
92872
2036