@atlaskit/editor-plugin-emoji 0.4.4 → 0.4.6
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 +12 -0
- package/package.json +3 -3
- package/tmp/api-report-tmp.d.ts +0 -56
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-emoji
|
|
2
2
|
|
|
3
|
+
## 0.4.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#56790](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/56790) [`ff577a7969d4`](https://bitbucket.org/atlassian/atlassian-frontend/commits/ff577a7969d4) - ED-21266: Updated @atlaskit/adf-schema to 34.0.1
|
|
8
|
+
|
|
9
|
+
## 0.4.5
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#43417](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/43417) [`3f3c17f0273`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3f3c17f0273) - ED-20971 Upgrade adf-schema package to ^34.0.0
|
|
14
|
+
|
|
3
15
|
## 0.4.4
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-emoji",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.6",
|
|
4
4
|
"description": "Emoji plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"singleton": true
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@atlaskit/adf-schema": "^
|
|
24
|
-
"@atlaskit/editor-common": "^76.
|
|
23
|
+
"@atlaskit/adf-schema": "^34.0.1",
|
|
24
|
+
"@atlaskit/editor-common": "^76.23.0",
|
|
25
25
|
"@atlaskit/editor-plugin-analytics": "^0.3.0",
|
|
26
26
|
"@atlaskit/editor-plugin-type-ahead": "^0.7.0",
|
|
27
27
|
"@atlaskit/editor-prosemirror": "1.1.0",
|
package/tmp/api-report-tmp.d.ts
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
## API Report File for "@atlaskit/editor-plugin-emoji"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import type { AnalyticsPlugin } from '@atlaskit/editor-plugin-analytics';
|
|
8
|
-
import type { EditorCommand } from '@atlaskit/editor-common/types';
|
|
9
|
-
import type { EmojiDescription } from '@atlaskit/emoji';
|
|
10
|
-
import type { EmojiId } from '@atlaskit/emoji';
|
|
11
|
-
import type { EmojiProvider } from '@atlaskit/emoji';
|
|
12
|
-
import type { EmojiResourceConfig } from '@atlaskit/emoji';
|
|
13
|
-
import type { INPUT_METHOD } from '@atlaskit/editor-common/analytics';
|
|
14
|
-
import type { NextEditorPlugin } from '@atlaskit/editor-common/types';
|
|
15
|
-
import type { OptionalPlugin } from '@atlaskit/editor-common/types';
|
|
16
|
-
import type { TypeAheadHandler } from '@atlaskit/editor-common/types';
|
|
17
|
-
import type { TypeAheadInputMethod } from '@atlaskit/editor-plugin-type-ahead';
|
|
18
|
-
import type { TypeAheadPlugin } from '@atlaskit/editor-plugin-type-ahead';
|
|
19
|
-
|
|
20
|
-
// @public (undocumented)
|
|
21
|
-
export type EmojiPlugin = NextEditorPlugin<'emoji', {
|
|
22
|
-
pluginConfiguration: EmojiPluginOptions | undefined;
|
|
23
|
-
dependencies: [OptionalPlugin<AnalyticsPlugin>, TypeAheadPlugin];
|
|
24
|
-
sharedState: EmojiPluginSharedState | undefined;
|
|
25
|
-
commands: {
|
|
26
|
-
insertEmoji: (emojiId: EmojiId, inputMethod?: INPUT_METHOD.ASCII | INPUT_METHOD.PICKER | INPUT_METHOD.TYPEAHEAD) => EditorCommand;
|
|
27
|
-
};
|
|
28
|
-
actions: {
|
|
29
|
-
openTypeAhead: (inputMethod: TypeAheadInputMethod) => boolean;
|
|
30
|
-
};
|
|
31
|
-
}>;
|
|
32
|
-
|
|
33
|
-
// @public
|
|
34
|
-
export const emojiPlugin: EmojiPlugin;
|
|
35
|
-
|
|
36
|
-
// @public (undocumented)
|
|
37
|
-
export interface EmojiPluginOptions {
|
|
38
|
-
// (undocumented)
|
|
39
|
-
headless?: boolean;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
// @public (undocumented)
|
|
43
|
-
type EmojiPluginSharedState = EmojiPluginState & {
|
|
44
|
-
typeAheadHandler: TypeAheadHandler;
|
|
45
|
-
};
|
|
46
|
-
|
|
47
|
-
// @public (undocumented)
|
|
48
|
-
export type EmojiPluginState = {
|
|
49
|
-
emojiProvider?: EmojiProvider;
|
|
50
|
-
emojiResourceConfig?: EmojiResourceConfig;
|
|
51
|
-
asciiMap?: Map<string, EmojiDescription>;
|
|
52
|
-
};
|
|
53
|
-
|
|
54
|
-
// (No @packageDocumentation comment for this package)
|
|
55
|
-
|
|
56
|
-
```
|