@atlaskit/editor-plugins 10.1.30 → 10.1.31

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,14 @@
1
1
  # @atlaskit/editor-plugins
2
2
 
3
+ ## 10.1.31
4
+
5
+ ### Patch Changes
6
+
7
+ - [#197573](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/197573)
8
+ [`65dfe86479bb2`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/65dfe86479bb2) -
9
+ EDITOR-1101 Added new package
10
+ - Updated dependencies
11
+
3
12
  ## 10.1.30
4
13
 
5
14
  ### Patch Changes
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "localIdPlugin", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _editorPluginLocalId.localIdPlugin;
10
+ }
11
+ });
12
+ var _editorPluginLocalId = require("@atlaskit/editor-plugin-local-id");
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { localIdPlugin } from '@atlaskit/editor-plugin-local-id';
@@ -0,0 +1,4 @@
1
+ // THIS FILE IS GENERATED via packages/editor/editor-plugins/scripts/update-editor-plugins.ts. DO NOT MODIFY IT MANUALLY.
2
+ // Disable no-re-export rule for entry point files
3
+ /* eslint-disable @atlaskit/editor/no-re-export */
4
+ export { localIdPlugin } from '@atlaskit/editor-plugin-local-id';
@@ -0,0 +1,2 @@
1
+ export { localIdPlugin } from '@atlaskit/editor-plugin-local-id';
2
+ export type { LocalIdPlugin } from '@atlaskit/editor-plugin-local-id';
@@ -0,0 +1,2 @@
1
+ export { localIdPlugin } from '@atlaskit/editor-plugin-local-id';
2
+ export type { LocalIdPlugin } from '@atlaskit/editor-plugin-local-id';
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugins/local-id",
3
+ "main": "../dist/cjs/local-id/index.js",
4
+ "module": "../dist/esm/local-id/index.js",
5
+ "module:es2019": "../dist/es2019/local-id/index.js",
6
+ "types": "../dist/types/local-id/index.d.ts",
7
+ "typesVersions": {
8
+ ">=4.5 <5.4": {
9
+ "*": [
10
+ "../dist/types-ts4.5/local-id/index.d.ts"
11
+ ]
12
+ }
13
+ }
14
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugins",
3
- "version": "10.1.30",
3
+ "version": "10.1.31",
4
4
  "description": "A convenience facade package that exposes all @atlaskit/editor-plugin-* plugins so that users can add this package without having to manually add all their plugins",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -85,6 +85,7 @@
85
85
  "./interaction": "./src/interaction/index.ts",
86
86
  "./layout": "./src/layout/index.ts",
87
87
  "./list": "./src/list/index.ts",
88
+ "./local-id": "./src/local-id/index.ts",
88
89
  "./loom": "./src/loom/index.ts",
89
90
  "./max-content-size": "./src/max-content-size/index.ts",
90
91
  "./media/types": "./src/media/types/index.ts",
@@ -190,6 +191,7 @@
190
191
  "@atlaskit/editor-plugin-interaction": "5.0.0",
191
192
  "@atlaskit/editor-plugin-layout": "3.1.5",
192
193
  "@atlaskit/editor-plugin-list": "5.1.2",
194
+ "@atlaskit/editor-plugin-local-id": "1.0.0",
193
195
  "@atlaskit/editor-plugin-loom": "5.1.1",
194
196
  "@atlaskit/editor-plugin-max-content-size": "3.0.0",
195
197
  "@atlaskit/editor-plugin-media": "5.2.6",