diff --git a/docs/guides/integration_with_react.md b/docs/guides/integration_with_react.md index 271dc68..c5dfda9 100644 --- a/docs/guides/integration_with_react.md +++ b/docs/guides/integration_with_react.md @@ -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"; diff --git a/docs/news/migration.md b/docs/news/migration.md index 9d4e0b8..6d1d3e0 100644 --- a/docs/news/migration.md +++ b/docs/news/migration.md @@ -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 diff --git a/docs/news/whats_new.md b/docs/news/whats_new.md index 9e7aea2..dca2b09 100644 --- a/docs/news/whats_new.md +++ b/docs/news/whats_new.md @@ -8,6 +8,18 @@ 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 @@ -15,7 +27,7 @@ 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 diff --git a/src/css/custom.css b/src/css/custom.css index 36d382d..e42c099 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -130,7 +130,7 @@ code { border-radius: 5px; - padding: 6px 8px; + padding: 2px 8px; font-weight: 600; }