@atlaskit/editor-extension-dropbox 1.0.0 → 1.0.2
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/afm-cc/tsconfig.json +49 -43
- package/afm-jira/tsconfig.json +7 -1
- package/build/tsconfig.json +8 -2
- package/constants/package.json +1 -1
- package/dist/cjs/modal.js +2 -0
- package/dist/es2019/modal.js +1 -0
- package/dist/esm/modal.js +1 -0
- package/dist/types/modal.d.ts +2 -2
- package/dist/types-ts4.5/modal.d.ts +2 -2
- package/dropboxscript/package.json +1 -1
- package/enable-dropbox/package.json +1 -1
- package/manifest/package.json +1 -1
- package/modal/package.json +1 -1
- package/package.json +8 -11
- package/tsconfig.json +9 -4
- package/types/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/afm-cc/tsconfig.json
CHANGED
|
@@ -1,45 +1,51 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.confluence.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"composite": true,
|
|
7
|
+
"outDir": "../../../../../confluence/tsDist/@atlaskit__editor-extension-dropbox",
|
|
8
|
+
"rootDir": "../"
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
24
|
+
],
|
|
25
|
+
"references": [
|
|
26
|
+
{
|
|
27
|
+
"path": "../../adf-utils/afm-cc/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/button/afm-cc/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/heading/afm-cc/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../design-system/icon/afm-cc/tsconfig.json"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"path": "../../../design-system/modal-dialog/afm-cc/tsconfig.json"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"path": "../../../design-system/primitives/afm-cc/tsconfig.json"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"path": "../../../design-system/tokens/afm-cc/tsconfig.json"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"path": "../../editor-common/afm-cc/tsconfig.json"
|
|
49
|
+
}
|
|
50
|
+
]
|
|
45
51
|
}
|
package/afm-jira/tsconfig.json
CHANGED
|
@@ -14,7 +14,13 @@
|
|
|
14
14
|
"exclude": [
|
|
15
15
|
"../src/**/__tests__/*",
|
|
16
16
|
"../src/**/*.test.*",
|
|
17
|
-
"../src/**/test.*"
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
18
24
|
],
|
|
19
25
|
"references": [
|
|
20
26
|
{
|
package/build/tsconfig.json
CHANGED
|
@@ -12,6 +12,12 @@
|
|
|
12
12
|
"exclude": [
|
|
13
13
|
"../src/**/__tests__/*",
|
|
14
14
|
"../src/**/*.test.*",
|
|
15
|
-
"../src/**/test.*"
|
|
15
|
+
"../src/**/test.*",
|
|
16
|
+
"../src/**/examples.*",
|
|
17
|
+
"../src/**/examples/*",
|
|
18
|
+
"../src/**/examples/**/*",
|
|
19
|
+
"../src/**/*.stories.*",
|
|
20
|
+
"../src/**/stories/*",
|
|
21
|
+
"../src/**/stories/**/*"
|
|
16
22
|
]
|
|
17
|
-
}
|
|
23
|
+
}
|
package/constants/package.json
CHANGED
package/dist/cjs/modal.js
CHANGED
|
@@ -21,6 +21,8 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
|
|
|
21
21
|
|
|
22
22
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
23
23
|
|
|
24
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
25
|
+
|
|
24
26
|
var ModalBody = /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
25
27
|
return (
|
|
26
28
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/enforce-style-prop -- Ignored via go/DSP-18766
|
package/dist/es2019/modal.js
CHANGED
|
@@ -8,6 +8,7 @@ import { jsx, css } from '@emotion/react';
|
|
|
8
8
|
import ModalDialog, { ModalTransition, CloseButton, useModal, ModalBody as AKModalBody } from '@atlaskit/modal-dialog';
|
|
9
9
|
import Heading from '@atlaskit/heading';
|
|
10
10
|
import { DROPBOX_IFRAME_NAME } from './constants';
|
|
11
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
11
12
|
import { xcss, Box } from '@atlaskit/primitives';
|
|
12
13
|
const ModalBody = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
13
14
|
return (
|
package/dist/esm/modal.js
CHANGED
|
@@ -9,6 +9,7 @@ import { jsx, css } from '@emotion/react';
|
|
|
9
9
|
import ModalDialog, { ModalTransition, CloseButton, useModal, ModalBody as AKModalBody } from '@atlaskit/modal-dialog';
|
|
10
10
|
import Heading from '@atlaskit/heading';
|
|
11
11
|
import { DROPBOX_IFRAME_NAME } from './constants';
|
|
12
|
+
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
12
13
|
import { xcss, Box } from '@atlaskit/primitives';
|
|
13
14
|
var ModalBody = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
14
15
|
return (
|
package/dist/types/modal.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
2
|
declare const Modal: ({ onClose, TEST_ONLY_src, showModal, }: {
|
|
3
3
|
onClose: () => any;
|
|
4
|
-
TEST_ONLY_src?: string
|
|
5
|
-
showModal?: boolean
|
|
4
|
+
TEST_ONLY_src?: string;
|
|
5
|
+
showModal?: boolean;
|
|
6
6
|
}) => jsx.JSX.Element;
|
|
7
7
|
export default Modal;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from '@emotion/react';
|
|
2
2
|
declare const Modal: ({ onClose, TEST_ONLY_src, showModal, }: {
|
|
3
3
|
onClose: () => any;
|
|
4
|
-
TEST_ONLY_src?: string
|
|
5
|
-
showModal?: boolean
|
|
4
|
+
TEST_ONLY_src?: string;
|
|
5
|
+
showModal?: boolean;
|
|
6
6
|
}) => jsx.JSX.Element;
|
|
7
7
|
export default Modal;
|
package/manifest/package.json
CHANGED
package/modal/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-extension-dropbox",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A an atlassian editor extension to add a native dropbox picker",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -40,24 +40,21 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@atlaskit/adf-utils": "^19.
|
|
44
|
-
"@atlaskit/button": "^23.
|
|
43
|
+
"@atlaskit/adf-utils": "^19.21.0",
|
|
44
|
+
"@atlaskit/button": "^23.4.0",
|
|
45
45
|
"@atlaskit/heading": "^5.2.0",
|
|
46
|
-
"@atlaskit/icon": "^
|
|
47
|
-
"@atlaskit/modal-dialog": "^14.
|
|
48
|
-
"@atlaskit/primitives": "^14.
|
|
49
|
-
"@atlaskit/tokens": "^
|
|
46
|
+
"@atlaskit/icon": "^28.0.0",
|
|
47
|
+
"@atlaskit/modal-dialog": "^14.3.0",
|
|
48
|
+
"@atlaskit/primitives": "^14.11.0",
|
|
49
|
+
"@atlaskit/tokens": "^6.0.0",
|
|
50
50
|
"@babel/runtime": "^7.0.0",
|
|
51
51
|
"@emotion/react": "^11.7.1"
|
|
52
52
|
},
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@atlaskit/editor-common": "^107.
|
|
54
|
+
"@atlaskit/editor-common": "^107.26.0",
|
|
55
55
|
"react": "^18.2.0",
|
|
56
56
|
"react-dom": "^18.2.0"
|
|
57
57
|
},
|
|
58
|
-
"devDependencies": {
|
|
59
|
-
"typescript": "~5.4.2"
|
|
60
|
-
},
|
|
61
58
|
"techstack": {
|
|
62
59
|
"@repo/internal": {
|
|
63
60
|
"design-tokens": [
|
package/tsconfig.json
CHANGED
|
@@ -6,8 +6,13 @@
|
|
|
6
6
|
"./docs/**/*.ts",
|
|
7
7
|
"./docs/**/*.tsx",
|
|
8
8
|
"./examples/**/*.ts",
|
|
9
|
-
"./examples/**/*.tsx"
|
|
9
|
+
"./examples/**/*.tsx",
|
|
10
|
+
"**/stories.ts",
|
|
11
|
+
"**/stories.tsx",
|
|
12
|
+
"**/stories/*.ts",
|
|
13
|
+
"**/stories/*.tsx",
|
|
14
|
+
"**/stories/**/*.ts",
|
|
15
|
+
"**/stories/**/*.tsx"
|
|
10
16
|
],
|
|
11
|
-
"compilerOptions": {
|
|
12
|
-
|
|
13
|
-
}
|
|
17
|
+
"compilerOptions": {}
|
|
18
|
+
}
|