@atlaskit/editor-plugin-ufo 10.0.18 → 10.1.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @atlaskit/editor-plugin-ufo
2
2
 
3
+ ## 10.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 10.1.0
10
+
11
+ ### Minor Changes
12
+
13
+ - [`ebab8f80bfc40`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ebab8f80bfc40) -
14
+ Autofix: add explicit package exports (barrel removal)
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+
3
20
  ## 10.0.18
4
21
 
5
22
  ### Patch Changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ufoPlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _ufoPlugin.ufoPlugin;
10
+ }
11
+ });
12
+ var _ufoPlugin = require("../ufoPlugin");
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { ufoPlugin } from '../ufoPlugin';
File without changes
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { ufoPlugin } from '../ufoPlugin';
@@ -0,0 +1 @@
1
+ export type { UfoPlugin } from '../ufoPluginType';
@@ -0,0 +1 @@
1
+ export { ufoPlugin } from '../ufoPlugin';
@@ -0,0 +1 @@
1
+ export type { UfoPlugin } from '../ufoPluginType';
@@ -0,0 +1 @@
1
+ export { ufoPlugin } from '../ufoPlugin';
package/docs/0-intro.tsx CHANGED
@@ -19,7 +19,7 @@ ${createEditorUseOnlyNotice('Editor Plugin UFO', [
19
19
  <AtlassianInternalWarning />
20
20
  </div>
21
21
  </>
22
- )}\
22
+ )}\
23
23
 
24
24
  This package includes the UFO plugin used by \`@atlaskit/editor-core\`.
25
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-ufo",
3
- "version": "10.0.18",
3
+ "version": "10.1.1",
4
4
  "description": "Ufo plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -30,11 +30,11 @@
30
30
  "dependencies": {
31
31
  "@atlaskit/editor-prosemirror": "^7.3.0",
32
32
  "@atlaskit/react-ufo": "^5.20.0",
33
- "@atlaskit/tmp-editor-statsig": "^80.0.0",
33
+ "@atlaskit/tmp-editor-statsig": "^81.0.0",
34
34
  "@babel/runtime": "^7.0.0"
35
35
  },
36
36
  "peerDependencies": {
37
- "@atlaskit/editor-common": "^114.30.0",
37
+ "@atlaskit/editor-common": "^114.32.0",
38
38
  "react": "^18.2.0"
39
39
  },
40
40
  "techstack": {
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export type { UfoPlugin } from '../ufoPluginType';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { ufoPlugin } from '../ufoPlugin';
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-ufo/ufo-plugin",
3
+ "main": "../dist/cjs/entry-points/ufo-plugin.js",
4
+ "module": "../dist/esm/entry-points/ufo-plugin.js",
5
+ "module:es2019": "../dist/es2019/entry-points/ufo-plugin.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/ufo-plugin.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/ufo-plugin.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-ufo/ufo-plugin-type",
3
+ "main": "../dist/cjs/entry-points/ufo-plugin-type.js",
4
+ "module": "../dist/esm/entry-points/ufo-plugin-type.js",
5
+ "module:es2019": "../dist/es2019/entry-points/ufo-plugin-type.js",
6
+ "sideEffects": false,
7
+ "types": "../dist/types/entry-points/ufo-plugin-type.d.ts",
8
+ "typesVersions": {
9
+ ">=4.5 <5.9": {
10
+ "*": [
11
+ "../dist/types-ts4.5/entry-points/ufo-plugin-type.d.ts"
12
+ ]
13
+ }
14
+ }
15
+ }