mobigrid-module 1.1.11 → 1.1.12
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +5 -3
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -1,9 +1,11 @@
|
|
1
1
|
import React from "react";
|
2
2
|
interface ContainerProps {
|
3
|
-
configUrl
|
4
|
-
preJsUrl
|
3
|
+
configUrl?: string;
|
4
|
+
preJsUrl?: string;
|
5
|
+
configJson?: any;
|
6
|
+
preJs?: any;
|
5
7
|
itemsPerPage?: number;
|
6
8
|
children?: React.ReactNode;
|
7
9
|
}
|
8
|
-
declare const MobigridModule: ({ configUrl, preJsUrl, itemsPerPage, children, }: ContainerProps) => React.JSX.Element;
|
10
|
+
declare const MobigridModule: ({ configUrl, preJsUrl, configJson, preJs, itemsPerPage, children, }: ContainerProps) => React.JSX.Element;
|
9
11
|
export { MobigridModule as default };
|