@atlaskit/editor-shared-styles 3.2.4 → 3.3.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 +10 -0
- package/package.json +1 -1
- package/src/consts/consts.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlaskit/editor-shared-styles
|
|
2
2
|
|
|
3
|
+
## 3.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#114486](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/114486)
|
|
8
|
+
[`bd89d7bfae0c1`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/bd89d7bfae0c1) -
|
|
9
|
+
@atlaskit/editor-shared-styles adds an export `akEditorSelectedBoldBoxShadow` recently, which
|
|
10
|
+
should be minor change and causes trouble for Jira and Atlas/townsquare when bumping editor-core.
|
|
11
|
+
This PR triggers a minor bump for @atlaskit/editor-shared-styles
|
|
12
|
+
|
|
3
13
|
## 3.2.4
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/package.json
CHANGED
package/src/consts/consts.ts
CHANGED
|
@@ -16,6 +16,7 @@ export const akEditorDeleteBackgroundWithOpacity = 'rgba(255, 189, 173, 0.5)'; /
|
|
|
16
16
|
export const akEditorDeleteBorder = token('color.border.danger');
|
|
17
17
|
export const akEditorDeleteIconColor = token('color.icon.danger');
|
|
18
18
|
export const akEditorCustomIconSize = 20;
|
|
19
|
+
|
|
19
20
|
export const akEditorSelectedBorderColor = token('color.border.selected');
|
|
20
21
|
export const akEditorSelectedBorderSize = 1;
|
|
21
22
|
export const akEditorSelectedBorderBoldSize = 2;
|