@atlaskit/editor-plugin-tasks-and-decisions 11.4.11 → 11.4.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +16 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-tasks-and-decisions
|
|
2
2
|
|
|
3
|
+
## 11.4.13
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`9ff7d1c1aa288`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/9ff7d1c1aa288) -
|
|
8
|
+
Update README.md and 0-intro.tsx
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 11.4.12
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 11.4.11
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,10 +1,25 @@
|
|
|
1
|
-
# Editor
|
|
1
|
+
# Editor Plugin Tasks and Decisions
|
|
2
2
|
|
|
3
3
|
Tasks and decisions plugin for @atlaskit/editor-core
|
|
4
4
|
|
|
5
5
|
**Note:** This component is designed for internal Atlassian development.
|
|
6
6
|
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
7
|
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
The Tasks and Decisions plugin provides comprehensive functionality for creating and managing task lists and decision lists within the Atlassian Editor. It integrates seamlessly with the editor's toolbar, block menu, and type-ahead features to enable users to create, edit, and track tasks and decisions inline with their content.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Task and decision lists** - Create and manage task lists and decision lists with full editing capabilities
|
|
15
|
+
- **Nested tasks** - Support for nested task structures with configurable indentation levels
|
|
16
|
+
- **Block task items** - Support for block-level task items that can contain extension nodes (useful for content migrations)
|
|
17
|
+
- **Edit permissions** - Control edit permissions and request-to-edit functionality for tasks
|
|
18
|
+
- **Provider integration** - Extensible provider-based architecture for custom task decision handling
|
|
19
|
+
- **Toolbar integration** - Quick access to task and decision creation through the editor toolbar
|
|
20
|
+
- **Block menu support** - Transform content into tasks and decisions through the block menu
|
|
21
|
+
- **Type-ahead support** - Quick insert support for creating tasks and decisions
|
|
22
|
+
|
|
8
23
|
## Install
|
|
9
24
|
---
|
|
10
25
|
- **Install** - *yarn add @atlaskit/editor-plugin-tasks-and-decisions*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-tasks-and-decisions",
|
|
3
|
-
"version": "11.4.
|
|
3
|
+
"version": "11.4.13",
|
|
4
4
|
"description": "Tasks and decisions plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@atlaskit/editor-plugin-editor-viewmode": "^10.0.0",
|
|
39
39
|
"@atlaskit/editor-plugin-selection": "^8.0.0",
|
|
40
40
|
"@atlaskit/editor-plugin-toolbar": "^5.1.0",
|
|
41
|
-
"@atlaskit/editor-plugin-type-ahead": "^8.
|
|
41
|
+
"@atlaskit/editor-plugin-type-ahead": "^8.2.0",
|
|
42
42
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
43
43
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
44
44
|
"@atlaskit/editor-toolbar": "^0.20.0",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"@atlaskit/primitives": "^18.1.0",
|
|
50
50
|
"@atlaskit/prosemirror-input-rules": "^3.6.0",
|
|
51
51
|
"@atlaskit/task-decision": "^19.3.0",
|
|
52
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
52
|
+
"@atlaskit/tmp-editor-statsig": "^58.0.0",
|
|
53
53
|
"@atlaskit/tokens": "^12.0.0",
|
|
54
54
|
"@babel/runtime": "^7.0.0",
|
|
55
55
|
"@compiled/react": "^0.20.0",
|
|
56
56
|
"bind-event-listener": "^3.0.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@atlaskit/editor-common": "^112.
|
|
59
|
+
"@atlaskit/editor-common": "^112.19.0",
|
|
60
60
|
"react": "^18.2.0",
|
|
61
61
|
"react-dom": "^18.2.0",
|
|
62
62
|
"react-intl-next": "npm:react-intl@^5.18.1"
|