@faasjs/ant-design 0.0.2-beta.414 → 0.0.2-beta.416

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/index.d.ts CHANGED
@@ -46,6 +46,8 @@ declare type ConfigProviderProps = {
46
46
  add?: string;
47
47
  delete?: string;
48
48
  required?: string;
49
+ search?: string;
50
+ reset?: string;
49
51
  };
50
52
  Blank?: {
51
53
  text?: string;
@@ -380,6 +382,7 @@ declare type RoutesProps = {
380
382
  declare function Routes(props: RoutesProps): JSX.Element;
381
383
 
382
384
  declare type TableItemProps<T = any> = {
385
+ optionsType?: 'auto';
383
386
  /** @deprecated use render */
384
387
  children?: JSX.Element | null;
385
388
  } & FaasItemProps & Omit<TableColumnProps<T>, 'children'>;