@atlaskit/editor-plugin-status 7.1.16 → 7.1.17
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
|
+
## 7.1.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`77deb9b7b3c27`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/77deb9b7b3c27) -
|
|
8
|
+
[EDITOR-3910] clean up fg platform_editor_a11y_status_picker
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
3
11
|
## 7.1.16
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
|
@@ -10,7 +10,6 @@ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/creat
|
|
|
10
10
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
11
|
var _messages = require("@atlaskit/editor-common/messages");
|
|
12
12
|
var _model = require("@atlaskit/editor-prosemirror/model");
|
|
13
|
-
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
14
13
|
var _statusNodeSpec = require("./statusNodeSpec");
|
|
15
14
|
/**
|
|
16
15
|
*
|
|
@@ -46,8 +45,7 @@ var StatusNodeView = exports.StatusNodeView = /*#__PURE__*/function () {
|
|
|
46
45
|
value: function setPlaceholder() {
|
|
47
46
|
if (this.textContainer && this.domElement) {
|
|
48
47
|
this.textContainer.textContent = this.intl.formatMessage(_messages.statusMessages.placeholder);
|
|
49
|
-
|
|
50
|
-
this.domElement.style.setProperty('opacity', opacity);
|
|
48
|
+
this.domElement.style.setProperty('opacity', '0.83');
|
|
51
49
|
}
|
|
52
50
|
}
|
|
53
51
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
2
2
|
import { statusMessages as messages } from '@atlaskit/editor-common/messages';
|
|
3
3
|
import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
|
|
4
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
4
|
import { statusToDOM } from './statusNodeSpec';
|
|
6
5
|
|
|
7
6
|
/**
|
|
@@ -36,8 +35,7 @@ export class StatusNodeView {
|
|
|
36
35
|
setPlaceholder() {
|
|
37
36
|
if (this.textContainer && this.domElement) {
|
|
38
37
|
this.textContainer.textContent = this.intl.formatMessage(messages.placeholder);
|
|
39
|
-
|
|
40
|
-
this.domElement.style.setProperty('opacity', opacity);
|
|
38
|
+
this.domElement.style.setProperty('opacity', '0.83');
|
|
41
39
|
}
|
|
42
40
|
}
|
|
43
41
|
|
|
@@ -3,7 +3,6 @@ import _createClass from "@babel/runtime/helpers/createClass";
|
|
|
3
3
|
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
|
4
4
|
import { statusMessages as messages } from '@atlaskit/editor-common/messages';
|
|
5
5
|
import { DOMSerializer } from '@atlaskit/editor-prosemirror/model';
|
|
6
|
-
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
6
|
import { statusToDOM } from './statusNodeSpec';
|
|
8
7
|
|
|
9
8
|
/**
|
|
@@ -40,8 +39,7 @@ export var StatusNodeView = /*#__PURE__*/function () {
|
|
|
40
39
|
value: function setPlaceholder() {
|
|
41
40
|
if (this.textContainer && this.domElement) {
|
|
42
41
|
this.textContainer.textContent = this.intl.formatMessage(messages.placeholder);
|
|
43
|
-
|
|
44
|
-
this.domElement.style.setProperty('opacity', opacity);
|
|
42
|
+
this.domElement.style.setProperty('opacity', '0.83');
|
|
45
43
|
}
|
|
46
44
|
}
|
|
47
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-status",
|
|
3
|
-
"version": "7.1.
|
|
3
|
+
"version": "7.1.17",
|
|
4
4
|
"description": "Status plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,14 +38,14 @@
|
|
|
38
38
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
39
39
|
"@atlaskit/status": "^3.0.0",
|
|
40
40
|
"@atlaskit/theme": "^21.0.0",
|
|
41
|
-
"@atlaskit/tmp-editor-statsig": "^16.
|
|
41
|
+
"@atlaskit/tmp-editor-statsig": "^16.3.0",
|
|
42
42
|
"@atlaskit/tokens": "^9.0.0",
|
|
43
43
|
"@atlaskit/visually-hidden": "^3.0.0",
|
|
44
44
|
"@babel/runtime": "^7.0.0",
|
|
45
45
|
"@emotion/react": "^11.7.1"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@atlaskit/editor-common": "^110.
|
|
48
|
+
"@atlaskit/editor-common": "^110.50.0",
|
|
49
49
|
"react": "^18.2.0",
|
|
50
50
|
"react-dom": "^18.2.0",
|
|
51
51
|
"react-intl-next": "npm:react-intl@^5.18.1"
|
|
@@ -102,9 +102,6 @@
|
|
|
102
102
|
},
|
|
103
103
|
"platform-lozenge-custom-letterspacing": {
|
|
104
104
|
"type": "boolean"
|
|
105
|
-
},
|
|
106
|
-
"platform_editor_a11y_status_picker": {
|
|
107
|
-
"type": "boolean"
|
|
108
105
|
}
|
|
109
106
|
}
|
|
110
107
|
}
|