Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the GetPos import error #59

Merged
merged 3 commits into from
Jun 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## [4.2.2](https://github.com/ansulagrawal/react-big-schedule/compare/4.2.1...4.2.2)
## [4.2.3](https://github.com/ansulagrawal/react-big-schedule/compare/4.2.2...4.2.3)
`2023-06-28`

- Fixed the `GetPos` import error by @ansulagrawal in [#59](https://github.com/ansulagrawal/react-big-schedule/pull/59)

## [4.2.2](https://github.com/ansulagrawal/react-big-schedule/compare/4.2.1...4.2.2)

`2023-06-27`

Expand All @@ -10,13 +15,15 @@

- @dependabot

## [4.2.1](https://github.com/ansulagrawal/react-big-schedule/compare/4.2.0...4.2.1)
## [4.2.1](https://github.com/ansulagrawal/react-big-schedule/compare/4.2.0...4.2.1)

`2023-06-24`

- Updated Antd Version and added `@babel/cli` package [#39](https://github.com/ansulagrawal/react-big-schedule/pull/39) [@ansulagrawal](https://github.com/ansulagrawal)
- Fixes for calculating span and isEnd for events. [#35](https://github.com/ansulagrawal/react-big-schedule/pull/35) [@adam-m-clark](https://github.com/adam-m-clark)

#### New Contributors

- [@adam-m-clark](https://github.com/adam-m-clark)

## [4.2.0](https://github.com/ansulagrawal/react-big-schedule/compare/3.0.2...4.0.0)
Expand All @@ -34,8 +41,8 @@
- Remove build from github
- Remove unnecessary package dependencies


## [3.0.2](https://github.com/ansulagrawal/react-big-schedule/compare/3.0.1...3.0.2)

`2023-06-11`

- Added support for importing the React Big Schedule library in the umd.js format.
Expand All @@ -55,6 +62,7 @@ Note:
- Removed publishing on GitHub as npm is already available for distribution.

# [3.0.0](https://github.com/ansulagrawal/react-big-schedule/compare/2.0.0...3.0.0)

`2023-06-04`

- Removed usage of `UNSAFE_componentWillReceiveProps`.
Expand All @@ -74,7 +82,8 @@ Thanks to [@hbatalhaStch](https://github.com/hbatalhaStch), Changes has been cop

- [@hbatalhaStch](https://github.com/hbatalhaStch)

# [2.0.0](https://github.com/ansulagrawal/react-big-schedule/compare/1.0.0...2.0.0)
# [2.0.0](https://github.com/ansulagrawal/react-big-schedule/compare/1.0.0...2.0.0)

`2023-05-27`

- Add configurable colour visibility and optional date display in popover. [#16](https://github.com/ansulagrawal/react-big-schedule/pull/16)
Expand All @@ -87,6 +96,7 @@ Thanks to [@hbatalhaStch](https://github.com/hbatalhaStch), Changes has been cop
- Fix bugs and enhancement of format. [#20](https://github.com/ansulagrawal/react-big-schedule/pull/20)

### Breaking Changes:

- Added a configuration option to show or hide colour in the popover.
- Made the date in the popover optional. If the `eventItemPopoverDateFormat` is empty, the date will be hidden.
- Added new configuration options to set the cell size for the Week, Month, and Year views.
Expand All @@ -99,7 +109,8 @@ Thanks to [@hbatalhaStch](https://github.com/hbatalhaStch), Changes has been cop
- Removed the dependency on the `withDndContext` function.
- Streamlined dependencies, eliminating the need for users to install both `react-dnd-html5-backend` and `react-dnd` separately.

## 1.0.0
## 1.0.0

`2023-05-21`

- Updated Node Version from 14 -> 18
Expand All @@ -112,4 +123,4 @@ Thanks to [@hbatalhaStch](https://github.com/hbatalhaStch), Changes has been cop

#### New Contributors

- [@ansulagrawal](https://github.com/ansulagrawal)
- [@ansulagrawal](https://github.com/ansulagrawal)
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-big-schedule",
"version": "4.2.2",
"version": "4.2.3",
"description": "React Big Schedule is a powerful and intuitive scheduler and resource planning solution built with React. Seamlessly integrate this modern browser-compatible component into your applications to effectively manage time, appointments, and resources. With drag-and-drop functionality, interactive UI, and granular views, react-big-schedule empowers users to effortlessly schedule and allocate resources with precision. Enhance productivity and streamline your workflow with this React-based solution, designed to optimize time management and simplify calendar-based operations. Perfect for applications requiring advanced scheduling capabilities, react-big-schedule offers a seamless and intuitive experience for managing appointments, resource allocation, and time slots. Unlock the potential of your React projects with react-big-schedule and revolutionize the way you handle scheduling and resource planning. It is the updated version of react-big-scheduler",
"keywords": [
"react big schedule",
Expand Down
3 changes: 2 additions & 1 deletion src/helper/utility.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ function getPos(element) {
return { x, y };
}

export default { getPos };
export { getPos };
export default getPos;