Skip to content

Commit

Permalink
Merge pull request #35 from DHTMLX/next
Browse files Browse the repository at this point in the history
[update] Whats new before release 1.5.13
  • Loading branch information
serhiipylypchuk1991 authored Sep 13, 2024
2 parents 018b832 + 567c751 commit 611f46d
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/guides/integration_with_react.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ export default function KanbanComponent(props) {
}
~~~

You can also use the [`parse()`](/api/methods/js_board_parse_method/) method inside the `useEffect()` method of React to load data into Kanban:
You can also use the [`parse()`](/api/methods/js_kanban_parse_method/) method inside the `useEffect()` method of React to load data into Kanban:

~~~jsx {9-11,27} title="Kanban.jsx"
import { useEffect, useRef } from "react";
Expand Down
23 changes: 23 additions & 0 deletions docs/news/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,29 @@ description: You can learn about the Migration to Newer Versions in the document

# Migration to newer versions

## 1.5.12 -> 1.5.13

CSS classes related to the editor was changed in the following way:

~~~jsx
.modal -> .wx-modal
.window -> .wx-window
.modal .window .buttons -> .wx-modal .wx-window .wx-buttons
.combo -> .wx-combo
.combo -> .wx-multicombo
.item -> .wx-item
.color-picker -> .wx-colorselect
.colors -> .wx-colors
.slider -> .wx-slider
.datepicker -> .wx-datepicker
.calendar -> .wx-calendar
.calendar .days .day.out -> .wx-calendar .wx-days .wx-day.wx-out
.combo .tag -> .multicombo .wx-tag
.dropdown -> .wx-dropdown
.dropdown .item -> .wx-dropdown .wx-item
.clear -> .wx-clear
~~~

## 1.5.6 -> 1.5.7

### Api
Expand Down
14 changes: 13 additions & 1 deletion docs/news/whats_new.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,26 @@ description: You can explore what's new in DHTMLX Kanban and its release history

If you are updating Kanban from an older version, check [Migration to newer versions](news/migration.md) for details.

## Version 1.5.13

Released on September 12, 2024

### Fixes

- The "Make cover" button does not appear if the extention is uppercase
- Clicking on a disabled Multiselect control occurs an error
- Scrolling after the [`addCard()`](../../api/methods/js_kanban_addcard_method) method call throws an error with [column scroll](../../api/config/js_kanban_scrolltype_config) and [lazy rendering](../../api/config/js_kanban_rendertype_config)
- No comments are saved as "" instead of []
- Editor style is overridden by global styles with a same-name non-unique class selector. [See the migration section](news/migration.md/#1512---1513)

## Version 1.5.12

Released on May 2, 2024

### Fixes

- Intercept regression: return `false` does not prevent inner events
- Disabled files allow files
- Disabled files allow files

## Version 1.5.11

Expand Down
2 changes: 1 addition & 1 deletion src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

code {
border-radius: 5px;
padding: 6px 8px;
padding: 2px 8px;
font-weight: 600;
}

Expand Down

0 comments on commit 611f46d

Please sign in to comment.