@chase-shao/vue-component-lib 1.2.113 → 1.2.114
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/components/data-gen/views/CreateView.vue.d.ts +12 -12
- package/dist/components/data-gen/views/DetailView.vue.d.ts +12 -12
- package/dist/components/data-gen/views/UpdateView.vue.d.ts +12 -12
- package/dist/components/data-gen/widgets/CheckBox.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/FileUpload.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/InputNumber.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/InputText.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/TextArea.vue.d.ts +2 -2
- package/dist/components/data-gen/widgets/index.vue.d.ts +5 -5
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.es.js +631 -608
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/services/dataGen.d.ts +1 -1
- package/dist/stores/useLibraryMainStore.d.ts +1 -1
- package/package.json +1 -1
|
@@ -145,7 +145,7 @@ export declare function getListData(className: string, params: {
|
|
|
145
145
|
}>;
|
|
146
146
|
export declare function createData(className: string, data: object, url: string): Promise<number[]>;
|
|
147
147
|
export declare function updateData(className: string, id: string, data: object, url: string): Promise<any>;
|
|
148
|
-
export declare function approveData(className: string, id: string, email: string, reason: string, url: string, status: string, ifGlobal: string,
|
|
148
|
+
export declare function approveData(className: string, id: string, email: string, reason: string, url: string, status: string, ifGlobal: string, approvedGrade: string): Promise<any>;
|
|
149
149
|
export declare function getOptions(url: string, value?: string): Promise<SelectOption[]>;
|
|
150
150
|
export declare function submit(url: string, params?: any): Promise<SelectOption[]>;
|
|
151
151
|
export declare function getProcess(className: string, workflowId: string): Promise<any[]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const useLibraryMainStore: import('pinia').StoreDefinition<"main", Pick<{
|
|
2
2
|
token: import('vue').Ref<string | undefined, string | undefined>;
|
|
3
3
|
error: import('vue').Ref<any, any>;
|
|
4
|
-
}, "
|
|
4
|
+
}, "token" | "error">, Pick<{
|
|
5
5
|
token: import('vue').Ref<string | undefined, string | undefined>;
|
|
6
6
|
error: import('vue').Ref<any, any>;
|
|
7
7
|
}, never>, Pick<{
|