@vue-ui-kit/ant 2.3.8 → 2.4.0
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/cjs/index.js +4 -4
- package/dist/declarations/antProxy.d.ts +2 -1
- package/dist/es/index.js +3814 -3776
- package/package.json +2 -2
- package/src/declarations/antProxy.ts +2 -2
- package/src/packages/components/PCanvasGrid.vue +50 -30
- package/src/packages/components/PGrid.vue +43 -22
- package/src/packages/store/renderStore.tsx +2 -1
- package/dist/packages/components/CollapseCard.vue.d.ts +0 -29
- package/dist/packages/components/PCanvasGrid.vue.d.ts +0 -846
- package/dist/packages/components/PCanvasTable.vue.d.ts +0 -177
- package/dist/packages/components/PForm.vue.d.ts +0 -22
- package/dist/packages/components/PFormCol.vue.d.ts +0 -23
- package/dist/packages/components/PFormGroup.vue.d.ts +0 -38
- package/dist/packages/components/PGrid.vue.d.ts +0 -1623
- package/dist/packages/components/PGroupBlock.vue.d.ts +0 -16
- package/dist/packages/components/PromisePicker.vue.d.ts +0 -25
- package/dist/packages/renders/TableInput.vue.d.ts +0 -25
|
@@ -135,9 +135,10 @@ export interface ColumnProps<D extends Recordable = Recordable> extends Omit<Tab
|
|
|
135
135
|
};
|
|
136
136
|
cellRender?: CellRender;
|
|
137
137
|
}
|
|
138
|
-
export interface PButtonProps extends ButtonProps {
|
|
138
|
+
export interface PButtonProps extends Omit<ButtonProps, 'type'> {
|
|
139
139
|
content?: string | (() => any);
|
|
140
140
|
icon?: string;
|
|
141
|
+
type?: string;
|
|
141
142
|
}
|
|
142
143
|
export interface ToolbarButtonProps extends PButtonProps {
|
|
143
144
|
code?: string;
|