@atlaskit/editor-plugin-mentions 12.1.17 → 12.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/editor-commands.js +1 -0
- package/dist/cjs/entry-points/mentions-plugin-type.js +1 -0
- package/dist/cjs/entry-points/mentions-plugin.js +12 -0
- package/dist/cjs/entry-points/types.js +1 -0
- package/dist/cjs/pm-plugins/main.js +1 -1
- package/dist/es2019/entry-points/editor-commands.js +0 -0
- package/dist/es2019/entry-points/mentions-plugin-type.js +0 -0
- package/dist/es2019/entry-points/mentions-plugin.js +2 -0
- package/dist/es2019/entry-points/types.js +0 -0
- package/dist/es2019/pm-plugins/main.js +1 -1
- package/dist/esm/entry-points/editor-commands.js +0 -0
- package/dist/esm/entry-points/mentions-plugin-type.js +0 -0
- package/dist/esm/entry-points/mentions-plugin.js +2 -0
- package/dist/esm/entry-points/types.js +0 -0
- package/dist/esm/pm-plugins/main.js +1 -1
- package/dist/types/entry-points/editor-commands.d.ts +1 -0
- package/dist/types/entry-points/mentions-plugin-type.d.ts +1 -0
- package/dist/types/entry-points/mentions-plugin.d.ts +1 -0
- package/dist/types/entry-points/types.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/editor-commands.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/mentions-plugin-type.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/mentions-plugin.d.ts +1 -0
- package/dist/types-ts4.5/entry-points/types.d.ts +1 -0
- package/editor-commands/package.json +17 -0
- package/mentions-plugin/package.json +17 -0
- package/mentions-plugin-type/package.json +17 -0
- package/package.json +2 -2
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-mentions
|
|
2
2
|
|
|
3
|
+
## 12.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
|
## 12.1.17
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -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, "mentionsPlugin", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function get() {
|
|
9
|
+
return _mentionsPlugin.mentionsPlugin;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _mentionsPlugin = require("../mentionsPlugin");
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -23,7 +23,7 @@ var ACTIONS = exports.ACTIONS = {
|
|
|
23
23
|
SET_PROVIDER: 'SET_PROVIDER'
|
|
24
24
|
};
|
|
25
25
|
var PACKAGE_NAME = "@atlaskit/editor-plugin-mentions";
|
|
26
|
-
var PACKAGE_VERSION = "
|
|
26
|
+
var PACKAGE_VERSION = "0.0.0-development";
|
|
27
27
|
var setProvider = function setProvider(provider) {
|
|
28
28
|
return function (state, dispatch) {
|
|
29
29
|
if (dispatch) {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -12,7 +12,7 @@ export const ACTIONS = {
|
|
|
12
12
|
SET_PROVIDER: 'SET_PROVIDER'
|
|
13
13
|
};
|
|
14
14
|
const PACKAGE_NAME = "@atlaskit/editor-plugin-mentions";
|
|
15
|
-
const PACKAGE_VERSION = "
|
|
15
|
+
const PACKAGE_VERSION = "0.0.0-development";
|
|
16
16
|
const setProvider = provider => (state, dispatch) => {
|
|
17
17
|
if (dispatch) {
|
|
18
18
|
dispatch(state.tr.setMeta(mentionPluginKey, {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -15,7 +15,7 @@ export var ACTIONS = {
|
|
|
15
15
|
SET_PROVIDER: 'SET_PROVIDER'
|
|
16
16
|
};
|
|
17
17
|
var PACKAGE_NAME = "@atlaskit/editor-plugin-mentions";
|
|
18
|
-
var PACKAGE_VERSION = "
|
|
18
|
+
var PACKAGE_VERSION = "0.0.0-development";
|
|
19
19
|
var setProvider = function setProvider(provider) {
|
|
20
20
|
return function (state, dispatch) {
|
|
21
21
|
if (dispatch) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { InsertMentionParameters } from '../editor-commands/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { MentionsPlugin, MentionPluginDependencies, MentionActions, } from '../mentionsPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { mentionsPlugin } from '../mentionsPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { MentionPluginConfig, MentionPluginOptions, MentionsPluginOptions, MentionSharedState, MentionsChangedHandler, } from '../types/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { InsertMentionParameters } from '../editor-commands/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { MentionsPlugin, MentionPluginDependencies, MentionActions, } from '../mentionsPluginType';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { mentionsPlugin } from '../mentionsPlugin';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { MentionPluginConfig, MentionPluginOptions, MentionsPluginOptions, MentionSharedState, MentionsChangedHandler, } from '../types/index';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-mentions/editor-commands",
|
|
3
|
+
"main": "../dist/cjs/entry-points/editor-commands.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/editor-commands.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/editor-commands.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/editor-commands.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/editor-commands.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-mentions/mentions-plugin",
|
|
3
|
+
"main": "../dist/cjs/entry-points/mentions-plugin.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/mentions-plugin.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/mentions-plugin.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/mentions-plugin.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/mentions-plugin.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-mentions/mentions-plugin-type",
|
|
3
|
+
"main": "../dist/cjs/entry-points/mentions-plugin-type.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/mentions-plugin-type.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/mentions-plugin-type.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/mentions-plugin-type.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/mentions-plugin-type.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-mentions",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.2.0",
|
|
4
4
|
"description": "Mentions plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@atlaskit/css": "^0.19.0",
|
|
34
34
|
"@atlaskit/editor-plugin-analytics": "^10.0.0",
|
|
35
35
|
"@atlaskit/editor-plugin-base": "^11.0.0",
|
|
36
|
-
"@atlaskit/editor-plugin-context-identifier": "^10.
|
|
36
|
+
"@atlaskit/editor-plugin-context-identifier": "^10.1.0",
|
|
37
37
|
"@atlaskit/editor-plugin-selection": "^10.0.0",
|
|
38
38
|
"@atlaskit/editor-plugin-type-ahead": "^10.0.0",
|
|
39
39
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@atlaskit/editor-plugin-mentions/types",
|
|
3
|
+
"main": "../dist/cjs/entry-points/types.js",
|
|
4
|
+
"module": "../dist/esm/entry-points/types.js",
|
|
5
|
+
"module:es2019": "../dist/es2019/entry-points/types.js",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"**/*.compiled.css"
|
|
8
|
+
],
|
|
9
|
+
"types": "../dist/types/entry-points/types.d.ts",
|
|
10
|
+
"typesVersions": {
|
|
11
|
+
">=4.5 <5.9": {
|
|
12
|
+
"*": [
|
|
13
|
+
"../dist/types-ts4.5/entry-points/types.d.ts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|