@atlaskit/editor-extension-dropbox 2.0.0 → 3.0.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 +14 -0
- package/dist/cjs/modal.js +1 -1
- package/dist/es2019/modal.js +1 -1
- package/dist/esm/modal.js +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @atlaskit/editor-extension-dropbox
|
|
2
2
|
|
|
3
|
+
## 3.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`407e1dc11eeed`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/407e1dc11eeed) -
|
|
8
|
+
Minor changes to border radius values.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 3.0.0
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 2.0.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/cjs/modal.js
CHANGED
|
@@ -39,7 +39,7 @@ var ModalBody = /*#__PURE__*/_react.default.forwardRef(function (props, ref) {
|
|
|
39
39
|
var iframeStyle = {
|
|
40
40
|
width: '100%',
|
|
41
41
|
height: '100%',
|
|
42
|
-
borderRadius:
|
|
42
|
+
borderRadius: "0 0 ".concat("var(--ds-radius-small, 3px)", " ", "var(--ds-radius-small, 3px)")
|
|
43
43
|
};
|
|
44
44
|
var bottomShadow = (0, _react2.css)({
|
|
45
45
|
display: 'flex',
|
package/dist/es2019/modal.js
CHANGED
|
@@ -26,7 +26,7 @@ const ModalBody = /*#__PURE__*/React.forwardRef((props, ref) => {
|
|
|
26
26
|
const iframeStyle = {
|
|
27
27
|
width: '100%',
|
|
28
28
|
height: '100%',
|
|
29
|
-
borderRadius:
|
|
29
|
+
borderRadius: `0 0 ${"var(--ds-radius-small, 3px)"} ${"var(--ds-radius-small, 3px)"}`
|
|
30
30
|
};
|
|
31
31
|
const bottomShadow = css({
|
|
32
32
|
display: 'flex',
|
package/dist/esm/modal.js
CHANGED
|
@@ -27,7 +27,7 @@ var ModalBody = /*#__PURE__*/React.forwardRef(function (props, ref) {
|
|
|
27
27
|
var iframeStyle = {
|
|
28
28
|
width: '100%',
|
|
29
29
|
height: '100%',
|
|
30
|
-
borderRadius:
|
|
30
|
+
borderRadius: "0 0 ".concat("var(--ds-radius-small, 3px)", " ", "var(--ds-radius-small, 3px)")
|
|
31
31
|
};
|
|
32
32
|
var bottomShadow = css({
|
|
33
33
|
display: 'flex',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-extension-dropbox",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.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/"
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
}
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@atlaskit/adf-utils": "^19.
|
|
34
|
+
"@atlaskit/adf-utils": "^19.23.0",
|
|
35
35
|
"@atlaskit/button": "^23.4.0",
|
|
36
36
|
"@atlaskit/heading": "^5.2.0",
|
|
37
|
-
"@atlaskit/icon": "^28.
|
|
37
|
+
"@atlaskit/icon": "^28.2.0",
|
|
38
38
|
"@atlaskit/modal-dialog": "^14.3.0",
|
|
39
|
-
"@atlaskit/primitives": "^14.
|
|
40
|
-
"@atlaskit/tokens": "^6.
|
|
39
|
+
"@atlaskit/primitives": "^14.15.0",
|
|
40
|
+
"@atlaskit/tokens": "^6.3.0",
|
|
41
41
|
"@babel/runtime": "^7.0.0",
|
|
42
42
|
"@emotion/react": "^11.7.1"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
|
-
"@atlaskit/editor-common": "^
|
|
45
|
+
"@atlaskit/editor-common": "^109.13.0",
|
|
46
46
|
"react": "^18.2.0",
|
|
47
47
|
"react-dom": "^18.2.0"
|
|
48
48
|
},
|