@partex/one-core 2.0.59 → 2.0.60
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/lib/components/table/index.vue.d.ts +1 -6
- package/lib/one-core.cjs +14 -14
- package/lib/one-core.js +3964 -3969
- package/lib/one-core.umd.cjs +14 -14
- package/lib/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DefineComponent, Ref, VNodeChild,
|
|
1
|
+
import { DefineComponent, Ref, VNodeChild, ComponentOptionsMixin, PublicProps, ExtractPropTypes, PropType } from 'vue';
|
|
2
2
|
import type { DataTableSortState } from 'naive-ui';
|
|
3
3
|
import type { ObjectKey, Fn } from '../interface';
|
|
4
4
|
import type { TableQuery, IOcDataTableColumns } from './interface';
|
|
@@ -137,11 +137,6 @@ declare const _default: DefineComponent<{
|
|
|
137
137
|
searchDefaultValue: Ref<ObjectKey>;
|
|
138
138
|
searchData: Ref<ObjectKey>;
|
|
139
139
|
baseColumns: Ref<any>;
|
|
140
|
-
dragOptions: ComputedRef<{
|
|
141
|
-
animation: number;
|
|
142
|
-
group: string;
|
|
143
|
-
ghostClass: string;
|
|
144
|
-
}>;
|
|
145
140
|
showImporter: Ref<boolean>;
|
|
146
141
|
pageChange: (page: number) => void;
|
|
147
142
|
pageSizeChange: (pageSize: number) => void;
|