Skip to content

Commit 611f46d

Browse files
Merge pull request #35 from DHTMLX/next
[update] Whats new before release 1.5.13
2 parents 018b832 + 567c751 commit 611f46d

File tree

4 files changed

+38
-3
lines changed

4 files changed

+38
-3
lines changed

docs/guides/integration_with_react.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export default function KanbanComponent(props) {
254254
}
255255
~~~
256256

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

259259
~~~jsx {9-11,27} title="Kanban.jsx"
260260
import { useEffect, useRef } from "react";

docs/news/migration.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ description: You can learn about the Migration to Newer Versions in the document
66

77
# Migration to newer versions
88

9+
## 1.5.12 -> 1.5.13
10+
11+
CSS classes related to the editor was changed in the following way:
12+
13+
~~~jsx
14+
.modal -> .wx-modal
15+
.window -> .wx-window
16+
.modal .window .buttons -> .wx-modal .wx-window .wx-buttons
17+
.combo -> .wx-combo
18+
.combo -> .wx-multicombo
19+
.item -> .wx-item
20+
.color-picker -> .wx-colorselect
21+
.colors -> .wx-colors
22+
.slider -> .wx-slider
23+
.datepicker -> .wx-datepicker
24+
.calendar -> .wx-calendar
25+
.calendar .days .day.out -> .wx-calendar .wx-days .wx-day.wx-out
26+
.combo .tag -> .multicombo .wx-tag
27+
.dropdown -> .wx-dropdown
28+
.dropdown .item -> .wx-dropdown .wx-item
29+
.clear -> .wx-clear
30+
~~~
31+
932
## 1.5.6 -> 1.5.7
1033

1134
### Api

docs/news/whats_new.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,26 @@ description: You can explore what's new in DHTMLX Kanban and its release history
88

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

11+
## Version 1.5.13
12+
13+
Released on September 12, 2024
14+
15+
### Fixes
16+
17+
- The "Make cover" button does not appear if the extention is uppercase
18+
- Clicking on a disabled Multiselect control occurs an error
19+
- 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)
20+
- No comments are saved as "" instead of []
21+
- Editor style is overridden by global styles with a same-name non-unique class selector. [See the migration section](news/migration.md/#1512---1513)
22+
1123
## Version 1.5.12
1224

1325
Released on May 2, 2024
1426

1527
### Fixes
1628

1729
- Intercept regression: return `false` does not prevent inner events
18-
- Disabled files allow files
30+
- Disabled files allow files
1931

2032
## Version 1.5.11
2133

src/css/custom.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130

131131
code {
132132
border-radius: 5px;
133-
padding: 6px 8px;
133+
padding: 2px 8px;
134134
font-weight: 600;
135135
}
136136

0 commit comments

Comments
 (0)