Skip to content

Commit 242e0bc

Browse files
[update] Minor fix before release v1.6
1 parent ee9cb25 commit 242e0bc

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

docs/api/config/js_kanban_cardshape_config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ const defaultCardShape = {
237237
},
238238
users: {
239239
show: false,
240-
maxCount: 3
240+
maxCount: 2
241241
},
242242
priority: {
243243
show: false,
@@ -312,7 +312,7 @@ new kanban.Kanban("#root", {
312312
**Change log:**
313313
- The ***comments***, ***css*** and ***votes*** parameters were added in v1.4
314314
- The ***menu.items[0].label*** parameter was replaced by the ***menu.items[0].text*** parameter in v1.4
315-
- The ***users.maxCount*** and ***votes.clickable*** parameters were added in v2.0
315+
- The ***users.maxCount*** and ***votes.clickable*** parameters were added in v1.6
316316

317317
**Related articles:** [Configuration](../../../guides/configuration#cards)
318318

docs/api/config/js_kanban_columnshape_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ new kanban.Kanban("#root", {
194194
- The ***css*** parameter was added in v1.4
195195
- The ***menu.items[0].label*** parameter was replaced by the ***menu.items[0].text*** parameter in v1.4
196196
- The ***fixedHeaders*** parameter was added in v1.5
197-
- The ***headerTemplate*** and ***collapsedTemplate*** parameters were added in v2.0
197+
- The ***headerTemplate*** and ***collapsedTemplate*** parameters were added in v1.6
198198
199199
**Related articles:** [Configuration](../../../guides/configuration)
200200

docs/api/config/js_kanban_editor_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ new kanban.Kanban("#root", {
5353
});
5454
~~~
5555

56-
**Change log:** The `placement` parameter was added in v2.0
56+
**Change log:** The `placement` parameter was added in v1.6

docs/api/config/js_kanban_theme_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To configure the **theme**, you can use the following parameters.
6262
- `fonts` - (optional) enables/disables fonts loading from the CDN (wxi font)
6363

6464
:::tip
65-
You can also apply the **Willow** and **Willow-Dark** themes as well. To change the current theme dynamically, you can use the [**setTheme()**](../../methods/js_kanban_settheme_method) method.
65+
You can also apply the **Willow** and **Willow-Dark** themes as well. To change the current theme dynamically, you can use the [`setTheme()`](../../methods/js_kanban_settheme_method) method.
6666
:::
6767

6868
### Default config

docs/api/config/toolbar_items_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ new kanban.Toolbar("#toolbar", {
183183

184184
- The *"Undo"* and *"Redo"* controls were added in v1.3
185185
- The ***items.options[0].label*** parameter of the **sort** control was replaced by the ***items.options[0].text*** parameter in v1.4
186-
- The ***items.searchResult*** parameter of the **"search"** control was added in v2.0
186+
- The ***items.searchResult*** parameter of the **"search"** control was added in v1.6
187187

188188
**Related articles:** [Configuration](../../../guides/configuration#toolbar) and [Customization](../../../guides/customization#custom-toolbar)
189189

docs/api/events/js_kanban_setedit_event.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ board.api.intercept("set-edit", ({ eventSource }) => {
4747

4848
**Change log:**
4949
- The event was added in v1.2
50-
- The ***eventSource*** parameter was added in v2.0
50+
- The ***eventSource*** parameter was added in v1.6

docs/api/methods/js_kanban_settheme_method.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ setTheme({
2828
- `fonts` - (optional) enables/disables fonts loading from the CDN (wxi font)
2929

3030
:::tip
31-
To specify the initial theme, you can use the [**theme**](../../config/js_kanban_theme_config) property.
31+
To specify the initial theme, you can use the [`theme`](../../config/js_kanban_theme_config) property.
3232
:::
3333

3434
### Example
@@ -42,7 +42,7 @@ const board = new kanban.Kanban("#root", {
4242
board.setTheme({ name: "willow", font: false });
4343
~~~
4444

45-
**Change log:** The method was added in v2.0
45+
**Change log:** The method was added in v1.6
4646

4747
**Related articles:** [Stylization](../../../guides/stylization)
4848

docs/news/whats_new.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ 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 2.0
11+
## Version 1.6
1212

1313
Released on Month Day, 2024
1414

1515
### New functionality
1616

17-
- The ability to change how many assigned users are displayed on a card via the [`cardShape.users.maxCount`](../../api/config/js_kanban_columnshape_config) property
17+
- The ability to change how many assigned users are displayed on a card via the [`cardShape.users.maxCount`](../../api/config/js_kanban_cardshape_config) property
1818
- The ability to change the content of column headers via the [`items.searchResult`](../../api/config/toolbar_items_config) property of the Toolbar **search** control
1919
- The ability to change the view and content of search results via the [`columnShape`](../../api/config/js_kanban_columnshape_config) property
2020
- The ability to display the editor as a modal window via the [`editor.placement`](../../api/config/js_kanban_editor_config) property
21-
- The ability to enable voting for a card (using the vote icon on the card) via the [`cardShape.votes.clicable`](../../api/config/js_kanban_columnshape_config) property
21+
- The ability to enable voting for a card (using the vote icon on the card) via the [`cardShape.votes.clicable`](../../api/config/js_kanban_cardshape_config) property
2222
- The ability to apply a theme via the [`setTheme()`](../../api/methods/js_kanban_settheme_method) method
2323

2424
### Updates

0 commit comments

Comments
 (0)