@atlaskit/editor-plugin-primary-toolbar 9.0.23 → 9.0.25
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 +13 -0
- package/README.md +37 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-primary-toolbar
|
|
2
2
|
|
|
3
|
+
## 9.0.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 9.0.24
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`fa146e17e08d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/fa146e17e08d6) -
|
|
14
|
+
Update README.md and 0-intro.tsx
|
|
15
|
+
|
|
3
16
|
## 9.0.23
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,9 +1,43 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Editor Plugin Primary Toolbar
|
|
2
2
|
|
|
3
3
|
Primary toolbar plugin for @atlaskit/editor-core
|
|
4
4
|
|
|
5
|
+
**Note:** This component is designed for internal Atlassian development.
|
|
6
|
+
External contributors will be able to use this component but will not be able to submit issues.
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
The Primary Toolbar plugin provides a configurable toolbar component for the Atlassian Editor. It manages toolbar element registration and visibility, allowing for flexible composition of toolbar UI components across different editor configurations.
|
|
11
|
+
|
|
12
|
+
## Key features
|
|
13
|
+
|
|
14
|
+
- **Component registration** - Register and manage custom toolbar UI components
|
|
15
|
+
- **Dynamic toolbar composition** - Dynamically compose toolbar elements based on editor state and configuration
|
|
16
|
+
- **Contextual formatting support** - Optional contextual formatting toolbar integration
|
|
17
|
+
- **Built-in separators** - Separator component for organizing toolbar elements
|
|
18
|
+
- **Element visibility control** - Control toolbar element visibility based on editor state
|
|
19
|
+
|
|
20
|
+
## Install
|
|
21
|
+
---
|
|
22
|
+
- **Install** - *yarn add @atlaskit/editor-plugin-primary-toolbar*
|
|
23
|
+
- **npm** - [@atlaskit/editor-plugin-primary-toolbar](https://www.npmjs.com/package/@atlaskit/editor-plugin-primary-toolbar)
|
|
24
|
+
- **Source** - [Bitbucket](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/src/master/packages/editor/editor-plugin-primary-toolbar)
|
|
25
|
+
- **Bundle** - [unpkg.com](https://unpkg.com/@atlaskit/editor-plugin-primary-toolbar/dist/)
|
|
26
|
+
|
|
5
27
|
## Usage
|
|
28
|
+
---
|
|
29
|
+
**Internal use only**
|
|
30
|
+
|
|
31
|
+
@atlaskit/editor-plugin-primary-toolbar is intended for internal use by the @atlaskit/editor-core and as a plugin dependency of the Editor within your product.
|
|
32
|
+
|
|
33
|
+
Direct use of this component is not supported.
|
|
34
|
+
|
|
35
|
+
Please see [Atlaskit - Editor plugin primary toolbar](https://atlaskit.atlassian.com/packages/editor/editor-plugin-primary-toolbar) for documentation and examples for this package.
|
|
6
36
|
|
|
7
|
-
|
|
37
|
+
## Support
|
|
38
|
+
---
|
|
39
|
+
For internal Atlassian, visit the slack channel [#help-editor](https://atlassian.slack.com/archives/CFG3PSQ9E) for support or visit [go/editor-help](https://go/editor-help) to submit a bug.
|
|
8
40
|
|
|
9
|
-
|
|
41
|
+
## License
|
|
42
|
+
---
|
|
43
|
+
Please see [Atlassian Frontend - License](https://hello.atlassian.net/wiki/spaces/AF/pages/2589099144/Documentation#License) for more licensing information.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-primary-toolbar",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.25",
|
|
4
4
|
"description": "Primary toolbar plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,12 +34,12 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
36
36
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
37
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
37
|
+
"@atlaskit/tmp-editor-statsig": "^59.1.0",
|
|
38
38
|
"@babel/runtime": "^7.0.0",
|
|
39
39
|
"@emotion/react": "^11.7.1"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@atlaskit/editor-common": "^112.
|
|
42
|
+
"@atlaskit/editor-common": "^112.20.0",
|
|
43
43
|
"react": "^18.2.0"
|
|
44
44
|
},
|
|
45
45
|
"techstack": {
|