@faasjs/ant-design 0.0.2-beta.415 → 0.0.2-beta.417
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 +4 -0
- package/dist/index.js +306 -233
- package/dist/index.mjs +205 -130
- package/package.json +2 -2
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;
|
|
@@ -149,6 +151,7 @@ declare type DescriptionProps<T = any, ExtendItemProps = any> = {
|
|
|
149
151
|
};
|
|
150
152
|
dataSource?: T;
|
|
151
153
|
faasData?: FaasDataWrapperProps<T>;
|
|
154
|
+
footer?: (values: T) => JSX.Element;
|
|
152
155
|
} & DescriptionsProps;
|
|
153
156
|
declare function Description<T = any>(props: DescriptionProps<T>): JSX.Element;
|
|
154
157
|
|
|
@@ -380,6 +383,7 @@ declare type RoutesProps = {
|
|
|
380
383
|
declare function Routes(props: RoutesProps): JSX.Element;
|
|
381
384
|
|
|
382
385
|
declare type TableItemProps<T = any> = {
|
|
386
|
+
optionsType?: 'auto';
|
|
383
387
|
/** @deprecated use render */
|
|
384
388
|
children?: JSX.Element | null;
|
|
385
389
|
} & FaasItemProps & Omit<TableColumnProps<T>, 'children'>;
|