Skip to content

Releases: DevExpress/devextreme-react

18.1.7-alpha.12

24 Oct 17:04
86aad77
Compare
Choose a tag to compare
18.1.7-alpha.12 Pre-release
Pre-release

Requires DevExtreme v18.1.7-pre-18291

Improvements

  • Add recursive config-components
  • Add advanced nested components for Form Items and Validation Rules
<TextBox defaultValue={"email@mail.com"}>
    <Validator>
        <EmailRule message={"Email is invalid."} />
        <RequiredRule message={"Email is required."} />
    </Validator>
</TextBox>
<Form formData={employee} ... >
    <GroupItem colCount={2}>
        <SimpleItem dataField={"ID"} />
        <SimpleItem
            dataField={"Position"}
            editorType={"dxSelectBox"}
            editorOptions={{ items: positions, value: "" }}
        >
            <RequiredRule message={"Position is required"} />
        </SimpleItem>
    </GroupItem>
...
</Form>

Bug Fixes

  • Fix empty className issue
  • Fix event callbacks reassigning

Other Changes

  • Move all components to the root namespace
- import DxButton from "devextreme-react/ui/button";
+ import DxButton from "devextreme-react/button";

18.2.1-alpha.2

02 Oct 15:02
5ac535b
Compare
Choose a tag to compare
18.2.1-alpha.2 Pre-release
Pre-release

Requires DevExtreme v18.2.1-pre-18275

Bug Fixes

  • Fix updating className prop

18.1.6-alpha.11

21 Sep 16:21
be421ef
Compare
Choose a tag to compare
18.1.6-alpha.11 Pre-release
Pre-release

Requires DevExtreme v18.1.6

Bug Fixes

  • Add multiple nested configuration components for reusable types
  • Add missed Label configuration component for PieChart
  • Fix updating className prop
  • Fix incorrect appointments size on the first Scheduler rendering

18.1.5-alpha.10

05 Sep 10:44
668d505
Compare
Choose a tag to compare
18.1.5-alpha.10 Pre-release
Pre-release

Requires DevExtreme v18.1.6-pre-18234

Improvements

  • Add id, style, and className properties for all components
  • Add the dxkey property in template arguments to avoid conflict with the React key

Bug Fixes

  • Fix the template removing exception

18.2.1-alpha.1

29 Aug 15:26
e3b4069
Compare
Choose a tag to compare
18.2.1-alpha.1 Pre-release
Pre-release

Initial release

18.1.4-alpha.8

27 Jun 11:59
6d32347
Compare
Choose a tag to compare
18.1.4-alpha.8 Pre-release
Pre-release

Requires DevExtreme v18.1.4

Improvements

  • Add nested option components
  • Add a default export for each component module

Bug Fixes

  • Fix some prop typings
  • Fix empty template issue (caused null-reference)

18.1.4-alpha.7

05 Jun 15:12
bc74bfb
Compare
Choose a tag to compare
18.1.4-alpha.7 Pre-release
Pre-release

Requires DevExtreme v18.1.4-pre-18155

Bug Fixes

  • Fix changing of *Component and *Render options

Improvements

  • ActionSheet now has the defaultVisible option.
  • DevExtreme React Components fully support dxValidator:
      <TextBox defaultValue={"required"}>
        <Validator validationRules={this.validationRules}/>
      </TextBox>

18.1.3-alpha.6

21 May 12:45
e3bac0d
Compare
Choose a tag to compare
18.1.3-alpha.6 Pre-release
Pre-release

Requires DevExtreme v18.1.3

Bug Fixes

  • Fix template removing (when a template parent is changed)

Improvements

  • Add nested components for the DataGrid.paging, DataGrid.SearchPanel, TreeList.paging and TreeList.SearchPanel options

18.1.2-alpha.5

10 May 14:02
72999e8
Compare
Choose a tag to compare
18.1.2-alpha.5 Pre-release
Pre-release

Requires DevExtreme v18.1.2-pre-beta

Improvements

  • Add defaultPaging and defaultSearchPanel properties for the DataGrid component
  • Add defaultPaging and defaultSearchPanel properties for the TreeList component

18.1.1-alpha.4

23 Apr 10:05
af98b53
Compare
Choose a tag to compare
18.1.1-alpha.4 Pre-release
Pre-release

Requires DevExtreme v18.1.1-pre-18103

Bug Fixes

  • Fix runtime update of a render-function
  • Fix DOM-dependent calculation in templates
  • Fix Templates integration for DataGrid.cell and DataGrid.row options

Improvements