@atlaskit/editor-plugin-breakout 7.1.0 → 8.0.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,17 @@
1
1
  # @atlaskit/editor-plugin-breakout
2
2
 
3
+ ## 8.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 8.0.0
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 7.1.0
4
16
 
5
17
  ### Minor Changes
@@ -180,4 +180,5 @@ var LayoutButton = function LayoutButton(_ref) {
180
180
  })));
181
181
  };
182
182
  LayoutButton.displayName = 'LayoutButton';
183
- var _default = exports.default = (0, _reactIntlNext.injectIntl)(LayoutButton);
183
+ var _default_1 = (0, _reactIntlNext.injectIntl)(LayoutButton);
184
+ var _default = exports.default = _default_1;
@@ -176,4 +176,5 @@ const LayoutButton = ({
176
176
  })));
177
177
  };
178
178
  LayoutButton.displayName = 'LayoutButton';
179
- export default injectIntl(LayoutButton);
179
+ const _default_1 = injectIntl(LayoutButton);
180
+ export default _default_1;
@@ -172,4 +172,5 @@ var LayoutButton = function LayoutButton(_ref) {
172
172
  })));
173
173
  };
174
174
  LayoutButton.displayName = 'LayoutButton';
175
- export default injectIntl(LayoutButton);
175
+ var _default_1 = injectIntl(LayoutButton);
176
+ export default _default_1;
@@ -1,3 +1,4 @@
1
+ import { type MemoizedFn } from 'memoize-one';
1
2
  import type { GuidelineConfig } from '@atlaskit/editor-common/guideline';
2
3
  import type { EditorContainerWidth } from '@atlaskit/editor-common/types';
3
4
  import { type NodeType } from '@atlaskit/editor-prosemirror/model';
@@ -11,4 +12,4 @@ export declare const GUIDELINE_KEYS: {
11
12
  readonly maxWidthLeft: "max_width_left";
12
13
  readonly maxWidthRight: "max_width_right";
13
14
  };
14
- export declare const getGuidelines: import("memoize-one").MemoizedFn<(isResizing: boolean, newWidth: number, getEditorWidth: () => EditorContainerWidth | undefined, nodeType?: NodeType | undefined) => GuidelineConfig[]>;
15
+ export declare const getGuidelines: MemoizedFn<(isResizing: boolean, newWidth: number, getEditorWidth: () => EditorContainerWidth | undefined, nodeType?: NodeType | undefined) => GuidelineConfig[]>;
@@ -1,4 +1,9 @@
1
- import type { WrappedComponentProps } from 'react-intl-next';
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
5
+ import { type ComponentType, type FC } from 'react';
6
+ import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
2
7
  import type { BreakoutMode, ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
8
  import type { EditorView } from '@atlaskit/editor-prosemirror/view';
4
9
  import type { BreakoutPlugin } from '../breakoutPluginType';
@@ -13,7 +18,7 @@ export interface Props {
13
18
  mountPoint?: HTMLElement;
14
19
  scrollableElement?: HTMLElement;
15
20
  }
16
- declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps>> & {
17
- WrappedComponent: import("react").ComponentType<Props & WrappedComponentProps>;
21
+ declare const _default_1: FC<WithIntlProps<Props & WrappedComponentProps>> & {
22
+ WrappedComponent: ComponentType<Props & WrappedComponentProps>;
18
23
  };
19
- export default _default;
24
+ export default _default_1;
@@ -1,3 +1,4 @@
1
+ import { type MemoizedFn } from 'memoize-one';
1
2
  import type { GuidelineConfig } from '@atlaskit/editor-common/guideline';
2
3
  import type { EditorContainerWidth } from '@atlaskit/editor-common/types';
3
4
  import { type NodeType } from '@atlaskit/editor-prosemirror/model';
@@ -11,4 +12,4 @@ export declare const GUIDELINE_KEYS: {
11
12
  readonly maxWidthLeft: "max_width_left";
12
13
  readonly maxWidthRight: "max_width_right";
13
14
  };
14
- export declare const getGuidelines: import("memoize-one").MemoizedFn<(isResizing: boolean, newWidth: number, getEditorWidth: () => EditorContainerWidth | undefined, nodeType?: NodeType | undefined) => GuidelineConfig[]>;
15
+ export declare const getGuidelines: MemoizedFn<(isResizing: boolean, newWidth: number, getEditorWidth: () => EditorContainerWidth | undefined, nodeType?: NodeType | undefined) => GuidelineConfig[]>;
@@ -1,4 +1,9 @@
1
- import type { WrappedComponentProps } from 'react-intl-next';
1
+ /**
2
+ * @jsxRuntime classic
3
+ * @jsx jsx
4
+ */
5
+ import { type ComponentType, type FC } from 'react';
6
+ import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
2
7
  import type { BreakoutMode, ExtractInjectionAPI } from '@atlaskit/editor-common/types';
3
8
  import type { EditorView } from '@atlaskit/editor-prosemirror/view';
4
9
  import type { BreakoutPlugin } from '../breakoutPluginType';
@@ -13,7 +18,7 @@ export interface Props {
13
18
  mountPoint?: HTMLElement;
14
19
  scrollableElement?: HTMLElement;
15
20
  }
16
- declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<Props & WrappedComponentProps>> & {
17
- WrappedComponent: import("react").ComponentType<Props & WrappedComponentProps>;
21
+ declare const _default_1: FC<WithIntlProps<Props & WrappedComponentProps>> & {
22
+ WrappedComponent: ComponentType<Props & WrappedComponentProps>;
18
23
  };
19
- export default _default;
24
+ export default _default_1;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-breakout",
3
- "version": "7.1.0",
3
+ "version": "8.0.1",
4
4
  "description": "Breakout plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -30,20 +30,20 @@
30
30
  "atlaskit:src": "src/index.ts",
31
31
  "dependencies": {
32
32
  "@atlaskit/adf-schema": "^52.2.0",
33
- "@atlaskit/editor-plugin-block-controls": "^8.11.0",
34
- "@atlaskit/editor-plugin-editor-disabled": "^7.0.0",
35
- "@atlaskit/editor-plugin-editor-viewmode": "^9.0.0",
36
- "@atlaskit/editor-plugin-guideline": "^7.0.0",
37
- "@atlaskit/editor-plugin-interaction": "^14.0.0",
38
- "@atlaskit/editor-plugin-user-intent": "^5.0.0",
39
- "@atlaskit/editor-plugin-width": "^8.1.0",
33
+ "@atlaskit/editor-plugin-block-controls": "^9.0.0",
34
+ "@atlaskit/editor-plugin-editor-disabled": "^8.0.0",
35
+ "@atlaskit/editor-plugin-editor-viewmode": "^10.0.0",
36
+ "@atlaskit/editor-plugin-guideline": "^8.0.0",
37
+ "@atlaskit/editor-plugin-interaction": "^15.0.0",
38
+ "@atlaskit/editor-plugin-user-intent": "^6.0.0",
39
+ "@atlaskit/editor-plugin-width": "^9.0.0",
40
40
  "@atlaskit/editor-prosemirror": "^7.3.0",
41
41
  "@atlaskit/editor-shared-styles": "^3.10.0",
42
42
  "@atlaskit/icon": "^32.0.0",
43
43
  "@atlaskit/platform-feature-flags": "^1.1.0",
44
44
  "@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
45
45
  "@atlaskit/theme": "^22.0.0",
46
- "@atlaskit/tmp-editor-statsig": "^35.5.0",
46
+ "@atlaskit/tmp-editor-statsig": "^36.0.0",
47
47
  "@atlaskit/tokens": "^11.1.0",
48
48
  "@atlaskit/tooltip": "^20.14.0",
49
49
  "@babel/runtime": "^7.0.0",
@@ -53,7 +53,7 @@
53
53
  "uuid": "^3.1.0"
54
54
  },
55
55
  "peerDependencies": {
56
- "@atlaskit/editor-common": "^111.32.0",
56
+ "@atlaskit/editor-common": "^112.0.0",
57
57
  "react": "^18.2.0",
58
58
  "react-dom": "^18.2.0",
59
59
  "react-intl-next": "npm:react-intl@^5.18.1"