UNPKG
@atlaskit/editor-plugin-user-intent
Version:
latest (1.0.0)
1.0.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
UserIntent plugin for @atlaskit/editor-core
bitbucket.org/atlassian/atlassian-frontend-mirror
@atlaskit/editor-plugin-user-intent
/
dist
/
es2019
/
editor-commands
/
index.js
12 lines
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ userIntentPluginKey }
from
'../pm-plugins/main'
;
export
const
setCurrentUserIntent
= currentUserIntent =>
(
{ tr }
) =>
{ tr.
setMeta
(userIntentPluginKey, {
type
:
'setCurrentUserIntent'
,
data
: { currentUserIntent } });
return
tr; };