mobigrid-module 1.1.24 → 1.1.25-beta.11
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +13 -0
- package/dist/components/CustomTable/CustomTable.d.ts +2 -1
- package/dist/examples/transportors/src/App.d.ts +2 -0
- package/dist/examples/transportors/src/App.test.d.ts +1 -0
- package/dist/examples/transportors/src/index.d.ts +1 -0
- package/dist/examples/transportors/src/reportWebVitals.d.ts +3 -0
- package/dist/examples/transportors/src/setupTests.d.ts +1 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -3,10 +3,14 @@ import React from "react";
|
|
3
3
|
interface ContainerProps {
|
4
4
|
configUrl?: string;
|
5
5
|
preJsUrl?: string;
|
6
|
+
dataUrl?: string;
|
6
7
|
configJson?: any;
|
7
8
|
preJs?: any;
|
9
|
+
customHeaders?: any;
|
8
10
|
itemsPerPage?: number;
|
11
|
+
dateFormat?: string;
|
9
12
|
children?: React.ReactNode;
|
13
|
+
callbacks?: any;
|
10
14
|
}
|
11
|
-
declare const MobigridModule: ({ configUrl, preJsUrl, configJson, preJs, itemsPerPage, children, }: ContainerProps) => React.JSX.Element;
|
15
|
+
declare const MobigridModule: ({ dataUrl, configUrl, preJsUrl, configJson, preJs, customHeaders, itemsPerPage, dateFormat, children, callbacks, }: ContainerProps) => React.JSX.Element;
|
12
16
|
export { MobigridModule as default };
|