@atlaskit/editor-plugin-placeholder-text 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-placeholder-text
|
|
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
|
|
@@ -5,18 +5,17 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports.container = void 0;
|
|
7
7
|
var _react = require("@emotion/react");
|
|
8
|
-
var _colors = require("@atlaskit/theme/colors");
|
|
9
8
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
10
9
|
|
|
11
10
|
var container = exports.container = function container(height) {
|
|
12
11
|
return (0, _react.css)({
|
|
13
12
|
borderRadius: "var(--ds-radius-small, 3px)",
|
|
14
|
-
boxShadow: "var(--ds-shadow-overlay,
|
|
13
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)",
|
|
15
14
|
display: 'flex',
|
|
16
15
|
alignItems: 'center',
|
|
17
16
|
boxSizing: 'border-box',
|
|
18
17
|
padding: "var(--ds-space-050, 4px)".concat(" ", "var(--ds-space-100, 8px)"),
|
|
19
|
-
backgroundColor: "var(--ds-background-input,
|
|
18
|
+
backgroundColor: "var(--ds-background-input, #FFFFFF)",
|
|
20
19
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
21
20
|
height: height ? "".concat(height, "px") : undefined
|
|
22
21
|
});
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
2
2
|
import { css } from '@emotion/react';
|
|
3
|
-
import { N0, N50A, N60A } from '@atlaskit/theme/colors';
|
|
4
3
|
export const container = height => css({
|
|
5
4
|
borderRadius: "var(--ds-radius-small, 3px)",
|
|
6
|
-
boxShadow:
|
|
5
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)",
|
|
7
6
|
display: 'flex',
|
|
8
7
|
alignItems: 'center',
|
|
9
8
|
boxSizing: 'border-box',
|
|
10
9
|
padding: `${"var(--ds-space-050, 4px)"} ${"var(--ds-space-100, 8px)"}`,
|
|
11
|
-
backgroundColor:
|
|
10
|
+
backgroundColor: "var(--ds-background-input, #FFFFFF)",
|
|
12
11
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
13
12
|
height: height ? `${height}px` : undefined
|
|
14
13
|
});
|
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/use-compiled -- Ignored via go/DSP-18766
|
|
2
2
|
import { css } from '@emotion/react';
|
|
3
|
-
import { N0, N50A, N60A } from '@atlaskit/theme/colors';
|
|
4
3
|
export var container = function container(height) {
|
|
5
4
|
return css({
|
|
6
5
|
borderRadius: "var(--ds-radius-small, 3px)",
|
|
7
|
-
boxShadow: "var(--ds-shadow-overlay,
|
|
6
|
+
boxShadow: "var(--ds-shadow-overlay, 0px 8px 12px #1E1F2126, 0px 0px 1px #1E1F214f)",
|
|
8
7
|
display: 'flex',
|
|
9
8
|
alignItems: 'center',
|
|
10
9
|
boxSizing: 'border-box',
|
|
11
10
|
padding: "var(--ds-space-050, 4px)".concat(" ", "var(--ds-space-100, 8px)"),
|
|
12
|
-
backgroundColor: "var(--ds-background-input,
|
|
11
|
+
backgroundColor: "var(--ds-background-input, #FFFFFF)",
|
|
13
12
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-values -- Ignored via go/DSP-18766
|
|
14
13
|
height: height ? "".concat(height, "px") : undefined
|
|
15
14
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-placeholder-text",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.11",
|
|
4
4
|
"description": "placeholder text plugin for @atlaskit/editor-core",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"@atlaskit/editor-plugin-type-ahead": "^8.0.0",
|
|
33
33
|
"@atlaskit/editor-prosemirror": "^7.3.0",
|
|
34
34
|
"@atlaskit/icon": "^33.0.0",
|
|
35
|
-
"@atlaskit/theme": "^22.0.0",
|
|
36
35
|
"@atlaskit/tmp-editor-statsig": "^44.0.0",
|
|
37
36
|
"@atlaskit/tokens": "^11.1.0",
|
|
38
37
|
"@babel/runtime": "^7.0.0",
|