@atlaskit/editor-extension-dropbox 0.4.1 → 0.4.3
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/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types-ts4.5/constants.d.ts +2 -0
- package/dist/types-ts4.5/dropboxscript.d.ts +2 -0
- package/dist/types-ts4.5/enable-dropbox.d.ts +2 -0
- package/dist/types-ts4.5/icons/DropboxIcon.d.ts +3 -0
- package/dist/types-ts4.5/index.d.ts +1 -0
- package/dist/types-ts4.5/manifest.d.ts +20 -0
- package/dist/types-ts4.5/modal.d.ts +7 -0
- package/dist/types-ts4.5/types.d.ts +8 -0
- package/package.json +6 -6
- package/tmp/api-report-tmp.d.ts +18 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/editor-extension-dropbox
|
|
2
2
|
|
|
3
|
+
## 0.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 0.4.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`9d00501a414`](https://bitbucket.org/atlassian/atlassian-frontend/commits/9d00501a414) - Ensure legacy types are published for TS 4.5-4.8
|
|
14
|
+
|
|
3
15
|
## 0.4.1
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './manifest';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ExtensionManifest } from '@atlaskit/editor-common/extensions';
|
|
2
|
+
import { DropboxFile } from './types';
|
|
3
|
+
declare global {
|
|
4
|
+
interface Window {
|
|
5
|
+
Dropbox: {
|
|
6
|
+
appKey?: string;
|
|
7
|
+
choose: (args: {
|
|
8
|
+
iframe?: boolean;
|
|
9
|
+
windowName?: string;
|
|
10
|
+
success: (value: DropboxFile[] | PromiseLike<DropboxFile[]>) => void;
|
|
11
|
+
cancel: () => void;
|
|
12
|
+
}) => void;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
declare const manifestFunction: ({ appKey, canMountinIframe, }: {
|
|
17
|
+
appKey: string;
|
|
18
|
+
canMountinIframe: boolean;
|
|
19
|
+
}) => ExtensionManifest;
|
|
20
|
+
export default manifestFunction;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-extension-dropbox",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "A an atlassian editor extension to add a native dropbox picker",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,17 +26,17 @@
|
|
|
26
26
|
"team": "Editor",
|
|
27
27
|
"deprecatedAutoEntryPoints": true,
|
|
28
28
|
"inPublicMirror": true,
|
|
29
|
-
"releaseModel": "
|
|
29
|
+
"releaseModel": "continuous",
|
|
30
30
|
"website": {
|
|
31
31
|
"name": "Editor Core"
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/adf-utils": "^
|
|
36
|
-
"@atlaskit/button": "^16.
|
|
37
|
-
"@atlaskit/editor-common": "^74.
|
|
35
|
+
"@atlaskit/adf-utils": "^19.0.0",
|
|
36
|
+
"@atlaskit/button": "^16.8.0",
|
|
37
|
+
"@atlaskit/editor-common": "^74.15.0",
|
|
38
38
|
"@atlaskit/icon": "^21.12.0",
|
|
39
|
-
"@atlaskit/modal-dialog": "^12.
|
|
39
|
+
"@atlaskit/modal-dialog": "^12.6.0",
|
|
40
40
|
"@babel/runtime": "^7.0.0",
|
|
41
41
|
"@emotion/react": "^11.7.1"
|
|
42
42
|
},
|
|
@@ -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
|
+
|
|
7
|
+
import { ExtensionManifest } from '@atlaskit/editor-common/extensions';
|
|
8
|
+
|
|
9
|
+
// @public (undocumented)
|
|
10
|
+
const manifestFunction: ({ appKey, canMountinIframe, }: {
|
|
11
|
+
appKey: string;
|
|
12
|
+
canMountinIframe: boolean;
|
|
13
|
+
}) => ExtensionManifest;
|
|
14
|
+
export default manifestFunction;
|
|
15
|
+
|
|
16
|
+
// (No @packageDocumentation comment for this package)
|
|
17
|
+
|
|
18
|
+
```
|