@atlaskit/editor-core 151.2.1 → 151.3.0

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,11 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 151.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`08348b6692c`](https://bitbucket.org/atlassian/atlassian-frontend/commits/08348b6692c) - Update CodeBlockOptions to have appearance prop optional
8
+
3
9
  ## 151.2.1
4
10
 
5
11
  ### Patch Changes
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.nextMajorVersion = exports.version = exports.name = void 0;
7
7
  var name = "@atlaskit/editor-core";
8
8
  exports.name = name;
9
- var version = "151.2.1";
9
+ var version = "151.3.0";
10
10
  exports.version = version;
11
11
 
12
12
  var nextMajorVersion = function nextMajorVersion() {
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "151.2.1",
3
+ "version": "151.3.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  export const name = "@atlaskit/editor-core";
2
- export const version = "151.2.1";
2
+ export const version = "151.3.0";
3
3
  export const nextMajorVersion = () => {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "151.2.1",
3
+ "version": "151.3.0",
4
4
  "sideEffects": false
5
5
  }
@@ -1,5 +1,5 @@
1
1
  export var name = "@atlaskit/editor-core";
2
- export var version = "151.2.1";
2
+ export var version = "151.3.0";
3
3
  export var nextMajorVersion = function nextMajorVersion() {
4
4
  return [Number(version.split('.')[0]) + 1, 0, 0].join('.');
5
5
  };
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "151.2.1",
3
+ "version": "151.3.0",
4
4
  "sideEffects": false
5
5
  }
@@ -2,5 +2,5 @@ import type { EditorAppearance } from '../../types';
2
2
  import { LongPressSelectionPluginOptions } from '../selection/types';
3
3
  export interface CodeBlockOptions extends LongPressSelectionPluginOptions {
4
4
  allowCopyToClipboard?: boolean;
5
- appearance: EditorAppearance | undefined;
5
+ appearance?: EditorAppearance | undefined;
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "151.2.1",
3
+ "version": "151.3.0",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -170,7 +170,7 @@
170
170
  "@atlaskit/webdriver-runner": "*",
171
171
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
172
172
  "@atlassian/search-provider": "2.1.15",
173
- "@atlassian/ufo": "^0.0.29",
173
+ "@atlassian/ufo": "^0.0.30",
174
174
  "@testing-library/react": "^8.0.1",
175
175
  "@testing-library/react-hooks": "^1.0.4",
176
176
  "@types/jscodeshift": "^0.11.0",