@vue-ui-kit/ant 2.3.6 → 2.3.8

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.
@@ -136,11 +136,11 @@ export interface ColumnProps<D extends Recordable = Recordable> extends Omit<Tab
136
136
  cellRender?: CellRender;
137
137
  }
138
138
  export interface PButtonProps extends ButtonProps {
139
- content?: string;
139
+ content?: string | (() => any);
140
140
  icon?: string;
141
141
  }
142
142
  export interface ToolbarButtonProps extends PButtonProps {
143
- code: string;
143
+ code?: string;
144
144
  dropdowns?: ToolbarButtonProps[];
145
145
  }
146
146
  export interface ToolbarToolProps extends PButtonProps {