@atlaskit/editor-extension-dropbox 0.4.6 → 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 CHANGED
@@ -1,5 +1,17 @@
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
+
9
+ ## 0.4.7
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 0.4.6
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,37 @@
1
+ {
2
+ "extends": "../../../../tsconfig.entry-points.confluence.json",
3
+ "compilerOptions": {
4
+ "declaration": true,
5
+ "target": "es5",
6
+ "composite": true,
7
+ "outDir": "../dist",
8
+ "rootDir": "../",
9
+ "baseUrl": "../"
10
+ },
11
+ "include": [
12
+ "../src/**/*.ts",
13
+ "../src/**/*.tsx"
14
+ ],
15
+ "exclude": [
16
+ "../src/**/__tests__/*",
17
+ "../src/**/*.test.*",
18
+ "../src/**/test.*"
19
+ ],
20
+ "references": [
21
+ {
22
+ "path": "../../adf-utils/afm-cc/tsconfig.json"
23
+ },
24
+ {
25
+ "path": "../../../design-system/button/afm-cc/tsconfig.json"
26
+ },
27
+ {
28
+ "path": "../../editor-common/afm-cc/tsconfig.json"
29
+ },
30
+ {
31
+ "path": "../../../design-system/icon/afm-cc/tsconfig.json"
32
+ },
33
+ {
34
+ "path": "../../../design-system/modal-dialog/afm-cc/tsconfig.json"
35
+ }
36
+ ]
37
+ }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-extension-dropbox",
3
- "version": "0.4.6",
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,21 +22,30 @@
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": "^16.16.0",
37
- "@atlaskit/editor-common": "^76.22.0",
45
+ "@atlaskit/button": "^17.2.0",
46
+ "@atlaskit/editor-common": "^76.39.0",
38
47
  "@atlaskit/icon": "^22.0.0",
39
- "@atlaskit/modal-dialog": "^12.8.0",
48
+ "@atlaskit/modal-dialog": "^12.10.0",
40
49
  "@babel/runtime": "^7.0.0",
41
50
  "@emotion/react": "^11.7.1"
42
51
  },
@@ -1,18 +0,0 @@
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
- ```