Skip to content

Latest commit

 

History

History
198 lines (134 loc) · 10.5 KB

CHANGELOG.md

File metadata and controls

198 lines (134 loc) · 10.5 KB

2024-02-21

2023-12-16

  • Updated node_modules version by @ansulagrawal.
  • Fix issue #114 displaying [object Object] in the title of resources.

2023-11-06

2023-10-16

2023-10-16

2023-07-30

  • Reveted HeaderView Component from functional based to class based by @JitendraSoni1234 .

2023-07-13

  • Change HeaderView Component from class based to function based by @DamyanBG in #73
  • Updated library versions by @dependabot
    • antd : 5.6.3 -> 5.7.0
    • dayjs: 1.11.8 -> 1.11.9
    • rrule: 2.7.1 -> 2.7.2
    • @babel/cli: 7.22.5 -> 7.22..9
    • @babel/core: 7.22.5 -> 7.22.9
    • @babel/preset-env: 7.22.5 -> 7.22.9
    • babel-loader: 9.1.2 -> 9.1.3
    • webpack : 5.88.0 -> 5.88.1
  • Converted to an organization by @ansulagrawal

2023-06-28

  • Fixed the GetPos import error by @ansulagrawal in #59

2023-06-27

  • Updated Readme by @ansulagrawal in #46
  • Chore(deps-dev): Bump webpack from 5.87.0 to 5.88.0 by @dependabot in #50
  • Chore(deps): Bump antd from 5.6.2 to 5.6.3 by @dependabot in #51

New Contributors

  • @dependabot

2023-06-24

New Contributors

2023-06-17

  • Fix the default export file index.js.
  • Remove main.jsx from the build directory.
  • Fix Importing issue in projects as src/index.js file was not properly written.
  • Added type-definitions for the library.
  • Fix the locale for both library antd and dayjs.
  • Fix the package.json main parameter value.
  • Moved from vite to webpack for stable release
  • Made a stable import for all formats
  • Remove build from github
  • Remove unnecessary package dependencies

2023-06-11

  • Added support for importing the React Big Schedule library in the umd.js format.
  • Fixed an issue with importing the React Big Schedule library into the project.
  • Fixed an issue with importing the locale for antd and dayjs.

Note:

  • With this release, users can now import the React Big Schedule library in the umd.js format, providing more flexibility and compatibility with different project setups.
  • Please ensure to update your projects to this version to take advantage of the new feature and the fixed import issues.

2023-06-04

  • Fixed exporting of CSS file in the build process to ensure proper functionality.
  • Removed publishing on GitHub as npm is already available for distribution.

2023-06-04

  • Removed usage of UNSAFE_componentWillReceiveProps.
  • Fixed event span for day viewType.
  • Added generics to Scheduler and SchedulerProps to extend the EventItem type.
  • Added option to hide resource view.
  • Added option to change event item popover placement.
  • Fixed custom view event span.
  • Fixed scheduler header span for day view.
  • Improved locale support.
  • Added options to place the event item popover at the mouse position using eventItemPopoverPlacement: topLeftMousePosition, bottomLeftMousePosition, topRightMousePosition, bottomRightMousePosition.
  • Shifted from moment to dayjs library.

Thanks to @hbatalhaStch, Changes has been copied from his repo and done some minor changes.

New Contributors

2023-05-27

  • Add configurable colour visibility and optional date display in popover. #16

  • Add configurable cell size options for Week, Month, and Year views. #17

  • Add SWAP event function for event swapping in library. #18

  • Enhance library with wrapper function and streamlined dependencies. #19

  • Fix bugs and enhancement of format. #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.
  • Fixed a bug that caused the hour to double when there was a time change.
  • Updated the component to allow hours to be displayed over two days if necessary.
  • Added a new feature: SWAP Event function for event swapping in the library.
  • Enhances the library's capabilities by providing greater flexibility for managing and reordering events.
  • Backward compatible with existing codebases, ensuring seamless adoption.
  • Added a wrapper function to simplify usage and provide a default export.
  • 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

2023-05-21

  • Updated Node Version from 14 -> 18
  • Updated Ant Design Version 3.16.6 -> 5.0.1
  • Updated React DND Version 7.5.0 -> 14.0.5
  • Updated react-dnd-html5-backend version 7.5.0 -> 14.1.0
  • Updated React version 16 -> 18
  • Updated rrule version 2.6.0 -> 2.7.2
  • Change Configure from webpack to Vite

New Contributors