@atlaskit/editor-plugin-extension 10.1.18 → 11.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.
Files changed (127) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/cjs/ui/ConfigPanel/ConfigPanelLoader.js +3 -2
  3. package/dist/cjs/ui/ConfigPanel/ErrorMessage/ErrorImage.js +1 -1
  4. package/dist/cjs/ui/ConfigPanel/ErrorMessage/index.js +4 -1
  5. package/dist/cjs/ui/ConfigPanel/FieldMessages.js +4 -1
  6. package/dist/cjs/ui/ConfigPanel/Fields/Boolean.js +1 -1
  7. package/dist/cjs/ui/ConfigPanel/Fields/CheckboxGroup.js +1 -1
  8. package/dist/cjs/ui/ConfigPanel/Fields/ColorPicker.js +1 -1
  9. package/dist/cjs/ui/ConfigPanel/Fields/CustomSelect.js +17 -17
  10. package/dist/cjs/ui/ConfigPanel/Fields/Date.js +4 -1
  11. package/dist/cjs/ui/ConfigPanel/Fields/DateRange.js +2 -1
  12. package/dist/cjs/ui/ConfigPanel/Fields/Expand.js +4 -1
  13. package/dist/cjs/ui/ConfigPanel/Fields/Fieldset.js +4 -1
  14. package/dist/cjs/ui/ConfigPanel/Fields/SelectItem.js +1 -1
  15. package/dist/cjs/ui/ConfigPanel/Fields/TabGroup.js +2 -0
  16. package/dist/cjs/ui/ConfigPanel/Fields/UserSelect.js +10 -14
  17. package/dist/cjs/ui/ConfigPanel/FormErrorBoundary.js +1 -1
  18. package/dist/cjs/ui/ConfigPanel/Header/HeaderAfterIconElement.js +2 -1
  19. package/dist/cjs/ui/ConfigPanel/Header/HeaderIcon.js +2 -1
  20. package/dist/cjs/ui/ConfigPanel/Header.js +2 -1
  21. package/dist/cjs/ui/ConfigPanel/LoadingState.js +2 -1
  22. package/dist/cjs/ui/ConfigPanel/NestedForms/RemovableField.js +4 -1
  23. package/dist/cjs/ui/ConfigPanel/transformers.js +26 -32
  24. package/dist/cjs/ui/ConfigPanel/utils.js +3 -1
  25. package/dist/cjs/ui/SaveIndicator/SaveIndicator.js +1 -1
  26. package/dist/es2019/ui/ConfigPanel/ConfigPanelLoader.js +3 -2
  27. package/dist/es2019/ui/ConfigPanel/ErrorMessage/ErrorImage.js +1 -1
  28. package/dist/es2019/ui/ConfigPanel/ErrorMessage/index.js +4 -1
  29. package/dist/es2019/ui/ConfigPanel/FieldMessages.js +4 -1
  30. package/dist/es2019/ui/ConfigPanel/Fields/Boolean.js +1 -1
  31. package/dist/es2019/ui/ConfigPanel/Fields/CheckboxGroup.js +1 -1
  32. package/dist/es2019/ui/ConfigPanel/Fields/ColorPicker.js +1 -1
  33. package/dist/es2019/ui/ConfigPanel/Fields/CustomSelect.js +5 -2
  34. package/dist/es2019/ui/ConfigPanel/Fields/Date.js +4 -1
  35. package/dist/es2019/ui/ConfigPanel/Fields/DateRange.js +2 -1
  36. package/dist/es2019/ui/ConfigPanel/Fields/Expand.js +4 -1
  37. package/dist/es2019/ui/ConfigPanel/Fields/Fieldset.js +4 -1
  38. package/dist/es2019/ui/ConfigPanel/Fields/SelectItem.js +1 -1
  39. package/dist/es2019/ui/ConfigPanel/Fields/TabGroup.js +2 -0
  40. package/dist/es2019/ui/ConfigPanel/Fields/UserSelect.js +1 -1
  41. package/dist/es2019/ui/ConfigPanel/FormErrorBoundary.js +2 -0
  42. package/dist/es2019/ui/ConfigPanel/Header/HeaderAfterIconElement.js +2 -1
  43. package/dist/es2019/ui/ConfigPanel/Header/HeaderIcon.js +2 -1
  44. package/dist/es2019/ui/ConfigPanel/Header.js +2 -1
  45. package/dist/es2019/ui/ConfigPanel/LoadingState.js +2 -1
  46. package/dist/es2019/ui/ConfigPanel/NestedForms/RemovableField.js +4 -1
  47. package/dist/es2019/ui/ConfigPanel/transformers.js +2 -2
  48. package/dist/es2019/ui/ConfigPanel/utils.js +3 -1
  49. package/dist/es2019/ui/SaveIndicator/SaveIndicator.js +1 -1
  50. package/dist/esm/ui/ConfigPanel/ConfigPanelLoader.js +3 -2
  51. package/dist/esm/ui/ConfigPanel/ErrorMessage/ErrorImage.js +1 -1
  52. package/dist/esm/ui/ConfigPanel/ErrorMessage/index.js +4 -1
  53. package/dist/esm/ui/ConfigPanel/FieldMessages.js +4 -1
  54. package/dist/esm/ui/ConfigPanel/Fields/Boolean.js +1 -1
  55. package/dist/esm/ui/ConfigPanel/Fields/CheckboxGroup.js +1 -1
  56. package/dist/esm/ui/ConfigPanel/Fields/ColorPicker.js +1 -1
  57. package/dist/esm/ui/ConfigPanel/Fields/CustomSelect.js +17 -17
  58. package/dist/esm/ui/ConfigPanel/Fields/Date.js +4 -1
  59. package/dist/esm/ui/ConfigPanel/Fields/DateRange.js +2 -1
  60. package/dist/esm/ui/ConfigPanel/Fields/Expand.js +4 -1
  61. package/dist/esm/ui/ConfigPanel/Fields/Fieldset.js +4 -1
  62. package/dist/esm/ui/ConfigPanel/Fields/SelectItem.js +1 -1
  63. package/dist/esm/ui/ConfigPanel/Fields/TabGroup.js +2 -0
  64. package/dist/esm/ui/ConfigPanel/Fields/UserSelect.js +10 -14
  65. package/dist/esm/ui/ConfigPanel/FormErrorBoundary.js +1 -1
  66. package/dist/esm/ui/ConfigPanel/Header/HeaderAfterIconElement.js +2 -1
  67. package/dist/esm/ui/ConfigPanel/Header/HeaderIcon.js +2 -1
  68. package/dist/esm/ui/ConfigPanel/Header.js +2 -1
  69. package/dist/esm/ui/ConfigPanel/LoadingState.js +2 -1
  70. package/dist/esm/ui/ConfigPanel/NestedForms/RemovableField.js +4 -1
  71. package/dist/esm/ui/ConfigPanel/transformers.js +26 -32
  72. package/dist/esm/ui/ConfigPanel/utils.js +3 -1
  73. package/dist/esm/ui/SaveIndicator/SaveIndicator.js +1 -1
  74. package/dist/types/editor-commands/commands.d.ts +8 -7
  75. package/dist/types/nodeviews/lazyExtension.d.ts +2 -1
  76. package/dist/types/pm-plugins/macro/plugin.d.ts +1 -1
  77. package/dist/types/pm-plugins/main.d.ts +2 -2
  78. package/dist/types/pm-plugins/plugin-factory.d.ts +7 -4
  79. package/dist/types/pm-plugins/toDOM-fixes/bodiedExtension.d.ts +18 -17
  80. package/dist/types/pm-plugins/unique-id.d.ts +1 -1
  81. package/dist/types/pm-plugins/update-edit-button.d.ts +2 -2
  82. package/dist/types/pm-plugins/utils.d.ts +2 -2
  83. package/dist/types/ui/ConfigPanel/ConfigPanel.d.ts +2 -2
  84. package/dist/types/ui/ConfigPanel/ConfigPanelLoader.d.ts +3 -2
  85. package/dist/types/ui/ConfigPanel/ErrorMessage/index.d.ts +3 -3
  86. package/dist/types/ui/ConfigPanel/FieldMessages.d.ts +3 -3
  87. package/dist/types/ui/ConfigPanel/Fields/CustomSelect.d.ts +3 -3
  88. package/dist/types/ui/ConfigPanel/Fields/Date.d.ts +3 -3
  89. package/dist/types/ui/ConfigPanel/Fields/DateRange.d.ts +9 -4
  90. package/dist/types/ui/ConfigPanel/Fields/Expand.d.ts +3 -3
  91. package/dist/types/ui/ConfigPanel/Fields/Fieldset.d.ts +3 -3
  92. package/dist/types/ui/ConfigPanel/Fields/TabGroup.d.ts +2 -2
  93. package/dist/types/ui/ConfigPanel/FormErrorBoundary.d.ts +5 -5
  94. package/dist/types/ui/ConfigPanel/Header/HeaderAfterIconElement.d.ts +6 -5
  95. package/dist/types/ui/ConfigPanel/Header/HeaderIcon.d.ts +6 -5
  96. package/dist/types/ui/ConfigPanel/Header.d.ts +9 -4
  97. package/dist/types/ui/ConfigPanel/LoadingState.d.ts +2 -1
  98. package/dist/types/ui/ConfigPanel/NestedForms/RemovableField.d.ts +3 -3
  99. package/dist/types/ui/SaveIndicator/SaveIndicator.d.ts +1 -1
  100. package/dist/types-ts4.5/editor-commands/commands.d.ts +8 -7
  101. package/dist/types-ts4.5/nodeviews/lazyExtension.d.ts +2 -1
  102. package/dist/types-ts4.5/pm-plugins/macro/plugin.d.ts +1 -1
  103. package/dist/types-ts4.5/pm-plugins/main.d.ts +2 -2
  104. package/dist/types-ts4.5/pm-plugins/plugin-factory.d.ts +7 -4
  105. package/dist/types-ts4.5/pm-plugins/toDOM-fixes/bodiedExtension.d.ts +18 -17
  106. package/dist/types-ts4.5/pm-plugins/unique-id.d.ts +1 -1
  107. package/dist/types-ts4.5/pm-plugins/update-edit-button.d.ts +2 -2
  108. package/dist/types-ts4.5/pm-plugins/utils.d.ts +2 -2
  109. package/dist/types-ts4.5/ui/ConfigPanel/ConfigPanel.d.ts +2 -2
  110. package/dist/types-ts4.5/ui/ConfigPanel/ConfigPanelLoader.d.ts +3 -2
  111. package/dist/types-ts4.5/ui/ConfigPanel/ErrorMessage/index.d.ts +3 -3
  112. package/dist/types-ts4.5/ui/ConfigPanel/FieldMessages.d.ts +3 -3
  113. package/dist/types-ts4.5/ui/ConfigPanel/Fields/CustomSelect.d.ts +3 -3
  114. package/dist/types-ts4.5/ui/ConfigPanel/Fields/Date.d.ts +3 -3
  115. package/dist/types-ts4.5/ui/ConfigPanel/Fields/DateRange.d.ts +9 -4
  116. package/dist/types-ts4.5/ui/ConfigPanel/Fields/Expand.d.ts +3 -3
  117. package/dist/types-ts4.5/ui/ConfigPanel/Fields/Fieldset.d.ts +3 -3
  118. package/dist/types-ts4.5/ui/ConfigPanel/Fields/TabGroup.d.ts +2 -2
  119. package/dist/types-ts4.5/ui/ConfigPanel/FormErrorBoundary.d.ts +5 -5
  120. package/dist/types-ts4.5/ui/ConfigPanel/Header/HeaderAfterIconElement.d.ts +6 -5
  121. package/dist/types-ts4.5/ui/ConfigPanel/Header/HeaderIcon.d.ts +6 -5
  122. package/dist/types-ts4.5/ui/ConfigPanel/Header.d.ts +9 -4
  123. package/dist/types-ts4.5/ui/ConfigPanel/LoadingState.d.ts +2 -1
  124. package/dist/types-ts4.5/ui/ConfigPanel/NestedForms/RemovableField.d.ts +3 -3
  125. package/dist/types-ts4.5/ui/SaveIndicator/SaveIndicator.d.ts +1 -1
  126. package/example-utils/config-panel/ConfigPanelWithExtensionPicker.tsx +2 -2
  127. package/package.json +15 -13
@@ -1,14 +1,19 @@
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 { DateRangeField } from '@atlaskit/editor-common/extensions';
3
8
  import type { OnFieldChange } from '../types';
4
- declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<{
9
+ declare const _default_1: FC<WithIntlProps<{
5
10
  autoFocus?: boolean;
6
11
  field: DateRangeField;
7
12
  name: string;
8
13
  onFieldChange: OnFieldChange;
9
14
  placeholder?: string;
10
15
  } & WrappedComponentProps>> & {
11
- WrappedComponent: import("react").ComponentType<{
16
+ WrappedComponent: ComponentType<{
12
17
  autoFocus?: boolean;
13
18
  field: DateRangeField;
14
19
  name: string;
@@ -16,4 +21,4 @@ declare const _default: import("react").FC<import("react-intl-next").WithIntlPro
16
21
  placeholder?: string;
17
22
  } & WrappedComponentProps>;
18
23
  };
19
- export default _default;
24
+ export default _default_1;
@@ -3,14 +3,14 @@
3
3
  * @jsx jsx
4
4
  */
5
5
  import React from 'react';
6
- import type { WrappedComponentProps } from 'react-intl-next';
6
+ import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
7
7
  import type { FieldDefinition } from '@atlaskit/editor-common/extensions';
8
8
  type Props = {
9
9
  children: React.ReactNode;
10
10
  field: FieldDefinition;
11
11
  isExpanded?: boolean;
12
12
  } & WrappedComponentProps;
13
- declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props>> & {
13
+ declare const _default_1: React.FC<WithIntlProps<Props>> & {
14
14
  WrappedComponent: React.ComponentType<Props>;
15
15
  };
16
- export default _default;
16
+ export default _default_1;
@@ -3,7 +3,7 @@
3
3
  * @jsx jsx
4
4
  */
5
5
  import React from 'react';
6
- import type { WrappedComponentProps } from 'react-intl-next';
6
+ import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
7
7
  import type { ExtensionManifest, Fieldset, Parameters } from '@atlaskit/editor-common/extensions';
8
8
  import type { FormContentProps, OnFieldChange } from '../types';
9
9
  type Props = {
@@ -16,7 +16,7 @@ type Props = {
16
16
  onFieldChange: OnFieldChange;
17
17
  parameters?: Parameters;
18
18
  } & WrappedComponentProps;
19
- declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props>> & {
19
+ declare const _default_1: React.FC<WithIntlProps<Props>> & {
20
20
  WrappedComponent: React.ComponentType<Props>;
21
21
  };
22
- export default _default;
22
+ export default _default_1;
@@ -3,13 +3,13 @@
3
3
  * @jsx jsx
4
4
  */
5
5
  import React from 'react';
6
- import type { WrappedComponentProps } from 'react-intl-next';
6
+ import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
7
7
  import type { TabField, TabGroupField } from '@atlaskit/editor-common/extensions';
8
8
  type Props = {
9
9
  field: TabGroupField;
10
10
  renderPanel: (tabField: TabField) => JSX.Element;
11
11
  } & WrappedComponentProps;
12
- declare const TabGroup: React.FC<import("react-intl-next").WithIntlProps<Props>> & {
12
+ declare const TabGroup: React.FC<WithIntlProps<Props>> & {
13
13
  WrappedComponent: React.ComponentType<Props>;
14
14
  };
15
15
  export default TabGroup;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import type { WrappedComponentProps } from 'react-intl-next';
3
- import type { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
2
+ import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
3
+ import type { WithAnalyticsEventsProps, WithContextProps } from '@atlaskit/analytics-next';
4
4
  import type { FieldDefinition } from '@atlaskit/editor-common/extensions';
5
5
  import type { ContextIdentifierProvider } from '@atlaskit/editor-common/provider-factory';
6
6
  interface Props {
@@ -9,10 +9,10 @@ interface Props {
9
9
  extensionKey: string;
10
10
  fields: FieldDefinition[];
11
11
  }
12
- export declare const FormErrorBoundaryImpl: React.FC<import("react-intl-next").WithIntlProps<Props & WithAnalyticsEventsProps & WrappedComponentProps>> & {
12
+ export declare const FormErrorBoundaryImpl: React.FC<WithIntlProps<Props & WithAnalyticsEventsProps & WrappedComponentProps>> & {
13
13
  WrappedComponent: React.ComponentType<Props & WithAnalyticsEventsProps & WrappedComponentProps>;
14
14
  };
15
- export declare const FormErrorBoundary: React.ForwardRefExoticComponent<Omit<Omit<Omit<Props & WithAnalyticsEventsProps & WrappedComponentProps, "intl"> & {
15
+ export declare const FormErrorBoundary: React.ForwardRefExoticComponent<Omit<Omit<Omit<Props & WithAnalyticsEventsProps & WrappedComponentProps, 'intl'> & {
16
16
  forwardedRef?: React.Ref<any>;
17
- }, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & import("@atlaskit/analytics-next").WithContextProps, "ref"> & React.RefAttributes<any>>;
17
+ }, keyof WithAnalyticsEventsProps> & React.RefAttributes<any> & WithContextProps, 'ref'> & React.RefAttributes<any>>;
18
18
  export {};
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
- declare const _default: (props: {
3
- extensionKey: import("@atlaskit/editor-common/extensions").ExtensionKey;
4
- extensionProvider: import("@atlaskit/editor-common/extensions").ExtensionProvider;
5
- extensionType: import("@atlaskit/editor-common/extensions").ExtensionType;
2
+ import type { ExtensionKey, ExtensionProvider, ExtensionType } from '@atlaskit/editor-common/extensions';
3
+ declare const _default_1: (props: {
4
+ extensionKey: ExtensionKey;
5
+ extensionProvider: ExtensionProvider;
6
+ extensionType: ExtensionType;
6
7
  }) => React.JSX.Element | null;
7
- export default _default;
8
+ export default _default_1;
@@ -1,7 +1,8 @@
1
1
  import React from 'react';
2
- declare const _default: (props: {
3
- extensionKey: import("@atlaskit/editor-common/extensions").ExtensionKey;
4
- extensionProvider: import("@atlaskit/editor-common/extensions").ExtensionProvider;
5
- extensionType: import("@atlaskit/editor-common/extensions").ExtensionType;
2
+ import type { ExtensionKey, ExtensionProvider, ExtensionType } from '@atlaskit/editor-common/extensions';
3
+ declare const _default_1: (props: {
4
+ extensionKey: ExtensionKey;
5
+ extensionProvider: ExtensionProvider;
6
+ extensionType: ExtensionType;
6
7
  }) => React.JSX.Element | null;
7
- export default _default;
8
+ export default _default_1;
@@ -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 { Icon } from '@atlaskit/editor-common/extensions';
3
8
  import { type ExtensionDeprecationStatus } from '@atlaskit/editor-common/extensions';
4
9
  type Props = {
@@ -11,7 +16,7 @@ type Props = {
11
16
  summary?: string;
12
17
  title: string;
13
18
  } & WrappedComponentProps;
14
- declare const _default: import("react").FC<import("react-intl-next").WithIntlProps<Props>> & {
15
- WrappedComponent: import("react").ComponentType<Props>;
19
+ declare const _default_1: FC<WithIntlProps<Props>> & {
20
+ WrappedComponent: ComponentType<Props>;
16
21
  };
17
- export default _default;
22
+ export default _default_1;
@@ -2,7 +2,8 @@
2
2
  * @jsxRuntime classic
3
3
  * @jsx jsx
4
4
  */
5
+ import type { ReactNode } from 'react';
5
6
  import { jsx } from '@emotion/react';
6
7
  import type { LoadingComponentProps } from 'react-loadable';
7
- declare const LoadingState: (props: Partial<LoadingComponentProps>) => string | number | boolean | Iterable<import("react").ReactNode> | jsx.JSX.Element | null | undefined;
8
+ declare const LoadingState: (props: Partial<LoadingComponentProps>) => string | number | boolean | jsx.JSX.Element | Iterable<ReactNode> | null | undefined;
8
9
  export default LoadingState;
@@ -3,7 +3,7 @@
3
3
  * @jsx jsx
4
4
  */
5
5
  import React from 'react';
6
- import type { WrappedComponentProps } from 'react-intl-next';
6
+ import type { WithIntlProps, WrappedComponentProps } from 'react-intl-next';
7
7
  type Props = {
8
8
  canRemoveField?: boolean;
9
9
  children: React.ReactElement;
@@ -11,7 +11,7 @@ type Props = {
11
11
  name: string;
12
12
  onClickRemove?: (fieldName: string) => void;
13
13
  } & WrappedComponentProps;
14
- declare const _default: React.FC<import("react-intl-next").WithIntlProps<Props>> & {
14
+ declare const _default_1: React.FC<WithIntlProps<Props>> & {
15
15
  WrappedComponent: React.ComponentType<Props>;
16
16
  };
17
- export default _default;
17
+ export default _default_1;
@@ -1,3 +1,3 @@
1
1
  import { jsx } from '@emotion/react';
2
2
  import type { SaveIndicatorProps } from './types';
3
- export declare const SaveIndicator: ({ children, duration, visible }: SaveIndicatorProps) => jsx.JSX.Element;
3
+ export declare const SaveIndicator: ({ children, duration, visible, }: SaveIndicatorProps) => jsx.JSX.Element;
@@ -5,7 +5,7 @@
5
5
  */
6
6
  import { useEffect, useState } from 'react';
7
7
 
8
- // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
8
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled, @typescript-eslint/consistent-type-imports
9
9
  import { css, jsx } from '@emotion/react';
10
10
  import { IntlProvider } from 'react-intl-next';
11
11
 
@@ -160,7 +160,7 @@ export default function ConfigPanelWithExtensionPicker({
160
160
  }: {
161
161
  extensionProvider: ExtensionProvider;
162
162
  parameters?: Parameters;
163
- }) {
163
+ }): jsx.JSX.Element {
164
164
  const [hash, setHash] = useState<string>(getHashFromUrl());
165
165
  const [extensionNode, setNodeAndParameters] = useState<CallbackParams>();
166
166
  const [item, setItem] = useState<ExtensionModule>();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-extension",
3
- "version": "10.1.18",
3
+ "version": "11.0.1",
4
4
  "description": "editor-plugin-extension plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -30,14 +30,16 @@
30
30
  "@atlaskit/checkbox": "^17.3.0",
31
31
  "@atlaskit/datetime-picker": "^17.5.0",
32
32
  "@atlaskit/editor-json-transformer": "^8.31.0",
33
- "@atlaskit/editor-plugin-analytics": "^7.0.0",
34
- "@atlaskit/editor-plugin-connectivity": "^7.0.0",
35
- "@atlaskit/editor-plugin-context-identifier": "^7.0.0",
36
- "@atlaskit/editor-plugin-context-panel": "^9.0.0",
37
- "@atlaskit/editor-plugin-decorations": "^7.0.0",
38
- "@atlaskit/editor-plugin-feature-flags": "^6.0.0",
39
- "@atlaskit/editor-plugin-toolbar": "^4.1.0",
40
- "@atlaskit/editor-plugin-width": "^8.1.0",
33
+ "@atlaskit/editor-plugin-analytics": "^8.0.0",
34
+ "@atlaskit/editor-plugin-connectivity": "^8.0.0",
35
+ "@atlaskit/editor-plugin-context-identifier": "^8.0.0",
36
+ "@atlaskit/editor-plugin-context-panel": "^10.0.0",
37
+ "@atlaskit/editor-plugin-copy-button": "^8.0.0",
38
+ "@atlaskit/editor-plugin-decorations": "^8.0.0",
39
+ "@atlaskit/editor-plugin-feature-flags": "^7.0.0",
40
+ "@atlaskit/editor-plugin-mentions": "^10.0.0",
41
+ "@atlaskit/editor-plugin-toolbar": "^5.0.0",
42
+ "@atlaskit/editor-plugin-width": "^9.0.0",
41
43
  "@atlaskit/editor-prosemirror": "^7.3.0",
42
44
  "@atlaskit/editor-shared-styles": "^3.10.0",
43
45
  "@atlaskit/editor-tables": "^2.9.0",
@@ -51,16 +53,16 @@
51
53
  "@atlaskit/primitives": "^18.0.0",
52
54
  "@atlaskit/radio": "^8.4.0",
53
55
  "@atlaskit/section-message": "^8.12.0",
54
- "@atlaskit/select": "^21.7.0",
56
+ "@atlaskit/select": "^21.8.0",
55
57
  "@atlaskit/smart-user-picker": "^9.2.0",
56
58
  "@atlaskit/spinner": "^19.0.0",
57
59
  "@atlaskit/tabs": "^18.3.0",
58
60
  "@atlaskit/textarea": "^8.2.0",
59
61
  "@atlaskit/textfield": "^8.2.0",
60
62
  "@atlaskit/theme": "^22.0.0",
61
- "@atlaskit/tmp-editor-statsig": "^35.0.0",
63
+ "@atlaskit/tmp-editor-statsig": "^36.0.0",
62
64
  "@atlaskit/toggle": "^15.2.0",
63
- "@atlaskit/tokens": "^11.0.0",
65
+ "@atlaskit/tokens": "^11.1.0",
64
66
  "@atlaskit/tooltip": "^20.14.0",
65
67
  "@babel/runtime": "^7.0.0",
66
68
  "@emotion/react": "^11.7.1",
@@ -72,7 +74,7 @@
72
74
  "uuid": "^3.1.0"
73
75
  },
74
76
  "peerDependencies": {
75
- "@atlaskit/editor-common": "^111.30.0",
77
+ "@atlaskit/editor-common": "^112.0.0",
76
78
  "react": "^18.2.0",
77
79
  "react-intl-next": "npm:react-intl@^5.18.1"
78
80
  },