@atlaskit/editor-plugin-breakout 8.0.14 → 8.0.16
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-breakout
|
|
2
2
|
|
|
3
|
+
## 8.0.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5892e575833a1`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/5892e575833a1) -
|
|
8
|
+
Internal changes to remove unnecessary token fallbacks and imports from `@atlaskit/theme`
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 8.0.15
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
|
|
3
17
|
## 8.0.14
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
|
@@ -19,7 +19,6 @@ var _utils2 = require("@atlaskit/editor-prosemirror/utils");
|
|
|
19
19
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
20
20
|
var _growHorizontal = _interopRequireDefault(require("@atlaskit/icon/core/grow-horizontal"));
|
|
21
21
|
var _shrinkHorizontal = _interopRequireDefault(require("@atlaskit/icon/core/shrink-horizontal"));
|
|
22
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
23
22
|
var _constants = require("@atlaskit/theme/constants");
|
|
24
23
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
25
24
|
var _experiments = require("@atlaskit/tmp-editor-statsig/experiments");
|
|
@@ -38,13 +37,13 @@ var _isSupportedNode = require("../pm-plugins/utils/is-supported-node");
|
|
|
38
37
|
var toolbarButtonWrapperStyles = (0, _react2.css)({
|
|
39
38
|
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles, @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
40
39
|
'&& button': {
|
|
41
|
-
background: "var(--ds-background-neutral,
|
|
42
|
-
color: "var(--ds-icon,
|
|
40
|
+
background: "var(--ds-background-neutral, #0515240F)",
|
|
41
|
+
color: "var(--ds-icon, #292A2E)",
|
|
43
42
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
44
43
|
':hover': {
|
|
45
|
-
background: "var(--ds-background-neutral-hovered,
|
|
44
|
+
background: "var(--ds-background-neutral-hovered, #0B120E24)",
|
|
46
45
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
|
|
47
|
-
color: "var(--ds-icon,
|
|
46
|
+
color: "var(--ds-icon, #292A2E)".concat(" !important")
|
|
48
47
|
}
|
|
49
48
|
}
|
|
50
49
|
});
|
|
@@ -17,7 +17,6 @@ import { findDomRefAtPos, findParentDomRefOfType } from '@atlaskit/editor-prosem
|
|
|
17
17
|
import { akEditorFullPageNarrowBreakout } from '@atlaskit/editor-shared-styles';
|
|
18
18
|
import GrowHorizontalIcon from '@atlaskit/icon/core/grow-horizontal';
|
|
19
19
|
import ShrinkHorizontalIcon from '@atlaskit/icon/core/shrink-horizontal';
|
|
20
|
-
import { B300, N20A, N300 } from '@atlaskit/theme/colors';
|
|
21
20
|
import { layers } from '@atlaskit/theme/constants';
|
|
22
21
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
23
22
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
@@ -29,13 +28,13 @@ import { isSupportedNodeForBreakout } from '../pm-plugins/utils/is-supported-nod
|
|
|
29
28
|
const toolbarButtonWrapperStyles = css({
|
|
30
29
|
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles, @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
31
30
|
'&& button': {
|
|
32
|
-
background:
|
|
33
|
-
color:
|
|
31
|
+
background: "var(--ds-background-neutral, #0515240F)",
|
|
32
|
+
color: "var(--ds-icon, #292A2E)",
|
|
34
33
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
35
34
|
':hover': {
|
|
36
|
-
background:
|
|
35
|
+
background: "var(--ds-background-neutral-hovered, #0B120E24)",
|
|
37
36
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
|
|
38
|
-
color: `${"var(--ds-icon,
|
|
37
|
+
color: `${"var(--ds-icon, #292A2E)"} !important`
|
|
39
38
|
}
|
|
40
39
|
}
|
|
41
40
|
});
|
|
@@ -18,7 +18,6 @@ import { findDomRefAtPos, findParentDomRefOfType } from '@atlaskit/editor-prosem
|
|
|
18
18
|
import { akEditorFullPageNarrowBreakout } from '@atlaskit/editor-shared-styles';
|
|
19
19
|
import GrowHorizontalIcon from '@atlaskit/icon/core/grow-horizontal';
|
|
20
20
|
import ShrinkHorizontalIcon from '@atlaskit/icon/core/shrink-horizontal';
|
|
21
|
-
import { B300, N20A, N300 } from '@atlaskit/theme/colors';
|
|
22
21
|
import { layers } from '@atlaskit/theme/constants';
|
|
23
22
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
24
23
|
import { editorExperiment } from '@atlaskit/tmp-editor-statsig/experiments';
|
|
@@ -30,13 +29,13 @@ import { isSupportedNodeForBreakout } from '../pm-plugins/utils/is-supported-nod
|
|
|
30
29
|
var toolbarButtonWrapperStyles = css({
|
|
31
30
|
// eslint-disable-next-line @atlaskit/design-system/no-nested-styles, @atlaskit/ui-styling-standard/no-nested-selectors, @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
32
31
|
'&& button': {
|
|
33
|
-
background: "var(--ds-background-neutral,
|
|
34
|
-
color: "var(--ds-icon,
|
|
32
|
+
background: "var(--ds-background-neutral, #0515240F)",
|
|
33
|
+
color: "var(--ds-icon, #292A2E)",
|
|
35
34
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
36
35
|
':hover': {
|
|
37
|
-
background: "var(--ds-background-neutral-hovered,
|
|
36
|
+
background: "var(--ds-background-neutral-hovered, #0B120E24)",
|
|
38
37
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-important-styles -- Ignored via go/DSP-18766
|
|
39
|
-
color: "var(--ds-icon,
|
|
38
|
+
color: "var(--ds-icon, #292A2E)".concat(" !important")
|
|
40
39
|
}
|
|
41
40
|
}
|
|
42
41
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-breakout",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.16",
|
|
4
4
|
"description": "Breakout plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"@atlaskit/editor-plugin-width": "^9.0.0",
|
|
40
40
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
41
41
|
"@atlaskit/editor-shared-styles": "^3.10.0",
|
|
42
|
-
"@atlaskit/icon": "^33.
|
|
42
|
+
"@atlaskit/icon": "^33.1.0",
|
|
43
43
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
44
44
|
"@atlaskit/pragmatic-drag-and-drop": "^1.7.0",
|
|
45
45
|
"@atlaskit/theme": "^22.0.0",
|
|
46
|
-
"@atlaskit/tmp-editor-statsig": "^
|
|
47
|
-
"@atlaskit/tokens": "^11.
|
|
46
|
+
"@atlaskit/tmp-editor-statsig": "^46.1.0",
|
|
47
|
+
"@atlaskit/tokens": "^11.2.0",
|
|
48
48
|
"@atlaskit/tooltip": "^21.0.0",
|
|
49
49
|
"@babel/runtime": "^7.0.0",
|
|
50
50
|
"@emotion/react": "^11.7.1",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"uuid": "^3.1.0"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
|
-
"@atlaskit/editor-common": "^112.
|
|
56
|
+
"@atlaskit/editor-common": "^112.10.0",
|
|
57
57
|
"react": "^18.2.0",
|
|
58
58
|
"react-dom": "^18.2.0",
|
|
59
59
|
"react-intl-next": "npm:react-intl@^5.18.1"
|