@atlaskit/editor-plugin-help-dialog 1.2.7 → 1.2.8

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,15 @@
1
1
  # @atlaskit/editor-plugin-help-dialog
2
2
 
3
+ ## 1.2.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#111297](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/111297)
8
+ [`5f51c15a6d33f`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/5f51c15a6d33f) -
9
+ Updates focus style override on the close button in the help modal, to work with the latest change
10
+ to `@atlaskit/button` focus style.
11
+ - Updated dependencies
12
+
3
13
  ## 1.2.7
4
14
 
5
15
  ### Patch Changes
@@ -161,7 +161,8 @@ var componentFromKeymapWrapperStyles = exports.componentFromKeymapWrapperStyles
161
161
 
162
162
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/design-system/no-exported-css -- Ignored via go/DSP-18766
163
163
  var toolbarButton = exports.toolbarButton = (0, _react.css)({
164
- '&:focus': {
164
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors
165
+ '&:focus:not(:focus-visible)': {
165
166
  outline: "2px solid ".concat("var(--ds-border-focused, ".concat(_colors.B300, ")")),
166
167
  outlineOffset: "var(--ds-space-025, 2px)"
167
168
  }
@@ -152,7 +152,8 @@ export const componentFromKeymapWrapperStyles = css({
152
152
 
153
153
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/design-system/no-exported-css -- Ignored via go/DSP-18766
154
154
  export const toolbarButton = css({
155
- '&:focus': {
155
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors
156
+ '&:focus:not(:focus-visible)': {
156
157
  outline: `2px solid ${`var(--ds-border-focused, ${B300})`}`,
157
158
  outlineOffset: "var(--ds-space-025, 2px)"
158
159
  }
@@ -152,7 +152,8 @@ export var componentFromKeymapWrapperStyles = css({
152
152
 
153
153
  // eslint-disable-next-line @atlaskit/ui-styling-standard/no-exported-styles, @atlaskit/design-system/no-exported-css -- Ignored via go/DSP-18766
154
154
  export var toolbarButton = css({
155
- '&:focus': {
155
+ // eslint-disable-next-line @atlaskit/ui-styling-standard/no-unsafe-selectors
156
+ '&:focus:not(:focus-visible)': {
156
157
  outline: "2px solid ".concat("var(--ds-border-focused, ".concat(B300, ")")),
157
158
  outlineOffset: "var(--ds-space-025, 2px)"
158
159
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/editor-plugin-help-dialog",
3
- "version": "1.2.7",
3
+ "version": "1.2.8",
4
4
  "description": "Help Dialog plugin for @atlaskit/editor-core",
5
5
  "author": "Atlassian Pty Ltd",
6
6
  "license": "Apache-2.0",
@@ -20,7 +20,10 @@
20
20
  "types": "dist/types/index.d.ts",
21
21
  "typesVersions": {
22
22
  ">=4.5 <4.9": {
23
- "*": ["dist/types-ts4.5/*", "dist/types-ts4.5/index.d.ts"]
23
+ "*": [
24
+ "dist/types-ts4.5/*",
25
+ "dist/types-ts4.5/index.d.ts"
26
+ ]
24
27
  }
25
28
  },
26
29
  "sideEffects": false,
@@ -29,7 +32,7 @@
29
32
  ".": "./src/index.ts"
30
33
  },
31
34
  "dependencies": {
32
- "@atlaskit/editor-common": "^82.6.0",
35
+ "@atlaskit/editor-common": "^82.8.0",
33
36
  "@atlaskit/editor-plugin-analytics": "^1.2.0",
34
37
  "@atlaskit/editor-plugin-quick-insert": "^1.1.0",
35
38
  "@atlaskit/editor-prosemirror": "4.0.1",
@@ -52,17 +55,32 @@
52
55
  },
53
56
  "techstack": {
54
57
  "@atlassian/frontend": {
55
- "import-structure": ["atlassian-conventions"],
56
- "circular-dependencies": ["file-and-folder-level"]
58
+ "import-structure": [
59
+ "atlassian-conventions"
60
+ ],
61
+ "circular-dependencies": [
62
+ "file-and-folder-level"
63
+ ]
57
64
  },
58
65
  "@repo/internal": {
59
66
  "dom-events": "use-bind-event-listener",
60
- "analytics": ["analytics-next"],
61
- "design-tokens": ["color"],
62
- "theming": ["react-context"],
63
- "ui-components": ["lite-mode"],
67
+ "analytics": [
68
+ "analytics-next"
69
+ ],
70
+ "design-tokens": [
71
+ "color"
72
+ ],
73
+ "theming": [
74
+ "react-context"
75
+ ],
76
+ "ui-components": [
77
+ "lite-mode"
78
+ ],
64
79
  "deprecation": "no-deprecated-imports",
65
- "styling": ["emotion", "emotion"]
80
+ "styling": [
81
+ "emotion",
82
+ "emotion"
83
+ ]
66
84
  }
67
85
  },
68
86
  "platform-feature-flags": {