@atlaskit/editor-plugin-status 9.0.10 → 9.0.11
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-status
|
|
2
2
|
|
|
3
|
+
## 9.0.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`0f4a08b633f6e`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/0f4a08b633f6e) -
|
|
8
|
+
Internal changes to remove unnecessary token fallbacks and imports from `@atlaskit/theme`
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 9.0.10
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -23,7 +23,6 @@ var _userIntent = require("@atlaskit/editor-common/user-intent");
|
|
|
23
23
|
var _editorSharedStyles = require("@atlaskit/editor-shared-styles");
|
|
24
24
|
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
25
25
|
var _picker = require("@atlaskit/status/picker");
|
|
26
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
27
26
|
var _expValEquals = require("@atlaskit/tmp-editor-statsig/exp-val-equals");
|
|
28
27
|
var _visuallyHidden = _interopRequireDefault(require("@atlaskit/visually-hidden"));
|
|
29
28
|
var _actions = require("../pm-plugins/actions");
|
|
@@ -46,10 +45,10 @@ var closingMethods = exports.closingMethods = /*#__PURE__*/function (closingMeth
|
|
|
46
45
|
return closingMethods;
|
|
47
46
|
}({});
|
|
48
47
|
var pickerContainerStyles = (0, _react2.css)({
|
|
49
|
-
background: "var(--ds-surface-overlay,
|
|
48
|
+
background: "var(--ds-surface-overlay, #FFFFFF)",
|
|
50
49
|
padding: "var(--ds-space-100, 8px)".concat(" 0"),
|
|
51
50
|
borderRadius: "var(--ds-radius-small, 3px)",
|
|
52
|
-
boxShadow: "var(--ds-shadow-overlay,
|
|
51
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)",
|
|
53
52
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
54
53
|
':focus': {
|
|
55
54
|
outline: 'none'
|
|
@@ -18,7 +18,6 @@ import { UserIntentPopupWrapper } from '@atlaskit/editor-common/user-intent';
|
|
|
18
18
|
import { akEditorFloatingDialogZIndex } from '@atlaskit/editor-shared-styles';
|
|
19
19
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
20
20
|
import { StatusPicker as AkStatusPicker } from '@atlaskit/status/picker';
|
|
21
|
-
import { N0 } from '@atlaskit/theme/colors';
|
|
22
21
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
23
22
|
import VisuallyHidden from '@atlaskit/visually-hidden';
|
|
24
23
|
import { DEFAULT_STATUS } from '../pm-plugins/actions';
|
|
@@ -36,10 +35,10 @@ export let closingMethods = /*#__PURE__*/function (closingMethods) {
|
|
|
36
35
|
return closingMethods;
|
|
37
36
|
}({});
|
|
38
37
|
const pickerContainerStyles = css({
|
|
39
|
-
background:
|
|
38
|
+
background: "var(--ds-surface-overlay, #FFFFFF)",
|
|
40
39
|
padding: `${"var(--ds-space-100, 8px)"} 0`,
|
|
41
40
|
borderRadius: "var(--ds-radius-small, 3px)",
|
|
42
|
-
boxShadow: "var(--ds-shadow-overlay,
|
|
41
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)",
|
|
43
42
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
44
43
|
':focus': {
|
|
45
44
|
outline: 'none'
|
|
@@ -25,7 +25,6 @@ import { UserIntentPopupWrapper } from '@atlaskit/editor-common/user-intent';
|
|
|
25
25
|
import { akEditorFloatingDialogZIndex } from '@atlaskit/editor-shared-styles';
|
|
26
26
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
27
27
|
import { StatusPicker as AkStatusPicker } from '@atlaskit/status/picker';
|
|
28
|
-
import { N0 } from '@atlaskit/theme/colors';
|
|
29
28
|
import { expValEquals } from '@atlaskit/tmp-editor-statsig/exp-val-equals';
|
|
30
29
|
import VisuallyHidden from '@atlaskit/visually-hidden';
|
|
31
30
|
import { DEFAULT_STATUS } from '../pm-plugins/actions';
|
|
@@ -43,10 +42,10 @@ export var closingMethods = /*#__PURE__*/function (closingMethods) {
|
|
|
43
42
|
return closingMethods;
|
|
44
43
|
}({});
|
|
45
44
|
var pickerContainerStyles = css({
|
|
46
|
-
background: "var(--ds-surface-overlay,
|
|
45
|
+
background: "var(--ds-surface-overlay, #FFFFFF)",
|
|
47
46
|
padding: "var(--ds-space-100, 8px)".concat(" 0"),
|
|
48
47
|
borderRadius: "var(--ds-radius-small, 3px)",
|
|
49
|
-
boxShadow: "var(--ds-shadow-overlay,
|
|
48
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)",
|
|
50
49
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors -- Ignored via go/DSP-18766
|
|
51
50
|
':focus': {
|
|
52
51
|
outline: 'none'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-status",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.11",
|
|
4
4
|
"description": "Status plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
"@atlaskit/icon": "^33.0.0",
|
|
39
39
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
40
40
|
"@atlaskit/status": "^3.1.0",
|
|
41
|
-
"@atlaskit/theme": "^22.0.0",
|
|
42
41
|
"@atlaskit/tmp-editor-statsig": "^44.0.0",
|
|
43
42
|
"@atlaskit/tokens": "^11.1.0",
|
|
44
43
|
"@atlaskit/visually-hidden": "^3.0.0",
|