dynamic-modal 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,7 +30,7 @@ export interface IModalConfigProps {
30
30
  action?: () => void;
31
31
  hide?: boolean;
32
32
  };
33
- reservedData?: Record<string, string | number>;
33
+ reservedData?: Record<string, any>;
34
34
  styles?: CSSProperties;
35
35
  overFlowBody?: string | number;
36
36
  minHeightBody?: string | number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dynamic-modal",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "The dynamic-modal is a solution of creation differents modals into project using a json configuration file",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -36,7 +36,7 @@ export interface IModalConfigProps {
36
36
  action?: () => void
37
37
  hide?: boolean;
38
38
  }
39
- reservedData?: Record<string, string | number>
39
+ reservedData?: Record<string, any>
40
40
  styles?: CSSProperties;
41
41
  overFlowBody?: string | number
42
42
  minHeightBody?: string | number