@atlaskit/editor-plugin-insert-block 5.0.0 → 5.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
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-insert-block
|
|
2
2
|
|
|
3
|
+
## 5.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`e5001e144b74e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/e5001e144b74e) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 5.0.0
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -241,7 +241,7 @@ var insertMenuWrapper = function insertMenuWrapper(height, isFullPageAppearance)
|
|
|
241
241
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
242
242
|
height: "".concat(height, "px"),
|
|
243
243
|
backgroundColor: "".concat("var(--ds-surface-overlay, ".concat(_colors.N0, ")")),
|
|
244
|
-
borderRadius: "var(--ds-
|
|
244
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
245
245
|
boxShadow: "".concat("var(--ds-shadow-overlay, ".concat("0 0 0 1px ".concat(_colors.N30A, ",\n 0 2px 1px ").concat(_colors.N30A, ",\n 0 0 20px -6px ").concat(_colors.N60A), ")"))
|
|
246
246
|
});
|
|
247
247
|
};
|
|
@@ -212,7 +212,7 @@ const insertMenuWrapper = (height, isFullPageAppearance) => {
|
|
|
212
212
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
213
213
|
height: `${height}px`,
|
|
214
214
|
backgroundColor: `${`var(--ds-surface-overlay, ${N0})`}`,
|
|
215
|
-
borderRadius: "var(--ds-
|
|
215
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
216
216
|
boxShadow: `${`var(--ds-shadow-overlay, ${`0 0 0 1px ${N30A},
|
|
217
217
|
0 2px 1px ${N30A},
|
|
218
218
|
0 0 20px -6px ${N60A}`})`}`
|
|
@@ -238,7 +238,7 @@ var insertMenuWrapper = function insertMenuWrapper(height, isFullPageAppearance)
|
|
|
238
238
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values, @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
239
239
|
height: "".concat(height, "px"),
|
|
240
240
|
backgroundColor: "".concat("var(--ds-surface-overlay, ".concat(N0, ")")),
|
|
241
|
-
borderRadius: "var(--ds-
|
|
241
|
+
borderRadius: "var(--ds-radius-small, 3px)",
|
|
242
242
|
boxShadow: "".concat("var(--ds-shadow-overlay, ".concat("0 0 0 1px ".concat(N30A, ",\n 0 2px 1px ").concat(N30A, ",\n 0 0 20px -6px ").concat(N60A), ")"))
|
|
243
243
|
});
|
|
244
244
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-insert-block",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Insert block plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
68
68
|
"@atlaskit/primitives": "^14.12.0",
|
|
69
69
|
"@atlaskit/theme": "^20.0.0",
|
|
70
|
-
"@atlaskit/tmp-editor-statsig": "^12.
|
|
70
|
+
"@atlaskit/tmp-editor-statsig": "^12.1.0",
|
|
71
71
|
"@atlaskit/tokens": "^6.1.0",
|
|
72
72
|
"@atlaskit/tooltip": "^20.4.0",
|
|
73
73
|
"@babel/runtime": "^7.0.0",
|