josenanodev-react-components-library 1.3.6 → 1.3.7

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.
@@ -1,3 +1,4 @@
1
1
  import React from "react";
2
- declare const CellChildrenMock: ({ date, listElementId }: CellChildrenPropsType) => React.JSX.Element;
2
+ import { CellChildrenProps } from "../../components/Multicalendar/types";
3
+ declare const CellChildrenMock: ({ date, listElementId }: CellChildrenProps) => React.JSX.Element;
3
4
  export default CellChildrenMock;
@@ -1,3 +1,4 @@
1
1
  import React from "react";
2
- declare const ListElementChildrenMock: ({ listElementId }: ListElementChildrenPropsType) => React.JSX.Element;
2
+ import { ListElementChildrenProps } from "../../components/Multicalendar/types";
3
+ declare const ListElementChildrenMock: ({ listElementId }: ListElementChildrenProps) => React.JSX.Element;
3
4
  export default ListElementChildrenMock;
@@ -1,3 +1,4 @@
1
1
  import React from "react";
2
- declare const CellChildrenMock: ({ date, listElementId }: CellChildrenPropsType) => React.JSX.Element;
2
+ import { CellChildrenProps } from "../../components/Multicalendar/types";
3
+ declare const CellChildrenMock: ({ date, listElementId }: CellChildrenProps) => React.JSX.Element;
3
4
  export default CellChildrenMock;
@@ -1,3 +1,4 @@
1
1
  import React from "react";
2
- declare const ListElementChildrenMock: ({ listElementId }: ListElementChildrenPropsType) => React.JSX.Element;
2
+ import { ListElementChildrenProps } from "../../components/Multicalendar/types";
3
+ declare const ListElementChildrenMock: ({ listElementId }: ListElementChildrenProps) => React.JSX.Element;
3
4
  export default ListElementChildrenMock;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "josenanodev-react-components-library",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "author": {
5
5
  "name": "Jose Carlos Cardenas Martinez"
6
6
  },