@atlaskit/editor-plugin-quick-insert 4.0.0 → 5.0.0
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,19 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-quick-insert
|
|
2
2
|
|
|
3
|
+
## 5.0.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 4.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`255837cfba315`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/255837cfba315) -
|
|
14
|
+
Internal changes to how border radius is applied.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 4.0.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -41,7 +41,7 @@ var wrapperStyles = (0, _react2.css)({
|
|
|
41
41
|
padding: "var(--ds-space-200, 16px)".concat(" ", "var(--ds-space-200, 16px)", " 0 10px"),
|
|
42
42
|
overflow: 'hidden',
|
|
43
43
|
backgroundColor: "var(--ds-surface-overlay, ".concat(_colors.N0, ")"),
|
|
44
|
-
borderRadius: "var(--ds-
|
|
44
|
+
borderRadius: "var(--ds-radius-small, 3px)"
|
|
45
45
|
});
|
|
46
46
|
var modalFooterStyles = (0, _react2.css)({
|
|
47
47
|
display: 'flex',
|
|
@@ -30,7 +30,7 @@ const wrapperStyles = css({
|
|
|
30
30
|
padding: `${"var(--ds-space-200, 16px)"} ${"var(--ds-space-200, 16px)"} 0 10px`,
|
|
31
31
|
overflow: 'hidden',
|
|
32
32
|
backgroundColor: `var(--ds-surface-overlay, ${N0})`,
|
|
33
|
-
borderRadius: "var(--ds-
|
|
33
|
+
borderRadius: "var(--ds-radius-small, 3px)"
|
|
34
34
|
});
|
|
35
35
|
const modalFooterStyles = css({
|
|
36
36
|
display: 'flex',
|
|
@@ -31,7 +31,7 @@ var wrapperStyles = css({
|
|
|
31
31
|
padding: "var(--ds-space-200, 16px)".concat(" ", "var(--ds-space-200, 16px)", " 0 10px"),
|
|
32
32
|
overflow: 'hidden',
|
|
33
33
|
backgroundColor: "var(--ds-surface-overlay, ".concat(N0, ")"),
|
|
34
|
-
borderRadius: "var(--ds-
|
|
34
|
+
borderRadius: "var(--ds-radius-small, 3px)"
|
|
35
35
|
});
|
|
36
36
|
var modalFooterStyles = css({
|
|
37
37
|
display: 'flex',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-quick-insert",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Quick insert plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -30,21 +30,21 @@
|
|
|
30
30
|
"atlaskit:src": "src/index.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@atlaskit/button": "^23.4.0",
|
|
33
|
-
"@atlaskit/editor-plugin-connectivity": "^
|
|
34
|
-
"@atlaskit/editor-plugin-metrics": "^
|
|
35
|
-
"@atlaskit/editor-plugin-type-ahead": "^
|
|
33
|
+
"@atlaskit/editor-plugin-connectivity": "^5.0.0",
|
|
34
|
+
"@atlaskit/editor-plugin-metrics": "^6.0.0",
|
|
35
|
+
"@atlaskit/editor-plugin-type-ahead": "^5.0.0",
|
|
36
36
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
37
37
|
"@atlaskit/icon": "^28.1.0",
|
|
38
38
|
"@atlaskit/modal-dialog": "^14.3.0",
|
|
39
39
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
40
40
|
"@atlaskit/theme": "^20.0.0",
|
|
41
|
-
"@atlaskit/tmp-editor-statsig": "^12.
|
|
42
|
-
"@atlaskit/tokens": "^6.
|
|
41
|
+
"@atlaskit/tmp-editor-statsig": "^12.9.0",
|
|
42
|
+
"@atlaskit/tokens": "^6.3.0",
|
|
43
43
|
"@babel/runtime": "^7.0.0",
|
|
44
44
|
"@emotion/react": "^11.7.1"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
|
-
"@atlaskit/editor-common": "^
|
|
47
|
+
"@atlaskit/editor-common": "^109.0.0",
|
|
48
48
|
"react": "^18.2.0",
|
|
49
49
|
"react-dom": "^18.2.0",
|
|
50
50
|
"react-intl-next": "npm:react-intl@^5.18.1"
|