Skip to content

Commit 79e47c0

Browse files
zimegClaude
andcommitted
docs: update descriptions and README
Co-Authored-By: Claude <svc-devxp-claude@slack-corp.com>
1 parent deab4f1 commit 79e47c0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

block-kit/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,6 @@ Read the [docs](https://docs.slack.dev/block-kit/) to learn concepts behind thes
1919
- **[Markdown](https://docs.slack.dev/reference/block-kit/blocks/markdown-block)**: Displays formatted markdown. [Implementation](./src/blocks/markdown.py).
2020
- **[Rich text](https://docs.slack.dev/reference/block-kit/blocks/rich-text-block)**: Displays formatted, structured representation of text. [Implementation](./src/blocks/rich_text.py).
2121
- **[Section](https://docs.slack.dev/reference/block-kit/blocks/section-block)**: Displays text, possibly alongside elements. [Implementation](./src/blocks/section.py).
22+
- **[Plan](https://docs.slack.dev/reference/block-kit/blocks/plan-block)**: Displays a collection of related tasks. [Implementation](./src/blocks/plan.py).
23+
- **[Task card](https://docs.slack.dev/reference/block-kit/blocks/task-card-block)**: Displays a single task, representing a single action. [Implementation](./src/blocks/task_card.py).
2224
- **[Video](https://docs.slack.dev/reference/block-kit/blocks/video-block)**: Displays an embedded video player. [Implementation](./src/blocks/video.py).

block-kit/src/blocks/plan.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77

88
def example01() -> PlanBlock:
99
"""
10-
Displays a plan with multiple task cards representing a sequence of actions.
11-
This is an experimental block type that requires a toggle to preview.
10+
Displays a collection of related tasks.
1211
https://docs.slack.dev/reference/block-kit/blocks/plan-block/
1312
1413
A plan block with multiple task cards in various states.

block-kit/src/blocks/task_card.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@
88

99
def example01() -> TaskCardBlock:
1010
"""
11-
Displays a single task which represents a single action.
12-
This is an experimental block type that requires a toggle to preview.
11+
Displays a single task, representing a single action.
1312
https://docs.slack.dev/reference/block-kit/blocks/task-card-block/
1413
1514
A task card with output and sources.

0 commit comments

Comments
 (0)