@atlaskit/editor-extension-dropbox 0.4.7 → 0.4.8
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 +6 -0
- package/package.json +15 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atlaskit/editor-extension-dropbox
|
|
2
2
|
|
|
3
|
+
## 0.4.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#67410](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/67410) [`155e3b00ce67`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/155e3b00ce67) - Migrate @atlaskit/editor-extension-dropbox to use declarative entry points
|
|
8
|
+
|
|
3
9
|
## 0.4.7
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-extension-dropbox",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.8",
|
|
4
4
|
"description": "A an atlassian editor extension to add a native dropbox picker",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
7
7
|
},
|
|
8
|
-
"repository": "https://bitbucket.org/atlassian/atlassian-frontend",
|
|
8
|
+
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
9
9
|
"author": "Atlassian Pty Ltd",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"main": "dist/cjs/index.js",
|
|
@@ -22,19 +22,28 @@
|
|
|
22
22
|
},
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"atlaskit:src": "src/index.ts",
|
|
25
|
+
"af:exports": {
|
|
26
|
+
".": "./src/index.ts",
|
|
27
|
+
"./constants": "./src/constants.ts",
|
|
28
|
+
"./dropboxscript": "./src/dropboxscript.ts",
|
|
29
|
+
"./enable-dropbox": "./src/enable-dropbox.tsx",
|
|
30
|
+
"./manifest": "./src/manifest.tsx",
|
|
31
|
+
"./modal": "./src/modal.tsx",
|
|
32
|
+
"./types": "./src/types.ts"
|
|
33
|
+
},
|
|
25
34
|
"atlassian": {
|
|
26
35
|
"team": "Editor: Scarlet",
|
|
27
|
-
"deprecatedAutoEntryPoints": true,
|
|
28
36
|
"inPublicMirror": true,
|
|
29
37
|
"releaseModel": "continuous",
|
|
30
38
|
"website": {
|
|
31
39
|
"name": "Editor Core"
|
|
32
|
-
}
|
|
40
|
+
},
|
|
41
|
+
"runReact18": false
|
|
33
42
|
},
|
|
34
43
|
"dependencies": {
|
|
35
44
|
"@atlaskit/adf-utils": "^19.0.0",
|
|
36
|
-
"@atlaskit/button": "^17.
|
|
37
|
-
"@atlaskit/editor-common": "^76.
|
|
45
|
+
"@atlaskit/button": "^17.2.0",
|
|
46
|
+
"@atlaskit/editor-common": "^76.39.0",
|
|
38
47
|
"@atlaskit/icon": "^22.0.0",
|
|
39
48
|
"@atlaskit/modal-dialog": "^12.10.0",
|
|
40
49
|
"@babel/runtime": "^7.0.0",
|