mobigrid-module 1.1.25-beta.8 → 1.1.25-beta.9
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 +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -3,6 +3,7 @@ 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;
|
8
9
|
customHeaders?: any;
|
@@ -10,5 +11,5 @@ interface ContainerProps {
|
|
10
11
|
dateFormat?: string;
|
11
12
|
children?: React.ReactNode;
|
12
13
|
}
|
13
|
-
declare const MobigridModule: ({ configUrl, preJsUrl, configJson, preJs, customHeaders, itemsPerPage, dateFormat, children, }: ContainerProps) => React.JSX.Element;
|
14
|
+
declare const MobigridModule: ({ dataUrl, configUrl, preJsUrl, configJson, preJs, customHeaders, itemsPerPage, dateFormat, children, }: ContainerProps) => React.JSX.Element;
|
14
15
|
export { MobigridModule as default };
|