@znap/components-vue2 1.0.10 → 1.0.11
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/README.md +340 -238
- package/dist/index.common.js +7 -3
- package/dist/index.common.js.map +1 -1
- package/dist/index.umd.js +7 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/dist/types/utils/views/generateCrudViewConfigs.d.ts +4 -3
- package/package.json +1 -1
|
@@ -114,15 +114,16 @@ export declare class CrudViewConfigs {
|
|
|
114
114
|
}): this;
|
|
115
115
|
setFormModel(model?: {}): this;
|
|
116
116
|
setFormOptions(formOptions?: never[]): this;
|
|
117
|
-
addFormOption({ column, itemsArray, dependsOn, endpoint, hooks, }?: {
|
|
117
|
+
addFormOption({ column, itemsArray, dependsOn, endpoint, hooks, ignoreOnFetchFunction, }?: {
|
|
118
118
|
column?: string | undefined;
|
|
119
119
|
itemsArray?: never[] | undefined;
|
|
120
120
|
dependsOn?: string | undefined;
|
|
121
121
|
endpoint?: never[] | undefined;
|
|
122
122
|
hooks?: {} | undefined;
|
|
123
|
+
ignoreOnFetchFunction?: boolean | undefined;
|
|
123
124
|
}): this;
|
|
124
|
-
setFormHooks(hooks?: {}):
|
|
125
|
-
addFormHook(key: string | undefined, hookFunction: (params: any[]) => any):
|
|
125
|
+
setFormHooks(hooks?: {}): this;
|
|
126
|
+
addFormHook(key: string | undefined, hookFunction: (params: any[]) => any): this;
|
|
126
127
|
setPaginationSettings({ page, itemsPerPage, itemsPerPageOption, serverItemsLength, sortBy, sortDesc, }?: {
|
|
127
128
|
page?: number | undefined;
|
|
128
129
|
itemsPerPage?: number | undefined;
|