@atlaskit/editor-plugin-floating-toolbar 0.7.9 → 0.7.10
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 +26 -0
- package/dist/types/types.d.ts +1 -1
- package/dist/types-ts4.5/types.d.ts +1 -1
- package/package.json +1 -1
- package/report.api.md +1 -1
- package/tmp/api-report-tmp.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-floating-toolbar
|
|
2
2
|
|
|
3
|
+
## 0.7.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#43646](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43646) [`d43f8e9402f`](https://bitbucket.org/atlassian/atlassian-frontend/commits/d43f8e9402f) - Make feature flags plugin optional in all plugins including:
|
|
8
|
+
|
|
9
|
+
- analytics
|
|
10
|
+
- base
|
|
11
|
+
- card
|
|
12
|
+
- code-block
|
|
13
|
+
- expand
|
|
14
|
+
- extension
|
|
15
|
+
- floating-toolbar
|
|
16
|
+
- hyperlink
|
|
17
|
+
- insert-block
|
|
18
|
+
- layout
|
|
19
|
+
- layout
|
|
20
|
+
- list
|
|
21
|
+
- media
|
|
22
|
+
- paste
|
|
23
|
+
- rule
|
|
24
|
+
- table
|
|
25
|
+
- tasks-and-decisions
|
|
26
|
+
|
|
27
|
+
We already treat it as optional in the plugins, so this is just ensuring that the plugin is not mandatory to be added to the preset.
|
|
28
|
+
|
|
3
29
|
## 0.7.9
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/dist/types/types.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export type ForceFocusSelector = (selector: string | null) => (tr: Transaction)
|
|
|
25
25
|
*/
|
|
26
26
|
export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
|
|
27
27
|
dependencies: [
|
|
28
|
-
FeatureFlagsPlugin
|
|
28
|
+
OptionalPlugin<FeatureFlagsPlugin>,
|
|
29
29
|
DecorationsPlugin,
|
|
30
30
|
OptionalPlugin<ContextPanelPlugin>,
|
|
31
31
|
OptionalPlugin<ExtensionPlugin>,
|
|
@@ -25,7 +25,7 @@ export type ForceFocusSelector = (selector: string | null) => (tr: Transaction)
|
|
|
25
25
|
*/
|
|
26
26
|
export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
|
|
27
27
|
dependencies: [
|
|
28
|
-
FeatureFlagsPlugin
|
|
28
|
+
OptionalPlugin<FeatureFlagsPlugin>,
|
|
29
29
|
DecorationsPlugin,
|
|
30
30
|
OptionalPlugin<ContextPanelPlugin>,
|
|
31
31
|
OptionalPlugin<ExtensionPlugin>,
|
package/package.json
CHANGED
package/report.api.md
CHANGED
package/tmp/api-report-tmp.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export type ConfigWithNodeInfo = {
|
|
|
27
27
|
// @public
|
|
28
28
|
export type FloatingToolbarPlugin = NextEditorPlugin<'floatingToolbar', {
|
|
29
29
|
dependencies: [
|
|
30
|
-
FeatureFlagsPlugin
|
|
30
|
+
OptionalPlugin<FeatureFlagsPlugin>,
|
|
31
31
|
DecorationsPlugin,
|
|
32
32
|
OptionalPlugin<ContextPanelPlugin>,
|
|
33
33
|
OptionalPlugin<ExtensionPlugin>,
|