@atlaskit/editor-plugin-help-dialog 2.0.0 → 2.0.2
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 +18 -0
- package/dist/cjs/ui/styles.js +2 -2
- package/dist/es2019/ui/styles.js +2 -2
- package/dist/esm/ui/styles.js +2 -2
- package/package.json +11 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/editor-plugin-help-dialog
|
|
2
2
|
|
|
3
|
+
## 2.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 2.0.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#120533](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/120533)
|
|
14
|
+
[`f1bec731e278f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1bec731e278f) -
|
|
15
|
+
Adds a `sideEffects` field to ensure this package does not have Compiled styles tree-shaken in the
|
|
16
|
+
future to avoid an accidental regression.
|
|
17
|
+
|
|
18
|
+
This is related to
|
|
19
|
+
https://community.developer.atlassian.com/t/rfc-73-migrating-our-components-to-compiled-css-in-js/85953
|
|
20
|
+
|
|
3
21
|
## 2.0.0
|
|
4
22
|
|
|
5
23
|
### Major Changes
|
package/dist/cjs/ui/styles.js
CHANGED
|
@@ -26,7 +26,7 @@ var header = exports.header = (0, _react.css)({
|
|
|
26
26
|
justifyContent: 'space-between',
|
|
27
27
|
alignItems: 'center',
|
|
28
28
|
boxShadow: "'none'",
|
|
29
|
-
font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
29
|
+
font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
30
30
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
31
31
|
color: "var(--ds-text, ".concat(colors.N400, ")"),
|
|
32
32
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
@@ -40,7 +40,7 @@ var footer = exports.footer = (0, _react.css)({
|
|
|
40
40
|
zIndex: _editorSharedStyles.akEditorUnitZIndex,
|
|
41
41
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
42
42
|
color: "var(--ds-text-subtlest, ".concat(colors.N300, ")"),
|
|
43
|
-
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
43
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
44
44
|
padding: "var(--ds-space-300, 24px)",
|
|
45
45
|
textAlign: 'right',
|
|
46
46
|
boxShadow: "'none'"
|
package/dist/es2019/ui/styles.js
CHANGED
|
@@ -15,7 +15,7 @@ export const header = css({
|
|
|
15
15
|
justifyContent: 'space-between',
|
|
16
16
|
alignItems: 'center',
|
|
17
17
|
boxShadow: "'none'",
|
|
18
|
-
font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
18
|
+
font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
19
19
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
20
20
|
color: `var(--ds-text, ${colors.N400})`,
|
|
21
21
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
@@ -29,7 +29,7 @@ export const footer = css({
|
|
|
29
29
|
zIndex: akEditorUnitZIndex,
|
|
30
30
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
31
31
|
color: `var(--ds-text-subtlest, ${colors.N300})`,
|
|
32
|
-
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
32
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
33
33
|
padding: "var(--ds-space-300, 24px)",
|
|
34
34
|
textAlign: 'right',
|
|
35
35
|
boxShadow: "'none'"
|
package/dist/esm/ui/styles.js
CHANGED
|
@@ -15,7 +15,7 @@ export var header = css({
|
|
|
15
15
|
justifyContent: 'space-between',
|
|
16
16
|
alignItems: 'center',
|
|
17
17
|
boxShadow: "'none'",
|
|
18
|
-
font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
18
|
+
font: "var(--ds-font-heading-large, normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
19
19
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
20
20
|
color: "var(--ds-text, ".concat(colors.N400, ")"),
|
|
21
21
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
@@ -29,7 +29,7 @@ export var footer = css({
|
|
|
29
29
|
zIndex: akEditorUnitZIndex,
|
|
30
30
|
// eslint-disable-next-line @atlaskit/ui-styling-standard/no-imported-style-values -- Ignored via go/DSP-18766
|
|
31
31
|
color: "var(--ds-text-subtlest, ".concat(colors.N300, ")"),
|
|
32
|
-
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
32
|
+
font: "var(--ds-font-body, normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
33
33
|
padding: "var(--ds-space-300, 24px)",
|
|
34
34
|
textAlign: 'right',
|
|
35
35
|
boxShadow: "'none'"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/editor-plugin-help-dialog",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Help Dialog plugin for @atlaskit/editor-core",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -25,23 +25,25 @@
|
|
|
25
25
|
]
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
|
-
"sideEffects":
|
|
28
|
+
"sideEffects": [
|
|
29
|
+
"*.compiled.css"
|
|
30
|
+
],
|
|
29
31
|
"atlaskit:src": "src/index.ts",
|
|
30
32
|
"af:exports": {
|
|
31
33
|
".": "./src/index.ts"
|
|
32
34
|
},
|
|
33
35
|
"dependencies": {
|
|
34
|
-
"@atlaskit/editor-common": "^
|
|
35
|
-
"@atlaskit/editor-plugin-analytics": "^2.
|
|
36
|
+
"@atlaskit/editor-common": "^101.0.0",
|
|
37
|
+
"@atlaskit/editor-plugin-analytics": "^2.1.0",
|
|
36
38
|
"@atlaskit/editor-plugin-quick-insert": "^2.0.0",
|
|
37
39
|
"@atlaskit/editor-prosemirror": "7.0.0",
|
|
38
|
-
"@atlaskit/editor-shared-styles": "^3.
|
|
39
|
-
"@atlaskit/heading": "^5.
|
|
40
|
-
"@atlaskit/icon": "^24.
|
|
40
|
+
"@atlaskit/editor-shared-styles": "^3.4.0",
|
|
41
|
+
"@atlaskit/heading": "^5.1.0",
|
|
42
|
+
"@atlaskit/icon": "^24.1.0",
|
|
41
43
|
"@atlaskit/modal-dialog": "^13.0.0",
|
|
42
|
-
"@atlaskit/primitives": "^14.
|
|
44
|
+
"@atlaskit/primitives": "^14.1.0",
|
|
43
45
|
"@atlaskit/theme": "^17.0.0",
|
|
44
|
-
"@atlaskit/tokens": "^4.
|
|
46
|
+
"@atlaskit/tokens": "^4.3.0",
|
|
45
47
|
"@babel/runtime": "^7.0.0",
|
|
46
48
|
"@emotion/react": "^11.7.1",
|
|
47
49
|
"react-intl-next": "npm:react-intl@^5.18.1",
|