Socket
Socket
Sign inDemoInstall

@devexpress/dx-react-scheduler-material-ui

Package Overview
Dependencies
47
Maintainers
12
Versions
61
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @devexpress/dx-react-scheduler-material-ui

Material-UI templates for DevExtreme React Scheduler component


Version published
Weekly downloads
11K
increased by4.13%
Maintainers
12
Install size
4.75 MB
Created
Weekly downloads
 

Changelog

Source

2.0.2 (2019-08-01)

Bug Fixes

  • react-chart: fix tooltip customization (#2191) (b23bef2)
  • react-chart: fix zooming over minimal threshold (#2183) (88baf47)
  • react-chart-material-ui: apply correct layout height (#2180) (88bf517), closes #2172
  • react-core: get rid of redundant type (#2179) (eb0ca11)
  • react-grid: correct calculation of available row count in infninite scrolling mode (#2188) (28e93d5)
  • react-grid: correct changing DataTypeProvider.for property in runtime (#2201) (3732635)
  • react-grid: correctly calculate rows to load when sorting/filtering in lazy loading mode (#2186) (3789b89)
  • react-grid: prevent scrolling sticky header on Safari (#2178) (47666b7)
  • react-scheduler: set Scheduler's height to Root instead of body (#2189) (46bef67)
  • react-scheduler-material-ui: remove transparent border from draft appointment (#2200) (005336b)

Performance Improvements

  • react-scheduler: optimize render using React.memo (#2169) (52a877c)

BREAKING CHANGES

  • react-scheduler: DayView plugin's, WeekView plugin's and MonthView plugin's layout component now doesn't have the height property. height is now Scheduler plugin's root component property.
...
<DayView
  layoutComponent={({
-   height,
     ...restProps
  }) => (
    <DayView.Layout
-      height={height}
       {...restProps}
    />
  )}
/>
...
<WeekView
  layoutComponent={({
-   height,
     ...restProps
  }) => (
    <WeekView.Layout
-      height={height}
       {...restProps}
    />
  )}
/>
...
<MonthView
  layoutComponent={({
-   height,
     ...restProps
  }) => (
    <MonthView.Layout
-      height={height}
       {...restProps}
    />
  )}
/>
...
<Scheduler
  rootComponent={({
+   height,
     ...restProps
  }) => (
    <Scheduler.Root
+      height={height}
       {...restProps}
    />
  )}
/>
...

Readme

Source

DevExtreme React Scheduler Material-UI

A template suite used to render the React Scheduler based on Material-UI components.

License

DevExtreme licensing.

Keywords

FAQs

Last updated on 01 Aug 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc