@atlaskit/editor-plugin-placeholder 10.1.15 → 10.2.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 +7 -0
- package/dist/cjs/entry-points/placeholder-plugin-type.js +1 -0
- package/dist/cjs/entry-points/placeholder-plugin.js +12 -0
- package/dist/es2019/entry-points/placeholder-plugin-type.js +0 -0
- package/dist/es2019/entry-points/placeholder-plugin.js +2 -0
- package/dist/esm/entry-points/placeholder-plugin-type.js +0 -0
- package/dist/esm/entry-points/placeholder-plugin.js +2 -0
- package/dist/types/entry-points/placeholder-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/placeholder-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/placeholder-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/placeholder-plugin.d.ts +1 -0
- package/package.json +2 -2
- package/placeholder-plugin/package.json +15 -0
- package/placeholder-plugin-type/package.json +15 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-placeholder
|
|
2
2
|
|
|
3
|
+
## 10.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [`a94a013546f69`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/a94a013546f69) -
|
|
8
|
+
Autofix: add explicit package exports (barrel removal)
|
|
9
|
+
|
|
3
10
|
## 10.1.15
|
|
4
11
|
|
|
5
12
|
### 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, "placeholderPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _placeholderPlugin.placeholderPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _placeholderPlugin = require("../placeholderPlugin");
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { PlaceholderPlugin, PlaceholderPluginOptions } from '../placeholderPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { placeholderPlugin } from '../placeholderPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { PlaceholderPlugin, PlaceholderPluginOptions } from '../placeholderPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { placeholderPlugin } from '../placeholderPlugin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-placeholder",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "Placeholder plugin for @atlaskit/editor-core.",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@atlaskit/adf-utils": "^19.29.0",
|
|
31
31
|
"@atlaskit/css": "^0.19.0",
|
|
32
32
|
"@atlaskit/editor-plugin-composition": "^9.0.0",
|
|
33
|
-
"@atlaskit/editor-plugin-focus": "^9.
|
|
33
|
+
"@atlaskit/editor-plugin-focus": "^9.1.0",
|
|
34
34
|
"@atlaskit/editor-plugin-show-diff": "^8.3.0",
|
|
35
35
|
"@atlaskit/editor-plugin-type-ahead": "^10.0.0",
|
|
36
36
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-placeholder/placeholder-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/placeholder-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/placeholder-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/placeholder-plugin.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/placeholder-plugin.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/placeholder-plugin.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-placeholder/placeholder-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/placeholder-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/placeholder-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/placeholder-plugin-type.js",
|
|
6
|
+
"sideEffects": false,
|
|
7
|
+
"types": "../dist/types/entry-points/placeholder-plugin-type.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.5 <5.9": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.5/entry-points/placeholder-plugin-type.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|