@atlaskit/editor-extension-dropbox 0.3.0 → 0.3.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 +6 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/enable-dropbox.js +1 -1
- package/dist/esm/manifest.js +1 -1
- package/dist/esm/version.json +1 -1
- package/package.json +3 -3
- package/report.api.md +18 -0
package/CHANGELOG.md
CHANGED
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
2
1
|
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
2
|
+
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
3
3
|
export default /*#__PURE__*/(function () {
|
|
4
4
|
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(appKey) {
|
|
5
5
|
return _regeneratorRuntime.wrap(function _callee$(_context) {
|
package/dist/esm/manifest.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
2
1
|
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator";
|
|
2
|
+
import _regeneratorRuntime from "@babel/runtime/regenerator";
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import ReactDOM from 'react-dom';
|
|
5
5
|
import { inlineCard } from '@atlaskit/adf-utils/builders';
|
package/dist/esm/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-extension-dropbox",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "A an atlassian editor extension to add a native dropbox picker",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@atlaskit/adf-utils": "^17.
|
|
27
|
+
"@atlaskit/adf-utils": "^17.1.0",
|
|
28
28
|
"@atlaskit/button": "^16.3.0",
|
|
29
|
-
"@atlaskit/editor-common": "^
|
|
29
|
+
"@atlaskit/editor-common": "^69.0.0",
|
|
30
30
|
"@atlaskit/icon": "^21.10.0",
|
|
31
31
|
"@atlaskit/modal-dialog": "^12.2.0",
|
|
32
32
|
"@babel/runtime": "^7.0.0",
|
package/report.api.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
## API Report File for "@atlaskit/editor-extension-dropbox"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
import { ExtensionManifest } from '@atlaskit/editor-common/extensions';
|
|
7
|
+
|
|
8
|
+
declare const manifestFunction: ({
|
|
9
|
+
appKey,
|
|
10
|
+
canMountinIframe,
|
|
11
|
+
}: {
|
|
12
|
+
appKey: string;
|
|
13
|
+
canMountinIframe: boolean;
|
|
14
|
+
}) => ExtensionManifest;
|
|
15
|
+
export default manifestFunction;
|
|
16
|
+
|
|
17
|
+
export {};
|
|
18
|
+
```
|