tutor-pro-ui-vue 1.3.2-beta → 1.3.4-beta
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.css +1 -1
- package/dist/index.css.gz +0 -0
- package/dist/index.js +6677 -6674
- package/dist/index.js.gz +0 -0
- package/dist/index.umd.cjs +24 -24
- package/dist/src/components/CommonForm/index.d.ts +6 -0
- package/dist/src/components/CommonTable/src/hooks.d.ts +1 -1
- package/dist/src/components/CommonTable/src/index.vue.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3,10 +3,16 @@ import { default as Form } from './src/index.vue';
|
|
|
3
3
|
import { default as Select } from './fields/Select.vue';
|
|
4
4
|
import { default as Input } from './fields/Input.vue';
|
|
5
5
|
import { default as Upload } from './fields/upload/Upload.vue';
|
|
6
|
+
import { default as TreeSelect } from './fields/TreeSelect.vue';
|
|
7
|
+
import { default as Cascader } from './fields/Cascader.vue';
|
|
8
|
+
import { default as DatePicker } from './fields/DatePicker.vue';
|
|
6
9
|
declare const CommonForm: SFCWithInstall<typeof Form & {
|
|
7
10
|
Select?: typeof Select;
|
|
8
11
|
Input?: typeof Input;
|
|
9
12
|
Upload?: typeof Upload;
|
|
13
|
+
TreeSelect?: typeof TreeSelect;
|
|
14
|
+
Cascader?: typeof Cascader;
|
|
15
|
+
DatePicker?: typeof DatePicker;
|
|
10
16
|
}>;
|
|
11
17
|
export default CommonForm;
|
|
12
18
|
export * from './types';
|
|
@@ -572,7 +572,7 @@ export declare const useInitTable: (props: CommonTableProps, table?: Ref<TableIn
|
|
|
572
572
|
tableData: import('vue').ModelRef<any[], PropertyKey, any[], any[]>;
|
|
573
573
|
handleSizeChange: (pageSize: number) => void;
|
|
574
574
|
handleCurrentChange: (currentPage: number) => void;
|
|
575
|
-
reset: <T>(isRestCurrentPage?: boolean) => void;
|
|
575
|
+
reset: <T>(isRestCurrentPage?: boolean, isClearSort?: boolean) => void;
|
|
576
576
|
getParams: () => {
|
|
577
577
|
[x: string]: any;
|
|
578
578
|
};
|
|
@@ -358,7 +358,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
358
358
|
readonly default: () => void;
|
|
359
359
|
};
|
|
360
360
|
}>, {
|
|
361
|
-
reset: <T>(isRestCurrentPage?: boolean) => void;
|
|
361
|
+
reset: <T>(isRestCurrentPage?: boolean, isClearSort?: boolean) => void;
|
|
362
362
|
getParams: () => {
|
|
363
363
|
[x: string]: any;
|
|
364
364
|
};
|