mobigrid-module 1.1.23 → 1.1.25-beta.2
Sign up to get free protection for your applications and to get access to all the features.
- 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 +2 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -5,8 +5,9 @@ interface ContainerProps {
|
|
5
5
|
preJsUrl?: string;
|
6
6
|
configJson?: any;
|
7
7
|
preJs?: any;
|
8
|
+
customHeaders?: any;
|
8
9
|
itemsPerPage?: number;
|
9
10
|
children?: React.ReactNode;
|
10
11
|
}
|
11
|
-
declare const MobigridModule: ({ configUrl, preJsUrl, configJson, preJs, itemsPerPage, children, }: ContainerProps) => React.JSX.Element;
|
12
|
+
declare const MobigridModule: ({ configUrl, preJsUrl, configJson, preJs, customHeaders, itemsPerPage, children, }: ContainerProps) => React.JSX.Element;
|
12
13
|
export { MobigridModule as default };
|