@atlaskit/node-data-provider 2.0.2 → 2.1.1

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,27 @@
1
1
  # @atlaskit/node-data-provider
2
2
 
3
+ ## 2.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#152510](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/152510)
8
+ [`dcf9edde7ac7b`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dcf9edde7ac7b) -
9
+ bump adf-schema to 42.0.1
10
+
11
+ ## 2.1.0
12
+
13
+ ### Minor Changes
14
+
15
+ - [#151190](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/151190)
16
+ [`a3723b1cdede2`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/a3723b1cdede2) -
17
+ [ux] [ED-25037] this change bumps @atlaskit/adf-schema from 40.9.0 to 40.9.4 which makes the
18
+ blockquote selectable, adds missing marks to the PM node spec and fixes a bug that converted
19
+ pasted external images to media groups.
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
3
25
  ## 2.0.2
4
26
 
5
27
  ### Patch Changes
package/README.md CHANGED
@@ -44,5 +44,5 @@ For internal Atlassian, visit the slack channel
44
44
  ---
45
45
 
46
46
  Please see
47
- [Atlassian Frontend - License](https://developer.atlassian.com/cloud/framework/atlassian-frontend/#license)
47
+ [Atlassian Frontend - License](https://hello.atlassian.net/wiki/spaces/AF/pages/2589099144/Documentation#Platform-License)
48
48
  for more licensing information.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/node-data-provider",
3
- "version": "2.0.2",
3
+ "version": "2.1.1",
4
4
  "description": "Node data provider for @atlaskit/editor-core plugins and @atlaskit/renderer",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -28,9 +28,9 @@
28
28
  "./get-confluence-page-providers": "./src/get-providers/confluence-page.ts"
29
29
  },
30
30
  "dependencies": {
31
- "@atlaskit/adf-schema": "^40.9.0",
32
- "@atlaskit/adf-utils": "^19.8.0",
33
- "@atlaskit/emoji": "^67.7.0",
31
+ "@atlaskit/adf-schema": "^42.0.2",
32
+ "@atlaskit/adf-utils": "^19.9.0",
33
+ "@atlaskit/emoji": "^67.8.0",
34
34
  "@babel/runtime": "^7.0.0"
35
35
  },
36
36
  "peerDependencies": {
package/.eslintrc.js DELETED
@@ -1,14 +0,0 @@
1
- module.exports = {
2
- rules: {
3
- '@typescript-eslint/no-unused-vars': [
4
- 'error',
5
- {
6
- args: 'none',
7
- vars: 'local',
8
- varsIgnorePattern: '^_',
9
- ignoreRestSiblings: true,
10
- },
11
- ],
12
- 'no-unused-vars': 'off',
13
- },
14
- };