@atlaskit/editor-plugin-mentions 12.1.16 → 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 +13 -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/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/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/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 +4 -4
- package/types/package.json +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
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
|
+
|
|
10
|
+
## 12.1.17
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
|
|
3
16
|
## 12.1.16
|
|
4
17
|
|
|
5
18
|
### 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";
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -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",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"@atlaskit/primitives": "^19.0.0",
|
|
48
48
|
"@atlaskit/profilecard": "^25.5.0",
|
|
49
49
|
"@atlaskit/theme": "^23.2.0",
|
|
50
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
50
|
+
"@atlaskit/tmp-editor-statsig": "^80.0.0",
|
|
51
51
|
"@atlaskit/tokens": "^13.0.0",
|
|
52
52
|
"@atlaskit/user-picker": "^12.0.0",
|
|
53
53
|
"@babel/runtime": "^7.0.0",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"uuid": "^3.1.0"
|
|
58
58
|
},
|
|
59
59
|
"peerDependencies": {
|
|
60
|
-
"@atlaskit/editor-common": "^114.
|
|
60
|
+
"@atlaskit/editor-common": "^114.30.0",
|
|
61
61
|
"react": "^18.2.0",
|
|
62
62
|
"react-dom": "^18.2.0",
|
|
63
63
|
"react-intl": "^5.25.1 || ^6.0.0 || ^7.0.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
|
+
}
|