mobigrid-module 1.1.11 → 1.1.13

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