diff --git a/docs/api/events/js_kanban_addcolumn_event.md b/docs/api/events/js_kanban_addcolumn_event.md index b6bff35..f6a937d 100644 --- a/docs/api/events/js_kanban_addcolumn_event.md +++ b/docs/api/events/js_kanban_addcolumn_event.md @@ -48,4 +48,4 @@ board.api.on("add-column", (obj) => { }); ~~~ -**Change log**: The **id**, **before** and **column** parameters were added in v1.1 +**Change log:** The **id**, **before** and **column** parameters were added in v1.1 diff --git a/docs/api/events/js_kanban_addrow_event.md b/docs/api/events/js_kanban_addrow_event.md index f6016c0..f5c5d97 100644 --- a/docs/api/events/js_kanban_addrow_event.md +++ b/docs/api/events/js_kanban_addrow_event.md @@ -48,4 +48,4 @@ board.api.on("add-row", (obj) => { }); ~~~ -**Change log**: The **id**, **before** and **row** parameters were added in v1.1 +**Change log:** The **id**, **before** and **row** parameters were added in v1.1 diff --git a/docs/api/events/js_kanban_redo_event.md b/docs/api/events/js_kanban_redo_event.md index dd57452..8c7edf9 100644 --- a/docs/api/events/js_kanban_redo_event.md +++ b/docs/api/events/js_kanban_redo_event.md @@ -34,4 +34,4 @@ board.api.on("redo", () => { }); ~~~ -**Change log**: The event was added in v1.7 +**Change log:** The event was added in v1.7 diff --git a/docs/api/events/js_kanban_undo_event.md b/docs/api/events/js_kanban_undo_event.md index 808ac63..1aea377 100644 --- a/docs/api/events/js_kanban_undo_event.md +++ b/docs/api/events/js_kanban_undo_event.md @@ -34,4 +34,4 @@ board.api.on("undo", () => { }); ~~~ -**Change log**: The event was added in v1.7 +**Change log:** The event was added in v1.7 diff --git a/docs/api/events/js_kanban_updatecard_event.md b/docs/api/events/js_kanban_updatecard_event.md index 7eee782..97b0739 100644 --- a/docs/api/events/js_kanban_updatecard_event.md +++ b/docs/api/events/js_kanban_updatecard_event.md @@ -53,6 +53,6 @@ board.api.on("update-card", (obj) => { }); ~~~ -**Change log**: +**Change log:** - The **id** and **card** parameters were added in v1.1 - The **replace** parameter was added in v1.3 \ No newline at end of file diff --git a/docs/api/events/js_kanban_updatecolumn_event.md b/docs/api/events/js_kanban_updatecolumn_event.md index 01bfc69..4fd7c68 100644 --- a/docs/api/events/js_kanban_updatecolumn_event.md +++ b/docs/api/events/js_kanban_updatecolumn_event.md @@ -53,6 +53,6 @@ board.api.on("update-column", (obj) => { }); ~~~ -**Change log**: +**Change log:** - The **id** and **column** parameters were added in v1.1 - The **replace** parameter was added in v1.3 \ No newline at end of file diff --git a/docs/api/events/js_kanban_updaterow_event.md b/docs/api/events/js_kanban_updaterow_event.md index e9e8446..5679998 100644 --- a/docs/api/events/js_kanban_updaterow_event.md +++ b/docs/api/events/js_kanban_updaterow_event.md @@ -53,6 +53,6 @@ board.api.on("update-row", (obj) => { }); ~~~ -**Change log**: +**Change log:** - The **id** and **row** parameters were added in v1.1 - The **replace** parameter was added in v1.3 diff --git a/docs/api/internal/js_kanban_detach_method.md b/docs/api/internal/js_kanban_detach_method.md index b7c9890..d686df1 100644 --- a/docs/api/internal/js_kanban_detach_method.md +++ b/docs/api/internal/js_kanban_detach_method.md @@ -36,4 +36,4 @@ board.api.on("move-card", ({ id, columnId }) => { board.api.detach("move"); ~~~ -**Change log**: The internal method was added in v1.7 +**Change log:** The internal method was added in v1.7 diff --git a/docs/api/internal/js_kanban_intercept_method.md b/docs/api/internal/js_kanban_intercept_method.md index 9216036..d618fa4 100644 --- a/docs/api/internal/js_kanban_intercept_method.md +++ b/docs/api/internal/js_kanban_intercept_method.md @@ -50,4 +50,4 @@ board.api.intercept("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**Change log**: The **config.tag** and **config.intercept** parameters were added in v1.7 +**Change log:** The **config.tag** and **config.intercept** parameters were added in v1.7 diff --git a/docs/api/internal/js_kanban_on_method.md b/docs/api/internal/js_kanban_on_method.md index 8405110..3ccb866 100644 --- a/docs/api/internal/js_kanban_on_method.md +++ b/docs/api/internal/js_kanban_on_method.md @@ -48,4 +48,4 @@ board.api.on("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**Change log**: The **config.tag** and **config.intercept** parameters were added in v1.7 +**Change log:** The **config.tag** and **config.intercept** parameters were added in v1.7 diff --git a/docs/api/methods/js_kanban_addcolumn_method.md b/docs/api/methods/js_kanban_addcolumn_method.md index 7f7154c..3a1fd74 100644 --- a/docs/api/methods/js_kanban_addcolumn_method.md +++ b/docs/api/methods/js_kanban_addcolumn_method.md @@ -51,4 +51,4 @@ board.addColumn({ }); ~~~ -**Change log**: The **id**, **column** and **before** parameters were added in v1.1 +**Change log:** The **id**, **column** and **before** parameters were added in v1.1 diff --git a/docs/api/methods/js_kanban_addrow_method.md b/docs/api/methods/js_kanban_addrow_method.md index a99d75d..0dcccb2 100644 --- a/docs/api/methods/js_kanban_addrow_method.md +++ b/docs/api/methods/js_kanban_addrow_method.md @@ -50,4 +50,4 @@ board.addRow({ }); ~~~ -**Change log**: The **id**, **row** and **before** parameters were added in v1.1 +**Change log:** The **id**, **row** and **before** parameters were added in v1.1 diff --git a/docs/api/methods/js_kanban_getcolumncards_method.md b/docs/api/methods/js_kanban_getcolumncards_method.md index cf1d39b..9abf06a 100644 --- a/docs/api/methods/js_kanban_getcolumncards_method.md +++ b/docs/api/methods/js_kanban_getcolumncards_method.md @@ -37,4 +37,4 @@ const cards_data = board.getColumnCards(1); console.log(cards_data); ~~~ -**Change log**: The method was added in v1.7 +**Change log:** The method was added in v1.7 diff --git a/docs/api/methods/js_kanban_updatecard_method.md b/docs/api/methods/js_kanban_updatecard_method.md index 5755f7b..ad9f252 100644 --- a/docs/api/methods/js_kanban_updatecard_method.md +++ b/docs/api/methods/js_kanban_updatecard_method.md @@ -51,6 +51,6 @@ board.updateCard({ }); ~~~ -**Change log**: +**Change log:** - The **id** and **card** parameters were added in v1.1 - The **replace** parameter was added in v1.3 diff --git a/docs/api/methods/js_kanban_updatecolumn_method.md b/docs/api/methods/js_kanban_updatecolumn_method.md index 67b3c4e..50426c2 100644 --- a/docs/api/methods/js_kanban_updatecolumn_method.md +++ b/docs/api/methods/js_kanban_updatecolumn_method.md @@ -51,6 +51,6 @@ board.updateColumn({ }); ~~~ -**Change log**: +**Change log:** - The **id** and **column** parameters were added in v1.1 - The **replace** parameter was added in v1.3 diff --git a/docs/api/methods/js_kanban_updaterow_method.md b/docs/api/methods/js_kanban_updaterow_method.md index 81589b4..bffdb8e 100644 --- a/docs/api/methods/js_kanban_updaterow_method.md +++ b/docs/api/methods/js_kanban_updaterow_method.md @@ -50,6 +50,6 @@ board.updateRow({ }); ~~~ -**Change log**: +**Change log:** - The **id** and **row** parameters were added in v1.1 - The **replace** parameter was added in v1.3 diff --git a/docs/api/overview/main_overview.md b/docs/api/overview/main_overview.md index 4433287..6558eb5 100644 --- a/docs/api/overview/main_overview.md +++ b/docs/api/overview/main_overview.md @@ -14,7 +14,7 @@ new kanban.Kanban("#root", { }); ~~~ -**Parameters**: +**Parameters:** - an HTML container (the ID of the HTML container) - an object of the configuration parameters ([check here](#kanban-properties)) @@ -27,7 +27,7 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**Parameters**: +**Parameters:** - an HTML container (the ID of the HTML container) - an object of the configuration parameters ([check here](#toolbar-properties)) diff --git a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md index 504abc0..e584581 100644 --- a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md +++ b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md @@ -41,4 +41,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md index 11ca917..87da35a 100644 --- a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md +++ b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md @@ -30,4 +30,4 @@ No data is returned back. The HTTP status code shows whether the request succeed --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md index 24d7f1c..3ba5d1a 100644 --- a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md +++ b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md @@ -40,4 +40,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md index 0c80591..2ad7f02 100644 --- a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md +++ b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md @@ -30,4 +30,4 @@ No data is returned back. The HTTP status code shows whether the request succeed --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md index 75d0875..d2d8980 100644 --- a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md +++ b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md @@ -30,7 +30,7 @@ No data is returned back. The HTTP status code shows whether the request succeed --- -**Related articles**: +**Related articles:** - [Working with server](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) diff --git a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md index cb0fbb7..b199fa9 100644 --- a/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md +++ b/docs/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md @@ -30,4 +30,4 @@ No data is returned back. The HTTP status code shows whether the request succeed --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md b/docs/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md index 61e2fe4..d3153d2 100644 --- a/docs/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md +++ b/docs/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md @@ -76,6 +76,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: +**Related articles:** - [Working with server](guides/working_with_server.md) - [getCards()](api/provider/rest_methods/js_kanban_getcards_method.md) diff --git a/docs/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md b/docs/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md index c5ffd93..2891a4f 100644 --- a/docs/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md +++ b/docs/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md @@ -53,6 +53,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: +**Related articles:** - [Working with server](guides/working_with_server.md) - [getColumns()](api/provider/rest_methods/js_kanban_getcolumns_method.md) diff --git a/docs/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md b/docs/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md index 50104ea..a917289 100644 --- a/docs/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md +++ b/docs/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md @@ -45,6 +45,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: +**Related articles:** - [Working with server](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) diff --git a/docs/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md b/docs/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md index 7dcb172..3dc1b90 100644 --- a/docs/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md +++ b/docs/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md @@ -43,6 +43,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: +**Related articles:** - [Working with server](guides/working_with_server.md) - [getRows()](api/provider/rest_methods/js_kanban_getrows_method.md) diff --git a/docs/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md b/docs/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md index 7c38e6b..b2ad8b5 100644 --- a/docs/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md +++ b/docs/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md @@ -33,4 +33,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md b/docs/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md index 67e8556..d54b0de 100644 --- a/docs/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md +++ b/docs/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md @@ -48,6 +48,6 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: +**Related articles:** - [Working with server](guides/working_with_server.md) - [getUsers()](api/provider/rest_methods/js_kanban_getusers_method.md) diff --git a/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md b/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md index 8b59d7c..14bc9ba 100644 --- a/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md +++ b/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md @@ -46,4 +46,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md b/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md index f1ba73b..ad272d3 100644 --- a/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md +++ b/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md @@ -48,4 +48,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md b/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md index 6133171..14b9632 100644 --- a/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md +++ b/docs/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md @@ -32,4 +32,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md b/docs/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md index 92fa62d..667b05c 100644 --- a/docs/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md +++ b/docs/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md @@ -44,4 +44,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md b/docs/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md index b819ab9..0acfbaa 100644 --- a/docs/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md +++ b/docs/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md @@ -48,7 +48,7 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: +**Related articles:** - [Working with server](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) diff --git a/docs/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md b/docs/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md index 8d0daea..66b4cda 100644 --- a/docs/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md +++ b/docs/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md @@ -46,4 +46,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md b/docs/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md index b2b8f51..dd00d64 100644 --- a/docs/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md +++ b/docs/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md @@ -56,4 +56,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md b/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md index 3c20d02..87591fd 100644 --- a/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md +++ b/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md @@ -53,4 +53,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md b/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md index dd701da..3042ece 100644 --- a/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md +++ b/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md @@ -90,4 +90,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md b/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md index 1099dd1..1af53c7 100644 --- a/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md +++ b/docs/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md @@ -68,4 +68,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md b/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md index b6e2c3f..ebe1cfe 100644 --- a/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md +++ b/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md @@ -52,4 +52,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md b/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md index 6ad8674..ba97b5e 100644 --- a/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md +++ b/docs/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md @@ -50,4 +50,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md b/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md index a43fadd..0a61329 100644 --- a/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md +++ b/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md @@ -52,4 +52,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md b/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md index 8c58b5e..c4ada8e 100644 --- a/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md +++ b/docs/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md @@ -50,4 +50,4 @@ The HTTP status code shows whether the request succeeds (response.status == 200) --- -**Related articles**: [Working with server](guides/working_with_server.md) +**Related articles:** [Working with server](guides/working_with_server.md) diff --git a/i18n/GLOSSARY.md b/i18n/GLOSSARY.md new file mode 100644 index 0000000..59af8bd --- /dev/null +++ b/i18n/GLOSSARY.md @@ -0,0 +1,144 @@ +# Translation Glossary — All documentation template phrases + +Purpose: a single reference for translations of recurring template phrases in the documentation +([../docs/](../docs/)). Consult it when translating new articles and when reviewing localizations — +the wording and markdown markup (`**...**`, `### ...`, full-width `:` for zh) must match verbatim. + +The **target** form is given: this is the house style all locales are normalized to, not necessarily +the variant that happened to be most frequent before normalization. + +--- + +## 1. Section labels (bold lead before a list) + +The colon always goes **inside** the bold markers — `**Label:**`, never `**Label**:`. + +| EN | ru | de | ko | zh | +|---|---|---|---|---| +| `**Related articles:**` | `**Полезные статьи:**` | `**Verwandte Artikel:**` | `**관련 문서:**` | `**相关文章:**` | +| `**Related article:**` | `**Полезная статья:**` | `**Verwandter Artikel:**` | `**관련 문서:**` | `**相关文章:**` | +| `**Related sample:**` | `**Связанный пример:**` | `**Verwandtes Beispiel:**` | `**관련 샘플:**` | `**相关示例:**` | +| `**Related samples:**` | `**Связанные примеры:**` | `**Verwandte Beispiele:**` | `**관련 예제:**` | `**相关示例:**` | +| `**Change log:**` | `**Журнал изменений:**` | `**Changelog:**` | `**변경 로그:**` | `**更新日志:**` | +| `**Parameters:**` | `**Параметры:**` | `**Parameter:**` | `**매개변수:**` | `**参数:**` | + +Singular/plural must follow the English source: `**Related sample:**` (20 pages) and +`**Related samples:**` (5 pages) are not interchangeable. + +Not currently used anywhere in `../docs/` — keep the wording if these labels are ever introduced: +`**Related API:**` (ru `**Похожее API:**`, de `**Verwandte API:**`, ko `**관련 API:**`, zh `**相关 API:**`), +`**Example:**` (ru `**Пример:**`, de `**Beispiel:**`, ko `**예제:**`, zh `**示例:**`), +`**Example on GitHub**` (ru `**Пример на GitHub**`, de `**Beispiel auf GitHub**`, ko `**GitHub 예제**`, zh `**GitHub 示例**`). + +## 2. Section headings (API-page template) + +| EN | ru | de | ko | zh | +|---|---|---|---|---| +| `### Description` | `### Описание` | `### Beschreibung` | `### 설명` | `### 描述` | +| `### Usage` | `### Использование` | `### Verwendung` | `### 사용법` | `### 用法` | +| `### Example` | `### Пример` | `### Beispiel` | `### 예제` | `### 示例` | +| `### Parameters` | `### Параметры` | `### Parameter` | `### 매개변수` | `### 参数` | +| `### Returns` | `### Возвращаемое значение` | `### Rückgabewert` | `### 반환값` | `### 返回值` | +| `### Fixes` | `### Исправления` | `### Fehlerbehebungen` | `### 수정 사항` | `### 修复` | +| `### New functionality` | `### Новый функционал` | `### Neue Funktionalität` | `### 새로운 기능` | `### 新功能` | +| `### Updates` | `### Обновления` | `### Aktualisierungen` | `### 업데이트` | `### 更新` | +| `### Default config` | `### Конфигурация по умолчанию` | `### Standardkonfiguration` | `### 기본 설정` | `### 默认配置` | +| `## What's next` | `## Что дальше` | `## Wie geht es weiter` | `## 다음 단계` | `## 下一步` | +| `## API reference` | `## Справочник API` | `## API-Referenz` | `## API 참조` | `## API 参考` | + +Not currently used anywhere in `../docs/`: +`### Breaking changes` (ru `### Критические изменения`, de `### Breaking Changes`, ko `### 주요 변경 사항`, zh `### 重大变更`), +`## Related API and guides` (ru `## Связанные API и гайды`, de `## Verwandte API und Anleitungen`, ko `## 관련 API 및 가이드`, zh `## 相关 API 和指南`). + +When a heading carries an explicit anchor (`### Default config {#default-config}`), the anchor is +part of the English contract — translate the text, keep the `{#...}` untouched. + +## 3. Version notes (inside `**Change log:**`) + +The English source does **not** use bare `Added in vX.X`; it uses full sentences +(`The method was added in v1.4`, `The ***replace*** parameter was added in v1.7`). So this section +constrains the **action word and the placement of the version token**, not a literal string. + +The version number is never translated and always keeps its `v` prefix. + +| EN action | ru | de | ko | zh | +|---|---|---|---|---| +| `added in vX.X` | `добавлен(о/ы) в vX.X` | `wurde/wurden in vX.X hinzugefügt` | `vX.X에서 추가되었습니다` | `在 vX.X 中新增` | +| `updated in vX.X` | `обновлён(о) в vX.X` | `wurde in vX.X aktualisiert` | `vX.X에서 업데이트되었습니다` | `在 vX.X 中更新` | +| `deprecated in vX.X` | `устарело в vX.X` | `wurde in vX.X veraltet` | `vX.X에서 지원 중단` | `在 vX.X 中弃用` | +| `removed in vX.X` | `удалено в vX.X` | `wurde in vX.X entfernt` | `vX.X에서 제거` | `在 vX.X 中移除` | +| `starting from vX.X, …` | `начиная с vX.X, …` | `Ab vX.X …` | `vX.X부터 …` | `从 vX.X 起,…` | + +Do **not** insert a word for "version" around the token: ru `в версии v1.4`, de `in Version 1.4`, +ko `v1.4 버전에서`, zh `在 v1.4 版本中` are all wrong — the token alone carries it. + +Code-fence and `` titles are a separate pattern and are translated: +ru `До vX.X` / `С vX.X`, de `Vor` / `Ab`, ko `vX.X 이전` / `vX.X부터`, zh `vX.X 之前` / `vX.X 起`. + +## 4. Admonition block titles (`:::note`, `:::tip` …) + +The titles of these blocks come **not from markdown**, but from the `theme.admonition.*` keys in +`i18n//code.json` (in EN — Docusaurus built-in defaults). In `.md` the block type (`:::note`, +`:::tip`, …) is not translated — only the `message` in `code.json` changes. + +The Docusaurus theme renders the title with `text-transform: uppercase`, so for ru/de the visible +title is always UPPERCASE, while ko/zh have no letter case. Canon: **capitalized first letter**, with +words distinct between types (no `caution`/`warning` duplicates). + +| Type | ru | de | ko | zh | +|---|---|---|---|---| +| `:::note` | `Примечание` | `Hinweis` | `노트` | `备注` | +| `:::tip` | `Подсказка` | `Tipp` | `팁` | `提示` | +| `:::info` | `К сведению` | `Info` | `정보` | `信息` | +| `:::warning` | `Предупреждение` | `Warnung` | `경고` | `警告` | +| `:::caution` | `Осторожно` | `Vorsicht` | `주의` | `注意` | +| `:::danger` | `Опасно` | `Gefahr` | `위험` | `危险` | + +## 5. Do not translate + +Keep these terms in English across all locales. + +**Product & modules:** + +- `DHTMLX`, `dhx` (the `dhx.*` code namespace) +- `Kanban` — the product name; never `看板` / `канбан` / `칸반` +- `Toolbar` — a shipped component with its own API pages (`api/config/toolbar_*_config.md`) +- `Event Bus`, `RestDataProvider` + +**Frameworks & libraries:** + +- `React`, `Vue`, `Svelte`, `Angular` +- `Node.js`, `Vite` + +**Languages & tooling:** + +- `JavaScript`, `TypeScript` +- `npm`, `yarn`, `CLI` + +**Data formats & protocols:** + +- `JSON`, `REST`, `HTML`, `CSS` + +**Services:** + +- `GitHub`, `Salesforce` + +**Other:** + +- `API`, `UI` +- Code identifiers (method / config / event names, `dhx.*`) inside backticks are never translated. + +### `Kanban` is the product; `board` is prose + +The English source uses both. `Kanban` is the do-not-translate product name; the ordinary noun +`board` is prose and **is** localized (zh `看板`, ko `보드`, de `Board`, ru `доска`). So +`the Kanban board` becomes zh `Kanban 看板`, ko `Kanban 보드` — not `Kanban Kanban`, and not a bare +`看板` standing in for the product name. + +Other prose nouns that are localized: `card`, `column`, `row` / `swimlane`, `editor`, `link`, +`comment`, `tag`, `vote`, `Menu` (→ ru "меню"), `context menu`. + +### zh typography + +Insert a space between Latin and CJK characters: `在 Event Bus 的执行顺序中`, `Kanban 看板`, +`该方法在 v1.4 中新增`. No space is added next to full-width punctuation (`。`, `,`, `)`). diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md b/i18n/de/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md index d96d649..8dd49ea 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md @@ -47,6 +47,6 @@ board.addCard({ }); ~~~ -**Änderungsprotokoll:** Der `$meta` Parameter wurde in Version 1.3 hinzugefügt +**Changelog:** Der `$meta` Parameter wurde in v1.3 hinzugefügt **Verwandter Artikel:** [`history`](api/config/js_kanban_history_config.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md index 2bf3a3c..f528eb2 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md @@ -34,8 +34,8 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Eigenschaft wurde in Version v1.2 hinzugefügt +**Changelog:** Die Eigenschaft wurde in v1.2 hinzugefügt **Verwandte Artikel:** [Konfiguration](guides/configuration.md#cards) -**Verwandte Beispiel:** [Kanban. Lazy rendering und Spalten-Scroll](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) +**Verwandtes Beispiel:** [Kanban. Lazy rendering und Spalten-Scroll](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md index 869d9d0..e34ae03 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md @@ -147,7 +147,7 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Parameter ***css***, ***comments*** und ***votes*** wurden in Version 1.4 hinzugefügt +**Changelog:** Die Parameter ***css***, ***comments*** und ***votes*** wurden in v1.4 hinzugefügt **Verwandte Artikel:** - [Arbeiten mit Daten](guides/working_with_data.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md index 1adf876..91a496d 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md @@ -323,13 +323,13 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** -- Die Parameter ***comments***, ***css*** und ***votes*** wurden in Version 1.4 hinzugefügt -- Der Parameter ***menu.items[0].label*** wurde in Version 1.4 durch ***menu.items[0].text*** ersetzt und als veraltet markiert -- Der Parameter ***menu.items[0].items*** wurde in Version 1.4 durch ***menu.items[0].data*** ersetzt und als veraltet markiert -- Die Parameter ***users.maxCount*** und ***votes.clickable*** wurden in Version 1.6 hinzugefügt -- Die Parameter ***menu.items[0].label*** und ***menu.items[0].items*** wurden in Version 1.7 entfernt -- Die Funktion ***menu.items*** wurde in Version 1.7 aktualisiert. Der Parameter **store** wurde durch **readonly** ersetzt +**Changelog:** +- Die Parameter ***comments***, ***css*** und ***votes*** wurden in v1.4 hinzugefügt +- Der Parameter ***menu.items[0].label*** wurde in v1.4 durch ***menu.items[0].text*** ersetzt und als veraltet markiert +- Der Parameter ***menu.items[0].items*** wurde in v1.4 durch ***menu.items[0].data*** ersetzt und als veraltet markiert +- Die Parameter ***users.maxCount*** und ***votes.clickable*** wurden in v1.6 hinzugefügt +- Die Parameter ***menu.items[0].label*** und ***menu.items[0].items*** wurden in v1.7 entfernt +- Die Funktion ***menu.items*** wurde in v1.7 aktualisiert. Der Parameter **store** wurde durch **readonly** ersetzt **Verwandte Artikel:** [Konfiguration](guides/configuration.md#cards) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md index cd7d319..a4bd0ea 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md @@ -66,7 +66,7 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Möglichkeit, ein Kontextmenü anzuzeigen, wurde in Version v1.4 hinzugefügt. +**Changelog:** Die Möglichkeit, ein Kontextmenü anzuzeigen, wurde in v1.4 hinzugefügt. **Verwandte Artikel:** [Anpassung](guides/customization.md#custom-cards) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md index 601d328..cc0bf06 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md @@ -113,9 +113,9 @@ Falls die Stile nicht angewendet werden, stellen Sie sicher, dass: - Ihr Selektor genügend Kontext enthält (z. B. Eltern- und interne DHTMLX-Klassen) - Falls die Eigenschaft durch einen Inline-Stil überschrieben wird, können Sie `!important` verwenden -**Änderungsprotokoll:** Die Parameter **css** und **overlay** wurden in Version v1.4 hinzugefügt +**Changelog:** Die Parameter **css** und **overlay** wurden in v1.4 hinzugefügt -**Verwandte Artikel:** +**Verwandter Artikel:** - [Arbeiten mit Daten](guides/working_with_data.md) - [updateColumn()](api/methods/js_kanban_updatecolumn_method.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md index 42b5a0a..fb11e7a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md @@ -219,14 +219,14 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** -- Der ***css***-Parameter wurde in Version 1.4 hinzugefügt -- Der ***menu.items[0].label***-Parameter wurde in Version 1.4 durch den ***menu.items[0].text***-Parameter ersetzt und als veraltet markiert -- Der ***menu.items[0].items***-Parameter wurde in Version 1.4 durch den ***menu.items[0].data***-Parameter ersetzt und als veraltet markiert -- Der ***fixedHeaders***-Parameter wurde in Version 1.5 hinzugefügt -- Die Parameter ***headerTemplate*** und ***collapsedTemplate*** wurden in Version 1.6 hinzugefügt -- Die Parameter ***menu.items[0].label*** und ***menu.items[0].items*** wurden in Version 1.7 entfernt -- Die Funktion ***menu.items*** wurde in Version 1.7 aktualisiert. Der **store**-Parameter wurde durch den **readonly**-Parameter ersetzt +**Changelog:** +- Der ***css***-Parameter wurde in v1.4 hinzugefügt +- Der ***menu.items[0].label***-Parameter wurde in v1.4 durch den ***menu.items[0].text***-Parameter ersetzt und als veraltet markiert +- Der ***menu.items[0].items***-Parameter wurde in v1.4 durch den ***menu.items[0].data***-Parameter ersetzt und als veraltet markiert +- Der ***fixedHeaders***-Parameter wurde in v1.5 hinzugefügt +- Die Parameter ***headerTemplate*** und ***collapsedTemplate*** wurden in v1.6 hinzugefügt +- Die Parameter ***menu.items[0].label*** und ***menu.items[0].items*** wurden in v1.7 entfernt +- Die Funktion ***menu.items*** wurde in v1.7 aktualisiert. Der **store**-Parameter wurde durch den **readonly**-Parameter ersetzt **Verwandte Artikel:** [Konfiguration](guides/configuration.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md index f7403ae..900f37f 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md @@ -31,6 +31,6 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Eigenschaft wurde in Version v1.4 hinzugefügt +**Changelog:** Die Eigenschaft wurde in v1.4 hinzugefügt **Verwandtes Beispiel:** [Kanban. Swimlanes, Kommentare, Stimmen](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md index ec8a3c9..13529ac 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md @@ -57,6 +57,6 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Der Parameter `placement` wurde in Version 1.6 hinzugefügt +**Changelog:** Der Parameter `placement` wurde in v1.6 hinzugefügt **Verwandte Beispiele:** [Kanban. Öffnen des Editors in einem modalen Fenster](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md index 64b59f4..8021cea 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md @@ -9,7 +9,7 @@ description: Lesen Sie die editorAutoSave Konfigurations-API für DHTMLX Kanban.

editorAutoSave

:::danger -Ab Version 1.3 ist die Eigenschaft `editorAutoSave` **veraltet**. Um den "Autosave"-Modus zu verwalten, verwenden Sie die Eigenschaft [`editor`](api/config/js_kanban_editor_config.md)! +Ab v1.3 ist die Eigenschaft `editorAutoSave` **veraltet**. Um den "Autosave"-Modus zu verwalten, verwenden Sie die Eigenschaft [`editor`](api/config/js_kanban_editor_config.md)! ::: ### Beschreibung diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md index c76353b..82acf3f 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md @@ -466,11 +466,11 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** +**Changelog:** -- Der Typ ***dateRange*** wurde in Version 1.3 hinzugefügt -- Die Typen ***comments*** und ***links*** für den Editor sowie der Parameter ***format*** wurden in Version 1.4 hinzugefügt -- Der Parameter ***modalSection*** wurde in Version 1.6 hinzugefügt +- Der Typ ***dateRange*** wurde in v1.3 hinzugefügt +- Die Typen ***comments*** und ***links*** für den Editor sowie der Parameter ***format*** wurden in v1.4 hinzugefügt +- Der Parameter ***modalSection*** wurde in v1.6 hinzugefügt - Der Parameter ***clearButton*** wurde durch den Parameter ***clear*** ersetzt **Verwandte Artikel:** [Konfiguration](guides/configuration.md/#editor) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md index 72bc8f4..9a460c2 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md @@ -41,6 +41,6 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Eigenschaft wurde in Version v1.3 hinzugefügt +**Changelog:** Die Eigenschaft wurde in v1.3 hinzugefügt **Verwandte Artikel:** [`undo()`](api/methods/js_kanban_undo_method.md) und [`redo()`](api/methods/js_kanban_redo_method.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md index eec2d18..6974f55 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md @@ -60,10 +60,10 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Eigenschaft wurde in Version 1.7 aktualisiert: +**Changelog:** Die Eigenschaft wurde in v1.7 aktualisiert: - Der Parameter **masterId** wurde durch den Parameter **source** ersetzt - Der Parameter **slaveId** wurde durch den Parameter **target** ersetzt **Verwandte Artikel:** [Arbeiten mit Daten](guides/working_with_data.md) -**Verwandte Beispiel:** [Kanban. Links zwischen Aufgaben](https://snippet.dhtmlx.com/81qu7qh0?tag=kanban) +**Verwandtes Beispiel:** [Kanban. Links zwischen Aufgaben](https://snippet.dhtmlx.com/81qu7qh0?tag=kanban) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md index 9c90cca..c24721d 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md @@ -45,7 +45,7 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Eigenschaft wurde in Version 1.2 hinzugefügt +**Changelog:** Die Eigenschaft wurde in v1.2 hinzugefügt **Verwandte Artikel:** [Konfiguration](guides/configuration.md#cards) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowkey_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowkey_config.md index c3d6d45..f51d65a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowkey_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowkey_config.md @@ -43,4 +43,4 @@ new kanban.Kanban("#root", { }); ~~~ -**Verwandte Beispiel:** [Kanban. Swimlanes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) \ No newline at end of file +**Verwandtes Beispiel:** [Kanban. Swimlanes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md index bd63b65..2782221 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md @@ -56,10 +56,10 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Der Parameter ***css*** wurde in Version 1.4 hinzugefügt. +**Changelog:** Der Parameter ***css*** wurde in v1.4 hinzugefügt. **Verwandte Artikel:** - [Arbeiten mit Daten](guides/working_with_data.md) - [updateRow()](api/methods/js_kanban_updaterow_method.md) -**Verwandte Beispiel:** [Kanban. Swimlanes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) +**Verwandtes Beispiel:** [Kanban. Swimlanes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md index 087a496..4048f09 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md @@ -176,12 +176,12 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** -- Der Parameter ***css*** wurde in Version 1.4 hinzugefügt -- Der Parameter ***menu.items[0].label*** wurde in Version 1.4 durch ***menu.items[0].text*** ersetzt und als veraltet markiert -- Der Parameter ***menu.items[0].items*** wurde in Version 1.4 durch ***menu.items[0].data*** ersetzt und als veraltet markiert -- Die Parameter ***menu.items[0].label*** und ***menu.items[0].items*** wurden in Version 1.7 entfernt -- Die Funktion ***menu.items*** wurde aktualisiert. Der **store**-Parameter wurde in Version 1.7 durch den **readonly**-Parameter ersetzt +**Changelog:** +- Der Parameter ***css*** wurde in v1.4 hinzugefügt +- Der Parameter ***menu.items[0].label*** wurde in v1.4 durch ***menu.items[0].text*** ersetzt und als veraltet markiert +- Der Parameter ***menu.items[0].items*** wurde in v1.4 durch ***menu.items[0].data*** ersetzt und als veraltet markiert +- Die Parameter ***menu.items[0].label*** und ***menu.items[0].items*** wurden in v1.7 entfernt +- Die Funktion ***menu.items*** wurde aktualisiert. Der **store**-Parameter wurde in v1.7 durch den **readonly**-Parameter ersetzt **Verwandte Artikel:** [Konfiguration](guides/configuration.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md index 7c8b1c2..b5b3e06 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md @@ -45,7 +45,7 @@ new kanban.Kanban("#root", { }); ~~~ -**Änderungsprotokoll:** Die Eigenschaft wurde in Version v1.2 hinzugefügt +**Changelog:** Die Eigenschaft wurde in v1.2 hinzugefügt **Verwandte Artikel:** [Konfiguration](guides/configuration.md#cards) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md index 6576e43..4b89157 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md @@ -35,4 +35,4 @@ new kanban.Toolbar("#toolbar", { **Verwandte Artikel:** [Konfiguration](guides/configuration.md#toolbar) -**Verwandte Beispiel:** [Kanban. Benutzerdefinierte Toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) \ No newline at end of file +**Verwandtes Beispiel:** [Kanban. Benutzerdefinierte Toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md index 31b997c..c1d5bea 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md @@ -178,7 +178,7 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**Änderungsprotokoll:** +**Changelog:** - Die Steuerelemente *"Undo"* und *"Redo"* wurden in v1.3 hinzugefügt - Der Parameter ***items.options[0].label*** der **sort** Steuerung wurde in v1.4 durch den Parameter ***items.options[0].text*** ersetzt @@ -186,6 +186,6 @@ new kanban.Toolbar("#toolbar", { **Verwandte Artikel:** [Konfiguration](guides/configuration.md#toolbar) und [Anpassung](guides/customization.md#custom-toolbar) -**Verwandte Beispiele:** +**Verwandtes Beispiel:** - [Kanban. Benutzerdefinierte Toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) - [Kanban. Anpassung der Vorschläge in Suchergebnissen](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md b/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md index 0ac40c8..de8b54a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md @@ -44,4 +44,4 @@ new kanban.Toolbar("#toolbar", { **Verwandte Artikel:** [Lokalisierung](guides/localization.md) -**Verwandte Beispiel:** [Kanban. Lokalisierung](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file +**Verwandtes Beispiel:** [Kanban. Lokalisierung](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md index 3fea6b0..0259279 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md @@ -48,4 +48,4 @@ board.api.on("add-column", (obj) => { }); ~~~ -**Änderungsprotokoll**: Die Parameter **id**, **before** und **column** wurden in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Die Parameter **id**, **before** und **column** wurden in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md index ab1776b..d2c9461 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md @@ -55,4 +55,4 @@ board.api.on("add-comment", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Ereignis wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Das Ereignis wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md index 2c348dd..dd6545c 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md @@ -47,4 +47,4 @@ board.api.on("add-link", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Event wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Das Event wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md index 7238a89..d97e566 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md @@ -48,4 +48,4 @@ board.api.on("add-row", (obj) => { }); ~~~ -**Änderungsprotokoll**: Die Parameter **id**, **before** und **row** wurden in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Die Parameter **id**, **before** und **row** wurden in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md index 6599fce..b8a1e53 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md @@ -44,4 +44,4 @@ board.api.on("add-vote", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Event wurde in v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Das Event wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md index 8e65b9f..776feda 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md @@ -46,4 +46,4 @@ board.api.on("delete-comment", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Ereignis wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Das Ereignis wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md index c6612f0..7da2da2 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md @@ -45,4 +45,4 @@ board.api.on("delete-link", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Event wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Das Event wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md index 40054e0..31435cd 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md @@ -44,4 +44,4 @@ board.api.on("delete-vote", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Event wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Das Event wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md index 8b4b89b..5f0bd4d 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md @@ -50,6 +50,6 @@ board.api.on("drag-card", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Ereignis wurde in Version v1.4 hinzugefügt +**Changelog:** Das Ereignis wurde in v1.4 hinzugefügt **Verwandtes Beispiel:** [Kanban. Drag & Drop für bestimmte Spalten deaktivieren](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md index 4a59a94..28f7037 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md @@ -46,4 +46,4 @@ board.api.on("duplicate-card", (obj) => { }); ~~~ -**Änderungsprotokoll:** Der Parameter `select` wurde in Version v1.5.10 hinzugefügt \ No newline at end of file +**Changelog:** Der Parameter `select` wurde in v1.5.10 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md index ea35430..2b340fd 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md @@ -50,6 +50,6 @@ board.api.on("end-drag-card", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Event wurde in Version v1.4 hinzugefügt +**Changelog:** Das Event wurde in v1.4 hinzugefügt **Verwandtes Beispiel:** [Kanban. Drag & Drop für bestimmte Spalten deaktivieren](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md index d6801b7..90263f6 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md @@ -46,4 +46,4 @@ board.api.on("move-column", (obj) => { }); ~~~ -**Änderungsprotokoll:** Dieses Event wurde in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Dieses Event wurde in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md index d35ea19..988b61e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md @@ -47,4 +47,4 @@ board.api.on("move-row", (obj) => { }); ~~~ -**Änderungsprotokoll:** Dieses Event wurde in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Dieses Event wurde in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md index af3fe07..90d327e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md @@ -34,4 +34,4 @@ board.api.on("redo", () => { }); ~~~ -**Änderungsprotokoll**: Das Event wurde in Version v1.7 hinzugefügt \ No newline at end of file +**Changelog:** Das Event wurde in v1.7 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md index 4420f59..234d418 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md @@ -46,4 +46,4 @@ board.api.on("scroll", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Event wurde in Version v1.2 hinzugefügt \ No newline at end of file +**Changelog:** Das Event wurde in v1.2 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md index cd85aee..64da987 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md @@ -45,8 +45,8 @@ board.api.intercept("set-edit", (ev) => { }); ~~~ -**Änderungsprotokoll:** - - Das Event wurde in Version 1.2 hinzugefügt - - Der Parameter ***eventSource*** wurde in Version 1.6 hinzugefügt +**Changelog:** + - Das Event wurde in v1.2 hinzugefügt + - Der Parameter ***eventSource*** wurde in v1.6 hinzugefügt **Verwandte Beispiele:** [Kanban. Öffnen des Editors durch Doppelklick auf die Aufgabe](https://snippet.dhtmlx.com/zh4d9pdb?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md index ac140a6..ff0a9b6 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md @@ -50,4 +50,4 @@ board.api.on("set-sort", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Ereignis wurde in Version v1.2 hinzugefügt \ No newline at end of file +**Changelog:** Das Ereignis wurde in v1.2 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md index 75e6b34..3bc037f 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md @@ -50,6 +50,6 @@ board.api.on("start-drag-card", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Event wurde in Version v1.4 hinzugefügt +**Changelog:** Das Event wurde in v1.4 hinzugefügt **Verwandtes Beispiel:** [Kanban. Drag & Drop für bestimmte Spalten deaktivieren](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md index e8f64a1..18fbd2a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md @@ -34,4 +34,4 @@ board.api.on("undo", () => { }); ~~~ -**Änderungsprotokoll**: Das Event wurde in Version v1.7 hinzugefügt \ No newline at end of file +**Changelog:** Das Event wurde in v1.7 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md index fb5e013..b352664 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md @@ -53,6 +53,6 @@ board.api.on("update-card", (obj) => { }); ~~~ -**Änderungsprotokoll**: -- Die Parameter **id** und **card** wurden in Version v1.1 hinzugefügt -- Der Parameter **replace** wurde in Version v1.3 hinzugefügt \ No newline at end of file +**Changelog:** +- Die Parameter **id** und **card** wurden in v1.1 hinzugefügt +- Der Parameter **replace** wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md index 9db088d..11dcd2a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md @@ -53,6 +53,6 @@ board.api.on("update-column", (obj) => { }); ~~~ -**Änderungsprotokoll**: -- Die Parameter **id** und **column** wurden in Version v1.1 hinzugefügt -- Der Parameter **replace** wurde in Version v1.3 hinzugefügt \ No newline at end of file +**Changelog:** +- Die Parameter **id** und **column** wurden in v1.1 hinzugefügt +- Der Parameter **replace** wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md index 4663f01..3b1c382 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md @@ -59,4 +59,4 @@ board.api.on("update-comment", (obj) => { }); ~~~ -**Änderungsprotokoll:** Das Ereignis wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Das Ereignis wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md index 6fd2e69..14182d8 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md @@ -53,6 +53,6 @@ board.api.on("update-row", (obj) => { }); ~~~ -**Änderungsprotokoll**: -- Die Parameter **id** und **row** wurden in Version 1.1 hinzugefügt -- Der Parameter **replace** wurde in Version 1.3 hinzugefügt \ No newline at end of file +**Changelog:** +- Die Parameter **id** und **row** wurden in v1.1 hinzugefügt +- Der Parameter **replace** wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md index 3e7063e..13a41b5 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md @@ -36,4 +36,4 @@ board.api.on("move-card", ({ id, columnId }) => { board.api.detach("move"); ~~~ -**Änderungsprotokoll**: Die interne Methode wurde in Version v1.7 hinzugefügt \ No newline at end of file +**Changelog:** Die interne Methode wurde in v1.7 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md index 7d585ff..be662ad 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md @@ -101,4 +101,4 @@ state.selected.subscribe((data) => { }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.7 aktualisiert \ No newline at end of file +**Changelog:** Die Methode wurde in v1.7 aktualisiert \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md index 8fa631e..6f77d92 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md @@ -86,4 +86,4 @@ console.log(state.cardShape); // gibt die Kartenkonfiguration aus //... ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.7 aktualisiert \ No newline at end of file +**Changelog:** Die Methode wurde in v1.7 aktualisiert \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md index 685e85a..a90cdb0 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md @@ -39,4 +39,4 @@ const store = board.api.getStores(); console.log(store); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.2 aktualisiert \ No newline at end of file +**Changelog:** Die Methode wurde in v1.2 aktualisiert \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md index 19be24b..c68559f 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md @@ -50,4 +50,4 @@ board.api.intercept("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**Änderungsprotokoll**: Die Parameter **config.tag** und **config.intercept** wurden in Version v1.7 hinzugefügt \ No newline at end of file +**Changelog:** Die Parameter **config.tag** und **config.intercept** wurden in v1.7 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md index 074d06c..3efce39 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md @@ -39,4 +39,4 @@ const board = new kanban.Kanban("#root", { board.export.json(); // => { "cards": [...], "columns": [...], "rows": [] } ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.3 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md index 2209c32..ee115e4 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md @@ -48,4 +48,4 @@ board.api.on("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**Änderungsprotokoll**: Die Parameter **config.tag** und **config.intercept** wurden in Version 1.7 hinzugefügt \ No newline at end of file +**Changelog:** Die Parameter **config.tag** und **config.intercept** wurden in v1.7 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md index e4f771c..a53a102 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md @@ -51,4 +51,4 @@ board.addColumn({ }); ~~~ -**Änderungsprotokoll**: Die Parameter **id**, **column** und **before** wurden in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Die Parameter **id**, **column** und **before** wurden in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md index 8998f03..2c813c4 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md @@ -53,4 +53,4 @@ board.addComment({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md index 67ba5ef..8c922bd 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md @@ -43,4 +43,4 @@ board.addLink({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.5 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.5 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md index 391e548..40d4bba 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md @@ -50,4 +50,4 @@ board.addRow({ }); ~~~ -**Änderungsprotokoll**: Die Parameter **id**, **row** und **before** wurden in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Die Parameter **id**, **row** und **before** wurden in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md index 373d54c..ea3400f 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md @@ -39,4 +39,4 @@ board.deleteComment({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md index 3ae9f2f..da1ce33 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md @@ -33,4 +33,4 @@ const board = new kanban.Kanban("#root", { board.deleteLink({ id: 5 }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.5 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.5 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md index cba68b2..e63ca92 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md @@ -42,4 +42,4 @@ board.duplicateCard({ }); ~~~ -**Änderungsprotokoll:** Der Parameter `select` wurde in Version v1.5.10 hinzugefügt \ No newline at end of file +**Changelog:** Der Parameter `select` wurde in v1.5.10 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md index 202885a..2e60d6b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md @@ -37,4 +37,4 @@ const cards_data = board.getColumnCards(1); console.log(cards_data); ~~~ -**Änderungsprotokoll**: Die Methode wurde in Version v1.7 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.7 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md index f61ac42..ea2a7d3 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md @@ -39,4 +39,4 @@ board.moveColumn({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md index bc823fc..66617fe 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md @@ -40,4 +40,4 @@ board.moveRow({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.1 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.1 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md index 79d5e6d..35e6340 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md @@ -63,6 +63,6 @@ board.parse({ // board.setConfig({ columns, cards, rows, links }); ~~~ -**Änderungsprotokoll:** Seit Version v1.1 müssen Sie die Startdaten nicht mehr im Konstruktor zurücksetzen, bevor Sie neue Daten parsen. +**Changelog:** Ab v1.1 müssen Sie die Startdaten nicht mehr im Konstruktor zurücksetzen, bevor Sie neue Daten parsen. **Verwandte Artikel:** [Arbeiten mit Daten](guides/working_with_data.md#load-data-from-a-local-source) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md index 0ff32e3..1188ac4 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md @@ -32,4 +32,4 @@ const board = new kanban.Kanban("#root", { board.redo(); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.3 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md index 325d996..b43844c 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md @@ -46,4 +46,4 @@ board.scroll({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.2 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.2 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md index bd0cf35..2d64cb1 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md @@ -38,4 +38,4 @@ const board = new kanban.Kanban("#root", { board.setEdit({ cardId: 1 }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.2 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.2 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md index 5dbe08e..08e2a80 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md @@ -39,6 +39,6 @@ board.setLocale(kanban.locales["de"]); board.setLocale(); // oder board.setLocale(null); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.2 aktualisiert +**Changelog:** Die Methode wurde in v1.2 aktualisiert **Verwandte Artikel:** [Lokalisierung](guides/localization.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md index c776f6d..14cc3de 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md @@ -53,4 +53,4 @@ board.setSort({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.2 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.2 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md index 7d799eb..3dd4515 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md @@ -32,4 +32,4 @@ const board = new kanban.Kanban("#root", { board.undo(); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.3 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md index f3d052a..3661e75 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md @@ -51,6 +51,6 @@ board.updateCard({ }); ~~~ -**Änderungsprotokoll**: -- Die Parameter **id** und **card** wurden in Version v1.1 hinzugefügt -- Der Parameter **replace** wurde in Version v1.3 hinzugefügt \ No newline at end of file +**Changelog:** +- Die Parameter **id** und **card** wurden in v1.1 hinzugefügt +- Der Parameter **replace** wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md index a9e7297..9eb7945 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md @@ -51,6 +51,6 @@ board.updateColumn({ }); ~~~ -**Änderungsprotokoll**: -- Die Parameter **id** und **column** wurden in Version v1.1 hinzugefügt -- Der Parameter **replace** wurde in Version v1.3 hinzugefügt \ No newline at end of file +**Changelog:** +- Die Parameter **id** und **column** wurden in v1.1 hinzugefügt +- Der Parameter **replace** wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md index 5895920..2f2ed28 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md @@ -59,4 +59,4 @@ board.updateComment({ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.4 hinzugefügt \ No newline at end of file +**Changelog:** Die Methode wurde in v1.4 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md index ac853ce..6150ce1 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md @@ -50,6 +50,6 @@ board.updateRow({ }); ~~~ -**Änderungsprotokoll**: -- Die Parameter **id** und **row** wurden in Version 1.1 hinzugefügt -- Der Parameter **replace** wurde in Version 1.3 hinzugefügt \ No newline at end of file +**Changelog:** +- Die Parameter **id** und **row** wurden in v1.1 hinzugefügt +- Der Parameter **replace** wurde in v1.3 hinzugefügt \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md index faff7ee..84dfda7 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md @@ -38,6 +38,6 @@ board.setLocale(de); toolbar.setLocale(de); ~~~ -**Änderungsprotokoll:** Der Parameter **api** wurde in Version 1.6 veraltet +**Changelog:** Der Parameter **api** wurde in v1.6 veraltet **Verwandte Artikel:** [Lokalisierung](guides/localization.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/overview/main_overview.md b/i18n/de/docusaurus-plugin-content-docs/current/api/overview/main_overview.md index ed0bc6f..0efb39b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/overview/main_overview.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/overview/main_overview.md @@ -14,7 +14,7 @@ new kanban.Kanban("#root", { }); ~~~ -**Parameter**: +**Parameter:** - ein HTML-Container (die ID des HTML-Containers) - ein Objekt mit den Konfigurationsparametern ([hier prüfen](#kanban-properties)) @@ -27,7 +27,7 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**Parameter**: +**Parameter:** - ein HTML-Container (die ID des HTML-Containers) - ein Objekt mit den Konfigurationsparametern ([hier prüfen](#toolbar-properties)) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md index 353b045..d64f155 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md @@ -44,6 +44,6 @@ Promise.all([ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.5 hinzugefügt +**Changelog:** Die Methode wurde in v1.5 hinzugefügt **Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md index 2fcca68..8c24762 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md @@ -20,7 +20,7 @@ Die **getUsers()** Methode ist Teil des **RestDataProvider**-Dienstes, der für getUsers(): promise; ~~~ -### Rückgabe +### Rückgabewert Die **getUsers()** Methode sendet eine Anfrage an den Server mit der **GET**-Methode und gibt ein **Promise** mit den Benutzerdaten zurück. @@ -55,6 +55,6 @@ Promise.all([ }); ~~~ -**Änderungsprotokoll:** Die Methode wurde in Version v1.3 hinzugefügt +**Changelog:** Die Methode wurde in v1.3 hinzugefügt **Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md index c28f743..3f21a8c 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md @@ -41,4 +41,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md index 2ca4da7..4a8b501 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md @@ -30,4 +30,4 @@ Es werden keine Daten zurückgegeben. Der HTTP-Statuscode zeigt an, ob die Anfra --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md index 7750499..bd668e7 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md @@ -40,4 +40,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md index 78554d9..30d3903 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md @@ -30,4 +30,4 @@ Es werden keine Daten zurückgegeben. Der HTTP-Statuscode zeigt an, ob die Anfra --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md index f2a6026..04244c8 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md @@ -30,7 +30,7 @@ Es werden keine Daten zurückgegeben. Der HTTP-Statuscode zeigt an, ob die Anfra --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [Arbeiten mit dem Server](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md index bb0a6be..594e17b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md @@ -30,4 +30,4 @@ Es werden keine Daten zurückgegeben. Der HTTP-Statuscode zeigt an, ob die Anfra --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md index a7f1623..5ed01d6 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md @@ -76,7 +76,7 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [Arbeiten mit dem Server](guides/working_with_server.md) - [getCards()](api/provider/rest_methods/js_kanban_getcards_method.md) diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md index 3bb4226..489a95c 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md @@ -53,6 +53,6 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [Arbeiten mit dem Server](guides/working_with_server.md) - [getColumns()](api/provider/rest_methods/js_kanban_getcolumns_method.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md index bf482bf..163c4da 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md @@ -45,6 +45,6 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [Arbeiten mit dem Server](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md index 65aedb3..306c4c0 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md @@ -43,6 +43,6 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [Arbeiten mit dem Server](guides/working_with_server.md) - [getRows()](api/provider/rest_methods/js_kanban_getrows_method.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md index b777e47..0452cf4 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md @@ -33,4 +33,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md index a2e8754..1016006 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md @@ -48,6 +48,6 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [Working with server](guides/working_with_server.md) - [getUsers()](api/provider/rest_methods/js_kanban_getusers_method.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md index 4291240..52b81f0 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md @@ -46,4 +46,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md index 37b318c..270f7bd 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md @@ -48,4 +48,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md index 4d6d4cc..4b4c6c7 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md @@ -32,4 +32,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md index e25be6e..95a0c6f 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md @@ -44,4 +44,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md index 2076f59..64f4023 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md @@ -48,7 +48,7 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: +**Verwandte Artikel:** - [Working with server](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md index 7595c5c..5298595 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md @@ -46,4 +46,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md index ab02802..f518ae1 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md @@ -54,4 +54,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md index b97fc6a..aa7f0aa 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md @@ -53,4 +53,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md index 4fdd5fb..f30eed9 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md @@ -90,4 +90,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md index b044de5..52cea3a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md @@ -68,4 +68,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md index 0933288..41549c2 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md @@ -52,4 +52,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md index 595c213..0a4daff 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md @@ -50,4 +50,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md index 8a0fea4..575ce5a 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md @@ -52,4 +52,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md index 06cd6a9..f808e3b 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md @@ -50,4 +50,4 @@ Der HTTP-Statuscode zeigt an, ob die Anfrage erfolgreich war (response.status == --- -**Verwandte Artikel**: [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file +**Verwandte Artikel:** [Arbeiten mit dem Server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/guides/typescript_support.md b/i18n/de/docusaurus-plugin-content-docs/current/guides/typescript_support.md index c865df1..8a70a48 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/guides/typescript_support.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/guides/typescript_support.md @@ -6,7 +6,7 @@ description: Folgen Sie der DHTMLX Kanban TypeScript-Unterstützungsanleitung. E # TypeScript-Unterstützung -Ab Version v1.1 wird DHTMLX Kanban mit integrierten TypeScript-Definitionen ausgeliefert. +Ab v1.1 wird DHTMLX Kanban mit integrierten TypeScript-Definitionen ausgeliefert. :::note Probieren Sie das [Snippet Tool](https://snippet.dhtmlx.com/2blo6hx8?tag=kanban) für ein funktionierendes TypeScript-Beispiel aus. diff --git a/i18n/de/docusaurus-plugin-content-docs/current/how_to_start.md b/i18n/de/docusaurus-plugin-content-docs/current/how_to_start.md index adcc576..227c250 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/how_to_start.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/how_to_start.md @@ -124,6 +124,6 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -## Wie geht es weiter? +## Wie geht es weiter Das war's! Nur drei einfache Schritte und Sie verfügen über ein praktisches Tool zur Visualisierung und Verwaltung Ihres Workflows. Jetzt können Sie mit Ihren Aufgaben arbeiten oder die Möglichkeiten von JavaScript Kanban weiter erkunden. \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/index.md b/i18n/de/docusaurus-plugin-content-docs/current/index.md index 494bd10..a8f5848 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/index.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/index.md @@ -68,6 +68,6 @@ import editor from '@site/static/img/js_kanban_editor.png'; className="img_border" /> -## Wie geht es weiter? +## Wie geht es weiter Jetzt können Sie Kanban in Ihrer Anwendung verwenden. Folgen Sie der Anleitung im Tutorial [How to start](how_to_start.md) für weitere Hinweise. \ No newline at end of file diff --git a/i18n/de/docusaurus-plugin-content-docs/current/news/whats_new.md b/i18n/de/docusaurus-plugin-content-docs/current/news/whats_new.md index a88cc67..58b3a8e 100644 --- a/i18n/de/docusaurus-plugin-content-docs/current/news/whats_new.md +++ b/i18n/de/docusaurus-plugin-content-docs/current/news/whats_new.md @@ -43,7 +43,7 @@ Veröffentlicht am 14. Oktober 2025 ### Salesforce-Integration -Ab Version 1.7 können Sie das JavaScript Kanban innerhalb der Salesforce-Umgebung nutzen. Weitere Informationen finden Sie im folgenden Leitfaden: [**Integration mit Salesforce**](guides/integration_with_salesforce.md). +Ab v1.7 können Sie das JavaScript Kanban innerhalb der Salesforce-Umgebung nutzen. Weitere Informationen finden Sie im folgenden Leitfaden: [**Integration mit Salesforce**](guides/integration_with_salesforce.md). Sie können auch unser [**GitHub-Beispiel**](https://github.com/DHTMLX/salesforce-lwc-demo) erkunden oder die [**Online-Demo**](https://dhtmlx-dev-ed.develop.lightning.force.com/) ausführen (*Login*: ***user***, *Passwort*: ***demo***). @@ -59,7 +59,7 @@ Sie können auch unser [**GitHub-Beispiel**](https://github.com/DHTMLX/salesforc - [`getColumnCards()`](api/methods/js_kanban_getcolumncards_method.md) - [`detach()`](api/internal/js_kanban_detach_method.md) -### Updates +### Aktualisierungen - #### Methoden @@ -162,7 +162,7 @@ Veröffentlicht am 13. November 2024 - Möglichkeit, den Editor als modales Fenster über die Eigenschaft [`editor.placement`](api/config/js_kanban_editor_config.md) anzuzeigen (siehe [**Beispiel**](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban)) - Möglichkeit, das Voting für eine Karte (mit dem Abstimmungs-Icon auf der Karte) über die Eigenschaft [`cardShape.votes.clickable`](api/config/js_kanban_cardshape_config.md) zu aktivieren (siehe [**Beispiel**](https://snippet.dhtmlx.com/en76xvi4?tag=kanban)) -### Updates +### Aktualisierungen - #### Eigenschaften @@ -259,7 +259,7 @@ Veröffentlicht am 28. November 2023 Veröffentlicht am 14. November 2023 -### Updates +### Aktualisierungen - Die Methode [`setLocale()`](api/methods/toolbar_setlocale_method.md) der Toolbar wurde um den Parameter ***api*** erweitert. @@ -274,7 +274,7 @@ Veröffentlicht am 14. November 2023 Veröffentlicht am 13. September 2023 -### Updates +### Aktualisierungen - Möglichkeit, die Komponente als ES-Modul zu importieren. @@ -326,7 +326,7 @@ Veröffentlicht am 15. Juni 2023 - [`GET /links`](api/provider/rest_routes/get_routes/js_kanban_get_links_route.md) - [`POST /links`](api/provider/rest_routes/post_routes/js_kanban_post_links_route.md) -### Updates +### Aktualisierungen - #### Eigenschaften @@ -400,7 +400,7 @@ Veröffentlicht am 21. März 2023 - [`currentUser`](api/config/js_kanban_currentuser_config.md) - [`links`](api/config/js_kanban_links_config.md) -### Updates +### Aktualisierungen - #### Methoden @@ -472,7 +472,7 @@ Veröffentlicht am 29. September 2022 - **Eigenschaften:** [`editorAutoSave`](api/config/js_kanban_editorautosave_config.md) -### Updates +### Aktualisierungen - #### Events @@ -542,7 +542,7 @@ Veröffentlicht am 29. Juni 2022 [`renderType`](api/config/js_kanban_rendertype_config.md) und [`scrollType`](api/config/js_kanban_scrolltype_config.md) -### Updates +### Aktualisierungen - #### Methoden @@ -609,7 +609,7 @@ Veröffentlicht am 15. Februar 2022 und [`moveRow()`](api/methods/js_kanban_moverow_method.md) -### Updates +### Aktualisierungen #### Eigenschaften diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md index 2b7cafa..4f5f837 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md @@ -47,6 +47,6 @@ board.addCard({ }); ~~~ -**변경 로그:** `$meta` 매개변수는 v1.3에 추가되었습니다 +**변경 로그:** `$meta` 매개변수는 v1.3에서 추가되었습니다 **관련 문서:** [`history`](api/config/js_kanban_history_config.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md index 483f629..5db60d9 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md @@ -34,7 +34,7 @@ new kanban.Kanban("#root", { }); ~~~ -**변경 내역:** 이 속성은 v1.2에 추가되었습니다. +**변경 로그:** 이 속성은 v1.2에서 추가되었습니다. **관련 문서:** [설정](guides/configuration.md#cards) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md index b48adaa..7802097 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md @@ -212,7 +212,7 @@ cardShape?: { **cardShape** 속성으로 카드 설정을 지정하지 않으면 위젯은 **defaultCardShape** 기본 매개변수 집합을 적용합니다! ::: -### 기본 구성 {#default-config} +### 기본 설정 {#default-config} ~~~jsx {} const defaultPriorities = [ @@ -324,16 +324,16 @@ new kanban.Kanban("#root", { ~~~ **변경 로그:** -- ***comments***, ***css*** 및 ***votes*** 매개변수가 v1.4에 추가됨 -- ***menu.items[0].label*** 매개변수가 v1.4에서 폐기되고 ***menu.items[0].text*** 매개변수로 대체됨 -- ***menu.items[0].items*** 매개변수가 v1.4에서 폐기되고 ***menu.items[0].data*** 매개변수로 대체됨 -- ***users.maxCount*** 및 ***votes.clickable*** 매개변수가 v1.6에 추가됨 +- ***comments***, ***css*** 및 ***votes*** 매개변수가 v1.4에서 추가됨 +- ***menu.items[0].label*** 매개변수가 v1.4에서 지원 중단되고 ***menu.items[0].text*** 매개변수로 대체됨 +- ***menu.items[0].items*** 매개변수가 v1.4에서 지원 중단되고 ***menu.items[0].data*** 매개변수로 대체됨 +- ***users.maxCount*** 및 ***votes.clickable*** 매개변수가 v1.6에서 추가됨 - ***menu.items[0].label*** 및 ***menu.items[0].items*** 매개변수가 v1.7에서 제거됨 - ***menu.items*** 함수가 업데이트되어 v1.7에서 **store** 매개변수가 **readonly**로 대체됨 **관련 문서:** [구성](guides/configuration.md#cards) -**관련 샘플:** +**관련 예제:** - [Kanban. Swimlanes, comments, votes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) - [Kanban. Highlighting outdated and active tasks](https://snippet.dhtmlx.com/7fvc3rr1?tag=kanban) - [Kanban. Styling cards](https://snippet.dhtmlx.com/qu6rpktk?tag=kanban) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md index b825fd3..faae47b 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md @@ -111,13 +111,13 @@ new kanban.Kanban("#root", { - 선택자가 충분한 컨텍스트(예: 상위 요소 및 내부 DHTMLX 클래스)를 포함하는지 - 인라인 스타일에 의해 속성이 덮어씌워졌다면 `!important`를 사용할 수 있습니다. -**변경 기록:** **css** 및 **overlay** 매개변수는 v1.4에 추가되었습니다. +**변경 로그:** **css** 및 **overlay** 매개변수는 v1.4에서 추가되었습니다. **관련 문서:** - [데이터 작업하기](guides/working_with_data.md) - [updateColumn()](api/methods/js_kanban_updatecolumn_method.md) -**관련 샘플:** +**관련 예제:** - [Kanban. 열 및 swimlane 제한](https://snippet.dhtmlx.com/2blo6hx8?tag=kanban) - [Kanban. 사용자 정의 메뉴를 통한 열 색상 변경](https://snippet.dhtmlx.com/fnlvd2g5?tag=kanban) - [Kanban. 특정 열로의 드래그 앤 드롭 비활성화](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md index af46218..1ba9a37 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md @@ -118,7 +118,7 @@ columnShape?: { - `columnState` - (object) 컬럼의 현재 상태. 형태는 위의 [`headerTemplate`](#parameters) 매개변수의 `columnState`와 동일합니다 - `confirmDeletion` - (선택 사항) 컬럼 삭제 확인 대화상자 표시 여부 -### 기본 구성 +### 기본 설정 ~~~jsx {} const getDefaultColumnMenuItems = ({ column, columnIndex, columns, readonly }) => [ @@ -219,18 +219,18 @@ new kanban.Kanban("#root", { }); ~~~ -**변경 기록:** -- ***css*** 매개변수가 v1.4에 추가됨 +**변경 로그:** +- ***css*** 매개변수가 v1.4에서 추가됨 - ***menu.items[0].label*** 매개변수가 v1.4에 ***menu.items[0].text*** 매개변수로 대체됨 - ***menu.items[0].items*** 매개변수가 v1.4에 ***menu.items[0].data*** 매개변수로 대체됨 -- ***fixedHeaders*** 매개변수가 v1.5에 추가됨 -- ***headerTemplate*** 및 ***collapsedTemplate*** 매개변수가 v1.6에 추가됨 -- ***menu.items[0].label*** 및 ***menu.items[0].items*** 매개변수가 v1.7에 제거됨 +- ***fixedHeaders*** 매개변수가 v1.5에서 추가됨 +- ***headerTemplate*** 및 ***collapsedTemplate*** 매개변수가 v1.6에서 추가됨 +- ***menu.items[0].label*** 및 ***menu.items[0].items*** 매개변수가 v1.7에서 제거됨 - ***menu.items*** 함수가 업데이트되어 v1.7에서 **store** 매개변수가 **readonly**로 대체됨 **관련 문서:** [구성](guides/configuration.md) -**관련 샘플:** +**관련 예제:** - [Kanban. 사용자 정의 메뉴를 통한 컬럼 색상 변경](https://snippet.dhtmlx.com/fnlvd2g5?tag=kanban) - [Kanban. 고정 헤더, 지연 렌더링 및 컬럼 스크롤](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) - [Kanban. 컬럼 헤더 템플릿](https://snippet.dhtmlx.com/gq2saz9c?tag=kanban) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md index c116299..a5426be 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md @@ -30,7 +30,7 @@ editor?: { - `"sidebar"` - 편집기를 사이드바로 표시 - `"modal"` - 편집기를 모달 창으로 표시 -### 기본 구성 +### 기본 설정 ~~~jsx {} editor: { @@ -57,6 +57,6 @@ new kanban.Kanban("#root", { }); ~~~ -**변경 기록:** `placement` 매개변수는 v1.6에서 추가되었습니다. +**변경 로그:** `placement` 매개변수는 v1.6에서 추가되었습니다. -**관련 샘플:** [Kanban. 모달 창에서 편집기 열기](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban) \ No newline at end of file +**관련 예제:** [Kanban. 모달 창에서 편집기 열기](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md index 396ed83..9a2ecf2 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md @@ -9,7 +9,7 @@ description: DHTMLX Kanban의 editorAutoSave 구성 API를 읽어보세요. 카

editorAutoSave

:::danger -버전 1.3부터 `editorAutoSave` 속성은 **더 이상 사용되지 않습니다**. "autosave" 모드를 관리하려면 [`editor`](api/config/js_kanban_editor_config.md) 속성을 사용하세요! +v1.3부터 `editorAutoSave` 속성은 **지원 중단되었습니다**. "autosave" 모드를 관리하려면 [`editor`](api/config/js_kanban_editor_config.md) 속성을 사용하세요! ::: ### 설명 @@ -26,7 +26,7 @@ description: DHTMLX Kanban의 editorAutoSave 구성 API를 읽어보세요. 카 editorAutoSave?: boolean; // (기본값은 true) ~~~ -### 기본 구성 +### 기본 설정 ~~~jsx {} editorAutoSave: true diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md index 34057fe..f963d46 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md @@ -363,7 +363,7 @@ interface UploadEvent extends PointerEvent { `editorShape` 속성을 통해 편집기 설정을 지정하지 않으면, 위젯은 **defaultEditorShape** 기본 설정 매개변수 집합을 적용합니다! ::: -### 기본 구성 {#default-config} +### 기본 설정 {#default-config} ~~~jsx {} const defaultPriorities = [ @@ -421,7 +421,7 @@ const defaultEditorShape = [ ]; ~~~ -### 예시 +### 예제 ~~~jsx {6-33,38} const users = [ // 사용자 데이터 @@ -466,7 +466,7 @@ new kanban.Kanban("#root", { }); ~~~ -**변경 이력:** +**변경 로그:** - v1.3에서 ***dateRange*** 유형 추가 - v1.4에서 ***comments*** 및 ***links*** 편집기 유형과 ***format*** 매개변수 추가 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md index 06d3f09..0f41934 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md @@ -32,7 +32,7 @@ getCardHeight?: (cardShape: object, card: object, cardWidth: number) => number; 함수는 카드의 예상 높이(픽셀 단위)를 나타내는 숫자를 반환해야 합니다. -### 기본 구성 {#default-config} +### 기본 설정 {#default-config} 기본적으로 위젯은 [`cardShape`](api/config/js_kanban_cardshape_config.md)에 선언된 표시 필드와 카드에 저장된 데이터를 기반으로 카드 높이를 추정하는 내장 함수를 사용합니다. 이 기본값은 내장 카드 레이아웃을 사용하는 보드에서 작동합니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md index ae2a6c4..4a9d207 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md @@ -11,7 +11,7 @@ description: DHTMLX Kanban의 history 구성 API를 읽어보세요. 변경 이 @short: 선택 사항입니다. 변경 이력 관리를 활성화/비활성화합니다. :::info -`history` 속성을 사용하여 Kanban의 변경 이력 관리를 활성화하거나 비활성화할 수 있습니다. 이를 **false**로 설정하면 API 및 툴바 컨트롤을 통해 이력 관리를 할 수 없습니다. +`history` 속성을 사용하여 Kanban의 변경 이력 관리를 활성화하거나 비활성화할 수 있습니다. 이를 **false**로 설정하면 API 및 Toolbar 컨트롤을 통해 이력 관리를 할 수 없습니다. ::: :::tip @@ -24,7 +24,7 @@ description: DHTMLX Kanban의 history 구성 API를 읽어보세요. 변경 이 history?: boolean; ~~~ -### 기본 구성 +### 기본 설정 ~~~jsx {} history: true @@ -41,6 +41,6 @@ new kanban.Kanban("#root", { }); ~~~ -**변경 로그:** 이 속성은 v1.3에 추가되었습니다. +**변경 로그:** 이 속성은 v1.3에서 추가되었습니다. **관련 문서:** [`undo()`](api/methods/js_kanban_undo_method.md) 및 [`redo()`](api/methods/js_kanban_redo_method.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_readonly_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_readonly_config.md index 7b9a49a..f97fce1 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_readonly_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_readonly_config.md @@ -37,7 +37,7 @@ readonly?: { - `select` - (선택 사항) 카드의 **선택** 기능을 활성화/비활성화합니다. - `dnd` - (선택 사항) 카드의 **드래그** 기능을 활성화/비활성화합니다. -### 기본 구성 +### 기본 설정 ~~~jsx {} readonly: false // readonly 모드가 비활성화됨 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md index 476631d..dace445 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md @@ -27,7 +27,7 @@ renderType?: "default" | "lazy"; `cardHeight`가 설정되지 않은 경우, 위젯은 [`cardShape`](api/config/js_kanban_cardshape_config.md)를 기반으로 카드 높이를 실험적으로 추정합니다. 커스텀 [`cardTemplate`](api/config/js_kanban_cardtemplate_config.md)을 사용하는 보드의 경우, 대신 커스텀 [`getCardHeight`](api/config/js_kanban_getcardheight_config.md) 함수를 제공하세요. ::: -### 기본 구성 +### 기본 설정 ~~~jsx {} renderType: "default" diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md index a26195b..a8499a3 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md @@ -56,7 +56,7 @@ new kanban.Kanban("#root", { }); ~~~ -**변경 내역:** ***css*** 매개변수는 v1.4에서 추가되었습니다. +**변경 로그:** ***css*** 매개변수는 v1.4에서 추가되었습니다. **관련 문서:** - [데이터 작업하기](guides/working_with_data.md) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md index 935ad96..643f6cd 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md @@ -90,7 +90,7 @@ rowShape?: { - `css` - 조건에 따라 행에 적용할 CSS 클래스를 반환하는 함수 - `confirmDeletion` - (선택 사항) 행 삭제를 사용자에게 확인 또는 취소할 수 있는 **확인 대화상자** 표시 여부 -### 기본 구성 +### 기본 설정 ~~~jsx {} const getDefaultRowMenuItems = ({ row, rowIndex, rows, readonly }) => [ @@ -176,10 +176,10 @@ new kanban.Kanban("#root", { }); ~~~ -**변경 사항:** -- ***css*** 매개변수가 v1.4에 추가되었습니다. -- ***menu.items[0].label*** 매개변수는 v1.4에서 폐지되고 ***menu.items[0].text*** 매개변수로 대체되었습니다. -- ***menu.items[0].items*** 매개변수는 v1.4에서 폐지되고 ***menu.items[0].data*** 매개변수로 대체되었습니다. +**변경 로그:** +- ***css*** 매개변수가 v1.4에서 추가되었습니다. +- ***menu.items[0].label*** 매개변수는 v1.4에서 지원 중단되고 ***menu.items[0].text*** 매개변수로 대체되었습니다. +- ***menu.items[0].items*** 매개변수는 v1.4에서 지원 중단되고 ***menu.items[0].data*** 매개변수로 대체되었습니다. - ***menu.items[0].label***과 ***menu.items[0].items*** 매개변수는 v1.7에서 제거되었습니다. - ***menu.items*** 함수가 업데이트되어 v1.7에서 **store** 매개변수가 **readonly**로 대체되었습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md index a45c372..db12b8e 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md @@ -20,7 +20,7 @@ scrollType?: "default" | "column"; `scrollType: "column"` 설정을 사용하면 각 열을 개별적으로 스크롤할 수 있습니다. ::: -### 기본 구성 +### 기본 설정 ~~~jsx {} scrollType: "default" diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md index 81f38ed..205314c 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md @@ -35,4 +35,4 @@ new kanban.Toolbar("#toolbar", { **관련 문서:** [구성](guides/configuration.md#toolbar) -**관련 샘플:** [Kanban. 사용자 정의 툴바](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) \ No newline at end of file +**관련 샘플:** [Kanban. 사용자 정의 Toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md index 4ca3591..9751285 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md @@ -1,7 +1,7 @@ --- sidebar_label: items title: Toolbar items Config API -description: DHTMLX Kanban의 Toolbar items 구성 문서를 읽어보세요. 툴바 버튼, 검색, 실행 취소 및 컨트롤을 구성하는 방법을 알아볼 수 있습니다. +description: DHTMLX Kanban의 Toolbar items 구성 문서를 읽어보세요. Toolbar 버튼, 검색, 실행 취소 및 컨트롤을 구성하는 방법을 알아볼 수 있습니다. --- # items @@ -178,11 +178,11 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**변경 내역:** +**변경 로그:** -- *"Undo"* 및 *"Redo"* 컨트롤이 v1.3에 추가되었습니다. +- *"Undo"* 및 *"Redo"* 컨트롤이 v1.3에서 추가되었습니다. - **sort** 컨트롤의 ***items.options[0].label*** 매개변수가 v1.4에서 ***items.options[0].text*** 매개변수로 변경되었습니다. -- **"search"** 컨트롤의 ***items.resultTemplate*** 매개변수가 v1.6에 추가되었습니다. +- **"search"** 컨트롤의 ***items.resultTemplate*** 매개변수가 v1.6에서 추가되었습니다. **관련 문서:** [구성](guides/configuration.md#toolbar) 및 [커스터마이징](guides/customization.md#custom-toolbar) diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md index 1f41398..1d2557a 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md @@ -20,7 +20,7 @@ description: DHTMLX Kanban의 Toolbar locale 구성 API를 읽어보세요. Tool locale?: object; ~~~ -### 기본 구성 +### 기본 설정 기본적으로 Toolbar는 [**영어**](guides/localization.md#default-locale) locale을 사용합니다. 사용자 지정 locale로 설정할 수도 있습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md index 1bedc39..3137874 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md @@ -48,4 +48,4 @@ board.api.on("add-column", (obj) => { }); ~~~ -**변경 로그**: v1.1 버전에서 **id**, **before**, **column** 매개변수가 추가되었습니다. \ No newline at end of file +**변경 로그:** v1.1에서 **id**, **before**, **column** 매개변수가 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md index b8ae2ca..bdbc2a9 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md @@ -55,4 +55,4 @@ board.api.on("add-comment", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md index 707c649..62b3d56 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md @@ -47,4 +47,4 @@ board.api.on("add-link", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4에 추가되었습니다 \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md index 2a6dea3..b680153 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md @@ -48,4 +48,4 @@ board.api.on("add-row", (obj) => { }); ~~~ -**변경 로그**: **id**, **before**, **row** 매개변수는 v1.1에서 추가되었습니다. \ No newline at end of file +**변경 로그:** **id**, **before**, **row** 매개변수는 v1.1에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md index d7c2b46..f7a0969 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md @@ -44,4 +44,4 @@ board.api.on("add-vote", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md index d118c9d..54803e3 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md @@ -46,4 +46,4 @@ board.api.on("delete-comment", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md index b62d9edf..a6498eb 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md @@ -45,4 +45,4 @@ board.api.on("delete-link", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4에 추가되었습니다 \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md index 726662d..a86d2d8 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md @@ -44,4 +44,4 @@ board.api.on("delete-vote", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md index dcbd122..4d01f39 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md @@ -50,6 +50,6 @@ board.api.on("drag-card", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4 버전에 추가되었습니다. +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다. **관련 샘플:** [Kanban. 특정 열에 대한 드래그 앤 드롭 비활성화](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md index 7ff4fe1..fdb9efa 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md @@ -46,4 +46,4 @@ board.api.on("duplicate-card", (obj) => { }); ~~~ -**변경 사항:** `select` 매개변수는 v1.5.10에 추가되었습니다. \ No newline at end of file +**변경 로그:** `select` 매개변수는 v1.5.10에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md index aef6ea9..7d92b56 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md @@ -50,6 +50,6 @@ board.api.on("end-drag-card", (obj) => { }); ~~~ -**변경 내역:** 이 이벤트는 v1.4에서 추가되었습니다. +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다. **관련 샘플:** [Kanban. 특정 열에 드래그 앤 드롭 비활성화](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md index 2cdf076..35f8c4d 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md @@ -46,4 +46,4 @@ board.api.on("move-column", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.1에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.1에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md index b351a60..ec68086 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md @@ -34,4 +34,4 @@ board.api.on("redo", () => { }); ~~~ -**변경 로그**: 이 이벤트는 v1.7에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.7에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md index 84b0a94..dcd8f32 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md @@ -46,4 +46,4 @@ board.api.on("scroll", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.2에 추가되었습니다 \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.2에서 추가되었습니다 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md index 6d46731..1dd3c24 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md @@ -46,7 +46,7 @@ board.api.intercept("set-edit", (ev) => { ~~~ **변경 로그:** - - 이벤트는 v1.2에 추가되었습니다. - - ***eventSource*** 매개변수는 v1.6에 추가되었습니다. + - 이벤트는 v1.2에서 추가되었습니다. + - ***eventSource*** 매개변수는 v1.6에서 추가되었습니다. -**관련 샘플:** [Kanban. 작업을 더블 클릭하여 에디터 열기](https://snippet.dhtmlx.com/zh4d9pdb?tag=kanban) \ No newline at end of file +**관련 예제:** [Kanban. 작업을 더블 클릭하여 에디터 열기](https://snippet.dhtmlx.com/zh4d9pdb?tag=kanban) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md index bb3f5fb..f1e6cad 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md @@ -50,4 +50,4 @@ board.api.on("set-sort", (obj) => { }); ~~~ -**변경 이력:** 이 이벤트는 v1.2에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.2에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md index f3b5d37..fb81f91 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md @@ -50,6 +50,6 @@ board.api.on("start-drag-card", (obj) => { }); ~~~ -**변경 로그:** 이 이벤트는 v1.4에 추가되었습니다. +**변경 로그:** 이 이벤트는 v1.4에서 추가되었습니다. **관련 샘플:** [Kanban. 특정 열에 대한 드래그 앤 드롭 비활성화](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md index 66ae537..8126814 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md @@ -34,4 +34,4 @@ board.api.on("undo", () => { }); ~~~ -**변경 로그**: 이 이벤트는 v1.7에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 이벤트는 v1.7에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md index b76a0ac..c4ea389 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md @@ -53,6 +53,6 @@ board.api.on("update-card", (obj) => { }); ~~~ -**변경 로그**: -- **id** 및 **card** 매개변수가 v1.1에 추가됨 -- **replace** 매개변수가 v1.3에 추가됨 \ No newline at end of file +**변경 로그:** +- **id** 및 **card** 매개변수가 v1.1에서 추가됨 +- **replace** 매개변수가 v1.3에서 추가됨 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md index 03fa349..9869231 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md @@ -53,6 +53,6 @@ board.api.on("update-column", (obj) => { }); ~~~ -**변경 로그**: +**변경 로그:** - v1.1에서 **id**와 **column** 매개변수가 추가되었습니다. - v1.3에서 **replace** 매개변수가 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md index 3d2069e..51d8891 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md @@ -53,6 +53,6 @@ board.api.on("update-row", (obj) => { }); ~~~ -**변경 내역**: -- **id** 및 **row** 매개변수는 v1.1에 추가되었습니다. -- **replace** 매개변수는 v1.3에 추가되었습니다. \ No newline at end of file +**변경 로그:** +- **id** 및 **row** 매개변수는 v1.1에서 추가되었습니다. +- **replace** 매개변수는 v1.3에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md index bf40b93..ba001de 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md @@ -36,4 +36,4 @@ board.api.on("move-card", ({ id, columnId }) => { board.api.detach("move"); ~~~ -**변경 로그**: 내부 메서드는 v1.7에 추가되었습니다. \ No newline at end of file +**변경 로그:** 내부 메서드는 v1.7에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md index 5a4055a..0142b12 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md @@ -50,4 +50,4 @@ board.api.intercept("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**변경 로그**: **config.tag** 및 **config.intercept** 매개변수는 v1.7에 추가되었습니다 \ No newline at end of file +**변경 로그:** **config.tag** 및 **config.intercept** 매개변수는 v1.7에서 추가되었습니다 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md index 94c9ead..0e81f3e 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md @@ -39,4 +39,4 @@ const board = new kanban.Kanban("#root", { board.export.json(); // => { "cards": [...], "columns": [...], "rows": [] } ~~~ -**변경 로그:** 이 메서드는 v1.3 버전에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.3에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md index dbaac24..84c27f7 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md @@ -48,4 +48,4 @@ board.api.on("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**변경 로그**: **config.tag** 및 **config.intercept** 매개변수는 v1.7에 추가되었습니다. \ No newline at end of file +**변경 로그:** **config.tag** 및 **config.intercept** 매개변수는 v1.7에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md index 0e562c4..4bb3ef0 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md @@ -51,4 +51,4 @@ board.addColumn({ }); ~~~ -**변경 로그**: **id**, **column**, **before** 매개변수는 v1.1 버전에서 추가되었습니다. \ No newline at end of file +**변경 로그:** **id**, **column**, **before** 매개변수는 v1.1에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md index 8d7cbef..a7f6fe8 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md @@ -53,4 +53,4 @@ board.addComment({ }); ~~~ -**변경 로그:** 이 메서드는 v1.4에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.4에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md index 5fb63ec..3dc4178 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md @@ -43,4 +43,4 @@ board.addLink({ }); ~~~ -**변경 로그:** 이 메서드는 v1.5에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.5에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md index f81c164..a1f64bd 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md @@ -50,4 +50,4 @@ board.addRow({ }); ~~~ -**변경 로그**: **id**, **row**, **before** 매개변수는 v1.1에서 추가되었습니다. \ No newline at end of file +**변경 로그:** **id**, **row**, **before** 매개변수는 v1.1에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md index 7ff9ce4..d9ea95f 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md @@ -33,4 +33,4 @@ const board = new kanban.Kanban("#root", { board.deleteLink({ id: 5 }); ~~~ -**변경 로그:** 이 메서드는 v1.5에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.5에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md index 4368880..411c0ef 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md @@ -42,4 +42,4 @@ board.duplicateCard({ }); ~~~ -**변경 로그:** `select` 매개변수는 v1.5.10 버전에 추가되었습니다. \ No newline at end of file +**변경 로그:** `select` 매개변수는 v1.5.10에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md index 70335a2..c5616f8 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md @@ -37,4 +37,4 @@ const cards_data = board.getColumnCards(1); console.log(cards_data); ~~~ -**변경 로그**: 이 메서드는 v1.7에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.7에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md index 7f06b5a..fd55d04 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md @@ -39,4 +39,4 @@ board.moveColumn({ }); ~~~ -**변경 로그:** 이 메서드는 v1.1에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.1에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md index c90505e..6380815 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md @@ -40,4 +40,4 @@ board.moveRow({ }); ~~~ -**변경 이력:** 이 메서드는 v1.1에 추가되었습니다 \ No newline at end of file +**변경 로그:** 이 메서드는 v1.1에서 추가되었습니다 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md index b3477da..3150718 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md @@ -32,4 +32,4 @@ const board = new kanban.Kanban("#root", { board.redo(); ~~~ -**변경 로그:** 이 메서드는 v1.3에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.3에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md index 35d3e54..ac4c094 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md @@ -46,4 +46,4 @@ board.scroll({ }); ~~~ -**변경 로그:** 이 메서드는 v1.2에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.2에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md index 5a4c411..c65ef74 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md @@ -33,7 +33,7 @@ const board = new kanban.Kanban("#root", { cards }); -// 툴바 생성 +// Toolbar 생성 const toolbar = new kanban.Toolbar("#toolbar", { api: board.api }); // Kanban의 새로운 구성 매개변수 지정 @@ -48,6 +48,6 @@ board.setConfig({ /* 기타 매개변수 */ }); -// 툴바의 새로운 구성 매개변수 지정 +// Toolbar의 새로운 구성 매개변수 지정 toolbar.setConfig({ items: ["search", "spacer", "sort"] }); ~~~ \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md index 154f82a..e81535c 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md @@ -38,4 +38,4 @@ const board = new kanban.Kanban("#root", { board.setEdit({ cardId: 1 }); ~~~ -**변경 로그:** 이 메서드는 v1.2에 추가되었습니다 \ No newline at end of file +**변경 로그:** 이 메서드는 v1.2에서 추가되었습니다 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md index acd6ab2..cd1ba2a 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md @@ -39,6 +39,6 @@ board.setLocale(kanban.locales["de"]); board.setLocale(); // 또는 board.setLocale(null); ~~~ -**변경 내역:** 이 메서드는 v1.2에서 업데이트되었습니다. +**변경 로그:** 이 메서드는 v1.2에서 업데이트되었습니다. **관련 문서:** [Localization](guides/localization.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md index 2465883..d1c7b79 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md @@ -53,4 +53,4 @@ board.setSort({ }); ~~~ -**변경 로그:** 이 메서드는 v1.2에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.2에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md index 0fd81fc..2531b9b 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md @@ -32,4 +32,4 @@ const board = new kanban.Kanban("#root", { board.undo(); ~~~ -**변경 로그:** 이 메서드는 v1.3에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.3에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md index b4c499c..c9b363f 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md @@ -51,6 +51,6 @@ board.updateCard({ }); ~~~ -**변경 로그**: -- **id** 및 **card** 매개변수가 v1.1에 추가됨 -- **replace** 매개변수가 v1.3에 추가됨 \ No newline at end of file +**변경 로그:** +- **id** 및 **card** 매개변수가 v1.1에서 추가됨 +- **replace** 매개변수가 v1.3에서 추가됨 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md index 28f8a80..53573ff 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md @@ -51,6 +51,6 @@ board.updateColumn({ }); ~~~ -**변경 로그**: +**변경 로그:** - **id** 및 **column** 매개변수는 v1.1에서 추가됨 - **replace** 매개변수는 v1.3에서 추가됨 \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md index 6533590..6eefdd9 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md @@ -59,4 +59,4 @@ board.updateComment({ }); ~~~ -**변경 로그:** 이 메서드는 v1.4에 추가되었습니다. \ No newline at end of file +**변경 로그:** 이 메서드는 v1.4에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md index 4535a22..17284f7 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md @@ -50,6 +50,6 @@ board.updateRow({ }); ~~~ -**변경 로그**: -- **id** 및 **row** 매개변수는 v1.1에 추가되었습니다. -- **replace** 매개변수는 v1.3에 추가되었습니다. \ No newline at end of file +**변경 로그:** +- **id** 및 **row** 매개변수는 v1.1에서 추가되었습니다. +- **replace** 매개변수는 v1.3에서 추가되었습니다. \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md index f62b5f6..3699ad7 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md @@ -38,6 +38,6 @@ board.setLocale(de); toolbar.setLocale(de); ~~~ -**변경 내역:** **api** 매개변수는 v1.6에서 더 이상 권장되지 않습니다. +**변경 로그:** **api** 매개변수는 v1.6에서 지원 중단되었습니다. **관련 문서:** [Localization](guides/localization.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md index 0309927..e0fee9b 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md @@ -1,10 +1,10 @@ --- -sidebar_label: 이벤트 버스 메서드 +sidebar_label: Event Bus 메서드 title: Event Bus Methods Overview -description: DHTMLX Kanban의 이벤트 버스 메서드 개요를 확인하세요. 보드 이벤트를 발생시키고, 가로채고, 처리하는 내부 메서드를 찾아보세요. +description: DHTMLX Kanban의 Event Bus 메서드 개요를 확인하세요. 보드 이벤트를 발생시키고, 가로채고, 처리하는 내부 메서드를 찾아보세요. --- -# 이벤트 버스 메서드 +# Event Bus 메서드 | 이름 | 설명 | | -------------------------------------------------------- | ----------------------------------------------------------- | diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/main_overview.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/main_overview.md index 573a259..8d85710 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/main_overview.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/main_overview.md @@ -1,7 +1,7 @@ --- sidebar_label: API 개요 title: Kanban API 개요 -description: DHTMLX Kanban API 개요를 확인하세요. 구성 참조, 메서드, 이벤트, 툴바 API 및 개발자 문서를 찾아보세요. +description: DHTMLX Kanban API 개요를 확인하세요. 구성 참조, 메서드, 이벤트, Toolbar API 및 개발자 문서를 찾아보세요. --- # API 개요 @@ -14,7 +14,7 @@ new kanban.Kanban("#root", { }); ~~~ -**매개변수**: +**매개변수:** - HTML 컨테이너 (HTML 컨테이너의 ID) - 구성 매개변수 객체 ([여기서 확인](#kanban-properties)) @@ -27,7 +27,7 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**매개변수**: +**매개변수:** - HTML 컨테이너 (HTML 컨테이너의 ID) - 구성 매개변수 객체 ([여기서 확인](#toolbar-properties)) @@ -74,7 +74,7 @@ new kanban.Toolbar("#toolbar", { ## Kanban 내부 API -### 이벤트 버스 메서드 {#event-bus-methods} +### Event Bus 메서드 {#event-bus-methods} | 이름 | 설명 | | ---------------------------------------------------------- | ---------------------------------------------------------- | diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md index d475efb..837e9f0 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md @@ -1,10 +1,10 @@ --- -sidebar_label: 툴바 메서드 개요 -title: 툴바 메서드 개요 -description: DHTMLX Kanban의 툴바 메서드 개요를 확인하세요. Toolbar를 구성, 로컬라이즈 및 삭제하는 메서드를 찾아보세요. +sidebar_label: Toolbar 메서드 개요 +title: Toolbar 메서드 개요 +description: DHTMLX Kanban의 Toolbar 메서드 개요를 확인하세요. Toolbar를 구성, 로컬라이즈 및 삭제하는 메서드를 찾아보세요. --- -# 툴바 메서드 개요 +# Toolbar 메서드 개요 | 이름 | 설명 | | -------------------------------------------------------- | ------------------------------------------------------- | diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md index 0a293a6..4b01ba0 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md @@ -1,10 +1,10 @@ --- -sidebar_label: 툴바 속성 개요 -title: 툴바 속성 개요 -description: DHTMLX Kanban의 툴바 속성 개요를 확인하세요. Toolbar items 및 API에 대한 구성 속성을 찾아보세요. +sidebar_label: Toolbar 속성 개요 +title: Toolbar 속성 개요 +description: DHTMLX Kanban의 Toolbar 속성 개요를 확인하세요. Toolbar items 및 API에 대한 구성 속성을 찾아보세요. --- -# 툴바 속성 개요 +# Toolbar 속성 개요 **Toolbar**를 구성하려면 [설정](guides/configuration.md#toolbar) 섹션을 참조하세요. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md index dcf1093..8f900d5 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md @@ -44,6 +44,6 @@ Promise.all([ }); ~~~ -**변경 로그:** 이 메서드는 v1.5에 추가되었습니다. +**변경 로그:** 이 메서드는 v1.5에서 추가되었습니다. **관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md index dd21a2c..740c43b 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md @@ -55,6 +55,6 @@ Promise.all([ }); ~~~ -**변경 로그:** 이 메서드는 v1.3 버전에 추가되었습니다. +**변경 로그:** 이 메서드는 v1.3에서 추가되었습니다. **관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md index cb152f8..6ae4400 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md @@ -41,4 +41,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md index 8d7bd52..88d99e5 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md @@ -30,4 +30,4 @@ description: DHTMLX Kanban의 DELETE /cards REST route API를 확인하세요. --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md index a361cf8..f952762 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md @@ -40,4 +40,4 @@ HTTP 상태 코드는 요청이 성공했는지(response.status == 200) 실패 --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md index 62454b2..a7b7898 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md @@ -30,4 +30,4 @@ description: DHTMLX Kanban의 DELETE /columns REST route API를 확인하세요. --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md index 7c64b00..8fc4b4e 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md @@ -30,7 +30,7 @@ description: DHTMLX Kanban의 DELETE /links REST route API를 확인하세요. --- -**관련 문서**: +**관련 문서:** - [서버 작업하기](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md index b49df0b..c0c4c90 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md @@ -30,4 +30,4 @@ description: DHTMLX Kanban의 DELETE /rows REST route API를 확인하세요. --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md index 8742ed3..3775799 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md @@ -76,6 +76,6 @@ HTTP 상태 코드는 요청 성공 여부를 나타내며, 성공 시 (response --- -**관련 문서**: +**관련 문서:** - [서버와 작업하기](guides/working_with_server.md) - [getCards()](api/provider/rest_methods/js_kanban_getcards_method.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md index 484196c..b019724 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md @@ -53,6 +53,6 @@ HTTP 상태 코드는 요청 성공 시 (response.status == 200), 실패 시 (re --- -**관련 문서**: +**관련 문서:** - [서버와 작업하기](guides/working_with_server.md) - [getColumns()](api/provider/rest_methods/js_kanban_getcolumns_method.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md index 6395a85..4dcaf35 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md @@ -45,6 +45,6 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: +**관련 문서:** - [서버와 작업하기](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md index c8325d5..c46c3c6 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md @@ -43,6 +43,6 @@ HTTP 상태 코드는 요청 성공(response.status == 200) 또는 실패(respon --- -**관련 문서**: +**관련 문서:** - [서버와 작업하기](guides/working_with_server.md) - [getRows()](api/provider/rest_methods/js_kanban_getrows_method.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md index 3a6ae9e..7a0edbe 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md @@ -33,4 +33,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md index a0de336..d050ec0 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md @@ -48,6 +48,6 @@ HTTP 상태 코드는 요청 성공 시 (response.status == 200), 실패 시 (re --- -**관련 문서**: +**관련 문서:** - [서버와 작업하기](guides/working_with_server.md) - [getUsers()](api/provider/rest_methods/js_kanban_getusers_method.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md index f0a7f70..6138877 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md @@ -30,7 +30,7 @@ description: DHTMLX Kanban의 POST /cards/{cardId}/comments REST route API를 } ~~~ -### 응답 (Response) +### 응답 이 경로는 새로 추가된 댓글의 ID가 포함된 json 객체를 반환합니다. @@ -46,4 +46,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md index 0445332..484917f 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md @@ -48,4 +48,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md index 92ab2d7..288c47f 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md @@ -32,4 +32,4 @@ HTTP 상태 코드는 요청이 성공했는지(response.status == 200) 실패 --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md index ae3b4f8..f767bf6 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md @@ -44,4 +44,4 @@ HTTP 상태 코드는 요청이 성공했는지 (response.status == 200) 실패 --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md index 64dca7e..afc4b2c 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md @@ -48,7 +48,7 @@ HTTP 상태 코드는 요청이 성공했는지 (response.status == 200) 실패 --- -**관련 문서**: +**관련 문서:** - [서버 작업하기](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md index a4ffa5a..44e3c41 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md @@ -46,4 +46,4 @@ HTTP 상태 코드는 요청이 성공했는지 (response.status == 200) 또는 --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md index e602ab2..219f84c 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md @@ -56,4 +56,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md index 97c650b..1da5a86 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md @@ -53,4 +53,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md index 0de2a42..b807117 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md @@ -90,4 +90,4 @@ HTTP 상태 코드는 요청이 성공했는지(response.status == 200) 실패 --- -**관련 문서**: [서버 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md index 698a5ff..acdf945 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md @@ -68,4 +68,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md index 23879f7..dd7ab65 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md @@ -52,4 +52,4 @@ HTTP 상태 코드는 요청의 성공 여부를 나타냅니다 (response.statu --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md index e75686b..d072be9 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md @@ -50,4 +50,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md index c7227ba..911558a 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md @@ -52,4 +52,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md index bfe3bbc..25384a9 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md @@ -50,4 +50,4 @@ HTTP 상태 코드는 요청 성공 여부를 나타냅니다 (response.status = --- -**관련 문서**: [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file +**관련 문서:** [서버와 작업하기](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/guides/configuration.md b/i18n/ko/docusaurus-plugin-content-docs/current/guides/configuration.md index 0bb33a8..c1790b8 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/guides/configuration.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/guides/configuration.md @@ -1,7 +1,7 @@ --- sidebar_label: 구성 title: Kanban 구성 가이드 -description: DHTMLX Kanban 구성 가이드를 확인하세요. 카드, 열, 행, 에디터, 툴바 및 기타 보드 요소를 설정하는 방법을 알아보세요. +description: DHTMLX Kanban 구성 가이드를 확인하세요. 카드, 열, 행, 에디터, Toolbar 및 기타 보드 요소를 설정하는 방법을 알아보세요. --- # 구성 @@ -493,7 +493,7 @@ new kanban.Kanban("#root", { ## 변경 기록 -Kanban은 카드 작업을 추적하고 툴바에 실행 취소 및 다시 실행 컨트롤을 제공합니다. [`history`](api/config/js_kanban_history_config.md) 속성으로 이 동작을 비활성화할 수 있습니다. +Kanban은 카드 작업을 추적하고 Toolbar에 실행 취소 및 다시 실행 컨트롤을 제공합니다. [`history`](api/config/js_kanban_history_config.md) 속성으로 이 동작을 비활성화할 수 있습니다. 다음 코드 스니펫은 기록 추적을 비활성화합니다: @@ -509,11 +509,11 @@ new kanban.Kanban("#root", { 개별 작업을 기록에서 제외하려면 메서드나 이벤트에 [`$meta`](api/common/js_kanban_meta_parameter.md) 파라미터를 전달하세요. ::: -## 툴바 {#toolbar} +## Toolbar {#toolbar} -Kanban 툴바는 검색창, 정렬 컨트롤, 컬럼 및 행 추가 컨트롤을 제공합니다. `kanban.Toolbar()` 생성자를 사용해 별도의 컨테이너에서 툴바를 초기화하세요. +Kanban Toolbar는 검색창, 정렬 컨트롤, 컬럼 및 행 추가 컨트롤을 제공합니다. `kanban.Toolbar()` 생성자를 사용해 별도의 컨테이너에서 Toolbar를 초기화하세요. -다음 코드 스니펫은 Kanban 인스턴스에 바인딩된 툴바를 생성합니다: +다음 코드 스니펫은 Kanban 인스턴스에 바인딩된 Toolbar를 생성합니다: ~~~jsx {13} // Kanban 생성 @@ -531,7 +531,7 @@ const board = new kanban.Kanban("#root", { new kanban.Toolbar("#toolbar", { api: board.api }); ~~~ -[`items`](api/config/toolbar_items_config.md) 속성으로 툴바 컨트롤을 표시, 숨김 또는 커스터마이즈할 수 있습니다. 다음 코드 스니펫은 커스텀 검색바, 실행 취소/다시 실행 컨트롤, 커스텀 정렬, 컬럼 및 행 컨트롤을 설정합니다: +[`items`](api/config/toolbar_items_config.md) 속성으로 Toolbar 컨트롤을 표시, 숨김 또는 커스터마이즈할 수 있습니다. 다음 코드 스니펫은 커스텀 검색바, 실행 취소/다시 실행 컨트롤, 커스텀 정렬, 컬럼 및 행 컨트롤을 설정합니다: ~~~jsx {6-51} // Kanban 생성 @@ -594,6 +594,6 @@ new kanban.Toolbar("#toolbar", { ## 예제 -다음 스니펫에서는 Kanban의 카드, 에디터, 툴바를 구성하는 방법을 확인할 수 있습니다: +다음 스니펫에서는 Kanban의 카드, 에디터, Toolbar를 구성하는 방법을 확인할 수 있습니다: diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/guides/customization.md b/i18n/ko/docusaurus-plugin-content-docs/current/guides/customization.md index 2462318..5052bad 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/guides/customization.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/guides/customization.md @@ -12,7 +12,7 @@ description: DHTMLX Kanban 사용자 정의 가이드를 활용하여 문서화 - [`cardShape.menu`](api/config/js_kanban_cardshape_config.md), [`columnShape.menu`](api/config/js_kanban_columnshape_config.md), [`rowShape.menu`](api/config/js_kanban_rowshape_config.md) — 카드, 컬럼, 행의 컨텍스트 메뉴를 수정합니다 - [`columnShape.headerTemplate`](api/config/js_kanban_columnshape_config.md), [`columnShape.collapsedTemplate`](api/config/js_kanban_columnshape_config.md) — 컬럼 헤더 템플릿을 교체합니다 - [`cardShape.css`](api/config/js_kanban_cardshape_config.md), [`columnShape.css`](api/config/js_kanban_columnshape_config.md), [`rowShape.css`](api/config/js_kanban_rowshape_config.md) — 조건부로 CSS 클래스를 적용합니다 -- [`items`](api/config/toolbar_items_config.md) — 툴바 구조를 재배치하고 사용자 정의 컨트롤을 추가합니다 +- [`items`](api/config/toolbar_items_config.md) — Toolbar 구조를 재배치하고 사용자 정의 컨트롤을 추가합니다 - CSS 변수 — 시각적 스타일을 조정합니다([Stylization](guides/stylization.md) 섹션 참고) ## 사용자 정의 카드 {#custom-cards} @@ -122,9 +122,9 @@ new kanban.Kanban("#root", { }); ~~~ -## 사용자 정의 툴바 {#custom-toolbar} +## 사용자 정의 Toolbar {#custom-toolbar} -[`items`](api/config/toolbar_items_config.md) 속성을 사용하여 툴바 구조를 사용자 정의합니다. 배열은 표시될 컨트롤, 순서 및 동작을 정의합니다. 각 항목은 다음과 같을 수 있습니다: +[`items`](api/config/toolbar_items_config.md) 속성을 사용하여 Toolbar 구조를 사용자 정의합니다. 배열은 표시될 컨트롤, 순서 및 동작을 정의합니다. 각 항목은 다음과 같을 수 있습니다: - 기본 제공 컨트롤: `"search"`, `"sort"`, `"undo"`, `"redo"`, `"addColumn"`, `"addRow"`, `"spacer"` - 사용자 정의 옵션으로 검색바 또는 정렬 컨트롤을 재정의하는 객체 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/guides/stylization.md b/i18n/ko/docusaurus-plugin-content-docs/current/guides/stylization.md index 77c638a..c8115ed 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/guides/stylization.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/guides/stylization.md @@ -57,7 +57,7 @@ Material 테마를 커스터마이징하려면 스타일시트에서 다음 CSS --wx-kanban-column-width: 300px; --wx-kanban-column-height: 300px; - /* 툴바 스타일 */ + /* Toolbar 스타일 */ --wx-kanban-toolbar-height: 56px; --wx-kanban-toolbar-align: center; --wx-kanban-toolbar-justify: flex-start; diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/howtos.md b/i18n/ko/docusaurus-plugin-content-docs/current/howtos.md index 5d4fe6f..1002c9e 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/howtos.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/howtos.md @@ -20,7 +20,7 @@ description: DHTMLX JavaScript Kanban 라이브러리의 How-tos 페이지를 | [스타일링](guides/stylization.md) | Kanban을 스타일링하는 방법을 알아보세요 | | [로컬라이제이션](guides/localization.md) | Kanban을 현지화하는 방법을 알아보세요 ([예제](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban))| -## API 레퍼런스 +## API 참조 이 섹션에서는 Kanban API에 대한 관련 레퍼런스를 확인할 수 있습니다. diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/news/migration.md b/i18n/ko/docusaurus-plugin-content-docs/current/news/migration.md index c21d9ec..003eba4 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/news/migration.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/news/migration.md @@ -251,7 +251,7 @@ kanban.api.exec("undo"); #### Methods -- Kanban 툴바의 [`setLocale`](api/methods/toolbar_setlocale_method.md) 메서드가 다음과 같이 변경되었습니다: +- Kanban Toolbar의 [`setLocale`](api/methods/toolbar_setlocale_method.md) 메서드가 다음과 같이 변경되었습니다: ~~~jsx {6} title="v1.5.7 이전" // Kanban 생성 diff --git a/i18n/ko/docusaurus-plugin-content-docs/current/news/whats_new.md b/i18n/ko/docusaurus-plugin-content-docs/current/news/whats_new.md index c64576f..e2baa8b 100644 --- a/i18n/ko/docusaurus-plugin-content-docs/current/news/whats_new.md +++ b/i18n/ko/docusaurus-plugin-content-docs/current/news/whats_new.md @@ -12,7 +12,7 @@ description: DHTMLX JavaScript UI 라이브러리의 문서에서 DHTMLX Kanban 2026년 3월 9일 출시 -### 버그 수정 +### 수정 사항 - `renderType:lazy` 사용 시 스크롤 도중 카드가 사라지는 문제 - lazy 렌더 및 컬럼 렌더링: 스크롤바를 천천히 이동할 때 잘못된 end index 적용 @@ -22,14 +22,14 @@ description: DHTMLX JavaScript UI 라이브러리의 문서에서 DHTMLX Kanban - 댓글 또는 투표 업데이트 시 저장되지 않은 데이터 손실 - 뷰포트 오른쪽에 가까운 요소의 메뉴 위치가 올바르지 않음 - 터치 기기에서 DND 시 드래그 노드 크기가 너무 큼 -- 툴바: 툴팁에 대한 2개 로케일 레이블 누락 +- Toolbar: 툴팁에 대한 2개 로케일 레이블 누락 - Uploader의 `config` 파라미터가 적용되지 않는 문제 ## 버전 1.7.1 2025년 11월 20일 출시 -### 버그 수정 +### 수정 사항 - 에디터에서 `dateRange` 사용 시 스크립트 오류 발생 - `setConfig()`를 호출한 후 `parse()`가 동작하지 않는 문제 @@ -84,7 +84,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - [`start-drag-card`](api/events/js_kanban_startdragcard_event.md)에서 `dragItemsCoords` 및 `dropAreasCoords` 파라미터가 제거되었습니다. -### 버그 수정 +### 수정 사항 - 대용량 파일 또는 파일 여러 개를 업로드할 때, 모든 파일이 서버에 완전히 업로드되기 전에 폼이 업데이트되어 카드 데이터가 잘못 전송되는 문제 - 파일 크기가 새로 업로드된 파일에만 표시되는 문제 @@ -96,7 +96,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2025년 7월 14일 출시 -### 버그 수정 +### 수정 사항 - `disabled: true` 설정이 메뉴 항목에 적용되지 않는 문제 - 사전 정의된 행 구조가 없는 Kanban에 행을 추가할 때 행 헤더가 나타나지 않는 문제 @@ -105,7 +105,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2025년 6월 12일 출시 -### 버그 수정 +### 수정 사항 - 삭제 후 복원된 컬럼/행에 카드를 추가하면 카드가 사라지는 문제 - 업로더 리스트 버튼의 로케일 라벨 누락 @@ -115,12 +115,12 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2025년 4월 8일 출시 -### 버그 수정 +### 수정 사항 - 제한이 전체 컬럼에 잘못 적용되는 문제 - 모달 에디터를 닫은 후 카드를 이동하면 오류 발생 - 삭제 확인 창이 모달 에디터 아래에 표시되는 문제 -- 툴바 "더보기" 아이콘이 창 크기 조절 시 나타났다가 사라지는 문제 +- Toolbar "더보기" 아이콘이 창 크기 조절 시 나타났다가 사라지는 문제 - `delete-card` 이벤트가 항상 에디터를 닫는 문제 - 제공된 옵션 외의 ID로 우선순위가 설정된 경우 에디터를 열 수 없는 문제 @@ -128,7 +128,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2025년 2월 14일 출시 -### 버그 수정 +### 수정 사항 - 트라이얼 패키지의 만료일이 잘못된 문제 - 터치 디바이스에서 드래그 앤 드롭 시 경고 발생 @@ -142,9 +142,9 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2024년 11월 29일 출시 -### 버그 수정 +### 수정 사항 -- 좁은 화면에서 툴바의 "더보기" 아이콘 정렬이 잘못됨 +- 좁은 화면에서 Toolbar의 "더보기" 아이콘 정렬이 잘못됨 - `RestDataProvider`가 `setHeaders()`로 정의한 헤더를 무시하는 문제 - `RestDataProvider.getIDResolver`가 함수가 아니라는 오류 @@ -158,7 +158,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - [`cardShape.users.maxCount`](api/config/js_kanban_cardshape_config.md) 속성을 통해 카드에 표시되는 할당 사용자 수를 변경할 수 있음 ([**예제**](https://snippet.dhtmlx.com/w205dvzg?tag=kanban) 참고) - [`columnShape`](api/config/js_kanban_columnshape_config.md) 속성을 통해 컬럼 헤더의 내용을 변경할 수 있음 ([**예제**](https://snippet.dhtmlx.com/gq2saz9c?tag=kanban) 참고) -- 툴바 **search** 컨트롤의 [`items.resultTemplate`](api/config/toolbar_items_config.md) 속성을 통해 검색 결과의 보기 및 내용을 변경할 수 있음 ([**예제**](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban) 참고) +- Toolbar **search** 컨트롤의 [`items.resultTemplate`](api/config/toolbar_items_config.md) 속성을 통해 검색 결과의 보기 및 내용을 변경할 수 있음 ([**예제**](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban) 참고) - [`editor.placement`](api/config/js_kanban_editor_config.md) 속성을 통해 에디터를 모달 창으로 표시할 수 있음 ([**예제**](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban) 참고) - [`cardShape.votes.clickable`](api/config/js_kanban_cardshape_config.md) 속성을 통해 카드에 투표 기능을 활성화할 수 있음 ([**예제**](https://snippet.dhtmlx.com/en76xvi4?tag=kanban) 참고) @@ -170,7 +170,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - [`columnShape`](api/config/js_kanban_columnshape_config.md) 속성에 ***headerTemplate*** 및 ***collapsedTemplate*** 파라미터가 추가됨 - [`editor`](api/config/js_kanban_editor_config.md) 속성에 ***placement*** 파라미터가 추가됨 - [`editorShape`](api/config/js_kanban_editorshape_config.md) 속성에 ***modalSection*** 파라미터가 추가됨 - - 툴바 **search** 컨트롤의 [`items`](api/config/toolbar_items_config.md) 속성에 ***resultTemplate*** 파라미터가 추가됨 + - Toolbar **search** 컨트롤의 [`items`](api/config/toolbar_items_config.md) 속성에 ***resultTemplate*** 파라미터가 추가됨 - #### 이벤트 @@ -180,12 +180,12 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - [`setConfig()`](api/methods/js_kanban_setconfig_method.md) 메서드의 동작이 다음과 같이 변경됨: - 이 메서드는 히스토리를 변경하지 않음 (히스토리 자체를 변경할 수 없음) - - Kanban 데이터 저장소를 파괴하지 않음. 이벤트 리스너 재생성 및 툴바 재연결이 불필요함 + - Kanban 데이터 저장소를 파괴하지 않음. 이벤트 리스너 재생성 및 Toolbar 재연결이 불필요함 - - [`setLocale()`](api/methods/js_kanban_setlocale_method.md) 메서드는 Kanban 데이터 저장소를 파괴하지 않음. 이벤트 리스너 재생성 및 툴바 재연결이 불필요함 - - 툴바 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 메서드의 `api` 파라미터가 deprecated됨 + - [`setLocale()`](api/methods/js_kanban_setlocale_method.md) 메서드는 Kanban 데이터 저장소를 파괴하지 않음. 이벤트 리스너 재생성 및 Toolbar 재연결이 불필요함 + - Toolbar [`setLocale()`](api/methods/toolbar_setlocale_method.md) 메서드의 `api` 파라미터가 deprecated됨 -### 버그 수정 +### 수정 사항 - 편집 중인 댓글이 삭제되면 새 댓글 입력 영역이 사라지는 문제 - 누락된 로케일 문자열 추가 @@ -197,7 +197,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2024년 9월 12일 출시 -### 버그 수정 +### 수정 사항 - 확장자가 대문자인 경우 "Make cover" 버튼이 나타나지 않는 문제 - 비활성화된 Multiselect 컨트롤 클릭 시 오류 발생 @@ -209,7 +209,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2024년 5월 2일 출시 -### 버그 수정 +### 수정 사항 - Intercept 회귀: `false`를 반환해도 내부 이벤트가 차단되지 않는 문제 - 비활성화된 파일이 파일을 허용하는 문제 @@ -218,9 +218,9 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2024년 3월 25일 출시 -### 버그 수정 +### 수정 사항 -- *Dark willow* 스킨의 Kanban CSS 변수들이 툴바 및 포털에서 사라지는 문제 +- *Dark willow* 스킨의 Kanban CSS 변수들이 Toolbar 및 포털에서 사라지는 문제 - autosave 비활성화 시 댓글 및 투표 변경이 폼 값에 반영되지 않는 문제 - 커스텀 컬럼 서브메뉴의 **onClick** 함수 인자에 `null` 전달 - 에디터에서 Datepickers를 편집 모드로 설정할 수 없는 문제 @@ -230,7 +230,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2024년 2월 29일 출시 -### 버그 수정 +### 수정 사항 - npm 서버에서 빌드가 깨지는 문제 - [`duplicate-card`](api/events/js_kanban_duplicatecard_event.md) 이벤트와 [`duplicateCard()`](api/methods/js_kanban_duplicatecard_method.md) 메서드에 `select` 파라미터 추가 @@ -240,7 +240,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2024년 2월 20일 출시 -### 버그 수정 +### 수정 사항 - Kanban이 다른 위젯 스타일에 영향을 주는 문제 - `disabled: true`가 지정된 커스텀 컬럼 서브메뉴 항목이 여전히 활성화되는 문제 @@ -250,7 +250,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2023년 11월 28일 출시 -### 버그 수정 +### 수정 사항 - **IKanbanConfig** 타입의 **currentUser** TS 정의 누락 @@ -260,9 +260,9 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 ### 업데이트 -- 툴바의 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 메서드에 ***api*** 파라미터 추가 +- Toolbar의 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 메서드에 ***api*** 파라미터 추가 -### 버그 수정 +### 수정 사항 - 카드 메뉴 항목에 `disabled: true` 설정이 적용되지 않는 문제 - Kanban 예제에서 원하지 않는 콘솔 경고 발생 @@ -277,7 +277,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - ES 모듈로 컴포넌트 import 가능 -### 버그 수정 +### 수정 사항 - npm 패키지에서 회귀 현상 @@ -285,7 +285,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2023년 8월 9일 출시 -### 버그 수정 +### 수정 사항 - 다른 카드로 전환 시 이전에 업로드된 파일이 폼에 남아있는 문제 - 드래그 앤 드롭으로 파일 업로드가 작동하지 않는 문제 @@ -295,7 +295,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 ## 버전 1.5.1 -### 버그 수정 +### 수정 사항 - 올바른 TypeScript 정의 생성 @@ -331,7 +331,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - [`columnShape`](api/config/js_kanban_columnshape_config.md) 속성에 ***fixedHeaders*** 파라미터 추가 -### 버그 수정 +### 수정 사항 - 런타임에서 링크를 파싱, 내보내기, 직렬화하지 못하는 문제 - 사용자 섹션이 활성화되지 않은 경우 댓글 섹션 생성 실패 @@ -344,7 +344,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2023년 4월 13일 출시 -### 버그 수정 +### 수정 사항 - 추가 작업 후 로컬 카드/컬럼/행 데이터에 백엔드 ID가 저장되지 않는 문제 - 누락된 TS 정의 추가 @@ -354,7 +354,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 2023년 3월 29일 출시 -### 버그 수정 +### 수정 사항 - 정렬 유지 동작이 올바르지 않은 문제 - **cardShape**, **columnShape** 또는 **rowShape** 속성으로 컨텍스트 메뉴를 비활성화할 때 동작이 올바르지 않은 문제 @@ -422,7 +422,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - `cardShape.menu.items`, `columnShape.menu.items`, `rowShape.menu.items`의 메뉴 항목 객체 내 label -### 버그 수정 +### 수정 사항 - Kanban이 마진이 있는 컨테이너 내부에 있을 때 메뉴 위치가 잘못됨 - 커스텀 컬럼 폭 사용 시 접힌 컬럼의 위치가 잘못됨 @@ -441,7 +441,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - API, 컨텍스트 메뉴(3점 아이콘), `Ctrl (Command)` + `D` 단축키로 카드 복제 (여러 카드 복제 가능) - Kanban 데이터를 JSON 파일로 내보내기 - Kanban 히스토리 관리: - - 툴바의 *Undo*, *Redo* 컨트롤 + - Toolbar의 *Undo*, *Redo* 컨트롤 - 단축키: - `Ctrl (Command)`+`Z` - 실행 취소 - `Ctrl (Command)`+`Y` 또는 `Ctrl (Command)`+`Shift`+`Z` - 다시 실행 @@ -487,22 +487,22 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - #### 속성 - - 툴바의 [`items`](api/config/toolbar_items_config.md) 속성에 ***"undo"***, ***"redo"*** 파라미터(컨트롤) 추가 + - Toolbar의 [`items`](api/config/toolbar_items_config.md) 속성에 ***"undo"***, ***"redo"*** 파라미터(컨트롤) 추가 - [`editorShape`](api/config/js_kanban_editorshape_config.md) 속성에 ***dateRange*** 타입 추가 ## 버전 1.2.2 2022년 8월 30일 출시 -### 버그 수정 +### 수정 사항 -- 메뉴 및 툴바에 일부 아이콘이 중복 표시되는 문제 +- 메뉴 및 Toolbar에 일부 아이콘이 중복 표시되는 문제 ## 버전 1.2.1 2022년 7월 28일 출시 -### 버그 수정 +### 수정 사항 - `cardHeight` 속성이 `scrollType:"column"` 설정과 함께 작동하지 않는 문제 - 업로더가 카드 에디터에서 업로드된 파일을 표시하지 않는 문제 @@ -549,11 +549,11 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - [`api.getState()`](api/internal/js_kanban_getstate_method.md) 메서드 업데이트 - [`api.getStores()`](api/internal/js_kanban_getstores_method.md) 메서드 업데이트 - Kanban의 [`setLocale()`](api/methods/js_kanban_setlocale_method.md) 메서드 업데이트 - - 툴바의 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 메서드 업데이트 + - Toolbar의 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 메서드 업데이트 - #### 속성 - - 툴바의 [`items`](api/config/toolbar_items_config.md) 속성 업데이트 + - Toolbar의 [`items`](api/config/toolbar_items_config.md) 속성 업데이트 - [`cardShape`](api/config/js_kanban_cardshape_config.md) 속성의 ***start_date***, ***end_date***, ***menu***, ***users*** 파라미터(필드) 업데이트 - [`editorShape`](api/config/js_kanban_editorshape_config.md) 속성의 ***multiselect*** 타입 업데이트 @@ -562,7 +562,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 - CSS 클래스 접두사 (*[Stylization](guides/stylization.md) 섹션 참고*) - 로케일 구조 (*[Localization](guides/localization.md) 섹션 참고*) -### 버그 수정 +### 수정 사항 - `rowKey` 설정을 통한 카드의 스윔레인 바인딩이 올바르지 않음 - 카드 메뉴 클릭 시 에디터가 열림 @@ -577,7 +577,7 @@ v1.7부터 JavaScript Kanban을 Salesforce 환경에서 사용할 수 있습니 [블로그 릴리즈 리뷰](https://dhtmlx.com/blog/maintenance-release-kanban-1-1-1/) -### 버그 수정 +### 수정 사항 - cardShape 설정에 정의되지 않은 커스텀 에디터 필드가 작동하지 않는 문제 - 검색 바 드롭다운 메뉴에서 원하는 카드 선택 diff --git a/i18n/ru/code.json b/i18n/ru/code.json index 983efcc..9e2cfd1 100644 --- a/i18n/ru/code.json +++ b/i18n/ru/code.json @@ -135,27 +135,27 @@ "description": "Метка рядом со списком тегов" }, "theme.admonition.caution": { - "message": "осторожно", + "message": "Осторожно", "description": "Метка по умолчанию для предупреждения Caution (:::caution)" }, "theme.admonition.danger": { - "message": "опасность", + "message": "Опасно", "description": "Метка по умолчанию для предупреждения Danger (:::danger)" }, "theme.admonition.info": { - "message": "информация", + "message": "К сведению", "description": "Метка по умолчанию для предупреждения Info (:::info)" }, "theme.admonition.note": { - "message": "заметка", + "message": "Примечание", "description": "Метка по умолчанию для предупреждения Note (:::note)" }, "theme.admonition.tip": { - "message": "совет", + "message": "Подсказка", "description": "Метка по умолчанию для предупреждения Tip (:::tip)" }, "theme.admonition.warning": { - "message": "предупреждение", + "message": "Предупреждение", "description": "Метка по умолчанию для предупреждения Warning (:::warning)" }, "theme.AnnouncementBar.closeButtonAriaLabel": { diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md index b2047f2..7340b81 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md @@ -47,6 +47,6 @@ board.addCard({ }); ~~~ -**Журнал изменений:** Параметр `$meta` был добавлен в версии v1.3 +**Журнал изменений:** Параметр `$meta` был добавлен в v1.3 -**Связанный материал:** [`history`](api/config/js_kanban_history_config.md) \ No newline at end of file +**Полезная статья:** [`history`](api/config/js_kanban_history_config.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md index 5ed7582..2f6a1f7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md @@ -34,8 +34,8 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** Свойство добавлено в версии v1.2 +**Журнал изменений:** Свойство добавлено в v1.2 -**Связанные статьи:** [Конфигурация](guides/configuration.md#cards) +**Полезные статьи:** [Конфигурация](guides/configuration.md#cards) **Связанный пример:** [Kanban. Ленивый рендеринг и прокрутка колонок](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md index c70e6ae..f9c3844 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md @@ -147,9 +147,9 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** Параметры ***css***, ***comments*** и ***votes*** были добавлены в версии v1.4 +**Журнал изменений:** Параметры ***css***, ***comments*** и ***votes*** были добавлены в v1.4 -**Связанные статьи:** +**Полезные статьи:** - [Работа с данными](guides/working_with_data.md) - [updateCard()](api/methods/js_kanban_updatecard_method.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md index d5b4f9f..746c330 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md @@ -322,15 +322,15 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** -- Параметры ***comments***, ***css*** и ***votes*** добавлены в версии 1.4 -- Параметр ***menu.items[0].label*** устарел и заменён на ***menu.items[0].text*** в версии 1.4 -- Параметр ***menu.items[0].items*** устарел и заменён на ***menu.items[0].data*** в версии 1.4 -- Параметры ***users.maxCount*** и ***votes.clickable*** добавлены в версии 1.6 -- Параметры ***menu.items[0].label*** и ***menu.items[0].items*** удалены в версии 1.7 -- Функция ***menu.items*** обновлена. Параметр **store** заменён на **readonly** в версии 1.7 - -**Связанные статьи:** [Конфигурация](guides/configuration.md#cards) +**Журнал изменений:** +- Параметры ***comments***, ***css*** и ***votes*** добавлены в v1.4 +- Параметр ***menu.items[0].label*** устарел и заменён на ***menu.items[0].text*** в v1.4 +- Параметр ***menu.items[0].items*** устарел и заменён на ***menu.items[0].data*** в v1.4 +- Параметры ***users.maxCount*** и ***votes.clickable*** добавлены в v1.6 +- Параметры ***menu.items[0].label*** и ***menu.items[0].items*** удалены в v1.7 +- Функция ***menu.items*** обновлена. Параметр **store** заменён на **readonly** в v1.7 + +**Полезные статьи:** [Конфигурация](guides/configuration.md#cards) **Связанные примеры:** - [Kanban. Swimlanes, comments, votes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md index 2efde90..44c8dec 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md @@ -66,8 +66,8 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** Возможность отображения контекстного меню добавлена в версии v1.4 +**Журнал изменений:** Возможность отображения контекстного меню добавлена в v1.4 -**Связанные статьи:** [Настройка](guides/customization.md#custom-cards) +**Полезные статьи:** [Настройка](guides/customization.md#custom-cards) **Связанный пример:** [Kanban. Пользовательская карточка](https://snippet.dhtmlx.com/8rhdq81d?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md index 6676de8..d973a18 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md @@ -113,9 +113,9 @@ new kanban.Kanban("#root", { - Ваш селектор содержит достаточный контекст (например, родительские и внутренние классы DHTMLX) - Если свойство переопределяется встроенным стилем, можно использовать `!important` -**История изменений:** Параметры **css** и **overlay** были добавлены в версии v1.4 +**Журнал изменений:** Параметры **css** и **overlay** были добавлены в v1.4 -**Связанные статьи:** +**Полезная статья:** - [Работа с данными](guides/working_with_data.md) - [updateColumn()](api/methods/js_kanban_updatecolumn_method.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md index 652b9e0..cbe7cc7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md @@ -219,16 +219,16 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** -- Параметр ***css*** добавлен в версии 1.4 -- Параметр ***menu.items[0].label*** устарел и заменён на ***menu.items[0].text*** в версии 1.4 -- Параметр ***menu.items[0].items*** устарел и заменён на ***menu.items[0].data*** в версии 1.4 -- Параметр ***fixedHeaders*** добавлен в версии 1.5 -- Параметры ***headerTemplate*** и ***collapsedTemplate*** добавлены в версии 1.6 -- Параметры ***menu.items[0].label*** и ***menu.items[0].items*** удалены в версии 1.7 -- Функция ***menu.items*** обновлена: параметр **store** заменён на **readonly** в версии 1.7 - -**Связанные статьи:** [Конфигурация](guides/configuration.md) +**Журнал изменений:** +- Параметр ***css*** добавлен в v1.4 +- Параметр ***menu.items[0].label*** устарел и заменён на ***menu.items[0].text*** в v1.4 +- Параметр ***menu.items[0].items*** устарел и заменён на ***menu.items[0].data*** в v1.4 +- Параметр ***fixedHeaders*** добавлен в v1.5 +- Параметры ***headerTemplate*** и ***collapsedTemplate*** добавлены в v1.6 +- Параметры ***menu.items[0].label*** и ***menu.items[0].items*** удалены в v1.7 +- Функция ***menu.items*** обновлена: параметр **store** заменён на **readonly** в v1.7 + +**Полезные статьи:** [Конфигурация](guides/configuration.md) **Связанные примеры:** - [Kanban. Изменение цвета колонки через кастомное меню](https://snippet.dhtmlx.com/fnlvd2g5?tag=kanban) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md index 7ee17da..be344d5 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md @@ -31,6 +31,6 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** Свойство было добавлено в версии v1.4 +**Журнал изменений:** Свойство было добавлено в v1.4 **Связанный пример:** [Kanban. Swimlanes, comments, votes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md index b1f62f6..7df5c7d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md @@ -57,6 +57,6 @@ new kanban.Kanban("#root", { }); ~~~ -**Изменения:** Параметр `placement` был добавлен в версии v1.6 +**Журнал изменений:** Параметр `placement` был добавлен в v1.6 **Связанные примеры:** [Kanban. Открытие редактора в модальном окне](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md index d5e695b..697a253 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md @@ -9,7 +9,7 @@ description: Ознакомьтесь с API конфигурации editorAuto

editorAutoSave

:::danger -Начиная с версии 1.3, свойство `editorAutoSave` **устарело**. Для управления режимом "автосохранения" используйте свойство [`editor`](api/config/js_kanban_editor_config.md)! +Начиная с v1.3, свойство `editorAutoSave` **устарело**. Для управления режимом "автосохранения" используйте свойство [`editor`](api/config/js_kanban_editor_config.md)! ::: ### Описание diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md index d1c0aa1..bb563ec 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md @@ -466,11 +466,11 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** +**Журнал изменений:** -- Тип ***dateRange*** добавлен в версии v1.3 -- Типы редактора ***comments*** и ***links***, а также параметр ***format*** добавлены в версии v1.4 -- Параметр ***modalSection*** добавлен в версии v1.6 +- Тип ***dateRange*** добавлен в v1.3 +- Типы редактора ***comments*** и ***links***, а также параметр ***format*** добавлены в v1.4 +- Параметр ***modalSection*** добавлен в v1.6 - Параметр ***clearButton*** заменён на ***clear*** -**Связанные статьи:** [Конфигурация](guides/configuration.md/#editor) +**Полезные статьи:** [Конфигурация](guides/configuration.md/#editor) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md index ebf3f96..32cb310 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md @@ -71,4 +71,4 @@ new kanban.Kanban("#root", { }); ~~~ -**Связанные статьи:** [Конфигурация](guides/configuration.md#rendering-and-scrolling) +**Полезные статьи:** [Конфигурация](guides/configuration.md#rendering-and-scrolling) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md index 6e4acb0..b865014 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md @@ -11,7 +11,7 @@ description: Ознакомьтесь с API конфигурации history д @short: Необязательно. Включает/отключает управление историей изменений :::info -С помощью свойства `history` вы можете включить или отключить управление историей Kanban. Если установить его в **false**, вы не сможете управлять историей через API и элементы управления на Панели инструментов. +С помощью свойства `history` вы можете включить или отключить управление историей Kanban. Если установить его в **false**, вы не сможете управлять историей через API и элементы управления на Toolbar. ::: :::tip @@ -41,6 +41,6 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** Свойство добавлено в версии v1.3 +**Журнал изменений:** Свойство добавлено в v1.3 -**Связанные статьи:** [`undo()`](api/methods/js_kanban_undo_method.md) и [`redo()`](api/methods/js_kanban_redo_method.md) \ No newline at end of file +**Полезные статьи:** [`undo()`](api/methods/js_kanban_undo_method.md) и [`redo()`](api/methods/js_kanban_redo_method.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md index 5a5a131..bc06349 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md @@ -60,10 +60,10 @@ new kanban.Kanban("#root", { }); ~~~ -**Журнал изменений:** Свойство обновлено в версии v1.7: +**Журнал изменений:** Свойство обновлено в v1.7: - Параметр **masterId** заменён на **source** - Параметр **slaveId** заменён на **target** -**Связанные статьи:** [Работа с данными](guides/working_with_data.md) +**Полезные статьи:** [Работа с данными](guides/working_with_data.md) **Связанный пример:** [Kanban. Связи между задачами](https://snippet.dhtmlx.com/81qu7qh0?tag=kanban) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md index 6bb0ef1..a93fa2c 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md @@ -40,6 +40,6 @@ const board = new kanban.Kanban("#root", { }); ~~~ -**Связанные статьи:** [Локализация](guides/localization.md) +**Полезные статьи:** [Локализация](guides/localization.md) **Связанный пример:** [Kanban. Локализация](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md index 474a8bc..85903f5 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md @@ -45,8 +45,8 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** Свойство добавлено в версии v1.2 +**Журнал изменений:** Свойство добавлено в v1.2 -**Связанные статьи:** [Конфигурация](guides/configuration.md#cards) +**Полезные статьи:** [Конфигурация](guides/configuration.md#cards) **Связанный пример:** [Kanban. Фиксированные заголовки, ленивый рендеринг и прокрутка колонок](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md index 7d50e71..5f4cad2 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md @@ -56,9 +56,9 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** Параметр ***css*** был добавлен в версии v1.4 +**Журнал изменений:** Параметр ***css*** был добавлен в v1.4 -**Связанные статьи:** +**Полезные статьи:** - [Работа с данными](guides/working_with_data.md) - [updateRow()](api/methods/js_kanban_updaterow_method.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md index 0ab9ab9..d07a84c 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md @@ -176,13 +176,13 @@ new kanban.Kanban("#root", { }); ~~~ -**История изменений:** -- Параметр ***css*** был добавлен в версии v1.4 -- Параметр ***menu.items[0].label*** устарел и был заменён на ***menu.items[0].text*** в версии v1.4 -- Параметр ***menu.items[0].items*** устарел и был заменён на ***menu.items[0].data*** в версии v1.4 -- Параметры ***menu.items[0].label*** и ***menu.items[0].items*** были удалены в версии v1.7 -- Функция ***menu.items*** была обновлена. Параметр **store** был заменён на **readonly** в версии v1.7 - -**Связанные статьи:** [Конфигурация](guides/configuration.md) +**Журнал изменений:** +- Параметр ***css*** был добавлен в v1.4 +- Параметр ***menu.items[0].label*** устарел и был заменён на ***menu.items[0].text*** в v1.4 +- Параметр ***menu.items[0].items*** устарел и был заменён на ***menu.items[0].data*** в v1.4 +- Параметры ***menu.items[0].label*** и ***menu.items[0].items*** были удалены в v1.7 +- Функция ***menu.items*** была обновлена. Параметр **store** был заменён на **readonly** в v1.7 + +**Полезные статьи:** [Конфигурация](guides/configuration.md) **Связанный пример:** [Kanban. Изменение цвета строк через пользовательское меню](https://snippet.dhtmlx.com/tev4ej9c?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md index e76bcfc..ddcd7ef 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md @@ -45,8 +45,8 @@ new kanban.Kanban("#root", { }); ~~~ -**Изменения:** Свойство добавлено в версии v1.2 +**Журнал изменений:** Свойство добавлено в v1.2 -**Связанные статьи:** [Конфигурация](guides/configuration.md#cards) +**Полезные статьи:** [Конфигурация](guides/configuration.md#cards) **Связанный пример:** [Kanban. Фиксированные заголовки, ленивый рендеринг и прокрутка колонок](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md index 2fa2889..8e4897e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md @@ -1,7 +1,7 @@ --- sidebar_label: api title: API конфигурации Toolbar api -description: Ознакомьтесь с API конфигурации api панели инструментов для DHTMLX Kanban. Узнайте, как подключить Toolbar к внутреннему API Kanban. +description: Ознакомьтесь с API конфигурации api Toolbar для DHTMLX Kanban. Узнайте, как подключить Toolbar к внутреннему API Kanban. --- # api @@ -33,6 +33,6 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**Связанные статьи:** [Конфигурация](guides/configuration.md#toolbar) +**Полезные статьи:** [Конфигурация](guides/configuration.md#toolbar) **Связанный пример:** [Kanban. Пользовательский toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md index 533047e..b01de9e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md @@ -1,7 +1,7 @@ --- sidebar_label: items title: API конфигурации Toolbar items -description: Ознакомьтесь с документацией по конфигурации элементов Toolbar для DHTMLX Kanban. Узнайте, как настраивать кнопки панели инструментов, поиск, отмену действий и другие элементы управления. +description: Ознакомьтесь с документацией по конфигурации элементов Toolbar для DHTMLX Kanban. Узнайте, как настраивать кнопки Toolbar, поиск, отмену действий и другие элементы управления. --- # items @@ -178,14 +178,14 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**История изменений:** +**Журнал изменений:** -- Элементы *"Undo"* и *"Redo"* были добавлены в версии v1.3 -- Параметр ***items.options[0].label*** элемента **sort** был заменён на ***items.options[0].text*** в версии v1.4 -- Параметр ***items.resultTemplate*** элемента **"search"** был добавлен в версии v1.6 +- Элементы *"Undo"* и *"Redo"* были добавлены в v1.3 +- Параметр ***items.options[0].label*** элемента **sort** был заменён на ***items.options[0].text*** в v1.4 +- Параметр ***items.resultTemplate*** элемента **"search"** был добавлен в v1.6 -**Связанные статьи:** [Конфигурация](guides/configuration.md#toolbar) и [Настройка](guides/customization.md#custom-toolbar) +**Полезные статьи:** [Конфигурация](guides/configuration.md#toolbar) и [Настройка](guides/customization.md#custom-toolbar) -**Связанные примеры:** +**Связанный пример:** - [Kanban. Пользовательский Toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) - [Kanban. Настройка подсказок в результатах поиска](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md index 2c8aeee..43ecc65 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md @@ -1,14 +1,14 @@ --- sidebar_label: locale title: API конфигурации Toolbar locale -description: Ознакомьтесь с API конфигурации locale панели инструментов для DHTMLX Kanban. Узнайте, как применить пользовательскую локаль к Toolbar. +description: Ознакомьтесь с API конфигурации locale Toolbar для DHTMLX Kanban. Узнайте, как применить пользовательскую локаль к Toolbar. --- # locale ### Описание -@short: Необязательно. Объект с пользовательской локализацией панели инструментов (Toolbar) +@short: Необязательно. Объект с пользовательской локализацией Toolbar :::info Объект **locale** должен содержать все метки Kanban и Toolbar с соответствующими переводами. @@ -25,7 +25,7 @@ locale?: object; По умолчанию Toolbar использует локаль [**английский**](guides/localization.md#default-locale). Вы также можете задать пользовательскую локаль. :::tip -Чтобы динамически изменить текущую локаль, используйте метод [**setLocale()**](api/methods/toolbar_setlocale_method.md) панели инструментов (Toolbar). +Чтобы динамически изменить текущую локаль, используйте метод [**setLocale()**](api/methods/toolbar_setlocale_method.md) Toolbar. ::: ### Пример @@ -42,6 +42,6 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**Связанные статьи:** [Локализация](guides/localization.md) +**Полезные статьи:** [Локализация](guides/localization.md) **Связанный пример:** [Kanban. Локализация](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md index fa95655..b15c27b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md @@ -48,4 +48,4 @@ board.api.on("add-column", (obj) => { }); ~~~ -**История изменений**: параметры **id**, **before** и **column** были добавлены в версии v1.1 \ No newline at end of file +**Журнал изменений:** параметры **id**, **before** и **column** были добавлены в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md index 308bd94..51cf8b1 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md @@ -55,4 +55,4 @@ board.api.on("add-comment", (obj) => { }); ~~~ -**Журнал изменений:** Событие добавлено в версии v1.4 \ No newline at end of file +**Журнал изменений:** Событие добавлено в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md index 022857d..5edc042 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md @@ -47,4 +47,4 @@ board.api.on("add-link", (obj) => { }); ~~~ -**Журнал изменений:** Событие добавлено в версии v1.4 \ No newline at end of file +**Журнал изменений:** Событие добавлено в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md index a6a9bc5..bc5bd9e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md @@ -48,4 +48,4 @@ board.api.on("add-row", (obj) => { }); ~~~ -**История изменений**: параметры **id**, **before** и **row** были добавлены в версии v1.1 \ No newline at end of file +**Журнал изменений:** параметры **id**, **before** и **row** были добавлены в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md index 1a0f617..8ea985b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md @@ -44,4 +44,4 @@ board.api.on("add-vote", (obj) => { }); ~~~ -**История изменений:** Событие было добавлено в версии v1.4 \ No newline at end of file +**Журнал изменений:** Событие было добавлено в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md index 0463f41..1ac5255 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md @@ -46,4 +46,4 @@ board.api.on("delete-comment", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.4 \ No newline at end of file +**Журнал изменений:** Событие добавлено в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md index 25890df..5154b27 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md @@ -45,4 +45,4 @@ board.api.on("delete-link", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.4 \ No newline at end of file +**Журнал изменений:** Событие добавлено в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md index f63e0ce..db9fa46 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md @@ -44,4 +44,4 @@ board.api.on("delete-vote", (obj) => { }); ~~~ -**История изменений:** Событие было добавлено в версии v1.4 \ No newline at end of file +**Журнал изменений:** Событие было добавлено в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md index d95f37d..080791e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md @@ -50,6 +50,6 @@ board.api.on("drag-card", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.4 +**Журнал изменений:** Событие добавлено в v1.4 **Связанный пример:** [Kanban. Отключение drag and drop для определённых колонок](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md index 0e765f7..a3e217b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md @@ -46,4 +46,4 @@ board.api.on("duplicate-card", (obj) => { }); ~~~ -**История изменений:** Параметр `select` был добавлен в версии v1.5.10 \ No newline at end of file +**Журнал изменений:** Параметр `select` был добавлен в v1.5.10 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md index 2c599b4..560a1f7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md @@ -50,6 +50,6 @@ board.api.on("end-drag-card", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.4 +**Журнал изменений:** Событие добавлено в v1.4 **Связанный пример:** [Kanban. Отключение перетаскивания в определённые колонки](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md index b5d2552..60e4652 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md @@ -46,4 +46,4 @@ board.api.on("move-column", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.1 \ No newline at end of file +**Журнал изменений:** Событие добавлено в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md index c803fe7..9a214a7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md @@ -47,4 +47,4 @@ board.api.on("move-row", (obj) => { }); ~~~ -**История изменений:** Это событие было добавлено в версии v1.1 \ No newline at end of file +**Журнал изменений:** Это событие было добавлено в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md index 65808cc..4ba8559 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md @@ -34,4 +34,4 @@ board.api.on("redo", () => { }); ~~~ -**История изменений**: событие добавлено в версии v1.7 \ No newline at end of file +**Журнал изменений:** событие добавлено в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md index 5d60a5e..12c9b1f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md @@ -46,4 +46,4 @@ board.api.on("scroll", (obj) => { }); ~~~ -**Журнал изменений:** Событие было добавлено в версии v1.2 \ No newline at end of file +**Журнал изменений:** Событие было добавлено в v1.2 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md index 3bf10e7..4e4ff34 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md @@ -45,8 +45,8 @@ board.api.intercept("set-edit", (ev) => { }); ~~~ -**История изменений:** - - Событие добавлено в версии v1.2 - - Параметр ***eventSource*** добавлен в версии v1.6 +**Журнал изменений:** + - Событие добавлено в v1.2 + - Параметр ***eventSource*** добавлен в v1.6 **Связанные примеры:** [Kanban. Открытие редактора двойным кликом по задаче](https://snippet.dhtmlx.com/zh4d9pdb?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md index 57aa1d3..14ae41b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md @@ -50,4 +50,4 @@ board.api.on("set-sort", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.2 \ No newline at end of file +**Журнал изменений:** Событие добавлено в v1.2 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md index 2427f7e..be91a35 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md @@ -50,6 +50,6 @@ board.api.on("start-drag-card", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.4 +**Журнал изменений:** Событие добавлено в v1.4 **Связанный пример:** [Kanban. Отключение drag and drop для определённых колонок](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md index aa9c225..cac3f49 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md @@ -34,4 +34,4 @@ board.api.on("undo", () => { }); ~~~ -**История изменений**: Событие было добавлено в версии v1.7 \ No newline at end of file +**Журнал изменений:** Событие было добавлено в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md index 736e104..8be4da1 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md @@ -53,6 +53,6 @@ board.api.on("update-card", (obj) => { }); ~~~ -**История изменений**: -- Параметры **id** и **card** были добавлены в версии v1.1 -- Параметр **replace** был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** +- Параметры **id** и **card** были добавлены в v1.1 +- Параметр **replace** был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md index 1161654..e550d40 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md @@ -53,6 +53,6 @@ board.api.on("update-column", (obj) => { }); ~~~ -**История изменений**: -- Параметры **id** и **column** были добавлены в версии v1.1 -- Параметр **replace** был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** +- Параметры **id** и **column** были добавлены в v1.1 +- Параметр **replace** был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md index 5a350f7..cf1a8fa 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md @@ -59,4 +59,4 @@ board.api.on("update-comment", (obj) => { }); ~~~ -**История изменений:** Событие добавлено в версии v1.4 \ No newline at end of file +**Журнал изменений:** Событие добавлено в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md index 80c292e..c2b1a92 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md @@ -53,6 +53,6 @@ board.api.on("update-row", (obj) => { }); ~~~ -**История изменений**: -- Параметры **id** и **row** были добавлены в версии v1.1 -- Параметр **replace** был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** +- Параметры **id** и **row** были добавлены в v1.1 +- Параметр **replace** был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md index 13304d3..6e168a0 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md @@ -36,4 +36,4 @@ board.api.on("move-card", ({ id, columnId }) => { board.api.detach("move"); ~~~ -**История изменений**: Внутренний метод был добавлен в версии v1.7 \ No newline at end of file +**Журнал изменений:** Внутренний метод был добавлен в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md index 05e5f5f..11fd55d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md @@ -101,4 +101,4 @@ state.selected.subscribe((data) => { }); ~~~ -**История изменений:** Метод был обновлён в версии v1.7 \ No newline at end of file +**Журнал изменений:** Метод был обновлён в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md index f6f796a..1aba24c 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md @@ -86,4 +86,4 @@ console.log(state.cardShape); // вывод конфигурации карто //... ~~~ -**Изменения:** Метод был обновлён в версии v1.7 \ No newline at end of file +**Журнал изменений:** Метод был обновлён в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md index 592b701..cc3ae9a 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md @@ -16,7 +16,7 @@ description: Ознакомьтесь с API метода getStores для DHTML api.getStores(): object; ~~~ -### Возвращает +### Возвращаемое значение Метод возвращает объект с параметрами **DataStore**: @@ -39,4 +39,4 @@ const store = board.api.getStores(); console.log(store); ~~~ -**Изменения:** Метод был обновлён в версии v1.2 \ No newline at end of file +**Журнал изменений:** Метод был обновлён в v1.2 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md index d803b4e..427a79b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md @@ -50,4 +50,4 @@ board.api.intercept("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**История изменений**: параметры **config.tag** и **config.intercept** были добавлены в версии v1.7 \ No newline at end of file +**Журнал изменений:** параметры **config.tag** и **config.intercept** были добавлены в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md index baa3ef9..1658213 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md @@ -39,4 +39,4 @@ const board = new kanban.Kanban("#root", { board.export.json(); // => { "cards": [...], "columns": [...], "rows": [] } ~~~ -**История изменений:** Метод был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md index ff28249..4b84ca4 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md @@ -48,4 +48,4 @@ board.api.on("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**Журнал изменений**: параметры **config.tag** и **config.intercept** были добавлены в версии v1.7 \ No newline at end of file +**Журнал изменений:** параметры **config.tag** и **config.intercept** были добавлены в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md index a918567..3cca70e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md @@ -51,4 +51,4 @@ board.addColumn({ }); ~~~ -**История изменений**: Параметры **id**, **column** и **before** были добавлены в версии v1.1 \ No newline at end of file +**Журнал изменений:** Параметры **id**, **column** и **before** были добавлены в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md index 14f0618..718d9d3 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md @@ -53,4 +53,4 @@ board.addComment({ }); ~~~ -**История изменений:** Метод был добавлен в версии v1.4 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md index 98314b7..400138a 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md @@ -43,4 +43,4 @@ board.addLink({ }); ~~~ -**История изменений:** Метод добавлен в версии v1.5 \ No newline at end of file +**Журнал изменений:** Метод добавлен в v1.5 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md index 22900a2..06d2257 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md @@ -50,4 +50,4 @@ board.addRow({ }); ~~~ -**История изменений**: Параметры **id**, **row** и **before** были добавлены в версии v1.1 \ No newline at end of file +**Журнал изменений:** Параметры **id**, **row** и **before** были добавлены в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md index 8d5a379..ba2a7e5 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md @@ -39,4 +39,4 @@ board.deleteComment({ }); ~~~ -**История изменений:** Метод был добавлен в версии v1.4 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md index e1ab811..023ddb4 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md @@ -33,4 +33,4 @@ const board = new kanban.Kanban("#root", { board.deleteLink({ id: 5 }); ~~~ -**История изменений:** Метод был добавлен в версии v1.5 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.5 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md index dad028f..af31ec8 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md @@ -42,4 +42,4 @@ board.duplicateCard({ }); ~~~ -**История изменений:** Параметр `select` был добавлен в версии v1.5.10 \ No newline at end of file +**Журнал изменений:** Параметр `select` был добавлен в v1.5.10 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md index dde03be..da59ac8 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md @@ -37,4 +37,4 @@ const cards_data = board.getColumnCards(1); console.log(cards_data); ~~~ -**История изменений**: Метод был добавлен в версии v1.7 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.7 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md index f246d96..3f96afe 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md @@ -39,4 +39,4 @@ board.moveColumn({ }); ~~~ -**История изменений:** Метод был добавлен в версии v1.1 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md index 4fca6ab..719c9d3 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md @@ -40,4 +40,4 @@ board.moveRow({ }); ~~~ -**История изменений:** Метод был добавлен в версии v1.1 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.1 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md index 7b1a336..bb46bd7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md @@ -63,6 +63,6 @@ board.parse({ // board.setConfig({ columns, cards, rows, links }); ~~~ -**История изменений:** Начиная с версии v1.1 нет необходимости сбрасывать исходные данные в конструкторе перед парсингом новых данных +**Журнал изменений:** Начиная с v1.1 нет необходимости сбрасывать исходные данные в конструкторе перед парсингом новых данных -**Связанные статьи:** [Работа с данными](guides/working_with_data.md#load-data-from-a-local-source) +**Полезные статьи:** [Работа с данными](guides/working_with_data.md#load-data-from-a-local-source) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md index b65057e..1ec2c1d 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md @@ -32,4 +32,4 @@ const board = new kanban.Kanban("#root", { board.redo(); ~~~ -**История изменений:** Метод был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md index c25773d..f15d602 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md @@ -46,4 +46,4 @@ board.scroll({ }); ~~~ -**История изменений:** Метод был добавлен в версии v1.2 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.2 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md index bf9ad03..e30415c 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md @@ -16,7 +16,7 @@ description: Изучите API метода serialize для DHTMLX Kanban. У serialize(): object; ~~~ -### Возвращает +### Возвращаемое значение Метод возвращает объект с данными Kanban diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md index f443729..d8c6482 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md @@ -38,4 +38,4 @@ const board = new kanban.Kanban("#root", { board.setEdit({ cardId: 1 }); ~~~ -**История изменений:** Метод был добавлен в версии v1.2 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.2 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md index 46efd1e..75cb7cc 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md @@ -39,6 +39,6 @@ board.setLocale(kanban.locales["de"]); board.setLocale(); // или board.setLocale(null); ~~~ -**Журнал изменений:** Метод обновлён в версии v1.2 +**Журнал изменений:** Метод обновлён в v1.2 -**Связанные статьи:** [Локализация](guides/localization.md) \ No newline at end of file +**Полезные статьи:** [Локализация](guides/localization.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md index 6970ce5..ec6fd59 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md @@ -53,4 +53,4 @@ board.setSort({ }); ~~~ -**История изменений:** Метод был добавлен в версии v1.2 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.2 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md index eafd222..b3d13e4 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md @@ -32,4 +32,4 @@ const board = new kanban.Kanban("#root", { board.undo(); ~~~ -**Изменения:** Метод был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** Метод был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md index da71625..65b7d10 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md @@ -51,6 +51,6 @@ board.updateCard({ }); ~~~ -**История изменений**: -- Параметры **id** и **card** были добавлены в версии v1.1 -- Параметр **replace** был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** +- Параметры **id** и **card** были добавлены в v1.1 +- Параметр **replace** был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md index 40d1fdb..4d403f0 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md @@ -51,6 +51,6 @@ board.updateColumn({ }); ~~~ -**История изменений**: -- Параметры **id** и **column** были добавлены в версии v1.1 -- Параметр **replace** был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** +- Параметры **id** и **column** были добавлены в v1.1 +- Параметр **replace** был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md index 9e380bb..98da233 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md @@ -59,4 +59,4 @@ board.updateComment({ }); ~~~ -**История изменений:** Метод добавлен в версии v1.4 \ No newline at end of file +**Журнал изменений:** Метод добавлен в v1.4 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md index 0e8b8ca..45a2963 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md @@ -50,6 +50,6 @@ board.updateRow({ }); ~~~ -**История изменений**: -- Параметры **id** и **row** были добавлены в версии v1.1 -- Параметр **replace** был добавлен в версии v1.3 \ No newline at end of file +**Журнал изменений:** +- Параметры **id** и **row** были добавлены в v1.1 +- Параметр **replace** был добавлен в v1.3 \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md index 7e76b19..52a3318 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md @@ -8,7 +8,7 @@ description: Ознакомьтесь с API метода setConfig компон ### Описание -@short: Устанавливает новые параметры конфигурации панели инструментов (Toolbar) +@short: Устанавливает новые параметры конфигурации Toolbar ### Использование diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md index 2576be9..338aa11 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md @@ -38,6 +38,6 @@ board.setLocale(de); toolbar.setLocale(de); ~~~ -**Изменения:** Параметр **api** был устаревшим начиная с версии v1.6 +**Журнал изменений:** Параметр **api** был устаревшим начиная с v1.6 -**Связанные статьи:** [Локализация](guides/localization.md) \ No newline at end of file +**Полезные статьи:** [Локализация](guides/localization.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/main_overview.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/main_overview.md index 97abdb1..335d39e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/main_overview.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/overview/main_overview.md @@ -14,7 +14,7 @@ new kanban.Kanban("#root", { }); ~~~ -**Параметры**: +**Параметры:** - HTML контейнер (ID HTML контейнера) - объект параметров конфигурации ([см. здесь](#kanban-properties)) @@ -27,7 +27,7 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**Параметры**: +**Параметры:** - HTML контейнер (ID HTML контейнера) - объект параметров конфигурации ([см. здесь](#toolbar-properties)) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md index ee1b7ee..b4027f7 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md @@ -42,4 +42,4 @@ Promise.all([ }); ~~~ -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcolumns_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcolumns_method.md index e50d194..f2dc067 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcolumns_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcolumns_method.md @@ -20,7 +20,7 @@ description: Ознакомьтесь с API REST-метода getColumns для getColumns(): promise; ~~~ -### Возвращает +### Возвращаемое значение Метод **getColumns()** отправляет запрос на сервер методом **GET** и возвращает **promise** с данными колонок @@ -42,4 +42,4 @@ Promise.all([ }); ~~~ -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_gethandlers_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_gethandlers_method.md index 2406e33..d81ffb3 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_gethandlers_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_gethandlers_method.md @@ -14,7 +14,7 @@ description: Ознакомьтесь с API REST-метода getHandlers дл Метод **getHandlers()** является частью сервиса **RestDataProvider**, предназначенного для работы с сервером. ::: -### Применение +### Использование ~~~jsx {} getHandlers(): object; @@ -51,4 +51,4 @@ board.api.setNext(restProvider); Не копируйте обработчики по умолчанию в переопределение вручную. Содержимое карты действий по умолчанию может меняться между версиями; вызов `super.getHandlers()` гарантирует, что ваши пользовательские обработчики будут объединены поверх актуальных значений по умолчанию. ::: -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getidresolver_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getidresolver_method.md index 52f0168..9a2c812 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getidresolver_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getidresolver_method.md @@ -55,4 +55,4 @@ events.on(handlers); Та же функция-резолвер может использоваться внутри пользовательских обработчиков, передаваемых в `RemoteEvents.on()`. См. [Настройка серверных событий](guides/working_with_server.md/#customize-server-events) для полного примера. -**Связанные статьи:** [Работа с сервером: многопользовательский бэкенд](guides/working_with_server.md/#multiuser-backend) +**Полезные статьи:** [Работа с сервером: многопользовательский бэкенд](guides/working_with_server.md/#multiuser-backend) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md index 88da2bd..cb5af32 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md @@ -20,7 +20,7 @@ description: Ознакомьтесь с API REST-метода getLinks для D getLinks(): promise; ~~~ -### Возвращает +### Возвращаемое значение Метод **getLinks()** отправляет запрос на сервер с использованием метода **GET** и возвращает **promise** с данными ссылок. @@ -44,6 +44,6 @@ Promise.all([ }); ~~~ -**История изменений:** Метод был добавлен в версии v1.5 +**Журнал изменений:** Метод был добавлен в v1.5 -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getqueue_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getqueue_method.md index fe60ff0..e7061af 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getqueue_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getqueue_method.md @@ -31,4 +31,4 @@ getQueue(): object; Как правило, вызывать `getQueue()` напрямую не нужно. Используйте этот метод только в тех случаях, когда требуется детальный доступ к очереди (например, при реализации расширенной пользовательской синхронизации между клиентом и сервером). -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md index cabd1dd..a9813ec 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md @@ -20,7 +20,7 @@ description: Ознакомьтесь с API REST-метода getRows для DH getRows(): promise; ~~~ -### Возвращает +### Возвращаемое значение Метод **getRows()** отправляет запрос на сервер методом **GET** и возвращает **promise** с данными строк @@ -45,4 +45,4 @@ Promise.all([ }); ~~~ -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md index e3a513e..b792a11 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md @@ -55,6 +55,6 @@ Promise.all([ }); ~~~ -**Журнал изменений:** Метод был добавлен в версии v1.3 +**Журнал изменений:** Метод был добавлен в v1.3 -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md index 7064297..cae64e6 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md @@ -110,4 +110,4 @@ board.api.setNext(new MyDataProvider(url)); --- -**Связанные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_setheaders_method.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_setheaders_method.md index a833b92..14f4804 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_setheaders_method.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_setheaders_method.md @@ -39,4 +39,4 @@ restProvider.setHeaders({ Чтобы задать заголовки только для конкретного запроса, а не для каждого, передайте их в качестве четвёртого аргумента в [`send()`](api/provider/rest_methods/js_kanban_send_method.md). -**Связанные статьи:** [Работа с сервером: Многопользовательский бэкенд](guides/working_with_server.md/#multiuser-backend) +**Полезные статьи:** [Работа с сервером: Многопользовательский бэкенд](guides/working_with_server.md/#multiuser-backend) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md index bc900c3..09e10fb 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md @@ -41,4 +41,4 @@ HTTP статус код указывает, был ли запрос успеш --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md index fde7fd8..af87797 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md @@ -30,4 +30,4 @@ description: Ознакомьтесь с REST-маршрутом DELETE /cards --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md index e6df42d..b2d419a 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md @@ -40,4 +40,4 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md index 5ee6f94..c4e58a6 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md @@ -30,4 +30,4 @@ description: Ознакомьтесь с REST-маршрутом DELETE /columns --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md index e33488a..ef90b96 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md @@ -30,7 +30,7 @@ description: Ознакомьтесь с REST-маршрутом DELETE /links --- -**Связанные статьи**: +**Полезные статьи:** - [Работа с сервером](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md index 97b28ab..7314db3 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md @@ -30,4 +30,4 @@ description: Ознакомьтесь с REST-маршрутом DELETE /rows д --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md index f2a2302..4699250 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md @@ -76,6 +76,6 @@ HTTP статус-код показывает, был ли запрос успе --- -**Связанные статьи**: +**Полезные статьи:** - [Работа с сервером](guides/working_with_server.md) - [getCards()](api/provider/rest_methods/js_kanban_getcards_method.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md index bf73271..9f23045 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md @@ -53,6 +53,6 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: +**Полезные статьи:** - [Работа с сервером](guides/working_with_server.md) - [getColumns()](api/provider/rest_methods/js_kanban_getcolumns_method.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md index a1d0c06..6693509 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md @@ -45,6 +45,6 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: +**Полезные статьи:** - [Работа с сервером](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md index 54696a8..b54216a 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md @@ -43,6 +43,6 @@ HTTP статус-код показывает, успешно ли выполн --- -**Связанные статьи**: +**Полезные статьи:** - [Работа с сервером](guides/working_with_server.md) - [getRows()](api/provider/rest_methods/js_kanban_getrows_method.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md index 28536f8..a01aef3 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md @@ -33,4 +33,4 @@ HTTP статус код указывает, успешен ли запрос (r --- -**Связанные статьи**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md index 345f97f..3f4ec4e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md @@ -48,6 +48,6 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: +**Полезные статьи:** - [Работа с сервером](guides/working_with_server.md) - [getUsers()](api/provider/rest_methods/js_kanban_getusers_method.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md index 508a95c..e897a2b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md @@ -46,4 +46,4 @@ HTTP статус код показывает, успешно ли выполн --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md index b5b10bd..48ebad1 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md @@ -48,4 +48,4 @@ HTTP статус код показывает, успешно ли выполн --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md index 487c307..f1f5ab6 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md @@ -32,4 +32,4 @@ HTTP-статус код показывает, был ли запрос успе --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md index a59da28..6969833 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md @@ -44,4 +44,4 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md index 7c9a89f..6286615 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md @@ -48,7 +48,7 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: +**Полезные статьи:** - [Работа с сервером](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md index 56934c7..dd4edc0 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md @@ -46,4 +46,4 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md index bddcba2..e112cb5 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md @@ -54,4 +54,4 @@ HTTP статус код показывает, успешно ли выполн --- -**Связанные статьи**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md index b6db18e..4b7c7ae 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md @@ -53,4 +53,4 @@ HTTP статус код показывает, был ли запрос успе --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md index ff5246d..e8292c2 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md @@ -90,4 +90,4 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md index b7b4394..2700970 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md @@ -68,4 +68,4 @@ HTTP статус-код показывает, успешен ли запрос --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md index b1cd3d1..7ae2e93 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md @@ -52,4 +52,4 @@ HTTP статус код показывает, успешен ли запрос --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md index 0af118e..741495b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md @@ -50,4 +50,4 @@ HTTP статус код указывает на успешность запро --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md index c84f22a..b5d9e6f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md @@ -52,4 +52,4 @@ HTTP статус-код указывает, успешно ли выполне --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md index d7b9113..ffc19df 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md @@ -50,4 +50,4 @@ HTTP-код статуса показывает, успешен ли запро --- -**Связанные статьи**: [Работа с сервером](guides/working_with_server.md) \ No newline at end of file +**Полезные статьи:** [Работа с сервером](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md index 59b38dc..afaa7fd 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/configuration.md @@ -1,7 +1,7 @@ --- sidebar_label: Конфигурация title: Руководство по конфигурации Kanban -description: Читайте руководство по конфигурации DHTMLX Kanban. Узнайте, как настраивать карточки, колонки, строки, редактор, панель инструментов и другие элементы доски. +description: Читайте руководство по конфигурации DHTMLX Kanban. Узнайте, как настраивать карточки, колонки, строки, редактор, Toolbar и другие элементы доски. --- # Конфигурация diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/stylization.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/stylization.md index de230cb..2c74eb5 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/stylization.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/stylization.md @@ -57,7 +57,7 @@ const cards = [ --wx-kanban-column-width: 300px; --wx-kanban-column-height: 300px; - /* стили панели инструментов */ + /* стили Toolbar */ --wx-kanban-toolbar-height: 56px; --wx-kanban-toolbar-align: center; --wx-kanban-toolbar-justify: flex-start; @@ -142,4 +142,4 @@ const cards = [ -**Связанные статьи:** [Кастомизация](guides/customization.md) +**Полезные статьи:** [Кастомизация](guides/customization.md) diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/guides/typescript_support.md b/i18n/ru/docusaurus-plugin-content-docs/current/guides/typescript_support.md index cf0dd02..ed1df4f 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/guides/typescript_support.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/guides/typescript_support.md @@ -6,7 +6,7 @@ description: Следуйте руководству по поддержке Typ # Поддержка TypeScript -Начиная с версии v1.1, DHTMLX Kanban поставляется со встроенными определениями TypeScript. +Начиная с v1.1, DHTMLX Kanban поставляется со встроенными определениями TypeScript. :::note Попробуйте [Snippet Tool](https://snippet.dhtmlx.com/2blo6hx8?tag=kanban) для рабочего примера на TypeScript. diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/how_to_start.md b/i18n/ru/docusaurus-plugin-content-docs/current/how_to_start.md index 0da3af9..da562a4 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/how_to_start.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/how_to_start.md @@ -12,7 +12,7 @@ import editor from '@site/static/img/js_kanban_editor.png'; Основной вид DHTMLX JavaScript Kanban с панелью инструментов, доской, колонками, дорожками (swimlanes) и карточками diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/howtos.md b/i18n/ru/docusaurus-plugin-content-docs/current/howtos.md index 2d6fc6b..028da1b 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/howtos.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/howtos.md @@ -20,7 +20,7 @@ description: На этой странице документации библи | [Стилизация](guides/stylization.md) | Узнайте, как стилизовать Kanban | | [Локализация](guides/localization.md) | Узнайте, как локализовать Kanban ([Пример](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban))| -## Справочник по API +## Справочник API В этом разделе вы найдете соответствующие справочники по API Kanban diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/index.md b/i18n/ru/docusaurus-plugin-content-docs/current/index.md index 3913754..5b6a799 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/index.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/index.md @@ -11,15 +11,15 @@ JavaScript Kanban - это эффективное решение для визу ## Структура Kanban -### Панель инструментов +### Toolbar -**Панель инструментов** Kanban является отдельной частью интерфейса. Она включает строку поиска для *поиска* карточек, элемент управления для *сортировки* карточек по заданным параметрам, два элемента для управления историей (*отмена/повтор*) и элементы для *добавления новых колонок и строк*. Вы можете гибко управлять логикой поиска и сортировки, а также изменять структуру панели инструментов, добавляя собственные элементы или меняя порядок встроенных. Подробнее читайте в разделе [Конфигурация](guides/configuration.md#toolbar). +**Toolbar** Kanban является отдельной частью интерфейса. Она включает строку поиска для *поиска* карточек, элемент управления для *сортировки* карточек по заданным параметрам, два элемента для управления историей (*отмена/повтор*) и элементы для *добавления новых колонок и строк*. Вы можете гибко управлять логикой поиска и сортировки, а также изменять структуру Toolbar, добавляя собственные элементы или меняя порядок встроенных. Подробнее читайте в разделе [Конфигурация](guides/configuration.md#toolbar). import toolbar from '@site/static/img/js_kanban_toolbar.png'; Панель инструментов DHTMLX Kanban с полем поиска, элементом сортировки, кнопками отмены/повтора и элементами для добавления колонок и строк diff --git a/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md b/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md index 8e52875..f17d91e 100644 --- a/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md +++ b/i18n/ru/docusaurus-plugin-content-docs/current/news/whats_new.md @@ -47,7 +47,7 @@ description: Ознакомьтесь с новыми возможностями Также доступны [**пример на GitHub**](https://github.com/DHTMLX/salesforce-lwc-demo) и [**онлайн-демо**](https://dhtmlx-dev-ed.develop.lightning.force.com/) (*Логин*: ***user***, *Пароль*: ***demo***). -### Новый АПИ +### Новый API - #### События @@ -78,7 +78,7 @@ description: Ознакомьтесь с новыми возможностями - Свойство [`cards[i].attached[i]`](api/config/js_kanban_cards_config.md) расширено параметром `size` -### Удалённый АПИ +### Удалённый API - Свойство `editorAutoSave` удалено. Используйте свойство [`editor.autoSave`](api/config/js_kanban_editor_config.md) @@ -154,7 +154,7 @@ description: Ознакомьтесь с новыми возможностями [Обзор релиза в блоге](https://dhtmlx.com/blog/dhtmlx-kanban-1-6/) -### Новая функциональность +### Новый функционал - Возможность изменять количество отображаемых на карточке назначенных пользователей через свойство [`cardShape.users.maxCount`](api/config/js_kanban_cardshape_config.md) (см. [**пример**](https://snippet.dhtmlx.com/w205dvzg?tag=kanban)) - Возможность изменять содержимое заголовков колонок через свойство [`columnShape`](api/config/js_kanban_columnshape_config.md) (см. [**пример**](https://snippet.dhtmlx.com/gq2saz9c?tag=kanban)) @@ -306,13 +306,13 @@ description: Ознакомьтесь с новыми возможностями [Обзор релиза в блоге](https://dhtmlx.com/blog/dhtmlx-kanban-1-5/) -### Новая функциональность +### Новый функционал - Возможность устанавливать и удалять связи между карточками в режиме реального времени - Возможность управлять связями между карточками на стороне сервера - Возможность фиксировать заголовки колонок (см. [**пример**](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban)) -### Новый АПИ +### Новый API - #### Методы @@ -369,14 +369,14 @@ description: Ознакомьтесь с новыми возможностями [Обзор релиза в блоге](https://dhtmlx.com/blog/dhtmlx-kanban-1-4/) -### Новая функциональность +### Новый функционал - Возможность добавлять комментарии (см. [**пример**](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban)) - Возможность ограничивать количество пользователей (см. [**пример**](https://snippet.dhtmlx.com/2rlg4qvk?tag=kanban)) - Возможность устанавливать связи между карточками (см. [**пример**](https://snippet.dhtmlx.com/81qu7qh0?tag=kanban)) - Возможность голосовать за карточку (см. [**пример**](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban)) -### Новый АПИ +### Новый API - #### События @@ -417,7 +417,7 @@ description: Ознакомьтесь с новыми возможностями - Свойство [`rows`](api/config/js_kanban_rows_config.md) расширено параметром ***css*** (см. [**пример**](https://snippet.dhtmlx.com/tev4ej9c?tag=kanban)) - Свойство [`rowShape`](api/config/js_kanban_rowshape_config.md) расширено параметром ***css*** (см. [**пример**](https://snippet.dhtmlx.com/tev4ej9c?tag=kanban)) -### Устаревший АПИ +### Устаревший API - #### Свойства @@ -437,18 +437,18 @@ description: Ознакомьтесь с новыми возможностями [Обзор релиза в блоге](https://dhtmlx.com/blog/dhtmlx-kanban-1-3/) -### Новая функциональность +### Новый функционал -- Дублирование карточек через АПИ, контекстное меню (иконка с тремя точками) или сочетание клавиш `Ctrl (Command)` + `D` (позволяет дублировать несколько карточек) +- Дублирование карточек через API, контекстное меню (иконка с тремя точками) или сочетание клавиш `Ctrl (Command)` + `D` (позволяет дублировать несколько карточек) - Экспорт данных Kanban в файл JSON - Управление историей Kanban: - через элементы управления *Undo* и *Redo* на тулбаре - через сочетания клавиш: - `Ctrl (Command)`+`Z` — отменить действие - `Ctrl (Command)`+`Y` или `Ctrl (Command)`+`Shift`+`Z` — повторить действие - - через АПИ + - через API -### Новый АПИ +### Новый API - **События:** [`duplicate-card`](api/events/js_kanban_duplicatecard_event.md) @@ -467,7 +467,7 @@ description: Ознакомьтесь с новыми возможностями - **Общие настройки:** [`$meta`](api/common/js_kanban_meta_parameter.md) -### Устаревший АПИ +### Устаревший API - **Свойства:** [`editorAutoSave`](api/config/js_kanban_editorautosave_config.md) @@ -515,15 +515,15 @@ description: Ознакомьтесь с новыми возможностями [Обзор релиза в блоге](https://dhtmlx.com/blog/dhtmlx-kanban-1-2/) -### Новая функциональность +### Новый функционал - Добавление новых карточек через меню колонки (см. [**пример**](https://snippet.dhtmlx.com/8eo65gr5?tag=kanban)) - Динамическая отрисовка (см. [**пример**](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban)) - Прокрутка отдельных колонок (см. [**пример**](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban)) -- Прокрутка Kanban до вновь созданных карточек, колонок и строк (АПИ и интерфейс) (см. [**пример**](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban)) -- Сортировка карточек (АПИ и интерфейс) (см. [**пример**](https://snippet.dhtmlx.com/74nyuv14?tag=kanban)) +- Прокрутка Kanban до вновь созданных карточек, колонок и строк (API и UI) (см. [**пример**](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban)) +- Сортировка карточек (API и UI) (см. [**пример**](https://snippet.dhtmlx.com/74nyuv14?tag=kanban)) -### Новый АПИ +### Новый API - **События:** [`scroll`](api/events/js_kanban_scroll_event.md), @@ -589,7 +589,7 @@ description: Ознакомьтесь с новыми возможностями [Обзор релиза в блоге](https://dhtmlx.com/blog/dhtmlx-kanban-1-1-wip-validation-new-operations-columns-rows-typescript-support/) -### Новая функциональность +### Новый функционал - Возможность *сворачивать/разворачивать* колонки с помощью стрелки слева от метки колонки - Возможность *ограничивать* количество карточек для колонок и swimlane @@ -598,7 +598,7 @@ description: Ознакомьтесь с новыми возможностями - Возможность *выбирать несколько карточек* в одной колонке с помощью привычного сочетания **Shift** + **клик** - Возможность использовать [определения TypeScript](guides/typescript_support.md) Kanban -### Новый АПИ +### Новый API - Новые **события** для перемещения колонок и строк: [`move-column`](api/events/js_kanban_movecolumn_event.md) diff --git a/i18n/zh/code.json b/i18n/zh/code.json index be89e8d..b5f70e4 100644 --- a/i18n/zh/code.json +++ b/i18n/zh/code.json @@ -147,7 +147,7 @@ "description": "Info 提示框的默认标签(:::info)" }, "theme.admonition.note": { - "message": "注释", + "message": "备注", "description": "Note 提示框的默认标签(:::note)" }, "theme.admonition.tip": { diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md index 3590a16..38257d0 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/common/js_kanban_meta_parameter.md @@ -47,6 +47,6 @@ board.addCard({ }); ~~~ -**更新日志:** `$meta` 参数自 v1.3 版本起添加 +**更新日志:** `$meta` 参数在 v1.3 中新增 **相关文章:** [`history`](api/config/js_kanban_history_config.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md index 8739dd2..9b770d2 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardheight_config.md @@ -34,8 +34,8 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** 该属性在 v1.2 版本中添加 +**更新日志:** 该属性在 v1.2 中新增 -**相关文档:** [配置](guides/configuration.md#cards) +**相关文章:** [配置](guides/configuration.md#cards) **相关示例:** [Kanban. Lazy rendering and column scroll](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md index ad6434f..5396ed9 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cards_config.md @@ -147,10 +147,10 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** ***css***、***comments*** 和 ***votes*** 参数在 v1.4 版本中新增 +**更新日志:** ***css***、***comments*** 和 ***votes*** 参数在 v1.4 中新增 -**相关文档:** +**相关文章:** - [数据操作](guides/working_with_data.md) - [updateCard()](api/methods/js_kanban_updatecard_method.md) -**相关示例:** [看板. 卡片样式](https://snippet.dhtmlx.com/qu6rpktk?tag=kanban) +**相关示例:** [Kanban. 卡片样式](https://snippet.dhtmlx.com/qu6rpktk?tag=kanban) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md index 7060542..f0aefa3 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardshape_config.md @@ -324,17 +324,17 @@ new kanban.Kanban("#root", { ~~~ **更新日志:** -- v1.4 版本新增了 ***comments***、***css*** 和 ***votes*** 参数 -- v1.4 版本废弃了 ***menu.items[0].label*** 参数,改用 ***menu.items[0].text*** 参数 -- v1.4 版本废弃了 ***menu.items[0].items*** 参数,改用 ***menu.items[0].data*** 参数 -- v1.6 版本新增了 ***users.maxCount*** 和 ***votes.clickable*** 参数 -- v1.7 版本移除了 ***menu.items[0].label*** 和 ***menu.items[0].items*** 参数 -- v1.7 版本更新了 ***menu.items*** 函数,**store** 参数被替换为 **readonly** +- v1.4新增了 ***comments***、***css*** 和 ***votes*** 参数 +- v1.4 中弃用了 ***menu.items[0].label*** 参数,改用 ***menu.items[0].text*** 参数 +- v1.4 中弃用了 ***menu.items[0].items*** 参数,改用 ***menu.items[0].data*** 参数 +- v1.6新增了 ***users.maxCount*** 和 ***votes.clickable*** 参数 +- v1.7移除了 ***menu.items[0].label*** 和 ***menu.items[0].items*** 参数 +- v1.7更新了 ***menu.items*** 函数,**store** 参数被替换为 **readonly** -**相关文档:** [配置](guides/configuration.md#cards) +**相关文章:** [配置](guides/configuration.md#cards) **相关示例:** -- [看板. 泳道、评论、投票](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) -- [看板. 突出显示过期和激活任务](https://snippet.dhtmlx.com/7fvc3rr1?tag=kanban) -- [看板. 卡片样式](https://snippet.dhtmlx.com/qu6rpktk?tag=kanban) -- [看板. 每个任务无限制用户分配](https://snippet.dhtmlx.com/w205dvzg?tag=kanban) \ No newline at end of file +- [Kanban. 泳道、评论、投票](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) +- [Kanban. 突出显示过期和激活任务](https://snippet.dhtmlx.com/7fvc3rr1?tag=kanban) +- [Kanban. 卡片样式](https://snippet.dhtmlx.com/qu6rpktk?tag=kanban) +- [Kanban. 每个任务无限制用户分配](https://snippet.dhtmlx.com/w205dvzg?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md index 2320f78..e074234 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_cardtemplate_config.md @@ -66,8 +66,8 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** 在 v1.4 版本中新增了显示上下文菜单的功能 +**更新日志:** 在 v1.4 中新增了显示上下文菜单的功能 -**相关文档:** [自定义](guides/customization.md#custom-cards) +**相关文章:** [自定义](guides/customization.md#custom-cards) **相关示例:** [Kanban. Custom card](https://snippet.dhtmlx.com/8rhdq81d?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md index f986bc0..574a965 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columns_config.md @@ -113,13 +113,13 @@ new kanban.Kanban("#root", { - 您的选择器包含足够的上下文(例如父元素及内部 DHTMLX 类) - 如果属性被内联样式覆盖,您可以使用 `!important` -**更新日志:** **css** 和 **overlay** 参数在 v1.4 中添加 +**更新日志:** **css** 和 **overlay** 参数在 v1.4 中新增 -**相关文档:** +**相关文章:** - [数据操作](guides/working_with_data.md) - [updateColumn()](api/methods/js_kanban_updatecolumn_method.md) **相关示例:** -- [看板。列和泳道的限制](https://snippet.dhtmlx.com/2blo6hx8?tag=kanban) -- [看板。通过自定义菜单更改列颜色](https://snippet.dhtmlx.com/fnlvd2g5?tag=kanban) -- [看板。禁用拖放到特定列](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) +- [Kanban。列和泳道的限制](https://snippet.dhtmlx.com/2blo6hx8?tag=kanban) +- [Kanban。通过自定义菜单更改列颜色](https://snippet.dhtmlx.com/fnlvd2g5?tag=kanban) +- [Kanban。禁用拖放到特定列](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md index eaa1d3a..034e821 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_columnshape_config.md @@ -92,7 +92,7 @@ columnShape?: { ~~~ ::: -- `fixedHeaders` - (可选)在垂直滚动时固定列头(默认 *true*)。必须在看板本身启用滚动(限制高度) +- `fixedHeaders` - (可选)在垂直滚动时固定列头(默认 *true*)。必须在 Kanban 本身启用滚动(限制高度) - `css` - (可选)一个函数,根据条件返回应用于列的 CSS 类名 - `headerTemplate` - (可选)展开状态下列头的 HTML 模板。该函数接收一个 `props` 对象,包含以下属性: - `column` - (对象)列数据(结构参见 [`columns`](api/config/js_kanban_columns_config.md)) @@ -220,13 +220,13 @@ new kanban.Kanban("#root", { ~~~ **更新日志:** -- ***css*** 参数在 v1.4 版本新增 -- ***menu.items[0].label*** 参数在 v1.4 版本被废弃,替换为 ***menu.items[0].text*** -- ***menu.items[0].items*** 参数在 v1.4 版本被废弃,替换为 ***menu.items[0].data*** -- ***fixedHeaders*** 参数在 v1.5 版本新增 -- ***headerTemplate*** 和 ***collapsedTemplate*** 参数在 v1.6 版本新增 -- ***menu.items[0].label*** 和 ***menu.items[0].items*** 参数在 v1.7 版本移除 -- ***menu.items*** 函数更新,v1.7 版本中 **store** 参数替换为 **readonly** +- ***css*** 参数在 v1.4新增 +- ***menu.items[0].label*** 参数在 v1.4 中弃用,替换为 ***menu.items[0].text*** +- ***menu.items[0].items*** 参数在 v1.4 中弃用,替换为 ***menu.items[0].data*** +- ***fixedHeaders*** 参数在 v1.5新增 +- ***headerTemplate*** 和 ***collapsedTemplate*** 参数在 v1.6新增 +- ***menu.items[0].label*** 和 ***menu.items[0].items*** 参数在 v1.7移除 +- ***menu.items*** 函数更新,v1.7 中 **store** 参数替换为 **readonly** **相关文章:** [配置](guides/configuration.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md index 668612d..55fc743 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_currentuser_config.md @@ -31,6 +31,6 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** 该属性在 v1.4 中添加 +**更新日志:** 该属性在 v1.4 中新增 **相关示例:** [Kanban. Swimlanes, comments, votes](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md index 2920ecc..7b1ef7f 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editor_config.md @@ -57,6 +57,6 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** `placement` 参数在 v1.6 版本中添加 +**更新日志:** `placement` 参数在 v1.6 中新增 **相关示例:** [Kanban. 在模态窗口中打开编辑器](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md index 8711943..61a2e3d 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorautosave_config.md @@ -9,7 +9,7 @@ description: 阅读 DHTMLX Kanban 的 editorAutoSave 配置 API。了解如何

editorAutoSave

:::danger -从版本 1.3 开始,`editorAutoSave` 属性已被**弃用**。要管理"自动保存"模式,请使用 [`editor`](api/config/js_kanban_editor_config.md) 属性! +从 v1.3 起,`editorAutoSave` 属性已被**弃用**。要管理"自动保存"模式,请使用 [`editor`](api/config/js_kanban_editor_config.md) 属性! ::: ### 描述 @@ -17,7 +17,7 @@ description: 阅读 DHTMLX Kanban 的 editorAutoSave 配置 API。了解如何 @short: 可选。启用/禁用自动保存模式 :::info -通过此参数,您可以启用或禁用看板的自动保存模式。如果将 **editorAutoSave** 属性设置为 **false**,编辑器将显示"保存"按钮以保存编辑的数据。 +通过此参数,您可以启用或禁用 Kanban 的自动保存模式。如果将 **editorAutoSave** 属性设置为 **false**,编辑器将显示"保存"按钮以保存编辑的数据。 ::: ### 用法 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md index da7e648..1b80106 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_editorshape_config.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 editorShape 配置文档。了解如何定 ### 描述 -@short: 可选。一个包含对象的数组,用于管理看板编辑器的外观和功能设置 +@short: 可选。一个包含对象的数组,用于管理 Kanban 编辑器的外观和功能设置 ### 用法 @@ -155,7 +155,7 @@ editorShape?: [ - `type` - (必填)编辑器字段类型 :::important -在看板编辑器中,您可以使用以下字段类型:**dateRange**、**date**、**combo**、**select**、**multiselect**、**color**、**text**、**textarea**、**progress**、**files**、**comments** 和 **links** +在 Kanban 编辑器中,您可以使用以下字段类型:**dateRange**、**date**、**combo**、**select**、**multiselect**、**color**、**text**、**textarea**、**progress**、**files**、**comments** 和 **links** ::: - `key` - (必填)编辑器字段的键。这里需要使用 [`cardShape`](api/config/js_kanban_cardshape_config.md) 属性中指定的值。示例如下: @@ -468,9 +468,9 @@ new kanban.Kanban("#root", { **更新日志:** -- v1.3 版本新增了 ***dateRange*** 类型 -- v1.4 版本新增了 ***comments*** 和 ***links*** 编辑器类型,以及 ***format*** 参数 -- v1.6 版本新增了 ***modalSection*** 参数 +- v1.3新增了 ***dateRange*** 类型 +- v1.4新增了 ***comments*** 和 ***links*** 编辑器类型,以及 ***format*** 参数 +- v1.6新增了 ***modalSection*** 参数 - ***clearButton*** 参数被替换为 ***clear*** 参数 -**相关文档:** [配置](guides/configuration.md/#editor) +**相关文章:** [配置](guides/configuration.md/#editor) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md index 765834b..ae0358a 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_getcardheight_config.md @@ -71,4 +71,4 @@ new kanban.Kanban("#root", { }); ~~~ -**相关文档:** [配置](guides/configuration.md#rendering-and-scrolling) +**相关文章:** [配置](guides/configuration.md#rendering-and-scrolling) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md index 855c7f6..0fc7fda 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_history_config.md @@ -11,7 +11,7 @@ description: 阅读 DHTMLX Kanban 的 history 配置 API。了解如何启用或 @short: 可选。启用或禁用变更历史的管理 :::info -通过使用 `history` 属性,您可以启用或禁用 Kanban 的历史管理。如果将其设置为 **false**,则无法通过 API 和工具栏控件管理历史。 +通过使用 `history` 属性,您可以启用或禁用 Kanban 的历史管理。如果将其设置为 **false**,则无法通过 API 和 Toolbar 控件管理历史。 ::: :::tip @@ -41,6 +41,6 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** 此属性在 v1.3 版本中新增 +**更新日志:** 此属性在 v1.3 中新增 -**相关文档:** [`undo()`](api/methods/js_kanban_undo_method.md) 和 [`redo()`](api/methods/js_kanban_redo_method.md) \ No newline at end of file +**相关文章:** [`undo()`](api/methods/js_kanban_undo_method.md) 和 [`redo()`](api/methods/js_kanban_redo_method.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md index d2b72fd..1d4087c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_links_config.md @@ -60,10 +60,10 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** 该属性在 v1.7 中进行了更新: +**更新日志:** 该属性在 v1.7 中更新: - **masterId** 参数被替换为 **source** 参数 - **slaveId** 参数被替换为 **target** 参数 -**相关文档:** [数据操作](guides/working_with_data.md) +**相关文章:** [数据操作](guides/working_with_data.md) -**相关示例:** [看板任务之间的链接](https://snippet.dhtmlx.com/81qu7qh0?tag=kanban) +**相关示例:** [Kanban 任务之间的链接](https://snippet.dhtmlx.com/81qu7qh0?tag=kanban) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md index fa6efea..33f5ee5 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_locale_config.md @@ -8,10 +8,10 @@ description: 阅读 DHTMLX Kanban 的 locale 配置 API。了解如何为看板 ### 描述 -@short: 可选。一个自定义看板语言环境的对象 +@short: 可选。一个自定义 Kanban 语言环境的对象 :::info -**locale** 对象需要包含看板和工具栏的所有标签及其对应的翻译。 +**locale** 对象需要包含 Kanban 和 Toolbar 的所有标签及其对应的翻译。 ::: ### 用法 @@ -22,16 +22,16 @@ locale?: object; ### 默认配置 -默认情况下,看板使用[**英语**](guides/localization.md#default-locale)语言环境。您也可以设置为自定义语言环境。 +默认情况下,Kanban 使用[**英语**](guides/localization.md#default-locale)语言环境。您也可以设置为自定义语言环境。 :::tip -要动态更改当前语言环境,可以使用看板的[**setLocale()**](api/methods/js_kanban_setlocale_method.md)方法。 +要动态更改当前语言环境,可以使用 Kanban 的[**setLocale()**](api/methods/js_kanban_setlocale_method.md)方法。 ::: ### 示例 ~~~jsx {5} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, @@ -40,6 +40,6 @@ const board = new kanban.Kanban("#root", { }); ~~~ -**相关文档:** [本地化](guides/localization.md) +**相关文章:** [本地化](guides/localization.md) -**相关示例:** [看板。本地化](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file +**相关示例:** [Kanban。本地化](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md index 72f726d..fac361c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rendertype_config.md @@ -45,8 +45,8 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** 该属性在 v1.2 版本中添加 +**更新日志:** 该属性在 v1.2 中新增 -**相关文档:** [配置](guides/configuration.md#cards) +**相关文章:** [配置](guides/configuration.md#cards) **相关示例:** [Kanban. 固定表头,懒加载渲染和列滚动](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md index 02ac549..4560cbf 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rows_config.md @@ -56,9 +56,9 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** ***css*** 参数在 v1.4 中添加 +**更新日志:** ***css*** 参数在 v1.4 中新增 -**相关文档:** +**相关文章:** - [数据操作](guides/working_with_data.md) - [updateRow()](api/methods/js_kanban_updaterow_method.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md index aa9c454..e3157b3 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_rowshape_config.md @@ -183,6 +183,6 @@ new kanban.Kanban("#root", { - ***menu.items[0].label*** 和 ***menu.items[0].items*** 参数在 v1.7 中移除 - ***menu.items*** 函数更新,v1.7 中用 **readonly** 参数替换了 **store** -**相关文档:** [配置](guides/configuration.md) +**相关文章:** [配置](guides/configuration.md) **相关示例:** [Kanban. 通过自定义菜单更改行颜色](https://snippet.dhtmlx.com/tev4ej9c?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md index 451ea87..a1b6b2e 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/js_kanban_scrolltype_config.md @@ -45,8 +45,8 @@ new kanban.Kanban("#root", { }); ~~~ -**更新日志:** 该属性在 v1.2 版本中添加 +**更新日志:** 该属性在 v1.2 中新增 -**相关文档:** [配置](guides/configuration.md#cards) +**相关文章:** [配置](guides/configuration.md#cards) -**相关示例:** [看板。固定表头、懒加载渲染和列滚动](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) +**相关示例:** [Kanban。固定表头、懒加载渲染和列滚动](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md index d3f3eee..e5c55e7 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_api_config.md @@ -1,7 +1,7 @@ --- sidebar_label: api title: Toolbar api 配置 API -description: 阅读 DHTMLX Kanban 的 Toolbar api 配置 API。了解如何将工具栏连接到 Kanban 内部 API。 +description: 阅读 DHTMLX Kanban 的 Toolbar api 配置 API。了解如何将 Toolbar 连接到 Kanban 内部 API。 --- # api @@ -33,6 +33,6 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**相关文档:** [配置](guides/configuration.md#toolbar) +**相关文章:** [配置](guides/configuration.md#toolbar) -**相关示例:** [Kanban. 自定义工具栏](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) \ No newline at end of file +**相关示例:** [Kanban. 自定义 Toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md index e12efcc..96f4b80 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_items_config.md @@ -1,14 +1,14 @@ --- sidebar_label: items title: Toolbar items 配置 API -description: 阅读 DHTMLX Kanban 的 Toolbar items 配置文档。了解如何配置工具栏按钮、搜索、撤销及各类控件。 +description: 阅读 DHTMLX Kanban 的 Toolbar items 配置文档。了解如何配置 Toolbar 按钮、搜索、撤销及各类控件。 --- # items ### 描述 -@short: 可选。一个数组,包含排列在看板工具栏上的控件 +@short: 可选。一个数组,包含排列在 Kanban Toolbar 上的控件 ### 用法 @@ -180,12 +180,12 @@ new kanban.Toolbar("#toolbar", { **更新日志:** -- 在 v1.3 版本中新增了 *"Undo"* 和 *"Redo"* 控件 -- 在 v1.4 版本中,**sort** 控件的 ***items.options[0].label*** 参数被替换为 ***items.options[0].text*** -- 在 v1.6 版本中,**"search"** 控件新增了 ***items.resultTemplate*** 参数 +- 在 v1.3 中新增了 *"Undo"* 和 *"Redo"* 控件 +- 在 v1.4 中,**sort** 控件的 ***items.options[0].label*** 参数被替换为 ***items.options[0].text*** +- 在 v1.6 中,**"search"** 控件新增了 ***items.resultTemplate*** 参数 -**相关文档:** [配置](guides/configuration.md#toolbar) 和 [自定义](guides/customization.md#custom-toolbar) +**相关文章:** [配置](guides/configuration.md#toolbar) 和 [自定义](guides/customization.md#custom-toolbar) **相关示例:** -- [看板. 自定义工具栏](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) -- [看板. 搜索结果中建议项的自定义](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban) +- [Kanban. 自定义 Toolbar](https://snippet.dhtmlx.com/s5r5h4ju?tag=kanban) +- [Kanban. 搜索结果中建议项的自定义](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md index 2a9bd4f..d4f9f3d 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/config/toolbar_locale_config.md @@ -1,17 +1,17 @@ --- sidebar_label: locale title: Toolbar locale 配置 API -description: 阅读 DHTMLX Kanban 的 Toolbar locale 配置 API。了解如何为工具栏应用自定义语言环境。 +description: 阅读 DHTMLX Kanban 的 Toolbar locale 配置 API。了解如何为 Toolbar 应用自定义语言环境。 --- # locale ### 描述 -@short: 可选。工具栏的自定义 locale 对象 +@short: 可选。Toolbar 的自定义 locale 对象 :::info -**locale** 对象需要包含看板和工具栏的所有标签及其对应的翻译。 +**locale** 对象需要包含 Kanban 和 Toolbar 的所有标签及其对应的翻译。 ::: ### 用法 @@ -22,26 +22,26 @@ locale?: object; ### 默认配置 -默认情况下,工具栏使用[**英语**](guides/localization.md#default-locale) locale。您也可以设置为自定义的 locale。 +默认情况下,Toolbar 使用[**英语**](guides/localization.md#default-locale) locale。您也可以设置为自定义的 locale。 :::tip -要动态更改当前 locale,可以使用工具栏的[**setLocale()**](api/methods/toolbar_setlocale_method.md)方法。 +要动态更改当前 locale,可以使用 Toolbar 的[**setLocale()**](api/methods/toolbar_setlocale_method.md)方法。 ::: ### 示例 ~~~jsx {8} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { locale: cn }); -// 创建工具栏 +// 创建 Toolbar new kanban.Toolbar("#toolbar", { api: board.api, - locale: cn // 将 "cn" locale 应用到工具栏 + locale: cn // 将 "cn" locale 应用到 Toolbar }); ~~~ -**相关文档:** [本地化](guides/localization.md) +**相关文章:** [本地化](guides/localization.md) -**相关示例:** [看板. 本地化](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file +**相关示例:** [Kanban. 本地化](https://snippet.dhtmlx.com/hrblf1mm?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcard_event.md index a9782c6..4cec286 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcard_event.md @@ -37,13 +37,13 @@ description: 阅读 DHTMLX Kanban 的 add-card 事件 API。了解如何处理 - `skipProvider` - (可选)是否启用/禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md index 680ec97..35241a4 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcolumn_event.md @@ -31,13 +31,13 @@ description: 阅读 DHTMLX Kanban 的 add-column 事件 API。了解如何处理 - `skipProvider` - (可选)启用/禁用阻止请求发送到服务器 :::info -处理内部事件时,可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -48,4 +48,4 @@ board.api.on("add-column", (obj) => { }); ~~~ -**更新日志**:v1.1 版本新增了 **id**、**before** 和 **column** 参数 \ No newline at end of file +**更新日志:**v1.1新增了 **id**、**before** 和 **column** 参数 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md index 5a64bd6..c406c83 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addcomment_event.md @@ -38,13 +38,13 @@ description: 阅读 DHTMLX Kanban 的 add-comment 事件 API。了解如何处 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -要处理内部事件,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -55,4 +55,4 @@ board.api.on("add-comment", (obj) => { }); ~~~ -**更新日志:** 该事件自 v1.4 版本起添加 \ No newline at end of file +**更新日志:** 该事件在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md index 710e3a9..80d67d1 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addlink_event.md @@ -29,13 +29,13 @@ description: 阅读 DHTMLX Kanban 的 add-link 事件 API。了解如何处理 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {8-10} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md index 132a132..cf3f212 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addrow_event.md @@ -31,13 +31,13 @@ description: 阅读 DHTMLX Kanban 的 add-row 事件 API。了解如何处理添 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -48,4 +48,4 @@ board.api.on("add-row", (obj) => { }); ~~~ -**更新日志**:在 v1.1 版本中添加了 **id**、**before** 和 **row** 参数 \ No newline at end of file +**更新日志:**在 v1.1 中新增了 **id**、**before** 和 **row** 参数 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md index 1c653fa..fb983c1 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_addvote_event.md @@ -27,13 +27,13 @@ description: 阅读 DHTMLX Kanban 的 add-vote 事件 API。了解如何处理 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -要处理内部事件,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -44,4 +44,4 @@ board.api.on("add-vote", (obj) => { }); ~~~ -**更新日志:** 该事件在 v1.4 版本中添加 \ No newline at end of file +**更新日志:** 该事件在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecard_event.md index eab286a..7d52727 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecard_event.md @@ -33,7 +33,7 @@ description: 阅读 DHTMLX Kanban 的 delete-card 事件 API。了解如何处 ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecolumn_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecolumn_event.md index 62c476a..d2a87e4 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecolumn_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecolumn_event.md @@ -27,13 +27,13 @@ description: 阅读 DHTMLX Kanban 的 delete-column 事件 API。了解如何处 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md index 743dfbf..4affbfa 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletecomment_event.md @@ -35,7 +35,7 @@ description: 阅读 DHTMLX Kanban 的 delete-comment 事件 API。了解如何 ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -46,4 +46,4 @@ board.api.on("delete-comment", (obj) => { }); ~~~ -**更新日志:** 该事件自 v1.4 版本起添加 \ No newline at end of file +**更新日志:** 该事件在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md index 5f8be24..ac3d681 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletelink_event.md @@ -27,13 +27,13 @@ description: 阅读 DHTMLX Kanban 的 delete-link 事件 API。了解如何处 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -要处理内部事件,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {8-10} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, @@ -45,4 +45,4 @@ board.api.on("delete-link", (obj) => { }); ~~~ -**更新日志:** 该事件在 v1.4 版本中添加 \ No newline at end of file +**更新日志:** 该事件在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deleterow_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deleterow_event.md index a733ea3..1fcc2f1 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deleterow_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deleterow_event.md @@ -27,13 +27,13 @@ description: 阅读 DHTMLX Kanban 的 delete-row 事件 API。了解如何处理 - `skipProvider` - (可选)启用/禁用阻止请求发送到服务器 :::info -要处理内部事件,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md index fda2376..f181650 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_deletevote_event.md @@ -27,13 +27,13 @@ description: 阅读 DHTMLX Kanban 的 delete-vote 事件 API。了解如何处 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -要处理内部事件,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -44,4 +44,4 @@ board.api.on("delete-vote", (obj) => { }); ~~~ -**更新日志:** 该事件于 v1.4 版本添加 \ No newline at end of file +**更新日志:** 该事件于 v1.4添加 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md index d06d20a..00dd7aa 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_dragcard_event.md @@ -33,13 +33,13 @@ description: 阅读 DHTMLX Kanban 的 drag-card 事件 API。了解如何处理 - `source` - (可选)被移动卡片 ID 的数组 :::info -处理内部事件时,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -50,6 +50,6 @@ board.api.on("drag-card", (obj) => { }); ~~~ -**更新日志:** 该事件自 v1.4 版本起添加 +**更新日志:** 该事件在 v1.4 中新增 -**相关示例:** [看板。禁用特定列的拖放功能](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file +**相关示例:** [Kanban。禁用特定列的拖放功能](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md index c6a9832..053cdbc 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_duplicatecard_event.md @@ -29,13 +29,13 @@ description: 阅读 DHTMLX Kanban 的 duplicate-card 事件 API。了解如何 - `select` - (可选)启用或禁用新添加卡片的选中状态 :::info -要处理内部事件,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -46,4 +46,4 @@ board.api.on("duplicate-card", (obj) => { }); ~~~ -**更新日志:** `select` 参数在 v1.5.10 版本中添加 \ No newline at end of file +**更新日志:** `select` 参数在 v1.5.10 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md index 9c825ed..313e766 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_enddragcard_event.md @@ -39,7 +39,7 @@ description: 阅读 DHTMLX Kanban 的 end-drag-card 事件 API。了解如何处 ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -50,6 +50,6 @@ board.api.on("end-drag-card", (obj) => { }); ~~~ -**更新日志:** 该事件在 v1.4 版本中添加 +**更新日志:** 该事件在 v1.4 中新增 -**相关示例:** [看板。禁用特定列的拖放](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file +**相关示例:** [Kanban。禁用特定列的拖放](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecard_event.md index 92af8a3..85a2e33 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecard_event.md @@ -33,13 +33,13 @@ description: 阅读 DHTMLX Kanban 的 move-card 事件 API。了解如何处理 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md index 93f1d04..83f9634 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_movecolumn_event.md @@ -29,13 +29,13 @@ description: 阅读 DHTMLX Kanban 的 move-column 事件 API。了解如何处 - `skipProvider` - (可选)启用或禁用防止请求发送到服务器 :::info -要处理内部事件,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -46,4 +46,4 @@ board.api.on("move-column", (obj) => { }); ~~~ -**更新日志:** 此事件在 v1.1 中添加 \ No newline at end of file +**更新日志:** 此事件在 v1.1 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md index 241cf75..f1a0678 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_moverow_event.md @@ -29,13 +29,13 @@ description: 阅读 DHTMLX Kanban 的 move-row 事件 API。了解如何处理 - `skipProvider` - (可选)启用/禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {8-10} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, @@ -47,4 +47,4 @@ board.api.on("move-row", (obj) => { }); ~~~ -**更新日志:** 此事件在 v1.1 中添加 \ No newline at end of file +**更新日志:** 此事件在 v1.1 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md index 02c3218..3351820 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_redo_event.md @@ -17,13 +17,13 @@ description: 阅读 DHTMLX Kanban 的 redo 事件 API。了解如何处理重复 ~~~ :::info -要处理内部事件,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -34,4 +34,4 @@ board.api.on("redo", () => { }); ~~~ -**更新日志**:该事件在 v1.7 版本中添加 \ No newline at end of file +**更新日志:**该事件在 v1.7 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md index 52d4029..9b69d88 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_scroll_event.md @@ -29,13 +29,13 @@ description: 阅读 DHTMLX Kanban 的 scroll 事件 API。了解如何处理滚 - `options` - (可选)滚动选项对象。完整的滚动参数列表请参见 [这里](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView#parameters) :::info -若需处理内部事件,可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +若需处理内部事件,可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -46,4 +46,4 @@ board.api.on("scroll", (obj) => { }); ~~~ -**更新日志:** 该事件在 v1.2 版本中新增 \ No newline at end of file +**更新日志:** 该事件在 v1.2 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_selectcard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_selectcard_event.md index a8d4407..43861e9 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_selectcard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_selectcard_event.md @@ -27,13 +27,13 @@ description: 阅读 DHTMLX Kanban 的 select-card 事件 API。了解如何处 - `groupMode` - (可选)多选模式(默认值为 false) :::info -处理内部事件时,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md index 0ff45bb..5808e0a 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setedit_event.md @@ -28,13 +28,13 @@ description: 阅读 DHTMLX Kanban 的 set-edit 事件 API。了解如何处理 ::: :::info -处理内部事件时,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -46,7 +46,7 @@ board.api.intercept("set-edit", (ev) => { ~~~ **更新日志:** - - 该事件在 v1.2 版本中添加 - - ***eventSource*** 参数在 v1.6 版本中添加 + - 该事件在 v1.2 中新增 + - ***eventSource*** 参数在 v1.6 中新增 **相关示例:** [Kanban. 通过双击任务打开编辑器](https://snippet.dhtmlx.com/zh4d9pdb?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsearch_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsearch_event.md index 3d5a978..46d6cc1 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsearch_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsearch_event.md @@ -27,13 +27,13 @@ description: 阅读 DHTMLX Kanban 的 set-search 事件 API。了解如何处理 - `by` - (可选)用于搜索的卡片字段 :::info -如需处理内部事件,可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +如需处理内部事件,可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md index 4c4e637..9755b1e 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_setsort_event.md @@ -33,13 +33,13 @@ description: 阅读 DHTMLX Kanban 的 set-sort 事件 API。了解如何处理 - `columnId` - (可选)要排序的列的 ID :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -50,4 +50,4 @@ board.api.on("set-sort", (obj) => { }); ~~~ -**更新日志:** 该事件在 v1.2 版本中添加 \ No newline at end of file +**更新日志:** 该事件在 v1.2 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md index f69072f..68e6602 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_startdragcard_event.md @@ -39,7 +39,7 @@ description: 阅读 DHTMLX Kanban 的 start-drag-card 事件 API。了解如何 ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -50,6 +50,6 @@ board.api.on("start-drag-card", (obj) => { }); ~~~ -**更新日志:** 该事件自 v1.4 版本起添加 +**更新日志:** 该事件在 v1.4 中新增 **相关示例:** [Kanban. 禁用对特定列的拖放](https://snippet.dhtmlx.com/nfv59yif?tag=kanban) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md index 3744f6e..e49c7b9 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_undo_event.md @@ -1,14 +1,14 @@ --- sidebar_label: undo title: undo 事件 API -description: 阅读 DHTMLX Kanban 的 undo 事件 API。了解如何处理撤销看板中最后一次操作时触发的事件。 +description: 阅读 DHTMLX Kanban 的 undo 事件 API。了解如何处理撤销 Kanban 中最后一次操作时触发的事件。 --- # undo ### 描述 -@short: 当撤销看板中的最后一次操作时触发 +@short: 当撤销 Kanban 中的最后一次操作时触发 ### 用法 @@ -23,7 +23,7 @@ description: 阅读 DHTMLX Kanban 的 undo 事件 API。了解如何处理撤销 ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -34,4 +34,4 @@ board.api.on("undo", () => { }); ~~~ -**更新日志**:该事件在 v1.7 中新增 \ No newline at end of file +**更新日志:**该事件在 v1.7 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_unselectcard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_unselectcard_event.md index e3580a7..df337d6 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_unselectcard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_unselectcard_event.md @@ -23,13 +23,13 @@ description: 阅读 DHTMLX Kanban 的 unselect-card 事件 API。了解如何处 - `id` - (必需)要取消选择的卡片的 ID :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md index 7bc3339..a01ef8d 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecard_event.md @@ -36,13 +36,13 @@ description: 阅读 DHTMLX Kanban 的 update-card 事件 API。了解如何处 - `skipProvider` - (可选)启用/禁用阻止请求发送到服务器 :::info -要处理内部事件,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +要处理内部事件,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -53,6 +53,6 @@ board.api.on("update-card", (obj) => { }); ~~~ -**更新日志**: -- **id** 和 **card** 参数在 v1.1 版本中添加 -- **replace** 参数在 v1.3 版本中添加 \ No newline at end of file +**更新日志:** +- **id** 和 **card** 参数在 v1.1 中新增 +- **replace** 参数在 v1.3 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md index 723fb78..9274eba 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecolumn_event.md @@ -36,13 +36,13 @@ description: 阅读 DHTMLX Kanban 的 update-column 事件 API。了解如何处 - `skipProvider` - (可选)启用/禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用[**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用[**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -53,6 +53,6 @@ board.api.on("update-column", (obj) => { }); ~~~ -**更新日志**: -- **id** 和 **column** 参数在 v1.1 版本中添加 -- **replace** 参数在 v1.3 版本中添加 \ No newline at end of file +**更新日志:** +- **id** 和 **column** 参数在 v1.1 中新增 +- **replace** 参数在 v1.3 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md index d68b606..916ef77 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updatecomment_event.md @@ -42,13 +42,13 @@ description: 阅读 DHTMLX Kanban 的 update-comment 事件 API。了解如何 - `skipProvider` - (可选)启用或禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -59,4 +59,4 @@ board.api.on("update-comment", (obj) => { }); ~~~ -**更新日志:** 该事件自 v1.4 版本起添加 \ No newline at end of file +**更新日志:** 该事件在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md index 9583fc7..099c884 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/events/js_kanban_updaterow_event.md @@ -36,13 +36,13 @@ description: 阅读 DHTMLX Kanban 的 update-row 事件 API。了解如何处理 - `skipProvider` - (可选)启用/禁用阻止请求发送到服务器 :::info -处理内部事件时,您可以使用 [**事件总线方法**](api/overview/main_overview.md/#event-bus-methods) +处理内部事件时,您可以使用 [**Event Bus 方法**](api/overview/main_overview.md/#event-bus-methods) ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -53,6 +53,6 @@ board.api.on("update-row", (obj) => { }); ~~~ -**更新日志**: +**更新日志:** - **id** 和 **row** 参数在 v1.1 中新增 - **replace** 参数在 v1.3 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md index 43c9b3a..bd6953c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_detach_method.md @@ -36,4 +36,4 @@ board.api.on("move-card", ({ id, columnId }) => { board.api.detach("move"); ~~~ -**更新日志**:该内部方法自 v1.7 版本起添加 \ No newline at end of file +**更新日志:**该内部方法在 v1.7 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_exec_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_exec_method.md index f738117..5881ed6 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_exec_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_exec_method.md @@ -27,13 +27,13 @@ api.exec( ### 事件 :::info -完整的看板内部事件列表可在[**这里**](api/overview/main_overview.md/#kanban-events)查看 +完整的 Kanban 内部事件列表可在[**这里**](api/overview/main_overview.md/#kanban-events)查看 ::: ### 示例 ~~~jsx {7,9-12} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md index 92814e4..d64cc2d 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getreactivestate_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 getReactiveState 方法 API。了解如何 ### 描述 -@short: 获取包含看板响应式属性的对象 +@short: 获取包含 Kanban 响应式属性的对象 ### 用法 @@ -71,13 +71,13 @@ api.getReactiveState(): object; ### 示例 ~~~jsx {7-37} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, rows }); -// 获取看板的响应式状态 +// 获取 Kanban 的响应式状态 const state = board.api.getReactiveState(); // 订阅 columns 变化并输出 columns 数组 @@ -101,4 +101,4 @@ state.selected.subscribe((data) => { }); ~~~ -**更新日志:** 此方法在 v1.7 版本中进行了更新 \ No newline at end of file +**更新日志:** 此方法在 v1.7 中更新 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md index 5ac6a55..6a8b1e8 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstate_method.md @@ -71,7 +71,7 @@ api.getState(): object; ### 示例 ~~~jsx {7-12} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, @@ -86,4 +86,4 @@ console.log(state.cardShape); // 输出卡片配置 //... ~~~ -**更新日志:** 该方法在 v1.7 版本中进行了更新 \ No newline at end of file +**更新日志:** 该方法在 v1.7 中更新 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md index e2a3c15..83dad2d 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_getstores_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 getStores 方法 API。了解如何获取 ### 描述 -@short: 获取包含看板 DataStore 属性的对象 +@short: 获取包含 Kanban DataStore 属性的对象 ### 用法 @@ -29,14 +29,14 @@ api.getStores(): object; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards }); -// 获取看板的 DataStore 对象 +// 获取 Kanban 的 DataStore 对象 const store = board.api.getStores(); console.log(store); ~~~ -**更新日志:** 该方法在 v1.2 版本中进行了更新 \ No newline at end of file +**更新日志:** 该方法在 v1.2 中更新 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md index ae7cedc..2349a46 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_intercept_method.md @@ -31,13 +31,13 @@ api.intercept( ### 事件 :::info -完整的看板内部事件列表请见[**这里**](api/overview/main_overview.md/#kanban-events) +完整的 Kanban 内部事件列表请见[**这里**](api/overview/main_overview.md/#kanban-events) ::: ### 示例 ~~~jsx {7-11} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -50,4 +50,4 @@ board.api.intercept("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**更新日志**:**config.tag** 和 **config.intercept** 参数于 v1.7 版本中新增 \ No newline at end of file +**更新日志:****config.tag** 和 **config.intercept** 参数于 v1.7 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md index 7ce2ba5..7b62945 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_json_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 json 方法 API。了解如何导出看板 ### 描述 -@short: 将看板数据导出为 JSON 文件 +@short: 将 Kanban 数据导出为 JSON 文件 ### 用法 @@ -17,7 +17,7 @@ export.json(): void; ~~~ :::info -该方法将看板的数据导出为具有以下结构的 JSON 文件: +该方法将 Kanban 的数据导出为具有以下结构的 JSON 文件: ~~~jsx {} { "cards": [], @@ -30,13 +30,13 @@ export.json(): void; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards }); -// 导出看板数据为 JSON +// 导出 Kanban 数据为 JSON board.export.json(); // => { "cards": [...], "columns": [...], "rows": [] } ~~~ -**更新日志:** 该方法在 v1.3 版本中添加 \ No newline at end of file +**更新日志:** 该方法在 v1.3 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md index 9327b89..c63b59c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_on_method.md @@ -31,13 +31,13 @@ api.on( ### 事件 :::info -完整的看板内部事件列表可在[**这里**](api/overview/main_overview.md/#kanban-events)查看 +完整的 Kanban 内部事件列表可在[**这里**](api/overview/main_overview.md/#kanban-events)查看 ::: ### 示例 ~~~jsx {7-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -48,4 +48,4 @@ board.api.on("move-card", ({ id, columnId }) => { }, {tag: "move"}); ~~~ -**更新日志**:`config.tag` 和 `config.intercept` 参数在 v1.7 版本中添加 \ No newline at end of file +**更新日志:**`config.tag` 和 `config.intercept` 参数在 v1.7 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_setnext_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_setnext_method.md index aea488a..f9eb52c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_setnext_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/internal/js_kanban_setnext_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 setNext 方法 API。了解如何将看板 ### 描述 -@short: 允许将某个操作添加到事件总线(Event Bus)的执行顺序中 +@short: 允许将某个操作添加到 Event Bus 的执行顺序中 ### 用法 @@ -18,7 +18,7 @@ api.setNext(next: any): void; ### 参数 -- `next` - (必需)要包含在**事件总线**执行顺序中的操作 +- `next` - (必需)要包含在 **Event Bus** 执行顺序中的操作 ### 示例 @@ -42,5 +42,5 @@ Promise.all([ ~~~ :::info -您需要将 **RestDataProvider** 包含到**事件总线**的执行顺序中,以便对数据执行操作(如**添加**、**删除**等)并向服务器发送相应请求 +您需要将 **RestDataProvider** 包含到 **Event Bus** 的执行顺序中,以便对数据执行操作(如**添加**、**删除**等)并向服务器发送相应请求 ::: \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcard_method.md index 25ce20f..33282b2 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcard_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 addCard 方法 API。了解如何向看板 ### 描述 -@short: 向看板中添加一个新卡片 +@short: 向 Kanban 中添加一个新卡片 ### 用法 @@ -39,7 +39,7 @@ addCard({ ### 示例 ~~~jsx {7-12} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md index 6e1fc32..f6fead0 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcolumn_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 addColumn 方法 API。了解如何向看 ### 描述 -@short: 向看板中添加一个新列 +@short: 向 Kanban 中添加一个新列 ### 用法 @@ -33,7 +33,7 @@ addColumn({ ### 示例 ~~~jsx {7-16} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -51,4 +51,4 @@ board.addColumn({ }); ~~~ -**更新日志**:从 v1.1 版本开始,新增了 **id**、**column** 和 **before** 参数 \ No newline at end of file +**更新日志:**从 v1.1 起,新增了 **id**、**column** 和 **before** 参数 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md index 300324c..29d9241 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addcomment_method.md @@ -36,7 +36,7 @@ addComment({ ### 示例 ~~~jsx {7-15} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -53,4 +53,4 @@ board.addComment({ }); ~~~ -**更新日志:** 此方法自 v1.4 版本起添加 \ No newline at end of file +**更新日志:** 此方法在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md index 9763a89..e54bd03 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addlink_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 addLink 方法 API。了解如何在卡片 ### 描述 -@short: 在看板中添加一个新的链接 +@short: 在 Kanban 中添加一个新的链接 ### 用法 @@ -27,7 +27,7 @@ addLink({ ### 示例 ~~~jsx {7-14} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -43,4 +43,4 @@ board.addLink({ }); ~~~ -**更新日志:** 该方法在 v1.5 版本中添加 \ No newline at end of file +**更新日志:** 该方法在 v1.5 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md index fc5bcd4..71d79e4 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_addrow_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 addRow 方法 API。了解如何向看板 ### 描述 -@short: 在看板中添加一行新行 +@short: 在 Kanban 中添加一行新行 ### 用法 @@ -33,7 +33,7 @@ addRow({ ### 示例 ~~~jsx {8-15} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, @@ -50,4 +50,4 @@ board.addRow({ }); ~~~ -**更新日志**:参数 **id**、**row** 和 **before** 于 v1.1 版本新增 \ No newline at end of file +**更新日志:**参数 **id**、**row** 和 **before** 于 v1.1新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecard_method.md index 5fb3451..c54e28e 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecard_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 deleteCard 方法 API。了解如何通过 ### 描述 -@short: 从看板的数据存储中移除指定的卡片 +@short: 从 Kanban 的数据存储中移除指定的卡片 ### 用法 @@ -23,7 +23,7 @@ deleteCard({ id: string | number }): void; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecolumn_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecolumn_method.md index 1732a64..f65a699 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecolumn_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecolumn_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 deleteColumn 方法 API。了解如何通 ### 描述 -@short: 从看板的数据存储中移除指定的列 +@short: 从 Kanban 的数据存储中移除指定的列 ### 用法 @@ -23,7 +23,7 @@ deleteColumn({ id: string | number }): void; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md index d91568b..5105330 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletecomment_method.md @@ -27,7 +27,7 @@ deleteComment({ ### 示例 ~~~jsx {7-10} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -39,4 +39,4 @@ board.deleteComment({ }); ~~~ -**更新日志:** 该方法在 v1.4 版本中新增 \ No newline at end of file +**更新日志:** 该方法在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md index c550006..b2a729a 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_deletelink_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 deleteLink 方法 API。了解如何通过 ### 描述 -@short: 从看板的数据存储中移除指定的链接 +@short: 从 Kanban 的数据存储中移除指定的链接 ### 用法 @@ -23,7 +23,7 @@ deleteLink({ id: string | number }): void; ### 示例 ~~~jsx {8} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, @@ -33,4 +33,4 @@ const board = new kanban.Kanban("#root", { board.deleteLink({ id: 5 }); ~~~ -**更新日志:** 此方法自 v1.5 版本起添加 \ No newline at end of file +**更新日志:** 此方法在 v1.5 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md index cca2c99..3f27838 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_duplicatecard_method.md @@ -29,7 +29,7 @@ duplicateCard({ ### 示例 ~~~jsx {7-10} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -42,4 +42,4 @@ board.duplicateCard({ }); ~~~ -**更新日志:** `select` 参数在 v1.5.10 版本中新增 \ No newline at end of file +**更新日志:** `select` 参数在 v1.5.10 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getareacards_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getareacards_method.md index c5b22e0..bf90fec 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getareacards_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getareacards_method.md @@ -29,15 +29,15 @@ getAreaCards( 该方法返回包含卡片数据对象的数组 :::info -如果看板仅包含 **列** 而没有 **行**,则只需传入 ***columnId*** 参数。此时,方法返回包含指定列中所有卡片数据对象的数组。 +如果 Kanban 仅包含 **列** 而没有 **行**,则只需传入 ***columnId*** 参数。此时,方法返回包含指定列中所有卡片数据对象的数组。 -如果看板包含 **列** 和 **行**,则可以同时传入 ***columnId*** 和 ***rowId*** 参数。此时,方法返回包含特定列和行中所有卡片数据对象的数组。 +如果 Kanban 包含 **列** 和 **行**,则可以同时传入 ***columnId*** 和 ***rowId*** 参数。此时,方法返回包含特定列和行中所有卡片数据对象的数组。 ::: ### 示例 ~~~jsx {8} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcard_method.md index dcc336d..ffbfa1f 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcard_method.md @@ -27,7 +27,7 @@ getCard(id: string | number): object; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md index f1f0f71..4a4d6f8 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getcolumncards_method.md @@ -27,7 +27,7 @@ getColumnCards(id: string | number): array; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -37,4 +37,4 @@ const cards_data = board.getColumnCards(1); console.log(cards_data); ~~~ -**更新日志**:该方法自 v1.7 版本起新增 \ No newline at end of file +**更新日志:**该方法从 v1.7 起新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getselection_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getselection_method.md index 2f8394b..eb61d23 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getselection_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_getselection_method.md @@ -23,7 +23,7 @@ getSelection(): array; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecard_method.md index 2215e8d..7e6d984 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecard_method.md @@ -35,7 +35,7 @@ moveCard({ ### 示例 ~~~jsx {9-14} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md index 142291b..aed85c4 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_movecolumn_method.md @@ -27,7 +27,7 @@ moveColumn({ ### 示例 ~~~jsx {7-10} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -39,4 +39,4 @@ board.moveColumn({ }); ~~~ -**更新日志:** 此方法自 v1.1 版本起添加 \ No newline at end of file +**更新日志:** 此方法在 v1.1 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md index 3e1ad6e..8516579 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_moverow_method.md @@ -27,7 +27,7 @@ moveRow({ ### 示例 ~~~jsx {8-11} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, @@ -40,4 +40,4 @@ board.moveRow({ }); ~~~ -**更新日志:** 该方法在 v1.1 版本中添加 \ No newline at end of file +**更新日志:** 该方法在 v1.1 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md index 9b82abf..efbe65d 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_parse_method.md @@ -8,12 +8,12 @@ description: 阅读 DHTMLX Kanban 的 parse 方法 API。了解如何从 JSON ### 描述 -@short: 将数据解析到看板中 +@short: 将数据解析到 Kanban 中 `parse()` 方法是 [`setConfig()`](/api/methods/js_kanban_setconfig_method) 的别名,仅限于数据相关属性(`cards`、`columns`、`rows`、`links`)。对于这些属性,两个方法在底层执行相同的操作。 :::tip 推荐使用 setConfig() -使用 [`setConfig()`](/api/methods/js_kanban_setconfig_method) 方法,它接受相同的数据属性**以及**其他看板配置选项。建议用一次 `setConfig()` 调用设置所有属性,而不是分别调用 `parse()` 传入数据、再调用 `setConfig()` 传入其他属性(如 [`columnKey`](api/config/js_kanban_columnkey_config.md)、[`rowKey`](api/config/js_kanban_rowkey_config.md)、[`cardShape`](api/config/js_kanban_cardshape_config.md)): +使用 [`setConfig()`](/api/methods/js_kanban_setconfig_method) 方法,它接受相同的数据属性**以及**其他 Kanban 配置选项。建议用一次 `setConfig()` 调用设置所有属性,而不是分别调用 `parse()` 传入数据、再调用 `setConfig()` 传入其他属性(如 [`columnKey`](api/config/js_kanban_columnkey_config.md)、[`rowKey`](api/config/js_kanban_rowkey_config.md)、[`cardShape`](api/config/js_kanban_cardshape_config.md)): ~~~js // 不推荐:两次调用 @@ -49,9 +49,9 @@ parse({ ### 示例 ~~~jsx {4-9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", {}); -// 将数据解析到看板中 +// 将数据解析到 Kanban 中 board.parse({ columns, cards, @@ -63,6 +63,6 @@ board.parse({ // board.setConfig({ columns, cards, rows, links }); ~~~ -**更新日志**:自 v1.1 版本起,在解析新数据前无需在构造函数中重置初始数据。 +**更新日志:**从 v1.1 起,在解析新数据前无需在构造函数中重置初始数据。 -**相关文章**:[数据操作](guides/working_with_data.md#load-data-from-a-local-source) +**相关文章:**[数据操作](guides/working_with_data.md#load-data-from-a-local-source) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md index 883d094..4048206 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_redo_method.md @@ -23,13 +23,13 @@ redo(): void; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards }); -// 在看板的历史记录中前进一步 +// 在 Kanban 的历史记录中前进一步 board.redo(); ~~~ -**更新日志:** 此方法在 v1.3 版本中新增 \ No newline at end of file +**更新日志:** 此方法在 v1.3 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md index 445700f..928cdb5 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_scroll_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 scroll 方法 API。了解如何将看板 ### 描述 -@short: 将看板滚动到指定元素 +@short: 将 Kanban 滚动到指定元素 ### 用法 @@ -29,12 +29,12 @@ scroll({ ### 示例 ~~~jsx {7-15} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards }); -// 将看板滚动到 ID 为 246 的卡片 +// 将 Kanban 滚动到 ID 为 246 的卡片 board.scroll({ id: 246, to: "card", @@ -46,4 +46,4 @@ board.scroll({ }); ~~~ -**更新日志:** 此方法在 v1.2 版本中添加 \ No newline at end of file +**更新日志:** 此方法在 v1.2 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_selectcard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_selectcard_method.md index 7ccd01b..c4ce313 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_selectcard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_selectcard_method.md @@ -31,7 +31,7 @@ selectCard({ ### 示例 ~~~jsx {7-10} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md index ee025e3..11abd90 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_serialize_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 serialize 方法 API。了解如何将看 ### 描述 -@short: 将看板数据序列化为 JSON +@short: 将 Kanban 数据序列化为 JSON ### 用法 @@ -18,7 +18,7 @@ serialize(): object; ### 返回值 -该方法返回看板数据的对象 +该方法返回 Kanban 数据的对象 ~~~jsx {} { @@ -32,11 +32,11 @@ serialize(): object; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards }); -// 获取看板数据对象 +// 获取 Kanban 数据对象 board.serialize(); ~~~ \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md index 853a93c..e427c32 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setconfig_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 setConfig 方法 API。了解如何在运 ### 描述 -@short: 设置看板的新配置参数 +@short: 设置 Kanban 的新配置参数 ### 用法 @@ -18,25 +18,25 @@ setConfig(config: object): void; ### 参数 -- `config` - (必需)看板配置对象。完整属性列表请参见 [这里](api/overview/main_overview.md#kanban-properties) +- `config` - (必需)Kanban 配置对象。完整属性列表请参见 [这里](api/overview/main_overview.md#kanban-properties) :::tip -使用此方法,您可以配置看板控件并加载数据。该方法不会更改历史记录(您无法更改历史记录)。 +使用此方法,您可以配置 Kanban 控件并加载数据。该方法不会更改历史记录(您无法更改历史记录)。 ::: ### 示例 ~~~jsx {10-20,22-23} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards }); -// 创建工具栏 +// 创建 Toolbar const toolbar = new kanban.Toolbar("#toolbar", { api: board.api }); -// 指定看板的新配置参数 +// 指定 Kanban 的新配置参数 board.setConfig({ columnKey: "stage", rowKey: "type", @@ -48,6 +48,6 @@ board.setConfig({ /* 其他参数 */ }); -// 指定工具栏的新配置参数 +// 指定 Toolbar 的新配置参数 toolbar.setConfig({ items: ["search", "spacer", "sort"] }); ~~~ \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md index 8d914eb..dd6e4e0 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setedit_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 setEdit 方法 API。了解如何切换卡 ### 描述 -@short: 切换看板的编辑器 +@short: 切换 Kanban 的编辑器 ### 用法 @@ -29,7 +29,7 @@ setEdit({ cardId: string | number } | null): void; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -38,4 +38,4 @@ const board = new kanban.Kanban("#root", { board.setEdit({ cardId: 1 }); ~~~ -**更新日志:** 该方法在 v1.2 版本中添加 \ No newline at end of file +**更新日志:** 该方法在 v1.2 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md index ef1ae54..5653d23 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setlocale_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 setLocale 方法 API。了解如何切换 ### 描述 -@short: 为看板应用新的语言环境 +@short: 为 Kanban 应用新的语言环境 ### 用法 @@ -22,23 +22,23 @@ setLocale(null | locale?: object): void; - `locale` - (可选)要应用的新语言环境数据对象 :::info -使用 `setLocale()` 方法仅为看板应用新的语言环境。要将看板重置为默认语言环境,请调用不带参数(或传入 *null* 值)的 `setLocale()` 方法。若需仅为工具栏应用新的语言环境,请使用 [`toolbar.setLocale()`](api/methods/toolbar_setlocale_method.md) 方法。 +使用 `setLocale()` 方法仅为 Kanban 应用新的语言环境。要将 Kanban 重置为默认语言环境,请调用不带参数(或传入 *null* 值)的 `setLocale()` 方法。若需仅为 Toolbar 应用新的语言环境,请使用 [`toolbar.setLocale()`](api/methods/toolbar_setlocale_method.md) 方法。 ::: ### 示例 ~~~jsx {7,9} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards, }); -// 为看板应用 "de" 语言环境 +// 为 Kanban 应用 "de" 语言环境 board.setLocale(kanban.locales["de"]); -// 为看板应用默认语言环境 +// 为 Kanban 应用默认语言环境 board.setLocale(); // 或 board.setLocale(null); ~~~ -**更新日志:** 该方法在 v1.2 版本中进行了更新 +**更新日志:** 该方法在 v1.2 中更新 **相关文章:** [本地化](guides/localization.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsearch_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsearch_method.md index dfb1ba7..3ff192a 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsearch_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsearch_method.md @@ -31,7 +31,7 @@ setSearch({ ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md index 750471b..14fc83d 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_setsort_method.md @@ -39,7 +39,7 @@ setSort( ### 示例 ~~~jsx {7-12} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -53,4 +53,4 @@ board.setSort({ }); ~~~ -**更新日志:** 该方法在 v1.2 版本中新增 \ No newline at end of file +**更新日志:** 该方法在 v1.2 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md index 9ffd8b1..4a813a8 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_undo_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 undo 方法 API。了解如何撤销最后 ### 描述 -@short: 撤销看板中的最后一次操作 +@short: 撤销 Kanban 中的最后一次操作 :::info `undo()` 方法仅适用于启用了 [`history: true`](api/config/js_kanban_history_config.md) 配置的情况! @@ -23,13 +23,13 @@ undo(): void; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards }); -// 在看板的历史记录中回退一步 +// 在 Kanban 的历史记录中回退一步 board.undo(); ~~~ -**更新日志:** 该方法在 v1.3 版本中新增 \ No newline at end of file +**更新日志:** 该方法在 v1.3 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_unselectcard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_unselectcard_method.md index 5e01a3f..6c1189e 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_unselectcard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_unselectcard_method.md @@ -27,7 +27,7 @@ unselectCard({ id: string | number }): void; ### 示例 ~~~jsx {7} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md index 8619fe4..26ebdac 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecard_method.md @@ -33,7 +33,7 @@ updateCard({ ### 示例 ~~~jsx {7-16} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -51,6 +51,6 @@ board.updateCard({ }); ~~~ -**更新日志**: -- v1.1 版本新增了 **id** 和 **card** 参数 -- v1.3 版本新增了 **replace** 参数 \ No newline at end of file +**更新日志:** +- v1.1新增了 **id** 和 **card** 参数 +- v1.3新增了 **replace** 参数 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md index 57e5a7e..4ecb68b 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecolumn_method.md @@ -33,7 +33,7 @@ updateColumn({ ### 示例 ~~~jsx {7-16} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -51,6 +51,6 @@ board.updateColumn({ }); ~~~ -**更新日志**: -- **id** 和 **column** 参数在 v1.1 中添加 -- **replace** 参数在 v1.3 中添加 \ No newline at end of file +**更新日志:** +- **id** 和 **column** 参数在 v1.1 中新增 +- **replace** 参数在 v1.3 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md index 34cd354..f0884f2 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updatecomment_method.md @@ -40,7 +40,7 @@ updateComment({ ### 示例 ~~~jsx {7-17} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", { columns, cards @@ -59,4 +59,4 @@ board.updateComment({ }); ~~~ -**更新日志:** 该方法在 v1.4 版本中新增 \ No newline at end of file +**更新日志:** 该方法在 v1.4 中新增 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md index 6dc3a79..8e8aac3 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/js_kanban_updaterow_method.md @@ -50,6 +50,6 @@ board.updateRow({ }); ~~~ -**更新日志**: -- 在 v1.1 版本中添加了 **id** 和 **row** 参数 -- 在 v1.3 版本中添加了 **replace** 参数 \ No newline at end of file +**更新日志:** +- 在 v1.1 中新增了 **id** 和 **row** 参数 +- 在 v1.3 中新增了 **replace** 参数 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md index bbbd050..9bc67f7 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setconfig_method.md @@ -27,7 +27,7 @@ setConfig(config: object): void; ### 示例 ~~~jsx {6-8} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", {}); // 创建 Toolbar const toolbar = new kanban.Toolbar("#toolbar", { api: board.api }); diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md index 8bd7aae..a56254a 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/methods/toolbar_setlocale_method.md @@ -8,7 +8,7 @@ description: 阅读 DHTMLX Kanban 的 Toolbar setLocale 方法 API。了解如 ### 描述 -@short: 将新的语言环境应用到看板的 Toolbar 上 +@short: 将新的语言环境应用到 Kanban 的 Toolbar 上 ### 用法 @@ -22,22 +22,22 @@ setLocale(null | locale?: object): void; - `locale` - (可选)将要应用到 Toolbar 的新语言环境数据对象 :::info -看板的 **Toolbar** 是一个独立的组件。使用 `toolbar.setLocale()` 方法仅将新的语言环境应用到 Toolbar。要将 Toolbar 重置为默认语言环境,请调用不带参数(或传入 *null*)的 `toolbar.setLocale()` 方法。使用 [`kanban.setLocale()`](api/methods/js_kanban_setlocale_method.md) 方法仅将新的语言环境应用到看板。 +Kanban 的 **Toolbar** 是一个独立的组件。使用 `toolbar.setLocale()` 方法仅将新的语言环境应用到 Toolbar。要将 Toolbar 重置为默认语言环境,请调用不带参数(或传入 *null*)的 `toolbar.setLocale()` 方法。使用 [`kanban.setLocale()`](api/methods/js_kanban_setlocale_method.md) 方法仅将新的语言环境应用到 Kanban。 ::: ### 示例 ~~~jsx {8} -// 创建看板 +// 创建 Kanban const board = new kanban.Kanban("#root", {}); // 创建 Toolbar const toolbar = new kanban.Toolbar("#toolbar", { api: board.api }); -// 将 "de" 语言环境应用到看板 +// 将 "de" 语言环境应用到 Kanban board.setLocale(de); // 将 "de" 语言环境应用到 Toolbar toolbar.setLocale(de); ~~~ -**更新日志:** 参数 **api** 在 v1.6 版本中已弃用 +**更新日志:** 参数 **api** 在 v1.6 中弃用 -**相关文档:** [本地化](guides/localization.md) \ No newline at end of file +**相关文章:** [本地化](guides/localization.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md index c2c5820..e8e2037 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/internal_eventbus_overview.md @@ -1,10 +1,10 @@ --- -sidebar_label: 事件总线方法 -title: 事件总线方法概览 -description: 浏览 DHTMLX Kanban 的事件总线方法概览。查找用于触发、拦截和处理 board 事件的内部方法。 +sidebar_label: Event Bus 方法 +title: Event Bus 方法概览 +description: 浏览 DHTMLX Kanban 的 Event Bus 方法概览。查找用于触发、拦截和处理 board 事件的内部方法。 --- -# 事件总线方法 +# Event Bus 方法 | 名称 | 描述 | | -------------------------------------------------------- | ------------------------------------------------------------ | diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/main_overview.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/main_overview.md index a35a52e..3ff13e6 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/main_overview.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/main_overview.md @@ -14,7 +14,7 @@ new kanban.Kanban("#root", { }); ~~~ -**参数**: +**参数:** - 一个 HTML 容器(HTML 容器的 ID) - 一个配置参数对象([查看此处](#kanban-properties)) @@ -27,7 +27,7 @@ new kanban.Toolbar("#toolbar", { }); ~~~ -**参数**: +**参数:** - 一个 HTML 容器(HTML 容器的 ID) - 一个配置参数对象([查看此处](#toolbar-properties)) @@ -74,7 +74,7 @@ new kanban.Toolbar("#toolbar", { ## Kanban 内部 API -### 事件总线方法 {#event-bus-methods} +### Event Bus 方法 {#event-bus-methods} | 名称 | 描述 | | --------------------------------------------------------- | --------------------------------------------------------- | diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md index af0349f..908b14e 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_methods_overview.md @@ -1,10 +1,10 @@ --- -sidebar_label: 工具栏方法概览 -title: 工具栏方法概览 -description: 浏览 DHTMLX Kanban 的工具栏方法概览。查找用于配置、本地化和销毁 Toolbar 的方法。 +sidebar_label: Toolbar 方法概览 +title: Toolbar 方法概览 +description: 浏览 DHTMLX Kanban 的 Toolbar 方法概览。查找用于配置、本地化和销毁 Toolbar 的方法。 --- -# 工具栏方法概览 +# Toolbar 方法概览 | 名称 | 描述 | | -------------------------------------------------------- | -------------------------------------------------------- | diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md index ae971b8..0de1f30 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/overview/toolbar_properties_overview.md @@ -1,10 +1,10 @@ --- -sidebar_label: 工具栏属性概述 -title: 工具栏属性概览 -description: 浏览 DHTMLX Kanban 的工具栏属性概览。查找 Toolbar 条目和 API 的配置属性。 +sidebar_label: Toolbar 属性概述 +title: Toolbar 属性概览 +description: 浏览 DHTMLX Kanban 的 Toolbar 属性概览。查找 Toolbar 条目和 API 的配置属性。 --- -# 工具栏属性概述 +# Toolbar 属性概述 要配置 **Toolbar**,请参阅 [Configuration](guides/configuration.md#toolbar) 部分。 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md index 8b17ea1..6ee87f3 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getcards_method.md @@ -42,4 +42,4 @@ Promise.all([ }); ~~~ -**相关文档:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md index 6de7971..a909690 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getlinks_method.md @@ -44,6 +44,6 @@ Promise.all([ }); ~~~ -**更新日志:** 该方法在 v1.5 版本中新增 +**更新日志:** 该方法在 v1.5 中新增 -**相关文档:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md index d9b0499..1c9453e 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getrows_method.md @@ -45,4 +45,4 @@ Promise.all([ }); ~~~ -**相关内容:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md index 7758120..6059cf7 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_getusers_method.md @@ -55,6 +55,6 @@ Promise.all([ }); ~~~ -**更新日志:** 该方法在 v1.3 版本中添加 +**更新日志:** 该方法在 v1.3 中新增 -**相关文档:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md index 0b2f241..458a6cb 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_methods/js_kanban_send_method.md @@ -32,7 +32,7 @@ send( | `data` | object | *可选*。发送到服务器的参数。默认情况下,发送触发事件的参数。但您可以用自定义对象添加额外参数。详见下方[示例](#示例)。 | | `headers` | object | *可选*。默认请求头为 **Content-Type**,值为 *application/json*。可以通过 **customHeaders** 参数添加更多自定义请求头。详见下方[示例](#示例)。 | -### 返回值 +### 响应 该方法返回一个带或不带数据的 promise,具体取决于请求。 @@ -110,4 +110,4 @@ board.api.setNext(new MyDataProvider(url)); --- -**相关文档:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md index 8b3e41c..f316c61 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_comments_route.md @@ -41,4 +41,4 @@ HTTP状态码表示请求是否成功(response.status == 200)或失败(res --- -**相关文档**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md index 496a2ab..3db26e1 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_route.md @@ -30,4 +30,4 @@ description: 阅读 DHTMLX Kanban 的 DELETE /cards REST 路由 API。了解如 --- -**相关文档**: [与服务器交互](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md index d2413bf..b9c0cd5 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_cards_votes_route.md @@ -40,4 +40,4 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文章**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md index 8497328..a628780 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_columns_route.md @@ -30,4 +30,4 @@ description: 阅读 DHTMLX Kanban 的 DELETE /columns REST 路由 API。了解 --- -**相关文档**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md index bc55311..37fc4b8 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_links_route.md @@ -30,7 +30,7 @@ description: 阅读 DHTMLX Kanban 的 DELETE /links REST 路由 API。了解如 --- -**相关文档**: +**相关文章:** - [与服务器交互](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md index 3a3bbda..79db403 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/delete_routes/js_kanban_delete_rows_route.md @@ -30,4 +30,4 @@ description: 阅读 DHTMLX Kanban 的 DELETE /rows REST 路由 API。了解如 --- -**相关文档**: [Working with server](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [Working with server](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md index 2f20aec..c2476d7 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_cards_route.md @@ -76,6 +76,6 @@ HTTP 状态码指示请求是否成功(response.status == 200)或失败(re --- -**相关文档**: +**相关文章:** - [与服务器交互](guides/working_with_server.md) - [getCards()](api/provider/rest_methods/js_kanban_getcards_method.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md index 141fa2e..06b17a2 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_columns_route.md @@ -53,6 +53,6 @@ HTTP 状态码指示请求是否成功(response.status == 200)或失败(re --- -**相关文档**: +**相关文章:** - [与服务器交互](guides/working_with_server.md) - [getColumns()](api/provider/rest_methods/js_kanban_getcolumns_method.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md index 905edd0..63451af 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_links_route.md @@ -45,6 +45,6 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**: +**相关文章:** - [与服务器协作](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md index 25a9a81..766fa51 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_rows_route.md @@ -43,6 +43,6 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**: +**相关文章:** - [与服务器交互](guides/working_with_server.md) - [getRows()](api/provider/rest_methods/js_kanban_getrows_method.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md index 3d1dfd4..d1cb654 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_uploads_route.md @@ -33,4 +33,4 @@ HTTP状态码指示请求是否成功(response.status == 200)或失败(res --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md index ecfe899..e25d4fb 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/get_routes/js_kanban_get_users_route.md @@ -48,6 +48,6 @@ HTTP 状态码指示请求是成功(response.status == 200)还是失败(re --- -**相关文章**: +**相关文章:** - [与服务器交互](guides/working_with_server.md) - [getUsers()](api/provider/rest_methods/js_kanban_getusers_method.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md index 17db6d6..470536c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_comments_route.md @@ -46,4 +46,4 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md index 2db40ea..67f77ef 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_route.md @@ -48,4 +48,4 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md index 114c5b2..f313b34 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_cards_votes_route.md @@ -32,4 +32,4 @@ HTTP状态码表示请求是否成功(response.status == 200)或失败(res --- -**相关文章**: [与服务器交互](guides/working_with_server.md) \ No newline at end of file +**相关文章:** [与服务器交互](guides/working_with_server.md) \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md index 15538cb..8c30dc8 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_columns_route.md @@ -44,4 +44,4 @@ HTTP状态码表示请求是否成功(response.status == 200)或失败(res --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md index 5997d15..e315bbe 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_links_route.md @@ -48,7 +48,7 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**: +**相关文章:** - [与服务器协作](guides/working_with_server.md) - [getLinks()](api/provider/rest_methods/js_kanban_getlinks_method.md) - [links](api/config/js_kanban_links_config.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md index 6267f66..f23c826 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_rows_route.md @@ -46,4 +46,4 @@ HTTP 状态码指示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md index d7f623d..0ca2176 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/post_routes/js_kanban_post_uploads_route.md @@ -56,4 +56,4 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md index de77ea4..ec74041 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_comments_route.md @@ -53,4 +53,4 @@ HTTP状态码用于指示请求是否成功(response.status == 200)或失败 --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md index e3220fb..1bcf932 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_move_route.md @@ -90,4 +90,4 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md index 2a7b9a5..1e48502 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_cards_route.md @@ -68,4 +68,4 @@ HTTP 状态码表示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md index cbf1978..cff5449 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_move_route.md @@ -52,4 +52,4 @@ HTTP 状态码表示请求的结果:状态码 200 表示成功,500 表示发 --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md index e80418e..89821a0 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_columns_route.md @@ -50,4 +50,4 @@ HTTP 状态码显示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md index d8b6de4..bc638de 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_move_route.md @@ -52,4 +52,4 @@ HTTP 状态码显示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md index 73f82ca..5d99758 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/api/provider/rest_routes/put_routes/js_kanban_put_rows_route.md @@ -50,4 +50,4 @@ HTTP 状态码显示请求是否成功(response.status == 200)或失败(re --- -**相关文档**:[与服务器协作](guides/working_with_server.md) +**相关文章:**[与服务器协作](guides/working_with_server.md) diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/configuration.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/configuration.md index 7984ab5..7c7101b 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/configuration.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/configuration.md @@ -1,7 +1,7 @@ --- sidebar_label: 配置 title: Kanban 配置指南 -description: 阅读 DHTMLX Kanban 配置指南。学习如何设置卡片、列、行、编辑器、工具栏及其他看板元素。 +description: 阅读 DHTMLX Kanban 配置指南。学习如何设置卡片、列、行、编辑器、Toolbar 及其他看板元素。 --- # 配置 @@ -493,7 +493,7 @@ new kanban.Kanban("#root", { ## 变更历史 -Kanban 记录卡片操作,并在工具栏上提供撤销和重做控件。使用 [`history`](api/config/js_kanban_history_config.md) 属性可禁用此功能。 +Kanban 记录卡片操作,并在 Toolbar 上提供撤销和重做控件。使用 [`history`](api/config/js_kanban_history_config.md) 属性可禁用此功能。 以下代码片段禁用历史记录跟踪: @@ -509,11 +509,11 @@ new kanban.Kanban("#root", { 若要跳过历史记录中的个别操作,请向方法或事件传递 [`$meta`](api/common/js_kanban_meta_parameter.md) 参数。 ::: -## 工具栏 {#toolbar} +## Toolbar {#toolbar} -Kanban 的**工具栏**提供搜索框、排序控件以及添加列和行的控件。使用 `kanban.Toolbar()` 构造函数在独立容器中初始化工具栏。 +Kanban 的 **Toolbar** 提供搜索框、排序控件以及添加列和行的控件。使用 `kanban.Toolbar()` 构造函数在独立容器中初始化 Toolbar。 -以下代码片段创建绑定到 Kanban 实例的工具栏: +以下代码片段创建绑定到 Kanban 实例的 Toolbar: ~~~jsx {13} // 创建 Kanban @@ -531,7 +531,7 @@ const board = new kanban.Kanban("#root", { new kanban.Toolbar("#toolbar", { api: board.api }); ~~~ -使用 [`items`](api/config/toolbar_items_config.md) 属性显示、隐藏或自定义工具栏控件。以下代码片段设置了自定义搜索栏、撤销和重做控件、自定义排序控件以及列和行控件: +使用 [`items`](api/config/toolbar_items_config.md) 属性显示、隐藏或自定义 Toolbar 控件。以下代码片段设置了自定义搜索栏、撤销和重做控件、自定义排序控件以及列和行控件: ~~~jsx {6-51} // 创建 Kanban @@ -594,6 +594,6 @@ new kanban.Toolbar("#toolbar", { ## 示例 -以下代码片段配置了 Kanban 的卡片、编辑器和工具栏: +以下代码片段配置了 Kanban 的卡片、编辑器和 Toolbar: diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/customization.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/customization.md index fd030ee..e9e77a1 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/customization.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/customization.md @@ -12,7 +12,7 @@ description: 使用 DHTMLX Kanban 自定义指南,通过文档化的 API 模 - [`cardShape.menu`](api/config/js_kanban_cardshape_config.md)、[`columnShape.menu`](api/config/js_kanban_columnshape_config.md)、[`rowShape.menu`](api/config/js_kanban_rowshape_config.md) — 修改卡片、列和行的右键菜单 - [`columnShape.headerTemplate`](api/config/js_kanban_columnshape_config.md)、[`columnShape.collapsedTemplate`](api/config/js_kanban_columnshape_config.md) — 替换列标题模板 - [`cardShape.css`](api/config/js_kanban_cardshape_config.md)、[`columnShape.css`](api/config/js_kanban_columnshape_config.md)、[`rowShape.css`](api/config/js_kanban_rowshape_config.md) — 按条件应用 CSS 类 -- [`items`](api/config/toolbar_items_config.md) — 重新排列工具栏结构并添加自定义控件 +- [`items`](api/config/toolbar_items_config.md) — 重新排列 Toolbar 结构并添加自定义控件 - CSS 变量 — 调整视觉样式(请参阅 [样式化](guides/stylization.md) 部分) ## 自定义卡片 {#custom-cards} @@ -122,9 +122,9 @@ new kanban.Kanban("#root", { }); ~~~ -## 自定义工具栏 {#custom-toolbar} +## 自定义 Toolbar {#custom-toolbar} -使用 [`items`](api/config/toolbar_items_config.md) 属性自定义工具栏结构。该数组定义显示哪些控件、控件顺序及其行为。条目可以是: +使用 [`items`](api/config/toolbar_items_config.md) 属性自定义 Toolbar 结构。该数组定义显示哪些控件、控件顺序及其行为。条目可以是: - 内置控件:`"search"`、`"sort"`、`"undo"`、`"redo"`、`"addColumn"`、`"addRow"`、`"spacer"` - 使用自定义选项覆盖搜索栏或排序控件的对象 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/integration.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/integration.md index d7eaa50..deec001 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/integration.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/integration.md @@ -1,7 +1,7 @@ --- sidebar_label: 与DHTMLX小部件集成 title: DHTMLX 小部件——Kanban 集成指南 -description: 参阅 DHTMLX Kanban 与 Gantt、Event Calendar 和 To Do List 小部件的集成指南。了解如何在同一应用中将 Kanban 与 Gantt 及其他 DHTMLX 组件结合使用。 +description: 参阅 DHTMLX Kanban 与 DHTMLX Gantt、Event Calendar 和 To Do List 小部件的集成指南。了解如何在同一应用中将 Kanban 与 Gantt 及其他 DHTMLX 组件结合使用。 --- # 与DHTMLX小部件集成 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/typescript_support.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/typescript_support.md index e42f1c6..586c99a 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/typescript_support.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/typescript_support.md @@ -6,7 +6,7 @@ description: 参阅 DHTMLX Kanban TypeScript 支持指南。了解如何在 Type # TypeScript 支持 -从 v1.1 版本开始,DHTMLX Kanban 内置了 TypeScript 类型定义。 +从 v1.1 起,DHTMLX Kanban 内置了 TypeScript 类型定义。 :::note 请在 [Snippet Tool](https://snippet.dhtmlx.com/2blo6hx8?tag=kanban) 中体验 TypeScript 示例。 diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/guides/working_with_server.md b/i18n/zh/docusaurus-plugin-content-docs/current/guides/working_with_server.md index 155e14d..60887df 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/guides/working_with_server.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/guides/working_with_server.md @@ -136,7 +136,7 @@ Promise.all([ ## 多用户后端 {#multiuser-backend} -多用户后端允许多个用户无需刷新页面即可实时编辑同一看板。组件通过 WebSocket 连接到服务器,自定义处理函数将服务器传来的变更应用到看板。 +多用户后端允许多个用户无需刷新页面即可实时编辑同一 Kanban 看板。组件通过 WebSocket 连接到服务器,自定义处理函数将服务器传来的变更应用到看板。 要启用多用户后端,需在初始化 Kanban 前在服务器上完成用户授权。以下 `login(url)` 函数用于获取并缓存会话 token: diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/how_to_start.md b/i18n/zh/docusaurus-plugin-content-docs/current/how_to_start.md index b2f0305..24b4bd6 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/how_to_start.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/how_to_start.md @@ -12,7 +12,7 @@ import editor from '@site/static/img/js_kanban_editor.png'; DHTMLX JavaScript Kanban 总览,包含工具栏、看板、列、泳道和卡片 @@ -59,16 +59,16 @@ import editor from '@site/static/img/js_kanban_editor.png'; ## 第二步:创建 Kanban -现在您可以将 Kanban 添加到页面中了。首先,需要为 Kanban 及其工具栏创建 DIV 容器。请按照以下步骤操作: +现在您可以将 Kanban 添加到页面中了。首先,需要为 Kanban 及其 Toolbar 创建 DIV 容器。请按照以下步骤操作: - 在 *index.html* 文件中指定两个 DIV 容器 -- 使用 **kanban.Kanban** 和 **kanban.Toolbar** 构造函数初始化 Kanban 及其工具栏 +- 使用 **kanban.Kanban** 和 **kanban.Toolbar** 构造函数初始化 Kanban 及其 Toolbar :::info -工具栏是 Kanban 界面的可选部分。如果只需创建不带工具栏的 Kanban,可以只指定一个 DIV 容器,并通过 **kanban.Kanban** 构造函数初始化该组件。 +Toolbar 是 Kanban 界面的可选部分。如果只需创建不带 Toolbar 的 Kanban,可以只指定一个 DIV 容器,并通过 **kanban.Kanban** 构造函数初始化该组件。 ::: -构造函数的参数为 Kanban 和工具栏所在的 HTML 容器的 ID 以及相应的配置对象。 +构造函数的参数为 Kanban 和 Toolbar 所在的 HTML 容器的 ID 以及相应的配置对象。 ~~~html {9-10,13-15,17-19} title="index.html" diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/index.md b/i18n/zh/docusaurus-plugin-content-docs/current/index.md index 32a9ae6..42f22fd 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/index.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/index.md @@ -1,42 +1,42 @@ --- -sidebar_label: 看板概览 +sidebar_label: Kanban 概览 title: JavaScript Kanban API 与指南 slug: / description: 阅读包含 API 参考、开发者指南、配置选项及构建 Kanban 看板示例的 DHTMLX JavaScript Kanban 文档。 --- -# DHTMLX 看板概览 +# DHTMLX Kanban 概览 -JavaScript 看板是一种高效的工作流程可视化解决方案。该组件有助于更好地理解业务流程,并全面掌握团队工作负载。这一灵活的工具可支持任意数量的卡片、列和泳道。组件完全采用纯 JavaScript 和 CSS 编写,可轻松设置和自定义,并集成到任何 Web 应用或网页中。 +JavaScript Kanban 是一种高效的工作流程可视化解决方案。该组件有助于更好地理解业务流程,并全面掌握团队工作负载。这一灵活的工具可支持任意数量的卡片、列和泳道。组件完全采用纯 JavaScript 和 CSS 编写,可轻松设置和自定义,并集成到任何 Web 应用或网页中。 -## 看板结构 +## Kanban 结构 -### 工具栏 +### Toolbar -看板的**工具栏**是界面的独立部分。它包含用于*搜索*卡片的搜索栏、根据指定参数*排序*卡片的控件、两个用于管理历史记录(*撤销/重做*)的控件,以及用于*添加新列和行*的控件。您可以灵活管理搜索和排序逻辑,也可以通过添加自定义元素或调整内置元素顺序来更改工具栏结构。详细内容请参见[配置](guides/configuration.md#toolbar)章节。 +Kanban 的 **Toolbar** 是界面的独立部分。它包含用于*搜索*卡片的搜索栏、根据指定参数*排序*卡片的控件、两个用于管理历史记录(*撤销/重做*)的控件,以及用于*添加新列和行*的控件。您可以灵活管理搜索和排序逻辑,也可以通过添加自定义元素或调整内置元素顺序来更改 Toolbar 结构。详细内容请参见[配置](guides/configuration.md#toolbar)章节。 import toolbar from '@site/static/img/js_kanban_toolbar.png'; DHTMLX Kanban 工具栏,包含搜索栏、排序控件、撤销/重做按钮以及添加列和行的控件 -### 看板 +### Kanban **看板**是 Kanban 的主要部分。它由分布在各列和各行(泳道)中的卡片组成。您可以灵活配置卡片的外观,也可以应用自定义模板。详细内容请参见[配置](guides/configuration.md#cards)章节。 -在**看板**面板上,您可以通过以下方式操作***卡片***、***列***和***行***: +在 **Kanban** 面板上,您可以通过以下方式操作***卡片***、***列***和***行***: - 点击加号图标添加新卡片(根据每个列和泳道的*限制*) - 通过编辑面板为任务添加评论和投票([示例](https://snippet.dhtmlx.com/5hcx01h4?tag=kanban)) - 通过编辑器为任务设置链接([示例](https://snippet.dhtmlx.com/81qu7qh0?tag=kanban)) - 使用上下文菜单(三点图标)删除卡片、列和行 - 使用上下文菜单(三点图标)或 `Ctrl (Command)`+`D` 快捷键复制卡片(可批量复制卡片) -- 将看板数据导出为 JSON 文件 -- 通过以下快捷键管理看板历史记录: - - `Ctrl (Command)`+`Z` - 撤销看板中的上一步操作(回退一步) +- 将 Kanban 数据导出为 JSON 文件 +- 通过以下快捷键管理 Kanban 历史记录: + - `Ctrl (Command)`+`Z` - 撤销 Kanban 中的上一步操作(回退一步) - `Ctrl (Command)`+`Y` 或 `Ctrl (Command)`+`Shift`+`Z` - 重做刚才撤销的操作(前进一步) - 拖动卡片到目标位置(行和列)以移动卡片 - 使用上下文菜单(三点图标)移动列和行 @@ -68,6 +68,6 @@ import editor from '@site/static/img/js_kanban_editor.png'; className="img_border" /> -## 后续操作 +## 下一步 -现在,您可以在应用程序中开始使用看板了。请参考[快速开始](how_to_start.md)教程获取指导。 \ No newline at end of file +现在,您可以在应用程序中开始使用 Kanban 了。请参考[快速开始](how_to_start.md)教程获取指导。 \ No newline at end of file diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/news/migration.md b/i18n/zh/docusaurus-plugin-content-docs/current/news/migration.md index 2546b0f..f014d5c 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/news/migration.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/news/migration.md @@ -251,7 +251,7 @@ kanban.api.exec("undo"); #### 方法 -- Kanban 工具栏的 [`setLocale`](api/methods/toolbar_setlocale_method.md) 方法有如下更新: +- Kanban Toolbar 的 [`setLocale`](api/methods/toolbar_setlocale_method.md) 方法有如下更新: ~~~jsx {6} title="v1.5.7 之前" // 创建 Kanban @@ -578,7 +578,7 @@ kanban.api.exec("undo"); }); ~~~ -- Kanban 工具栏 [`items`](api/config/toolbar_items_config.md) 属性中的 **sort** 控件有如下变更: +- Kanban Toolbar [`items`](api/config/toolbar_items_config.md) 属性中的 **sort** 控件有如下变更: ~~~jsx {} title="v1.4 之前" [ @@ -714,7 +714,7 @@ api.getState(); // 其他参数 ~~~ -- 工具栏的 [`items`](api/config/toolbar_items_config.md) 属性有如下变更: +- Toolbar 的 [`items`](api/config/toolbar_items_config.md) 属性有如下变更: ~~~jsx {} title="v1.3 之前" items: [ @@ -935,7 +935,7 @@ updateColumn({ // 其他字段设置 ~~~ -- 工具栏的 [`items`](api/config/toolbar_items_config.md) 属性有如下变更: +- Toolbar 的 [`items`](api/config/toolbar_items_config.md) 属性有如下变更: ~~~jsx {} title="v1.2 之前" items: [ diff --git a/i18n/zh/docusaurus-plugin-content-docs/current/news/whats_new.md b/i18n/zh/docusaurus-plugin-content-docs/current/news/whats_new.md index 5222b09..3095f77 100644 --- a/i18n/zh/docusaurus-plugin-content-docs/current/news/whats_new.md +++ b/i18n/zh/docusaurus-plugin-content-docs/current/news/whats_new.md @@ -22,7 +22,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - 更新评论或投票时未保存数据丢失 - 视口右侧附近元素的菜单位置不正确 - 触摸设备拖拽时拖拽节点尺寸过大 -- 工具栏:2 个缺失的本地化提示标签 +- Toolbar:2 个缺失的本地化提示标签 - Uploader `config` 参数无效 ## 版本 1.7.1 @@ -43,7 +43,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb ### Salesforce 集成 -从 v1.7 开始,您可以在 Salesforce 环境中使用 JavaScript Kanban。更多信息请参考:[**与 Salesforce 集成**](guides/integration_with_salesforce.md)。 +从 v1.7 起,您可以在 Salesforce 环境中使用 JavaScript Kanban。更多信息请参考:[**与 Salesforce 集成**](guides/integration_with_salesforce.md)。 您还可以参考我们的 [**GitHub 示例**](https://github.com/DHTMLX/salesforce-lwc-demo) 或运行 [**在线演示**](https://dhtmlx-dev-ed.develop.lightning.force.com/)(*登录名*:***user***,*密码*:***demo***)。 @@ -120,7 +120,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - 限制错误地应用于整个列 - 关闭模态编辑器后移动卡片时报错 - 删除确认框显示在模态编辑器下方 -- 工具栏 "更多" 图标在窗口慢速调整大小时出现又消失 +- Toolbar "更多" 图标在窗口慢速调整大小时出现又消失 - `delete-card` 事件总是关闭编辑器 - 如果优先级设置为未提供选项之外的 ID,则无法打开编辑器 @@ -144,7 +144,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb ### 修复 -- 窄屏下工具栏 "更多" 图标未对齐 +- 窄屏下 Toolbar "更多" 图标未对齐 - `RestDataProvider` 忽略通过 `setHeaders()` 设置的 header - `RestDataProvider.getIDResolver` 不是函数错误 @@ -158,7 +158,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - 可通过 [`cardShape.users.maxCount`](api/config/js_kanban_cardshape_config.md) 属性设置卡片上显示的指派用户数量(参见 [**示例**](https://snippet.dhtmlx.com/w205dvzg?tag=kanban)) - 可通过 [`columnShape`](api/config/js_kanban_columnshape_config.md) 属性自定义列标题内容(参见 [**示例**](https://snippet.dhtmlx.com/gq2saz9c?tag=kanban)) -- 可通过工具栏 **搜索** 控件的 [`items.resultTemplate`](api/config/toolbar_items_config.md) 属性自定义搜索结果的视图和内容(参见 [**示例**](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban)) +- 可通过 Toolbar **搜索** 控件的 [`items.resultTemplate`](api/config/toolbar_items_config.md) 属性自定义搜索结果的视图和内容(参见 [**示例**](https://snippet.dhtmlx.com/2uo2f5mf?tag=kanban)) - 可通过 [`editor.placement`](api/config/js_kanban_editor_config.md) 属性将编辑器显示为模态窗口(参见 [**示例**](https://snippet.dhtmlx.com/vt6pe7qz?tag=kanban)) - 可通过 [`cardShape.votes.clickable`](api/config/js_kanban_cardshape_config.md) 属性为卡片启用投票(在卡片上使用投票图标,参见 [**示例**](https://snippet.dhtmlx.com/en76xvi4?tag=kanban)) @@ -170,7 +170,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - [`columnShape`](api/config/js_kanban_columnshape_config.md) 属性新增 ***headerTemplate*** 和 ***collapsedTemplate*** 参数 - [`editor`](api/config/js_kanban_editor_config.md) 属性新增 ***placement*** 参数 - [`editorShape`](api/config/js_kanban_editorshape_config.md) 属性新增 ***modalSection*** 参数 - - 工具栏 **搜索** 控件的 [`items`](api/config/toolbar_items_config.md) 属性新增 ***resultTemplate*** 参数 + - Toolbar **搜索** 控件的 [`items`](api/config/toolbar_items_config.md) 属性新增 ***resultTemplate*** 参数 - #### 事件 @@ -181,10 +181,10 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - [`setConfig()`](api/methods/js_kanban_setconfig_method.md) 方法功能更新如下: - 该方法不会更改历史记录(您无法更改历史记录) - - 该方法不会销毁 Kanban 数据存储。无需重新创建事件监听器或重新绑定工具栏 + - 该方法不会销毁 Kanban 数据存储。无需重新创建事件监听器或重新绑定 Toolbar - - [`setLocale()`](api/methods/js_kanban_setlocale_method.md) 方法不会销毁 Kanban 数据存储。无需重新创建事件监听器或重新绑定工具栏 - - 工具栏 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 方法的 `api` 参数已弃用 + - [`setLocale()`](api/methods/js_kanban_setlocale_method.md) 方法不会销毁 Kanban 数据存储。无需重新创建事件监听器或重新绑定 Toolbar + - Toolbar [`setLocale()`](api/methods/toolbar_setlocale_method.md) 方法的 `api` 参数已弃用 ### 修复 @@ -221,7 +221,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb ### 修复 -- *Dark willow* 皮肤下 Kanban 的 CSS 变量在工具栏和门户中丢失 +- *Dark willow* 皮肤下 Kanban 的 CSS 变量在 Toolbar 和门户中丢失 - 禁用自动保存时,评论和投票的更改未应用到表单值 - 自定义列子菜单在 **onClick** 函数参数中接收 `null` - 无法为编辑器中的日期选择器设置可编辑模式 @@ -261,7 +261,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb ### 更新 -- 工具栏 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 方法新增 ***api*** 参数 +- Toolbar [`setLocale()`](api/methods/toolbar_setlocale_method.md) 方法新增 ***api*** 参数 ### 修复 @@ -442,7 +442,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - 通过 API、右键菜单(三点图标)或 `Ctrl (Command)` + `D` 快捷键(支持多卡片)复制卡片 - 导出 Kanban 数据为 JSON 文件 - 管理 Kanban 历史记录: - - 通过工具栏上的 *撤销* 和 *重做* 控件 + - 通过 Toolbar 上的 *撤销* 和 *重做* 控件 - 通过快捷键: - `Ctrl (Command)`+`Z` - 撤销操作 - `Ctrl (Command)`+`Y` 或 `Ctrl (Command)`+`Shift`+`Z` - 重做操作 @@ -488,7 +488,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - #### 属性 - - 工具栏 [`items`](api/config/toolbar_items_config.md) 属性新增 ***"undo"*** 和 ***"redo"*** 参数(控件) + - Toolbar [`items`](api/config/toolbar_items_config.md) 属性新增 ***"undo"*** 和 ***"redo"*** 参数(控件) - [`editorShape`](api/config/js_kanban_editorshape_config.md) 属性新增 ***dateRange*** 类型 ## 版本 1.2.2 @@ -497,7 +497,7 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb ### 修复 -- 菜单和工具栏中部分图标重复 +- 菜单和 Toolbar 中部分图标重复 ## 版本 1.2.1 @@ -550,11 +550,11 @@ description: 您可以在 DHTMLX JavaScript UI 库的文档中了解 DHTMLX Kanb - [`api.getState()`](api/internal/js_kanban_getstate_method.md) 方法已更新 - [`api.getStores()`](api/internal/js_kanban_getstores_method.md) 方法已更新 - Kanban 的 [`setLocale()`](api/methods/js_kanban_setlocale_method.md) 方法已更新 - - 工具栏的 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 方法已更新 + - Toolbar 的 [`setLocale()`](api/methods/toolbar_setlocale_method.md) 方法已更新 - #### 属性 - - 工具栏 [`items`](api/config/toolbar_items_config.md) 属性已更新 + - Toolbar [`items`](api/config/toolbar_items_config.md) 属性已更新 - [`cardShape`](api/config/js_kanban_cardshape_config.md) 属性的 ***start_date***、***end_date***、***menu*** 和 ***users*** 参数已更新 - [`editorShape`](api/config/js_kanban_editorshape_config.md) 属性的 ***multiselect*** 类型已更新