antd-vue-dbthor 1.0.2 → 1.0.3
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/table/index.d.ts +1 -0
- package/dist/components/table/index.type.d.ts +0 -1
- package/dist/components/table/table.vue.d.ts +1 -10
- package/dist/components/table/useCU.d.ts +1 -2
- package/dist/lib/index.es.js +663 -663
- package/dist/lib/index.es.js.gz +0 -0
- package/dist/lib/index.umd.js +13 -13
- package/dist/lib/index.umd.js.gz +0 -0
- package/dist/main.d.ts +1 -2
- package/package.json +1 -1
|
@@ -123,7 +123,6 @@ export interface TableProps extends Omit<ATableProps, 'columns'> {
|
|
|
123
123
|
* 新增 编辑表单配置
|
|
124
124
|
*/
|
|
125
125
|
cuFormProps?: TableUseCUFormProps['cuFormProps'];
|
|
126
|
-
cuUseFormOptions?: TableUseCUFormProps['cuUseFormOptions'];
|
|
127
126
|
cuFormRules?: TableUseCUFormProps['cuFormRules'];
|
|
128
127
|
cuFormModalProps?: TableUseCUFormProps['cuFormModalProps'];
|
|
129
128
|
cuFormRowProps?: TableUseCUFormProps['cuFormRowProps'];
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { TableProps, TableSlots, TablePropsApi } from './index.type';
|
|
2
2
|
import { DefineComponent, Ref, ComputedRef, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
|
-
import { TableQueryFormInstance
|
|
3
|
+
import { TableQueryFormInstance } from './useQueryForm';
|
|
4
4
|
import { ToRawRefs } from '@vue-macros/reactivity-transform/macros';
|
|
5
|
-
import { TableUseColumnsProps } from './useColumns';
|
|
6
5
|
|
|
7
6
|
declare function __VLS_template(): Readonly<TableSlots> & TableSlots;
|
|
8
7
|
declare const __VLS_component: DefineComponent<TableProps, {
|
|
@@ -15,8 +14,6 @@ declare const __VLS_component: DefineComponent<TableProps, {
|
|
|
15
14
|
ImportBtn: Ref<() => import("vue/jsx-runtime").JSX.Element, () => import("vue/jsx-runtime").JSX.Element>;
|
|
16
15
|
ExportBtn: Ref<() => import("vue/jsx-runtime").JSX.Element, () => import("vue/jsx-runtime").JSX.Element>;
|
|
17
16
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TableProps> & Readonly<{}>, {
|
|
18
|
-
queryFormSubmitBtn: TableQueryFormProps["queryFormSubmitBtn"];
|
|
19
|
-
queryFormResetBtn: TableQueryFormProps["queryFormResetBtn"];
|
|
20
17
|
apis: Partial<{
|
|
21
18
|
list: TablePropsApi;
|
|
22
19
|
details: TablePropsApi;
|
|
@@ -29,12 +26,6 @@ declare const __VLS_component: DefineComponent<TableProps, {
|
|
|
29
26
|
params: {
|
|
30
27
|
[key: string]: any;
|
|
31
28
|
};
|
|
32
|
-
indexColumn: TableUseColumnsProps["indexColumn"];
|
|
33
|
-
controlColumn: TableUseColumnsProps["controlColumn"];
|
|
34
|
-
full: boolean;
|
|
35
|
-
ownPagin: boolean;
|
|
36
|
-
queryForm: boolean;
|
|
37
|
-
ciesBtns: boolean;
|
|
38
29
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
39
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
40
31
|
export default _default;
|
|
@@ -3,7 +3,7 @@ import { Reactive, Ref, VNode } from 'vue';
|
|
|
3
3
|
import { JSX } from 'vue/jsx-runtime';
|
|
4
4
|
import { ControlMapProps } from './control';
|
|
5
5
|
import { ownBtnProps, TableProps, TableTextConfig } from './index.type';
|
|
6
|
-
import { FormInstance
|
|
6
|
+
import { FormInstance } from './useQueryForm';
|
|
7
7
|
|
|
8
8
|
export interface TableCUFormInstance extends FormInstance {
|
|
9
9
|
}
|
|
@@ -25,7 +25,6 @@ export interface TableUseCUFormProps {
|
|
|
25
25
|
columns?: TableProps['columns'];
|
|
26
26
|
cuFormProps?: FormProps;
|
|
27
27
|
cuFormRules?: FormItemProps['rules'];
|
|
28
|
-
cuUseFormOptions?: UseFormOptions;
|
|
29
28
|
cuFormModalProps?: ModalProps;
|
|
30
29
|
cuFormRowProps?: RowProps;
|
|
31
30
|
cuFormColProps?: ColProps;
|