@atlaskit/editor-plugin-panel 10.0.14 → 10.0.16

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,19 @@
1
1
  # @atlaskit/editor-plugin-panel
2
2
 
3
+ ## 10.0.16
4
+
5
+ ### Patch Changes
6
+
7
+ - [`88a7ee0806123`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/88a7ee0806123) -
8
+ Mechanical type-import autofix for block, layout, and control packages.
9
+ - Updated dependencies
10
+
11
+ ## 10.0.15
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+
3
17
  ## 10.0.14
4
18
 
5
19
  ### Patch Changes
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import type { PanelAttributes } from '@atlaskit/adf-schema';
3
3
  import { PanelType } from '@atlaskit/adf-schema';
4
- import { type PortalProviderAPI } from '@atlaskit/editor-common/portal';
4
+ import type { PortalProviderAPI } from '@atlaskit/editor-common/portal';
5
5
  import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
6
6
  import type { ExtractInjectionAPI, getPosHandler, getPosHandlerNode } from '@atlaskit/editor-common/types';
7
7
  import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
@@ -1,3 +1,3 @@
1
- import { type PanelPlugin } from './panelPluginType';
1
+ import type { PanelPlugin } from './panelPluginType';
2
2
  declare const panelPlugin: PanelPlugin;
3
3
  export default panelPlugin;
@@ -1,9 +1,9 @@
1
- import { type INPUT_METHOD } from '@atlaskit/editor-common/analytics';
1
+ import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
2
2
  import type { Command, LongPressSelectionPluginOptions, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
3
3
  import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
4
  import type { BlockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
5
5
  import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
6
- import { type EmojiPlugin } from '@atlaskit/editor-plugin-emoji';
6
+ import type { EmojiPlugin } from '@atlaskit/editor-plugin-emoji';
7
7
  import type { SelectionPlugin } from '@atlaskit/editor-plugin-selection';
8
8
  import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
9
9
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
@@ -1,9 +1,9 @@
1
1
  import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
2
- import { type PortalProviderAPI } from '@atlaskit/editor-common/portal';
2
+ import type { PortalProviderAPI } from '@atlaskit/editor-common/portal';
3
3
  import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
4
4
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
5
- import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
6
- import { type PanelPlugin, type PanelPluginOptions } from '../panelPluginType';
5
+ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
6
+ import type { PanelPlugin, PanelPluginOptions } from '../panelPluginType';
7
7
  export type PanelOptions = {
8
8
  color?: string;
9
9
  emoji?: string;
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import type { PanelAttributes } from '@atlaskit/adf-schema';
3
3
  import { PanelType } from '@atlaskit/adf-schema';
4
- import { type PortalProviderAPI } from '@atlaskit/editor-common/portal';
4
+ import type { PortalProviderAPI } from '@atlaskit/editor-common/portal';
5
5
  import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
6
6
  import type { ExtractInjectionAPI, getPosHandler, getPosHandlerNode } from '@atlaskit/editor-common/types';
7
7
  import type { Node as PMNode } from '@atlaskit/editor-prosemirror/model';
@@ -1,3 +1,3 @@
1
- import { type PanelPlugin } from './panelPluginType';
1
+ import type { PanelPlugin } from './panelPluginType';
2
2
  declare const panelPlugin: PanelPlugin;
3
3
  export default panelPlugin;
@@ -1,9 +1,9 @@
1
- import { type INPUT_METHOD } from '@atlaskit/editor-common/analytics';
1
+ import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
2
2
  import type { Command, LongPressSelectionPluginOptions, NextEditorPlugin, OptionalPlugin } from '@atlaskit/editor-common/types';
3
3
  import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
4
4
  import type { BlockMenuPlugin } from '@atlaskit/editor-plugin-block-menu';
5
5
  import type { decorationsPlugin } from '@atlaskit/editor-plugin-decorations';
6
- import { type EmojiPlugin } from '@atlaskit/editor-plugin-emoji';
6
+ import type { EmojiPlugin } from '@atlaskit/editor-plugin-emoji';
7
7
  import type { SelectionPlugin } from '@atlaskit/editor-plugin-selection';
8
8
  import type { ToolbarPlugin } from '@atlaskit/editor-plugin-toolbar';
9
9
  import { PluginKey } from '@atlaskit/editor-prosemirror/state';
@@ -1,9 +1,9 @@
1
1
  import type { Dispatch } from '@atlaskit/editor-common/event-dispatcher';
2
- import { type PortalProviderAPI } from '@atlaskit/editor-common/portal';
2
+ import type { PortalProviderAPI } from '@atlaskit/editor-common/portal';
3
3
  import type { ProviderFactory } from '@atlaskit/editor-common/provider-factory';
4
4
  import { SafePlugin } from '@atlaskit/editor-common/safe-plugin';
5
- import { type ExtractInjectionAPI } from '@atlaskit/editor-common/types';
6
- import { type PanelPlugin, type PanelPluginOptions } from '../panelPluginType';
5
+ import type { ExtractInjectionAPI } from '@atlaskit/editor-common/types';
6
+ import type { PanelPlugin, PanelPluginOptions } from '../panelPluginType';
7
7
  export type PanelOptions = {
8
8
  color?: string;
9
9
  emoji?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-panel",
3
- "version": "10.0.14",
3
+ "version": "10.0.16",
4
4
  "description": "Panel plugin for @atlaskit/editor-core.",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -39,16 +39,16 @@
39
39
  "@atlaskit/editor-shared-styles": "^3.10.0",
40
40
  "@atlaskit/editor-toolbar": "^0.20.0",
41
41
  "@atlaskit/emoji": "^69.10.0",
42
- "@atlaskit/icon": "^33.0.0",
42
+ "@atlaskit/icon": "^33.1.0",
43
43
  "@atlaskit/platform-feature-flags": "^1.1.0",
44
44
  "@atlaskit/theme": "^22.0.0",
45
- "@atlaskit/tmp-editor-statsig": "^46.0.0",
46
- "@atlaskit/tokens": "^11.2.0",
45
+ "@atlaskit/tmp-editor-statsig": "^48.0.0",
46
+ "@atlaskit/tokens": "^11.3.0",
47
47
  "@babel/runtime": "^7.0.0",
48
48
  "uuid": "^3.1.0"
49
49
  },
50
50
  "peerDependencies": {
51
- "@atlaskit/editor-common": "^112.9.0",
51
+ "@atlaskit/editor-common": "^112.11.0",
52
52
  "react": "^18.2.0",
53
53
  "react-dom": "^18.2.0",
54
54
  "react-intl-next": "npm:react-intl@^5.18.1"