@dovetail-v2/refine 0.1.19 → 0.1.20
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/{MonacoYamlDiffEditor-8999ee43.js → MonacoYamlDiffEditor-6e074a11.js} +1 -1
- package/dist/{index-63c730b1.js → index-c144b223.js} +298 -304
- package/dist/refine.js +1 -1
- package/dist/refine.umd.cjs +297 -303
- package/lib/components/ListPage/index.d.ts +2 -1
- package/lib/i18n.d.ts +1 -1
- package/lib/locales/en-US/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { InternalTableProps } from 'src/components/InternalBaseTable';
|
|
3
3
|
import { ResourceModel } from '../../models';
|
|
4
4
|
interface ListPageProps<T extends ResourceModel> {
|
|
5
5
|
selectedKeys: string[];
|
|
6
6
|
tableProps: InternalTableProps<T>;
|
|
7
7
|
contentClassName?: string;
|
|
8
|
+
belowToolBarContent?: React.ReactNode;
|
|
8
9
|
}
|
|
9
10
|
export declare function ListPage<T extends ResourceModel>(props: ListPageProps<T>): JSX.Element;
|
|
10
11
|
export {};
|
package/lib/i18n.d.ts
CHANGED
|
@@ -227,7 +227,7 @@ export declare const resources: {
|
|
|
227
227
|
contains: string;
|
|
228
228
|
optional: string;
|
|
229
229
|
format_requirements: string;
|
|
230
|
-
|
|
230
|
+
prefix: string;
|
|
231
231
|
prefix_format_rule_1: string;
|
|
232
232
|
prefix_format_rule_2: string;
|
|
233
233
|
prefix_format_rule_3: string;
|