@atlaskit/editor-plugin-quick-insert 1.0.0 → 1.0.2

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,17 @@
1
1
  # @atlaskit/editor-plugin-quick-insert
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#74886](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/74886) [`5b79ded33f58`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5b79ded33f58) - [EDF-324] Element Browser now has a separate categories for ai config items
8
+
9
+ ## 1.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 1.0.0
4
16
 
5
17
  ### Major Changes
@@ -9,6 +9,9 @@ function getCategories(intl) {
9
9
  return [{
10
10
  title: intl.formatMessage(_quickInsert.messages.all),
11
11
  name: 'all'
12
+ }, {
13
+ title: intl.formatMessage(_quickInsert.messages.AI),
14
+ name: 'AI'
12
15
  }, {
13
16
  title: intl.formatMessage(_quickInsert.messages.formatting),
14
17
  name: 'formatting'
@@ -3,6 +3,9 @@ export function getCategories(intl) {
3
3
  return [{
4
4
  title: intl.formatMessage(messages.all),
5
5
  name: 'all'
6
+ }, {
7
+ title: intl.formatMessage(messages.AI),
8
+ name: 'AI'
6
9
  }, {
7
10
  title: intl.formatMessage(messages.formatting),
8
11
  name: 'formatting'
@@ -3,6 +3,9 @@ export function getCategories(intl) {
3
3
  return [{
4
4
  title: intl.formatMessage(messages.all),
5
5
  name: 'all'
6
+ }, {
7
+ title: intl.formatMessage(messages.AI),
8
+ name: 'AI'
6
9
  }, {
7
10
  title: intl.formatMessage(messages.formatting),
8
11
  name: 'formatting'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-quick-insert",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Quick insert plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -33,14 +33,14 @@
33
33
  ".": "./src/index.ts"
34
34
  },
35
35
  "dependencies": {
36
- "@atlaskit/button": "^17.3.0",
37
- "@atlaskit/editor-common": "^77.4.0",
36
+ "@atlaskit/button": "^17.4.0",
37
+ "@atlaskit/editor-common": "^78.6.0",
38
38
  "@atlaskit/editor-plugin-type-ahead": "^1.0.0",
39
39
  "@atlaskit/editor-prosemirror": "3.0.0",
40
- "@atlaskit/icon": "^22.0.0",
40
+ "@atlaskit/icon": "^22.1.0",
41
41
  "@atlaskit/modal-dialog": "^12.10.0",
42
42
  "@atlaskit/theme": "^12.6.0",
43
- "@atlaskit/tokens": "^1.36.0",
43
+ "@atlaskit/tokens": "^1.38.0",
44
44
  "@babel/runtime": "^7.0.0",
45
45
  "@emotion/react": "^11.7.1"
46
46
  },