@atlaskit/editor-plugin-layout 0.1.4 → 0.1.6

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,37 @@
1
1
  # @atlaskit/editor-plugin-layout
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790) [`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) - ED-21266: Updated @atlaskit/adf-schema to 34.0.1
8
+
9
+ ## 0.1.5
10
+
11
+ ### Patch Changes
12
+
13
+ - [#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:
14
+
15
+ - analytics
16
+ - base
17
+ - card
18
+ - code-block
19
+ - expand
20
+ - extension
21
+ - floating-toolbar
22
+ - hyperlink
23
+ - insert-block
24
+ - layout
25
+ - layout
26
+ - list
27
+ - media
28
+ - paste
29
+ - rule
30
+ - table
31
+ - tasks-and-decisions
32
+
33
+ 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.
34
+
3
35
  ## 0.1.4
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-layout",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "Layout plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -31,8 +31,8 @@
31
31
  ".": "./src/index.ts"
32
32
  },
33
33
  "dependencies": {
34
- "@atlaskit/adf-schema": "^34.0.0",
35
- "@atlaskit/editor-common": "^76.22.0",
34
+ "@atlaskit/adf-schema": "^34.0.1",
35
+ "@atlaskit/editor-common": "^76.23.0",
36
36
  "@atlaskit/editor-plugin-analytics": "^0.3.0",
37
37
  "@atlaskit/editor-plugin-decorations": "^0.2.0",
38
38
  "@atlaskit/editor-prosemirror": "1.1.0",
@@ -1,43 +0,0 @@
1
- ## API Report File for "@atlaskit/editor-plugin-layout"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
8
- import type { Command } from '@atlaskit/editor-common/types';
9
- import type { DecorationsPlugin } from '@atlaskit/editor-plugin-decorations';
10
- import type { EditorAnalyticsAPI } from '@atlaskit/editor-common/analytics';
11
- import type { LongPressSelectionPluginOptions } from '@atlaskit/editor-common/types';
12
- import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
13
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
14
- import type { TOOLBAR_MENU_TYPE } from '@atlaskit/editor-common/types';
15
-
16
- // @public (undocumented)
17
- const insertLayoutColumnsWithAnalytics: (editorAnalyticsAPI: EditorAnalyticsAPI | undefined) => (inputMethod: TOOLBAR_MENU_TYPE) => Command;
18
-
19
- // @public (undocumented)
20
- export type LayoutPlugin = NextEditorPlugin<'layout', {
21
- pluginConfiguration: LayoutPluginOptions | undefined;
22
- dependencies: [DecorationsPlugin, OptionalPlugin<AnalyticsPlugin>];
23
- actions: {
24
- insertLayoutColumns: ReturnType<typeof insertLayoutColumnsWithAnalytics>;
25
- };
26
- }>;
27
-
28
- // @public (undocumented)
29
- export const layoutPlugin: LayoutPlugin;
30
-
31
- // @public (undocumented)
32
- export interface LayoutPluginOptions extends LongPressSelectionPluginOptions {
33
- // (undocumented)
34
- allowBreakout?: boolean;
35
- // (undocumented)
36
- UNSAFE_addSidebarLayouts?: boolean;
37
- // (undocumented)
38
- UNSAFE_allowSingleColumnLayout?: boolean;
39
- }
40
-
41
- // (No @packageDocumentation comment for this package)
42
-
43
- ```