@atlaskit/editor-plugins 10.1.29 → 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 +15 -0
- package/dist/cjs/local-id/index.js +12 -0
- package/dist/es2019/local-id/index.js +4 -0
- package/dist/esm/local-id/index.js +4 -0
- package/dist/types/local-id/index.d.ts +2 -0
- package/dist/types-ts4.5/local-id/index.d.ts +2 -0
- package/local-id/package.json +14 -0
- package/package.json +13 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
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
|
+
|
|
12
|
+
## 10.1.30
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
|
|
3
18
|
## 10.1.29
|
|
4
19
|
|
|
5
20
|
### 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,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.
|
|
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",
|
|
@@ -137,14 +138,14 @@
|
|
|
137
138
|
"@atlaskit/editor-plugin-accessibility-utils": "3.0.2",
|
|
138
139
|
"@atlaskit/editor-plugin-alignment": "4.1.3",
|
|
139
140
|
"@atlaskit/editor-plugin-analytics": "3.0.3",
|
|
140
|
-
"@atlaskit/editor-plugin-annotation": "3.
|
|
141
|
+
"@atlaskit/editor-plugin-annotation": "3.2.0",
|
|
141
142
|
"@atlaskit/editor-plugin-avatar-group": "4.1.2",
|
|
142
143
|
"@atlaskit/editor-plugin-base": "4.1.2",
|
|
143
144
|
"@atlaskit/editor-plugin-batch-attribute-updates": "3.0.3",
|
|
144
145
|
"@atlaskit/editor-plugin-before-primary-toolbar": "3.0.1",
|
|
145
146
|
"@atlaskit/editor-plugin-better-type-history": "3.0.2",
|
|
146
|
-
"@atlaskit/editor-plugin-block-controls": "4.1.
|
|
147
|
-
"@atlaskit/editor-plugin-block-menu": "0.0.
|
|
147
|
+
"@atlaskit/editor-plugin-block-controls": "4.1.8",
|
|
148
|
+
"@atlaskit/editor-plugin-block-menu": "0.0.1",
|
|
148
149
|
"@atlaskit/editor-plugin-block-type": "6.1.3",
|
|
149
150
|
"@atlaskit/editor-plugin-border": "3.0.3",
|
|
150
151
|
"@atlaskit/editor-plugin-breakout": "3.1.4",
|
|
@@ -175,7 +176,7 @@
|
|
|
175
176
|
"@atlaskit/editor-plugin-feature-flags": "2.0.0",
|
|
176
177
|
"@atlaskit/editor-plugin-feedback-dialog": "3.0.0",
|
|
177
178
|
"@atlaskit/editor-plugin-find-replace": "3.2.1",
|
|
178
|
-
"@atlaskit/editor-plugin-floating-toolbar": "5.1.
|
|
179
|
+
"@atlaskit/editor-plugin-floating-toolbar": "5.1.8",
|
|
179
180
|
"@atlaskit/editor-plugin-focus": "2.0.0",
|
|
180
181
|
"@atlaskit/editor-plugin-fragment": "3.0.3",
|
|
181
182
|
"@atlaskit/editor-plugin-grid": "3.1.0",
|
|
@@ -186,10 +187,11 @@
|
|
|
186
187
|
"@atlaskit/editor-plugin-hyperlink": "5.3.0",
|
|
187
188
|
"@atlaskit/editor-plugin-image-upload": "3.0.0",
|
|
188
189
|
"@atlaskit/editor-plugin-indentation": "3.1.2",
|
|
189
|
-
"@atlaskit/editor-plugin-insert-block": "4.1.
|
|
190
|
+
"@atlaskit/editor-plugin-insert-block": "4.1.6",
|
|
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",
|
|
@@ -197,7 +199,7 @@
|
|
|
197
199
|
"@atlaskit/editor-plugin-mentions": "5.2.4",
|
|
198
200
|
"@atlaskit/editor-plugin-metrics": "4.0.5",
|
|
199
201
|
"@atlaskit/editor-plugin-ncs-step-metrics": "2.0.0",
|
|
200
|
-
"@atlaskit/editor-plugin-panel": "5.
|
|
202
|
+
"@atlaskit/editor-plugin-panel": "5.3.0",
|
|
201
203
|
"@atlaskit/editor-plugin-paste": "4.1.3",
|
|
202
204
|
"@atlaskit/editor-plugin-paste-options-toolbar": "3.1.1",
|
|
203
205
|
"@atlaskit/editor-plugin-placeholder": "3.0.1",
|
|
@@ -211,16 +213,16 @@
|
|
|
211
213
|
"@atlaskit/editor-plugin-selection-extension": "3.4.3",
|
|
212
214
|
"@atlaskit/editor-plugin-selection-marker": "3.0.3",
|
|
213
215
|
"@atlaskit/editor-plugin-selection-toolbar": "4.2.2",
|
|
214
|
-
"@atlaskit/editor-plugin-show-diff": "0.0.
|
|
216
|
+
"@atlaskit/editor-plugin-show-diff": "0.0.2",
|
|
215
217
|
"@atlaskit/editor-plugin-status": "4.1.3",
|
|
216
218
|
"@atlaskit/editor-plugin-submit-editor": "3.1.0",
|
|
217
219
|
"@atlaskit/editor-plugin-table": "12.1.12",
|
|
218
220
|
"@atlaskit/editor-plugin-tasks-and-decisions": "6.1.3",
|
|
219
221
|
"@atlaskit/editor-plugin-text-color": "3.1.3",
|
|
220
|
-
"@atlaskit/editor-plugin-text-formatting": "3.0.
|
|
221
|
-
"@atlaskit/editor-plugin-toolbar": "0.0.
|
|
222
|
+
"@atlaskit/editor-plugin-text-formatting": "3.0.9",
|
|
223
|
+
"@atlaskit/editor-plugin-toolbar": "0.0.6",
|
|
222
224
|
"@atlaskit/editor-plugin-toolbar-lists-indentation": "4.1.2",
|
|
223
|
-
"@atlaskit/editor-plugin-track-changes": "2.4.
|
|
225
|
+
"@atlaskit/editor-plugin-track-changes": "2.4.2",
|
|
224
226
|
"@atlaskit/editor-plugin-type-ahead": "3.1.3",
|
|
225
227
|
"@atlaskit/editor-plugin-ufo": "3.1.1",
|
|
226
228
|
"@atlaskit/editor-plugin-undo-redo": "3.1.0",
|