@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.
@@ -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;