All Versions
92
Latest Version
Avg Release Cycle
36 days
Latest Release
83 days ago
Changelog History
Page 3
Changelog History
Page 3
-
v2.4.0 Changes
January 16, 2020๐ Bug Fixes
- react-grid: specify detail row as a dependency for fixed columns (#2614) (54b782c)
- react-grid: split band columns with the same name but different parents (#2618) (deecbab)
- react-grid-demos: provide total count when rows taken from cache (#2639) (6dd41be)
- โฑ react-scheduler: fix error caused by view switching when all-day panel is used (#2638) (b858ddf)
- โฑ react-scheduler: fix localization messages in Scheduler (#2628) (28584dc)
๐ Features
-
v2.3.2 Changes
December 19, 2019๐ Bug Fixes
-
v2.3.1 Changes
December 05, 2019๐ Bug Fixes
- react-core: allow Sizer to update size on cDU (#2577) (183539f)
- โฑ react-scheduler: display all-day appointments of the same day correctly (#2557) (b831767)
- โฑ react-scheduler: display horizontal appointments in chronological order (#2579) (0c1071b)
- โฑ react-scheduler: open the AppointmentForm from AllDayPanel (#2583) (8d384e0)
๐ Features
-
v2.3.0 Changes
November 22, 2019๐ Bug Fixes
- demo-shell: re-render demo frame on submitting custom theme link (#2529) (28177d6)
- react-grid-bootstrap3: correct sticky header colors (#2527) (21e82f2)
- ๐ป react-grid-material-ui: correct disabled behaviour for inline cell editing (#2537) (909f0bd)
- ๐ป react-grid-material-ui: show zero numbers in editors (#2553) (fdc8b9d)
๐ Features
-
v2.2.1 Changes
November 07, 2019๐ Bug Fixes
- react-grid: make TableInlineCellEditing.Cell available (#2508) (3eb81f2)
- react-grid: rerender only cell being edited in inline cell editing mode (#2507) (9adadea)
- react-grid-demos: add margin for custom numeric input (#2521) (aa1dd34)
- โฑ react-scheduler-material-ui: Fix DayView DayScale cell (#2524) (2901f59)
๐ Features
-
v2.2.0 Changes
October 25, 2019๐ Bug Fixes
- react-grid: handle column count decrease in virtual table (#2464) (2c21e30)
- react-grid: incorrect 'row' property type in the documentation (#2424) (23ba6c5)
- react-grid-demos: fix object assign on Safari (#2489) (64b330f), closes #2488
- ๐ป react-grid-material-ui: correct default properties for Virtual Table (#2484) (973f928)
- โฑ react-scheduler: make it impossible to edit radio groups in read-only mode and set default interval to 1 (#2439) (dbb414c)
- โฑ react-scheduler: render TimeScale of the same size as TimeTable (#2409) (d753090)
- โฑ react-scheduler-material-ui: display dates in the AppointmentFrom correctly (#2441) (4af2688)
๐ Features
- react-grid-bootstrap3: add previous and next buttons for pagination (#2428) (8740f83)
- โฑ react-scheduler: add capability to render zero time appointments (#2406) (731b4b8)
- โฑ react-scheduler: add ConfirmationDialog plugin (#2393) (9041bd5)
- โฑ react-scheduler: do not show AppointmentForm's Delete Button if a new appointment is being edited (#2462) (4eb83bc)
- โฑ react-scheduler: redesign AppointmentTooltip (#2474) (41b8f28)
๐ฅ BREAKING CHANGES
- โฑ react-scheduler: The
DayView
andWeekView
plugins now do not have thetimeScaleRowComponent
andtimeScaleCellComponent
properties. Instead, they have a new,timeScaleLabelComponent
, property.
... <WeekView - timeScaleRowComponent - timeScaleCellComponent + timeScaleLabelComponent /> <DayView - timeScaleRowComponent - timeScaleCellComponent + timeScaleLabelComponent /> ...
- โฑ react-scheduler: We have extended the
headerComponent
andcontentComponent
in theAppointmentTooltip
plugin with new properties. If you use these components, add the following properties in your code:
... <AppointmentTooltip headerComponent={({ + commandButtonComponent + showOpenButton + showCloseButton + showDeleteButton + commandBottonIds ...restProps }) => ( <AppointmentTooltip.Header + commandButtonComponent={commandButtonComponent} + showOpenButton={showOpenButton} + showCloseButton={showCloseButton} + showDeleteButton={showDeleteButton} + commandBottonIds={commandBottonIds} {...restProps} /> )} contentComponent={({ + formatDate ...restProps }) => ( <AppointmentTooltip.Content + formatDate={formatDate} {...restProps} /> )} /> ...
-
v2.1.2 Changes
October 11, 2019๐ Bug Fixes
- react-grid: add width convert for TableEditColumn (#2408) (6f7592f)
- react-grid: allow inline cell editing only for table data type rows (#2390) (ac1b279)
- react-grid: check next column name by column.name instead type (#2399) (7acfcbb)
- react-grid-demos: correct displaying custom selector in Edge (#2422) (832586f)
- ๐ป react-grid-material-ui: add padding for first edit cell in in-line cell editing mode (#2392) (f011a55)
- โฑ scheduler-core: calculate the last TimeScale EndDate correctly (#2404) (0411235)
๐ Features
-
v2.1.1 Changes
October 01, 2019 -
v2.1.0 Changes
September 30, 2019๐ Bug Fixes
- react-grid: add type checking for next column in getNextColumnName (#2354) (03e261c)
- react-grid: allow columns bands to work in virtual table (#2291) (582eb94)
- react-grid: correct displaying "No data" message in Edge (#2332) (e16be01), closes #2330
- react-grid: correct getCellWidth property's default value (#2353) (9fde9b0)
- react-grid-bootstrap4: correct position when horizontal scrolling (#2364) (908bcbe)
- โฑ react-scheduler: move firstDayOfWeek prop from views to Scheduler (#2360) (dd5753b)
- โฑ react-scheduler-demos: add capability to delete zero index appointment (#2341) (1e837eb), closes #2338
- โฑ scheduler-core: correct date formatting string for Safari (#2365) (04989e8)
- โฑ scheduler-core: get rid of different
new Date
behavior in Safari (#2370) (061fd31), closes #2369
๐ Features
- react-grid: implement Inline Cell Editing (#2302) (27be87f)
- โฑ react-scheduler: add capability to edit recurrent appointments to appointment form (#2205) (da2c36a), closes #2203
๐ฅ BREAKING CHANGES
- โฑ react-scheduler: The
AppointmentForm
plugin now doesn't have thepopupComponent
,containerComponent
,scrollableAreaComponent
andstaticAreaComponent
properties. We have made many changes to the form. You can find all the new properties in the AppointmentForm Plugin Reference.
... <AppointmentForm - popupComponent - containerComponent - scrollableAreaComponent - staticAreaComponent /> ...
- โฑ react-scheduler: The
MonthView
andWeekView
plugins now do not have firstDayOfWeek property. It was moved to theScheduler
plugin.
<Scheduler + firstDayOfWeek={firstDayOfWeek} > <MonthView - firstDayOfWeek={firstDayOfWeek} > <WeekView - firstDayOfWeek={firstDayOfWeek} > ... </Scheduler>
-
v2.0.5 Changes
September 16, 2019๐ Bug Fixes
- react-chart: fix typescript in scales (#2314) (15ecec0)
- react-grid: add summary rows only if summary items are specified (#2298) (5ee7d97)
- react-grid: correct displaying Filter Selector in Edge (#2318) (903f3c5)
- โฑ react-scheduler: make it possible to create an appointment after cancelled drag-drop (#2307) (b666250)
- โฑ react-scheduler-material-ui: remove lastChild's paddingRight from all cells (#2323) (27121c2)
- โฑ scheduler-core: delete recurrent appointments correctly with 'delete current and following' option (#2313) (d3d1df7)
- โฑ scheduler-core: fix Drag-and-Drop of recurrent appointments with UNTIL (#2321) (ba6cf21)
๐ Features