@atlaskit/editor-plugin-undo-redo 10.0.19 → 10.1.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 +11 -0
- package/dist/cjs/entry-points/undo-redo-plugin-type.js +1 -0
- package/dist/cjs/entry-points/undo-redo-plugin.js +12 -0
- package/dist/es2019/entry-points/undo-redo-plugin-type.js +0 -0
- package/dist/es2019/entry-points/undo-redo-plugin.js +2 -0
- package/dist/esm/entry-points/undo-redo-plugin-type.js +0 -0
- package/dist/esm/entry-points/undo-redo-plugin.js +2 -0
- package/dist/types/entry-points/undo-redo-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/undo-redo-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/undo-redo-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/undo-redo-plugin.d.ts +1 -0
- package/package.json +5 -5
- package/undo-redo-plugin/package.json +17 -0
- package/undo-redo-plugin-type/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-undo-redo
|
|
2
2
|
|
|
3
|
+
## 10.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`41168b2bd2790`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/41168b2bd2790) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
|
|
3
14
|
## 10.0.19
|
|
4
15
|
|
|
5
16
|
### 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, "undoRedoPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _undoRedoPlugin.undoRedoPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _undoRedoPlugin = require("../undoRedoPlugin");
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { UndoRedoPlugin, UndoRedoAction } from '../undoRedoPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { undoRedoPlugin } from '../undoRedoPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { UndoRedoPlugin, UndoRedoAction } from '../undoRedoPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { undoRedoPlugin } from '../undoRedoPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-undo-redo",
|
|
3
|
-
"version": "10.0
|
|
3
|
+
"version": "10.1.0",
|
|
4
4
|
"description": "Undo redo plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
],
|
|
30
30
|
"atlaskit:src": "src/index.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@atlaskit/editor-plugin-history": "^10.
|
|
33
|
-
"@atlaskit/editor-plugin-primary-toolbar": "^11.
|
|
34
|
-
"@atlaskit/editor-plugin-toolbar": "^7.
|
|
35
|
-
"@atlaskit/editor-plugin-type-ahead": "^10.
|
|
32
|
+
"@atlaskit/editor-plugin-history": "^10.1.0",
|
|
33
|
+
"@atlaskit/editor-plugin-primary-toolbar": "^11.1.0",
|
|
34
|
+
"@atlaskit/editor-plugin-toolbar": "^7.3.0",
|
|
35
|
+
"@atlaskit/editor-plugin-type-ahead": "^10.1.0",
|
|
36
36
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
37
37
|
"@atlaskit/editor-toolbar": "^1.2.0",
|
|
38
38
|
"@atlaskit/editor-toolbar-model": "^0.4.0",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-undo-redo/undo-redo-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/undo-redo-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/undo-redo-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/undo-redo-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/undo-redo-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/undo-redo-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-undo-redo/undo-redo-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/undo-redo-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/undo-redo-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/undo-redo-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/undo-redo-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/undo-redo-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|