@atlaskit/editor-plugin-toolbar 0.0.4 → 0.0.5
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
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-toolbar
|
|
2
2
|
|
|
3
|
+
## 0.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#195899](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/195899)
|
|
8
|
+
[`345c0b6478f73`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/345c0b6478f73) -
|
|
9
|
+
[ED-28682] Register text-section toolbar component
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
|
|
3
12
|
## 0.0.4
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -18,5 +18,13 @@ var getToolbarComponents = exports.getToolbarComponents = function getToolbarCom
|
|
|
18
18
|
label: _consts.TOOLBAR_LABEL
|
|
19
19
|
}, children);
|
|
20
20
|
}
|
|
21
|
+
}, {
|
|
22
|
+
type: 'section',
|
|
23
|
+
key: 'text-section',
|
|
24
|
+
parents: [{
|
|
25
|
+
type: 'toolbar',
|
|
26
|
+
key: 'inline-text-toolbar',
|
|
27
|
+
rank: 200
|
|
28
|
+
}]
|
|
21
29
|
}];
|
|
22
30
|
};
|
|
@@ -11,5 +11,13 @@ export var getToolbarComponents = function getToolbarComponents() {
|
|
|
11
11
|
label: TOOLBAR_LABEL
|
|
12
12
|
}, children);
|
|
13
13
|
}
|
|
14
|
+
}, {
|
|
15
|
+
type: 'section',
|
|
16
|
+
key: 'text-section',
|
|
17
|
+
parents: [{
|
|
18
|
+
type: 'toolbar',
|
|
19
|
+
key: 'inline-text-toolbar',
|
|
20
|
+
rank: 200
|
|
21
|
+
}]
|
|
14
22
|
}];
|
|
15
23
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-toolbar",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Toolbar plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,17 +34,14 @@
|
|
|
34
34
|
"@atlaskit/editor-plugin-selection": "^3.0.0",
|
|
35
35
|
"@atlaskit/editor-plugin-user-intent": "^1.1.0",
|
|
36
36
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
37
|
-
"@atlaskit/editor-toolbar": "^0.0.
|
|
38
|
-
"@atlaskit/editor-toolbar-model": "^0.0.
|
|
37
|
+
"@atlaskit/editor-toolbar": "^0.0.9",
|
|
38
|
+
"@atlaskit/editor-toolbar-model": "^0.0.4",
|
|
39
39
|
"@babel/runtime": "^7.0.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@atlaskit/editor-common": "^107.
|
|
42
|
+
"@atlaskit/editor-common": "^107.17.0",
|
|
43
43
|
"react": "^18.2.0"
|
|
44
44
|
},
|
|
45
|
-
"devDependencies": {
|
|
46
|
-
"typescript": "~5.4.2"
|
|
47
|
-
},
|
|
48
45
|
"techstack": {
|
|
49
46
|
"@atlassian/frontend": {
|
|
50
47
|
"code-structure": [
|