@atlaskit/editor-core 187.24.1 → 187.24.2

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,12 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 187.24.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`8efc1dfc706`](https://bitbucket.org/atlassian/atlassian-frontend/commits/8efc1dfc706) - ED-19330 create editor-list-plugin
8
+ - Updated dependencies
9
+
3
10
  ## 187.24.1
4
11
 
5
12
  ### Patch Changes
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.version = exports.nextMajorVersion = exports.name = void 0;
7
7
  var name = "@atlaskit/editor-core";
8
8
  exports.name = name;
9
- var version = "187.24.1";
9
+ var version = "187.24.2";
10
10
  exports.version = version;
11
11
  var nextMajorVersion = function nextMajorVersion() {
12
12
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
- import { orderedList, orderedListWithOrder, bulletList, listItem } from '@atlaskit/adf-schema';
2
+ import { bulletList, listItem, orderedList, orderedListWithOrder } from '@atlaskit/adf-schema';
3
3
  import { createPlugin } from './pm-plugins/main';
4
4
  import inputRulePlugin from './pm-plugins/input-rules';
5
5
  import keymapPlugin from './pm-plugins/keymap';
6
6
  import { listMessages as messages } from '@atlaskit/editor-common/messages';
7
- import { ACTION, EVENT_TYPE, INPUT_METHOD, ACTION_SUBJECT, ACTION_SUBJECT_ID } from '../analytics';
8
- import { tooltip, toggleBulletList, toggleOrderedList } from '../../keymaps';
7
+ import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '../analytics';
8
+ import { toggleBulletList, toggleOrderedList, tooltip } from '../../keymaps';
9
9
  import { IconList, IconListNumber } from '@atlaskit/editor-common/quick-insert';
10
10
  /*
11
11
  Toolbar buttons to bullet and ordered list can be found in
@@ -1,5 +1,5 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "187.24.1";
2
+ export const version = "187.24.2";
3
3
  export const nextMajorVersion = () => {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,11 +1,11 @@
1
1
  import React from 'react';
2
- import { orderedList, orderedListWithOrder, bulletList, listItem } from '@atlaskit/adf-schema';
2
+ import { bulletList, listItem, orderedList, orderedListWithOrder } from '@atlaskit/adf-schema';
3
3
  import { createPlugin } from './pm-plugins/main';
4
4
  import inputRulePlugin from './pm-plugins/input-rules';
5
5
  import keymapPlugin from './pm-plugins/keymap';
6
6
  import { listMessages as messages } from '@atlaskit/editor-common/messages';
7
- import { ACTION, EVENT_TYPE, INPUT_METHOD, ACTION_SUBJECT, ACTION_SUBJECT_ID } from '../analytics';
8
- import { tooltip, toggleBulletList, toggleOrderedList } from '../../keymaps';
7
+ import { ACTION, ACTION_SUBJECT, ACTION_SUBJECT_ID, EVENT_TYPE, INPUT_METHOD } from '../analytics';
8
+ import { toggleBulletList, toggleOrderedList, tooltip } from '../../keymaps';
9
9
  import { IconList, IconListNumber } from '@atlaskit/editor-common/quick-insert';
10
10
  /*
11
11
  Toolbar buttons to bullet and ordered list can be found in
@@ -1,5 +1,5 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "187.24.1";
2
+ export var version = "187.24.2";
3
3
  export var nextMajorVersion = function nextMajorVersion() {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,13 +1,3 @@
1
- import type { NextEditorPlugin } from '../../types';
2
- import type { ListPluginOptions } from './types';
3
- import type featureFlagsPlugin from '@atlaskit/editor-plugin-feature-flags';
4
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
6
- declare const listPlugin: NextEditorPlugin<'list', {
7
- pluginConfiguration: ListPluginOptions | undefined;
8
- dependencies: [
9
- typeof featureFlagsPlugin,
10
- OptionalPlugin<typeof analyticsPlugin>
11
- ];
12
- }>;
1
+ import type { ListPlugin } from '@atlaskit/editor-plugin-list';
2
+ declare const listPlugin: ListPlugin;
13
3
  export default listPlugin;
@@ -1,13 +1,3 @@
1
- import type { NextEditorPlugin } from '../../types';
2
- import type { ListPluginOptions } from './types';
3
- import type featureFlagsPlugin from '@atlaskit/editor-plugin-feature-flags';
4
- import type { analyticsPlugin } from '@atlaskit/editor-plugin-analytics';
5
- import type { OptionalPlugin } from '@atlaskit/editor-common/types';
6
- declare const listPlugin: NextEditorPlugin<'list', {
7
- pluginConfiguration: ListPluginOptions | undefined;
8
- dependencies: [
9
- typeof featureFlagsPlugin,
10
- OptionalPlugin<typeof analyticsPlugin>
11
- ];
12
- }>;
1
+ import type { ListPlugin } from '@atlaskit/editor-plugin-list';
2
+ declare const listPlugin: ListPlugin;
13
3
  export default listPlugin;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "187.24.1",
3
+ "version": "187.24.2",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -48,7 +48,7 @@
48
48
  "@atlaskit/analytics-next": "^9.1.0",
49
49
  "@atlaskit/analytics-next-stable-react-context": "1.0.1",
50
50
  "@atlaskit/avatar": "^21.3.0",
51
- "@atlaskit/avatar-group": "^9.3.0",
51
+ "@atlaskit/avatar-group": "^9.4.0",
52
52
  "@atlaskit/button": "^16.9.0",
53
53
  "@atlaskit/calendar": "^13.2.0",
54
54
  "@atlaskit/checkbox": "^12.6.0",
@@ -72,6 +72,7 @@
72
72
  "@atlaskit/editor-plugin-guideline": "^0.3.4",
73
73
  "@atlaskit/editor-plugin-hyperlink": "^0.3.0",
74
74
  "@atlaskit/editor-plugin-image-upload": "^0.1.0",
75
+ "@atlaskit/editor-plugin-list": "^0.1.0",
75
76
  "@atlaskit/editor-plugin-table": "^2.9.0",
76
77
  "@atlaskit/editor-plugin-text-formatting": "^0.2.0",
77
78
  "@atlaskit/editor-plugin-width": "^0.1.0",
@@ -143,7 +144,7 @@
143
144
  "@af/editor-libra": "*",
144
145
  "@af/integration-testing": "*",
145
146
  "@atlaskit/code": "^14.6.0",
146
- "@atlaskit/collab-provider": "9.10.1",
147
+ "@atlaskit/collab-provider": "9.11.0",
147
148
  "@atlaskit/dropdown-menu": "^11.11.0",
148
149
  "@atlaskit/editor-extension-dropbox": "^0.4.0",
149
150
  "@atlaskit/editor-plugin-table": "^2.9.0",