@atlaskit/editor-plugin-block-controls 17.3.11 → 17.4.1

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,31 @@
1
1
  # @atlaskit/editor-plugin-block-controls
2
2
 
3
+ ## 17.4.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 17.4.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`6d830aac99d6d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6d830aac99d6d) -
14
+ Add deprecation tag to blockControlsPlugin quickInsertButtonEnabled property - this has been
15
+ replaced with a new `blockControlButtonEnabled` plugin config in the quickInsertPlugin, which is
16
+ currently gated under `platform_editor_block_control_migration` and will be removed in future
17
+ update.
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+
23
+ ## 17.3.12
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies
28
+
3
29
  ## 17.3.11
4
30
 
5
31
  ### Patch Changes
@@ -82,7 +82,11 @@ export interface PluginState {
82
82
  }
83
83
  export type ReleaseHiddenDecoration = () => boolean | undefined;
84
84
  export type BlockControlsPluginConfig = {
85
- /** Enable the quick insert plus button icon on the left of the drag handle */
85
+ /**
86
+ * Enable the quick insert plus button icon on the left of the drag handle.
87
+ *
88
+ * @deprecated Use `QuickInsertPluginOptions.blockControlButtonEnabled` instead.
89
+ */
86
90
  quickInsertButtonEnabled?: boolean;
87
91
  /** Enable left/right hover split: show left controls when hovering left, right controls when hovering right */
88
92
  rightSideControlsEnabled?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-block-controls",
3
- "version": "17.3.11",
3
+ "version": "17.4.1",
4
4
  "description": "Block controls plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -32,7 +32,7 @@
32
32
  "@atlaskit/editor-plugin-interaction": "^27.0.0",
33
33
  "@atlaskit/editor-plugin-limited-mode": "^13.0.0",
34
34
  "@atlaskit/editor-plugin-metrics": "^17.0.0",
35
- "@atlaskit/editor-plugin-quick-insert": "^16.2.0",
35
+ "@atlaskit/editor-plugin-quick-insert": "^16.3.0",
36
36
  "@atlaskit/editor-plugin-selection": "^16.1.0",
37
37
  "@atlaskit/editor-plugin-show-diff": "^14.4.0",
38
38
  "@atlaskit/editor-plugin-toolbar": "^13.0.0",
@@ -55,7 +55,7 @@
55
55
  "@atlaskit/primitives": "^22.5.0",
56
56
  "@atlaskit/section-message": "^10.2.0",
57
57
  "@atlaskit/theme": "^28.2.0",
58
- "@atlaskit/tmp-editor-statsig": "^174.0.0",
58
+ "@atlaskit/tmp-editor-statsig": "^176.0.0",
59
59
  "@atlaskit/tokens": "^16.11.0",
60
60
  "@atlaskit/tooltip": "^24.3.0",
61
61
  "@babel/runtime": "^7.0.0",
@@ -67,7 +67,7 @@
67
67
  "uuid": "^11.1.1"
68
68
  },
69
69
  "peerDependencies": {
70
- "@atlaskit/editor-common": "^120.13.0",
70
+ "@atlaskit/editor-common": "^120.16.0",
71
71
  "react": "^18.2.0 || ^19.2.0",
72
72
  "react-dom": "^18.2.0 || ^19.2.0",
73
73
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"