@atlaskit/editor-plugin-placeholder-text 11.0.0 → 11.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @atlaskit/editor-plugin-placeholder-text
2
2
 
3
+ ## 11.1.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
  ## 11.0.0
4
11
 
5
12
  ### Major Changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ Object.defineProperty(exports, "placeholderTextPlugin", {
8
+ enumerable: true,
9
+ get: function get() {
10
+ return _placeholderTextPlugin.default;
11
+ }
12
+ });
13
+ var _placeholderTextPlugin = _interopRequireDefault(require("../placeholderTextPlugin"));
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as placeholderTextPlugin } from '../placeholderTextPlugin';
@@ -0,0 +1,2 @@
1
+ /* eslint-disable @atlaskit/editor/no-re-export */
2
+ export { default as placeholderTextPlugin } from '../placeholderTextPlugin';
@@ -0,0 +1 @@
1
+ export type { PlaceholderTextPlugin, PlaceholderTextPluginState, PlaceholderTextOptions, PlaceholderTextPluginOptions, PlaceholderTextPluginDependencies, } from '../placeholderTextPluginType';
@@ -0,0 +1 @@
1
+ export { default as placeholderTextPlugin } from '../placeholderTextPlugin';
@@ -0,0 +1 @@
1
+ export type { PlaceholderTextPlugin, PlaceholderTextPluginState, PlaceholderTextOptions, PlaceholderTextPluginOptions, PlaceholderTextPluginDependencies, } from '../placeholderTextPluginType';
@@ -0,0 +1 @@
1
+ export { default as placeholderTextPlugin } from '../placeholderTextPlugin';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-placeholder-text",
3
- "version": "11.0.0",
3
+ "version": "11.1.0",
4
4
  "description": "placeholder text plugin for @atlaskit/editor-core",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -27,17 +27,17 @@
27
27
  }
28
28
  },
29
29
  "dependencies": {
30
- "@atlaskit/adf-schema": "^52.5.0",
30
+ "@atlaskit/adf-schema": "^52.11.0",
31
31
  "@atlaskit/editor-plugin-analytics": "^10.0.0",
32
32
  "@atlaskit/editor-plugin-type-ahead": "^10.0.0",
33
33
  "@atlaskit/editor-prosemirror": "^7.3.0",
34
- "@atlaskit/icon": "^34.2.0",
34
+ "@atlaskit/icon": "^34.5.0",
35
35
  "@atlaskit/tokens": "^13.0.0",
36
36
  "@babel/runtime": "^7.0.0",
37
37
  "@emotion/react": "^11.7.1"
38
38
  },
39
39
  "peerDependencies": {
40
- "@atlaskit/editor-common": "^114.0.0",
40
+ "@atlaskit/editor-common": "^114.30.0",
41
41
  "react": "^18.2.0",
42
42
  "react-dom": "^18.2.0",
43
43
  "react-intl": "^5.25.1 || ^6.0.0 || ^7.0.0"
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-placeholder-text/placeholder-text-plugin",
3
+ "main": "../dist/cjs/entry-points/placeholder-text-plugin.js",
4
+ "module": "../dist/esm/entry-points/placeholder-text-plugin.js",
5
+ "module:es2019": "../dist/es2019/entry-points/placeholder-text-plugin.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/placeholder-text-plugin.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/placeholder-text-plugin.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@atlaskit/editor-plugin-placeholder-text/placeholder-text-plugin-type",
3
+ "main": "../dist/cjs/entry-points/placeholder-text-plugin-type.js",
4
+ "module": "../dist/esm/entry-points/placeholder-text-plugin-type.js",
5
+ "module:es2019": "../dist/es2019/entry-points/placeholder-text-plugin-type.js",
6
+ "sideEffects": [
7
+ "*.compiled.css"
8
+ ],
9
+ "types": "../dist/types/entry-points/placeholder-text-plugin-type.d.ts",
10
+ "typesVersions": {
11
+ ">=4.5 <5.9": {
12
+ "*": [
13
+ "../dist/types-ts4.5/entry-points/placeholder-text-plugin-type.d.ts"
14
+ ]
15
+ }
16
+ }
17
+ }