Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@devexpress/dx-react-scheduler

Package Overview
Dependencies
Maintainers
13
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devexpress/dx-react-scheduler - npm Package Versions

1
56

1.10.0

Diff

Changelog

Source

1.10.0 (2018-12-25)

Bug Fixes

  • react-chart: fix resizing of the axes (#1685) (7c409f0)
  • react-chart: fix-pie-legend (#1714) (d662409)
  • react-core-demos: fix the 'Template Overriding' demo (#1729) (a119cb4)
  • react-grid: apply wordWrapEnabled property to TableTreeColumn (#1721) (336c88a)
  • react-grid: fix header layout when middle band column is fixed (#1619) (504f434)
  • react-grid: pass actual properties to a tableLayout in VirtualTable (#1690) (ac609f2)
  • react-grid: prevent animation flicker on column visibility change (#1674) (2cbb72a)
  • react-grid: prevent virtual table from setting a width to flex column (#1691) (6d28bfb)
  • react-grid: specify table fixed columns plugin optional dependencies (#1693) (3564212)
  • react-scheduler: add to AllDayPanel another cell template name (#1719) (386728f)
  • react-scheduler: fix date navigator button width (#1699) (7093d7b)
  • update @material-ui/core to 3.7.0 (#1718) (ce5d4fe)

Code Refactoring

  • react-chart: replace Scale plugin with ArgumentScale and ValueScale (#1650) (1f2e0b2)
  • react-chart: rename "showGrids" Axis property (#1696) (f8087da)
  • react-chart: property to customize scale domain (#1711) (b09e439)

BREAKING CHANGES

  • react-chart: Previously the ArgumentAxis, ValueAxis, and Scale plugins allowed you to customize argument and value scales. In this release, we have implemented the ArgumentScale and ValueScale plugins for this purpose.

  • react-chart: The showGrids Axis property is renamed to showGrid.

  • react-chart: The min and max scale properties are replaced with the modifyDomain property because the band scale domain cannot be customized in min and max terms.

    Replace this

    <ArgumentScale min={0} max={10} ... />
    

    with this

    const modifyDomain = () => [0, 10];
    
    <ArgumentScale modifyDomain={modifyDomain} ... />
    
ushkal
published 1.9.1 •

Changelog

Source

1.9.1 (2018-12-07)

Bug Fixes

  • docs: correct the Appointments plugin docs (#1633) (87b2988)
  • docs: correct the table summary row plugin docs (#1632) (0ab1145)
  • react-grid: fix the 'no data' message alignment (#1597) (663685a), closes #1600
  • react-grid: fix virtual table layout in Edge (#1593) (65fdf63)
  • react-grid: normalize scroll position in Edge browser (#1605) (7e313ce)
  • react-grid-bootstrap4: prevent edge from overlapping a scrollbar (#1612) (2fc8a6b)
  • react-scheduler: add cursor pointer to appointment template (#1594) (d5db46d)
  • react-scheduler: fix TypeScript definitions for the 'dx-react-scheduler-material-ui' package (#1644) (aa93cd1)
  • react-scheduler: remove excess events from an appointment (#1591) (ceba7de)
  • site: fix the 'Why We Use Cookies' message (#1655) (3e66474)

Code Refactoring

  • react-scheduler: simplify the ViewSwitcher.Switcher component API (#1660) (6c5d5ca)
  • react-scheduler: simplify the onNavigate function arguments (#1659) (7e4104)
  • react-chart: make grid part of the axis (#1646) (4d99c93)

Features

  • react-chart: add tooltip plugin (#1611) (1f9322c)
  • react-grid: provide a way to customize a group cell (#1596) (d95a0cb)
  • react-grid: provide a way to customize a summary item (#1567) (f131c1c)
  • react-scheduler: highlight today DayScale cell (#1653) (eb42d14)

BREAKING CHANGES

  • react-scheduler: We have changed the onChange function's argument type to make the ViewSwitcher's API more clear.

    Previously:

    onChange({ nextViewName: string }) => void
    

    Now:

    onChange(nextViewName: string) => void
    
  • react-scheduler: We changed the onNavigate function's argument type to make the DateNavigator's API more clear.

    Previously:

    onNavigate({ back: boolean }) => void
    

    Now:

    onNavigate(direction: 'forward' | 'back') => void
    
  • react-chart:

  1. In the ArgumentAxis and ValueAxis plugins lineComponent and tickComponent render identical svg-path elements. Previously, they require different properties for drawing: width and height for lineComponent and x1, x2, y1, y2 for tickComponent. Now, for more consistency the lineComponent requires the same properties as tickComponent.

  2. Previously, there were ArgumentGrid and ValueGrid plugins that render grid lines for axes. Now, grids are part of the axes:

    <ArgumentAxis showGrids />
    <ValueAxis />
    

    For grid customization, use gridComponent as follows:

    <ArgumentAxis gridComponent={...} />
    <ValueAxis gridComponent={...} />
    

<a name="1.9.0"></a>

maxim.kudryavtsev
published 1.9.0 •

Changelog

Source

1.9.0 (2018-11-07)

Bug Fixes

  • react-chart: fix indent from axis for label w/o tick and line components (#1528) (e8b2ccb)
  • react-chart: fix stacks processing (#1535) (9660d5f)
  • react-grid: correct order of fixed right columns (#1533) (00ccebd)
  • react-grid: pass undefined as empty value to filter editorComponent (#1522) (e69813f)
  • react-grid: use a column filter operation as a filter selector value (#1479) (70e26fa), closes #1474
  • react-grid-bootstrap3/4: prevent sorting for disabled columns (#1490) (086242d)
  • react-grid-bootstrap4: fix position of dragged column header (#1513) (8e0893c)
  • react-grid-bootstrap4: prevent filter popup cut off on fixed columns (#1576) (979476e)

Features

  • react-scheduler: add the React Scheduler component
  • react-chart: add animation plugin (#1469) (3c41352)
  • update dependencies (#1542) (f32f1b2)

Code Refactoring

  • react-chart: remove "groupWidth" property from BarSeries (0a15e87)

BREAKING CHANGES

  • react-chart: The groupWidth property configures a band scale for arguments - it is not a property of a particular bar series. To configure a band scale, use the Scale plugin as follows:
<Scale extensions={[{ type: 'band', constructor: d3.scaleBand().paddingOuter(0.1).paddingInner(0.2) }]} />

<a name="1.8.0"></a>

1
56
SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc