@atlaskit/editor-core 221.7.3 → 221.8.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,22 @@
1
1
  # @atlaskit/editor-core
2
2
 
3
+ ## 221.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`c98e0cf5cc4f6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/c98e0cf5cc4f6) -
8
+ Autofix: add explicit package exports (barrel removal)
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 221.7.4
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 221.7.3
4
21
 
5
22
  ### Patch Changes
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core/composable-editor",
3
- "main": "../dist/cjs/composable-editor.js",
4
- "module": "../dist/esm/composable-editor.js",
5
- "module:es2019": "../dist/es2019/composable-editor.js",
3
+ "main": "../dist/cjs/entry-points/composable-editor.js",
4
+ "module": "../dist/esm/entry-points/composable-editor.js",
5
+ "module:es2019": "../dist/es2019/entry-points/composable-editor.js",
6
6
  "sideEffects": [
7
7
  "*.compiled.css"
8
8
  ],
9
- "types": "../dist/types/composable-editor.d.ts"
9
+ "types": "../dist/types/entry-points/composable-editor.d.ts"
10
10
  }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ComposableEditor", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _composableEditor.ComposableEditor;
10
+ }
11
+ });
12
+ var _composableEditor = require("../composable-editor/composable-editor");
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "createDefaultPreset", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _default.createDefaultPreset;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "useDefaultPreset", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _default.useDefaultPreset;
16
+ }
17
+ });
18
+ var _default = require("../presets/default");
@@ -6,4 +6,4 @@ Object.defineProperty(exports, "__esModule", {
6
6
  exports.version = exports.name = void 0;
7
7
  var name = exports.name = "@atlaskit/editor-core";
8
8
  // eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
9
- var version = exports.version = "221.7.2";
9
+ var version = exports.version = "221.7.4";
@@ -0,0 +1,4 @@
1
+ // Disable no-re-export rule for entry point files
2
+ /* eslint-disable @atlaskit/editor/no-re-export */
3
+
4
+ export { ComposableEditor } from '../composable-editor/composable-editor';
@@ -0,0 +1,4 @@
1
+ // Disable no-re-export rule for entry point files
2
+ /* eslint-disable @atlaskit/editor/no-re-export */
3
+
4
+ export { createDefaultPreset, useDefaultPreset } from '../presets/default';
@@ -1,3 +1,3 @@
1
1
  export const name = "@atlaskit/editor-core";
2
2
  // eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
3
- export const version = "221.7.2";
3
+ export const version = "221.7.4";
@@ -0,0 +1,4 @@
1
+ // Disable no-re-export rule for entry point files
2
+ /* eslint-disable @atlaskit/editor/no-re-export */
3
+
4
+ export { ComposableEditor } from '../composable-editor/composable-editor';
@@ -0,0 +1,4 @@
1
+ // Disable no-re-export rule for entry point files
2
+ /* eslint-disable @atlaskit/editor/no-re-export */
3
+
4
+ export { createDefaultPreset, useDefaultPreset } from '../presets/default';
@@ -1,3 +1,3 @@
1
1
  export var name = "@atlaskit/editor-core";
2
2
  // eslint-disable-next-line @atlaskit/volt-strict-mode/no-multiple-exports
3
- export var version = "221.7.2";
3
+ export var version = "221.7.4";
@@ -0,0 +1,2 @@
1
+ export { ComposableEditor } from '../composable-editor/composable-editor';
2
+ export type { EditorNextProps } from '../types/editor-props';
@@ -0,0 +1 @@
1
+ export { createDefaultPreset, useDefaultPreset } from '../presets/default';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core",
3
- "version": "221.7.3",
3
+ "version": "221.8.0",
4
4
  "description": "A package contains Atlassian editor core functionality",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -54,21 +54,21 @@
54
54
  "@atlaskit/editor-prosemirror": "^8.0.0",
55
55
  "@atlaskit/editor-shared-styles": "^4.0.0",
56
56
  "@atlaskit/editor-ssr-renderer": "^7.1.0",
57
- "@atlaskit/editor-toolbar": "^2.1.0",
57
+ "@atlaskit/editor-toolbar": "^2.2.0",
58
58
  "@atlaskit/editor-toolbar-model": "^1.1.0",
59
- "@atlaskit/emoji": "^71.7.0",
59
+ "@atlaskit/emoji": "^71.8.0",
60
60
  "@atlaskit/feature-gate-js-client": "^6.0.0",
61
- "@atlaskit/icon": "^36.2.0",
61
+ "@atlaskit/icon": "^37.0.0",
62
62
  "@atlaskit/link": "^4.1.0",
63
- "@atlaskit/media-card": "^81.3.0",
63
+ "@atlaskit/media-card": "^81.4.0",
64
64
  "@atlaskit/mention": "^27.5.0",
65
65
  "@atlaskit/platform-feature-flags": "^2.0.0",
66
66
  "@atlaskit/platform-feature-flags-react": "^1.1.0",
67
67
  "@atlaskit/react-compiler-gating": "^0.2.0",
68
68
  "@atlaskit/react-ufo": "^7.3.0",
69
69
  "@atlaskit/task-decision": "^21.4.0",
70
- "@atlaskit/tmp-editor-statsig": "^124.0.0",
71
- "@atlaskit/tokens": "^15.5.0",
70
+ "@atlaskit/tmp-editor-statsig": "^124.1.0",
71
+ "@atlaskit/tokens": "^15.6.0",
72
72
  "@atlaskit/tooltip": "^23.1.0",
73
73
  "@atlaskit/width-detector": "^6.2.0",
74
74
  "@babel/runtime": "^7.0.0",
@@ -85,7 +85,7 @@
85
85
  "uuid": "^3.1.0"
86
86
  },
87
87
  "peerDependencies": {
88
- "@atlaskit/editor-common": "^116.24.0",
88
+ "@atlaskit/editor-common": "^116.25.0",
89
89
  "@atlaskit/link-provider": "^5.2.0",
90
90
  "@atlaskit/media-core": "^38.0.0",
91
91
  "react": "^18.2.0",
@@ -112,7 +112,7 @@
112
112
  "@atlaskit/media-integration-test-helpers": "workspace:^",
113
113
  "@atlaskit/media-test-helpers": "^42.2.0",
114
114
  "@atlaskit/modal-dialog": "^16.1.0",
115
- "@atlaskit/popper": "^8.2.0",
115
+ "@atlaskit/popper": "^8.3.0",
116
116
  "@atlaskit/portal": "^6.1.0",
117
117
  "@atlaskit/renderer": "^133.10.0",
118
118
  "@atlaskit/section-message": "^9.2.0",
@@ -122,12 +122,12 @@
122
122
  "@atlassian/a11y-jest-testing": "^0.13.0",
123
123
  "@atlassian/a11y-playwright-testing": "^0.10.0",
124
124
  "@atlassian/adf-schema-json": "^1.33.0",
125
- "@atlassian/editor-rovo-bridge": "^10.5.0",
126
- "@atlassian/feature-flags-test-utils": "^1.1.0",
125
+ "@atlassian/editor-rovo-bridge": "^10.7.0",
126
+ "@atlassian/feature-flags-test-utils": "^1.2.0",
127
127
  "@atlassian/search-client": "^1.27.0",
128
128
  "@atlassian/search-provider": "^13.1.0",
129
129
  "@atlassian/structured-docs-types": "workspace:^",
130
- "@atlassian/user-profile-card": "^1.20.0",
130
+ "@atlassian/user-profile-card": "^1.21.0",
131
131
  "@emotion/jest": "^11.8.0",
132
132
  "@testing-library/react": "^16.3.0",
133
133
  "@types/diff": "^5.0.2",
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-core/preset-default",
3
- "main": "../dist/cjs/preset-default.js",
4
- "module": "../dist/esm/preset-default.js",
5
- "module:es2019": "../dist/es2019/preset-default.js",
3
+ "main": "../dist/cjs/entry-points/preset-default.js",
4
+ "module": "../dist/esm/entry-points/preset-default.js",
5
+ "module:es2019": "../dist/es2019/entry-points/preset-default.js",
6
6
  "sideEffects": [
7
7
  "*.compiled.css"
8
8
  ],
9
- "types": "../dist/types/preset-default.d.ts"
9
+ "types": "../dist/types/entry-points/preset-default.d.ts"
10
10
  }