@atlaskit/navigation-system 9.4.2 → 9.4.3
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 +10 -0
- package/constellation/layout/code.mdx +2 -1
- package/constellation/layout/usage.mdx +7 -7
- package/dist/cjs/components/skip-links/skip-link.js +0 -1
- package/dist/cjs/ui/page-layout/root.compiled.css +1 -0
- package/dist/cjs/ui/page-layout/root.js +8 -3
- package/dist/cjs/ui/top-nav-items/nav-logo/custom-logo.js +0 -1
- package/dist/es2019/components/skip-links/skip-link.js +0 -1
- package/dist/es2019/ui/page-layout/root.compiled.css +1 -0
- package/dist/es2019/ui/page-layout/root.js +8 -3
- package/dist/es2019/ui/top-nav-items/nav-logo/custom-logo.js +0 -1
- package/dist/esm/components/skip-links/skip-link.js +0 -1
- package/dist/esm/ui/page-layout/root.compiled.css +1 -0
- package/dist/esm/ui/page-layout/root.js +8 -3
- package/dist/esm/ui/top-nav-items/nav-logo/custom-logo.js +0 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @atlassian/navigation-system
|
|
2
2
|
|
|
3
|
+
## 9.4.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`f9eceea16e433`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f9eceea16e433) -
|
|
8
|
+
Fix `Root` safety-rail selector hiding native top-layer elements (`<dialog>` and elements with the
|
|
9
|
+
`popover` attribute) rendered as direct children of `Root`. These elements are now excluded from
|
|
10
|
+
the `display: none !important` rule so the browser can promote them into the top layer when
|
|
11
|
+
opened. Adds VR coverage for both cases.
|
|
12
|
+
|
|
3
13
|
## 9.4.2
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -104,7 +104,8 @@ The sticky header of the main layout area.
|
|
|
104
104
|
|
|
105
105
|
### Panel
|
|
106
106
|
|
|
107
|
-
The Panel layout area is rendered to the right (inline end) of the Main area. On small viewports,
|
|
107
|
+
The Panel layout area is rendered to the right (inline end) of the Main area. On small viewports,
|
|
108
|
+
the Panel slot will become an overlay.
|
|
108
109
|
|
|
109
110
|
<TSMorphProps exportName="Panel" packageName="@atlaskit/navigation-system" />
|
|
110
111
|
|
|
@@ -81,9 +81,10 @@ When applying components to the navigational areas,
|
|
|
81
81
|
|
|
82
82
|
The main difference between panel and modal dialog is their behaviors:
|
|
83
83
|
|
|
84
|
-
- **Panel** presents content alongside the **main** area, while a **modal dialog**
|
|
85
|
-
|
|
86
|
-
- **Panel** can be collapsed and resized. On small viewports (1024px and below), the **panel**
|
|
84
|
+
- **Panel** presents content alongside the **main** area, while a **modal dialog** appears in a
|
|
85
|
+
layer above the page.
|
|
86
|
+
- **Panel** can be collapsed and resized. On small viewports (1024px and below), the **panel**
|
|
87
|
+
becomes an overlay.
|
|
87
88
|
|
|
88
89
|
#### Usage guidance
|
|
89
90
|
|
|
@@ -96,10 +97,9 @@ The main difference between panel and modal dialog is their behaviors:
|
|
|
96
97
|
## Accessibility
|
|
97
98
|
|
|
98
99
|
- Always place slots in this order as direct children of the root: banner, top nav, side nav, main,
|
|
99
|
-
panel. This determines the keyboard tab order, screen reader reading order, and skip link
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
exposed as the landmark's accessible name. Don't repeat the landmark's role in the label.
|
|
100
|
+
panel. This determines the keyboard tab order, screen reader reading order, and skip link order.
|
|
101
|
+
- Provide a unique, meaningful `label` for side nav, panel, and top nav end. The label is exposed as
|
|
102
|
+
the landmark's accessible name. Don't repeat the landmark's role in the label.
|
|
103
103
|
- Slots provide landmark roles automatically. Don't add or duplicate landmark roles inside them.
|
|
104
104
|
- Use custom skip links sparingly. Too many skip links makes the skip links menu noisy. Consider the
|
|
105
105
|
utility of each one before adding it.
|
|
@@ -13,7 +13,6 @@ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
|
13
13
|
var _compiled = require("@atlaskit/primitives/compiled");
|
|
14
14
|
var _focusElement = require("./focus-element");
|
|
15
15
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
16
|
-
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
17
16
|
var styles = {
|
|
18
17
|
skipLinkListItem: "_1pfhze3t",
|
|
19
18
|
skipLinkListItemNew: "_1rjcu2gc"
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
._1e0c11p5{display:grid}
|
|
3
3
|
._1lmcq9em{grid-template-areas:"banner" "top-bar" "main" "aside"}
|
|
4
4
|
._1tke1kxc{min-height:100vh}
|
|
5
|
+
._1tvnagmp >:not([data-layout-slot]):not(dialog):not([popover]){display:none!important}
|
|
5
6
|
._2z0516ab{grid-template-rows:auto auto 1fr auto}
|
|
6
7
|
._yv0ei47z{grid-template-columns:minmax(0,1fr)}
|
|
7
8
|
@media (min-width:64rem){._12fk1aio{grid-template-areas:"banner banner banner banner" "ribbon top-bar top-bar top-bar" "ribbon side-nav main aside"}._12qzrxre{grid-template-rows:auto auto 3fr}._1rqteala{grid-template-columns:auto auto minmax(0,1fr) auto}}
|
|
@@ -23,7 +23,9 @@ function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r
|
|
|
23
23
|
// ID of the root element that the banner and top bar slots hoist their sizes to. Only internally exported.
|
|
24
24
|
var gridRootId = exports.gridRootId = 'unsafe-design-system-page-layout-root';
|
|
25
25
|
var styles = {
|
|
26
|
-
root: "_1e0c11p5 _1tke1kxc _1lmcq9em _yv0ei47z _2z0516ab
|
|
26
|
+
root: "_1e0c11p5 _1tke1kxc _1lmcq9em _yv0ei47z _2z0516ab _12fk1aio _12qzrxre _1rqteala _xkmgks3h _jbc7rxre _tyve1nco",
|
|
27
|
+
safetyRail: "_1ciragmp",
|
|
28
|
+
safetyRailWithTopLayer: "_1tvnagmp"
|
|
27
29
|
};
|
|
28
30
|
|
|
29
31
|
/**
|
|
@@ -47,9 +49,12 @@ function Root(_ref) {
|
|
|
47
49
|
(0, _react.useEffect)(function () {
|
|
48
50
|
if (process.env.NODE_ENV !== 'production') {
|
|
49
51
|
var IGNORED_ELEMENTS = ['SCRIPT', 'STYLE'];
|
|
52
|
+
var topLayerGateOn = (0, _platformFeatureFlags.fg)('platform-dst-top-layer');
|
|
50
53
|
if (ref.current) {
|
|
51
54
|
Array.from(ref.current.children).forEach(function (child) {
|
|
52
|
-
|
|
55
|
+
// Top-layer elements are allowed as direct children when the gate is on.
|
|
56
|
+
var isTopLayerElement = topLayerGateOn && (child.tagName.toLowerCase() === 'dialog' || child.hasAttribute('popover'));
|
|
57
|
+
if (!IGNORED_ELEMENTS.includes(child.tagName) && !child.hasAttribute('data-layout-slot') && !isTopLayerElement) {
|
|
53
58
|
// eslint-disable-next-line no-console
|
|
54
59
|
console.error("Page Layout Error\n\nThis element has been forcibly hidden:\n\n", child, "\n\nAn element was rendered as a child of the page layout root that isn't a page layout component! Resolve this error by moving it into a page layout component.\n\nThis message will not be displayed in production.\n");
|
|
55
60
|
}
|
|
@@ -69,7 +74,7 @@ function Root(_ref) {
|
|
|
69
74
|
testId: testId
|
|
70
75
|
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
71
76
|
ref: ref,
|
|
72
|
-
className: (0, _runtime.ax)([styles.root, xcss]),
|
|
77
|
+
className: (0, _runtime.ax)([styles.root, (0, _platformFeatureFlags.fg)('platform-dst-top-layer') ? styles.safetyRailWithTopLayer : styles.safetyRail, xcss]),
|
|
73
78
|
id: gridRootId,
|
|
74
79
|
"data-testid": testId
|
|
75
80
|
}, children)))))))));
|
|
@@ -16,7 +16,6 @@ var _useIsFhsEnabled = require("../../fhs-rollout/use-is-fhs-enabled");
|
|
|
16
16
|
var _hasCustomThemeContext = require("../themed/has-custom-theme-context");
|
|
17
17
|
var _logoRenderer = require("./logo-renderer");
|
|
18
18
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
19
|
-
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
20
19
|
var anchorStyles = {
|
|
21
20
|
root: "_2rkofajl _1e0c1txw _4cvr1h6o _4t3izwfg",
|
|
22
21
|
customLogoBorderRadius: "_2rkofajl",
|
|
@@ -3,7 +3,6 @@ import "./skip-link.compiled.css";
|
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import React, { useCallback } from 'react';
|
|
5
5
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
|
-
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
7
6
|
import { Anchor } from '@atlaskit/primitives/compiled';
|
|
8
7
|
import { focusElement } from './focus-element';
|
|
9
8
|
const styles = {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
._1e0c11p5{display:grid}
|
|
3
3
|
._1lmcq9em{grid-template-areas:"banner" "top-bar" "main" "aside"}
|
|
4
4
|
._1tke1kxc{min-height:100vh}
|
|
5
|
+
._1tvnagmp >:not([data-layout-slot]):not(dialog):not([popover]){display:none!important}
|
|
5
6
|
._2z0516ab{grid-template-rows:auto auto 1fr auto}
|
|
6
7
|
._yv0ei47z{grid-template-columns:minmax(0,1fr)}
|
|
7
8
|
@media (min-width:64rem){._12fk1aio{grid-template-areas:"banner banner banner banner" "ribbon top-bar top-bar top-bar" "ribbon side-nav main aside"}._12qzrxre{grid-template-rows:auto auto 3fr}._1rqteala{grid-template-columns:auto auto minmax(0,1fr) auto}}
|
|
@@ -15,7 +15,9 @@ import { SideNavVisibilityProvider } from './side-nav/visibility-provider';
|
|
|
15
15
|
// ID of the root element that the banner and top bar slots hoist their sizes to. Only internally exported.
|
|
16
16
|
export const gridRootId = 'unsafe-design-system-page-layout-root';
|
|
17
17
|
const styles = {
|
|
18
|
-
root: "_1e0c11p5 _1tke1kxc _1lmcq9em _yv0ei47z _2z0516ab
|
|
18
|
+
root: "_1e0c11p5 _1tke1kxc _1lmcq9em _yv0ei47z _2z0516ab _12fk1aio _12qzrxre _1rqteala _xkmgks3h _jbc7rxre _tyve1nco",
|
|
19
|
+
safetyRail: "_1ciragmp",
|
|
20
|
+
safetyRailWithTopLayer: "_1tvnagmp"
|
|
19
21
|
};
|
|
20
22
|
|
|
21
23
|
/**
|
|
@@ -36,9 +38,12 @@ export function Root({
|
|
|
36
38
|
useEffect(() => {
|
|
37
39
|
if (process.env.NODE_ENV !== 'production') {
|
|
38
40
|
const IGNORED_ELEMENTS = ['SCRIPT', 'STYLE'];
|
|
41
|
+
const topLayerGateOn = fg('platform-dst-top-layer');
|
|
39
42
|
if (ref.current) {
|
|
40
43
|
Array.from(ref.current.children).forEach(child => {
|
|
41
|
-
|
|
44
|
+
// Top-layer elements are allowed as direct children when the gate is on.
|
|
45
|
+
const isTopLayerElement = topLayerGateOn && (child.tagName.toLowerCase() === 'dialog' || child.hasAttribute('popover'));
|
|
46
|
+
if (!IGNORED_ELEMENTS.includes(child.tagName) && !child.hasAttribute('data-layout-slot') && !isTopLayerElement) {
|
|
42
47
|
// eslint-disable-next-line no-console
|
|
43
48
|
console.error(`Page Layout Error
|
|
44
49
|
|
|
@@ -67,7 +72,7 @@ This message will not be displayed in production.
|
|
|
67
72
|
testId: testId
|
|
68
73
|
}, /*#__PURE__*/React.createElement("div", {
|
|
69
74
|
ref: ref,
|
|
70
|
-
className: ax([styles.root, xcss]),
|
|
75
|
+
className: ax([styles.root, fg('platform-dst-top-layer') ? styles.safetyRailWithTopLayer : styles.safetyRail, xcss]),
|
|
71
76
|
id: gridRootId,
|
|
72
77
|
"data-testid": testId
|
|
73
78
|
}, children)))))))));
|
|
@@ -4,7 +4,6 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
4
4
|
import React, { useEffect, useRef } from 'react';
|
|
5
5
|
import { cx } from '@compiled/react';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
|
-
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
8
7
|
import { Anchor } from '@atlaskit/primitives/compiled';
|
|
9
8
|
import { useIsFhsEnabled } from '../../fhs-rollout/use-is-fhs-enabled';
|
|
10
9
|
import { useHasCustomTheme } from '../themed/has-custom-theme-context';
|
|
@@ -3,7 +3,6 @@ import "./skip-link.compiled.css";
|
|
|
3
3
|
import { ax, ix } from "@compiled/react/runtime";
|
|
4
4
|
import React, { useCallback } from 'react';
|
|
5
5
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
6
|
-
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
7
6
|
import { Anchor } from '@atlaskit/primitives/compiled';
|
|
8
7
|
import { focusElement } from './focus-element';
|
|
9
8
|
var styles = {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
._1e0c11p5{display:grid}
|
|
3
3
|
._1lmcq9em{grid-template-areas:"banner" "top-bar" "main" "aside"}
|
|
4
4
|
._1tke1kxc{min-height:100vh}
|
|
5
|
+
._1tvnagmp >:not([data-layout-slot]):not(dialog):not([popover]){display:none!important}
|
|
5
6
|
._2z0516ab{grid-template-rows:auto auto 1fr auto}
|
|
6
7
|
._yv0ei47z{grid-template-columns:minmax(0,1fr)}
|
|
7
8
|
@media (min-width:64rem){._12fk1aio{grid-template-areas:"banner banner banner banner" "ribbon top-bar top-bar top-bar" "ribbon side-nav main aside"}._12qzrxre{grid-template-rows:auto auto 3fr}._1rqteala{grid-template-columns:auto auto minmax(0,1fr) auto}}
|
|
@@ -15,7 +15,9 @@ import { SideNavVisibilityProvider } from './side-nav/visibility-provider';
|
|
|
15
15
|
// ID of the root element that the banner and top bar slots hoist their sizes to. Only internally exported.
|
|
16
16
|
export var gridRootId = 'unsafe-design-system-page-layout-root';
|
|
17
17
|
var styles = {
|
|
18
|
-
root: "_1e0c11p5 _1tke1kxc _1lmcq9em _yv0ei47z _2z0516ab
|
|
18
|
+
root: "_1e0c11p5 _1tke1kxc _1lmcq9em _yv0ei47z _2z0516ab _12fk1aio _12qzrxre _1rqteala _xkmgks3h _jbc7rxre _tyve1nco",
|
|
19
|
+
safetyRail: "_1ciragmp",
|
|
20
|
+
safetyRailWithTopLayer: "_1tvnagmp"
|
|
19
21
|
};
|
|
20
22
|
|
|
21
23
|
/**
|
|
@@ -39,9 +41,12 @@ export function Root(_ref) {
|
|
|
39
41
|
useEffect(function () {
|
|
40
42
|
if (process.env.NODE_ENV !== 'production') {
|
|
41
43
|
var IGNORED_ELEMENTS = ['SCRIPT', 'STYLE'];
|
|
44
|
+
var topLayerGateOn = fg('platform-dst-top-layer');
|
|
42
45
|
if (ref.current) {
|
|
43
46
|
Array.from(ref.current.children).forEach(function (child) {
|
|
44
|
-
|
|
47
|
+
// Top-layer elements are allowed as direct children when the gate is on.
|
|
48
|
+
var isTopLayerElement = topLayerGateOn && (child.tagName.toLowerCase() === 'dialog' || child.hasAttribute('popover'));
|
|
49
|
+
if (!IGNORED_ELEMENTS.includes(child.tagName) && !child.hasAttribute('data-layout-slot') && !isTopLayerElement) {
|
|
45
50
|
// eslint-disable-next-line no-console
|
|
46
51
|
console.error("Page Layout Error\n\nThis element has been forcibly hidden:\n\n", child, "\n\nAn element was rendered as a child of the page layout root that isn't a page layout component! Resolve this error by moving it into a page layout component.\n\nThis message will not be displayed in production.\n");
|
|
47
52
|
}
|
|
@@ -61,7 +66,7 @@ export function Root(_ref) {
|
|
|
61
66
|
testId: testId
|
|
62
67
|
}, /*#__PURE__*/React.createElement("div", {
|
|
63
68
|
ref: ref,
|
|
64
|
-
className: ax([styles.root, xcss]),
|
|
69
|
+
className: ax([styles.root, fg('platform-dst-top-layer') ? styles.safetyRailWithTopLayer : styles.safetyRail, xcss]),
|
|
65
70
|
id: gridRootId,
|
|
66
71
|
"data-testid": testId
|
|
67
72
|
}, children)))))))));
|
|
@@ -4,7 +4,6 @@ import { ax, ix } from "@compiled/react/runtime";
|
|
|
4
4
|
import React, { useEffect, useRef } from 'react';
|
|
5
5
|
import { cx } from '@compiled/react';
|
|
6
6
|
import { fg } from '@atlaskit/platform-feature-flags';
|
|
7
|
-
// eslint-disable-next-line @atlaskit/design-system/no-emotion-primitives -- to be migrated to @atlaskit/primitives/compiled – go/akcss
|
|
8
7
|
import { Anchor } from '@atlaskit/primitives/compiled';
|
|
9
8
|
import { useIsFhsEnabled } from '../../fhs-rollout/use-is-fhs-enabled';
|
|
10
9
|
import { useHasCustomTheme } from '../themed/has-custom-theme-context';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/navigation-system",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.3",
|
|
4
4
|
"description": "The latest navigation system for Atlassian apps.",
|
|
5
5
|
"repository": "https://bitbucket.org/atlassian/atlassian-frontend-mirror",
|
|
6
6
|
"author": "Atlassian Pty Ltd",
|
|
@@ -61,23 +61,23 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@atlaskit/analytics-next": "^11.
|
|
64
|
+
"@atlaskit/analytics-next": "^11.3.0",
|
|
65
65
|
"@atlaskit/app-provider": "^4.3.0",
|
|
66
66
|
"@atlaskit/avatar": "^25.15.0",
|
|
67
67
|
"@atlaskit/button": "^23.11.0",
|
|
68
68
|
"@atlaskit/css": "^0.19.0",
|
|
69
69
|
"@atlaskit/ds-lib": "^7.0.0",
|
|
70
|
-
"@atlaskit/icon": "^35.
|
|
71
|
-
"@atlaskit/layering": "^3.
|
|
72
|
-
"@atlaskit/logo": "^20.
|
|
70
|
+
"@atlaskit/icon": "^35.4.0",
|
|
71
|
+
"@atlaskit/layering": "^3.8.0",
|
|
72
|
+
"@atlaskit/logo": "^20.2.0",
|
|
73
73
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
74
74
|
"@atlaskit/platform-feature-flags-react": "^0.5.0",
|
|
75
|
-
"@atlaskit/popup": "^4.
|
|
75
|
+
"@atlaskit/popup": "^4.24.0",
|
|
76
76
|
"@atlaskit/pragmatic-drag-and-drop": "^1.8.0",
|
|
77
77
|
"@atlaskit/primitives": "^19.0.0",
|
|
78
|
-
"@atlaskit/side-nav-items": "^1.
|
|
79
|
-
"@atlaskit/tokens": "^13.
|
|
80
|
-
"@atlaskit/tooltip": "^22.
|
|
78
|
+
"@atlaskit/side-nav-items": "^1.14.0",
|
|
79
|
+
"@atlaskit/tokens": "^13.3.0",
|
|
80
|
+
"@atlaskit/tooltip": "^22.6.0",
|
|
81
81
|
"@atlaskit/visually-hidden": "^3.1.0",
|
|
82
82
|
"@babel/runtime": "^7.0.0",
|
|
83
83
|
"@compiled/react": "^0.20.0",
|
|
@@ -93,18 +93,18 @@
|
|
|
93
93
|
"@af/accessibility-testing": "workspace:^",
|
|
94
94
|
"@af/integration-testing": "workspace:^",
|
|
95
95
|
"@af/visual-regression": "workspace:^",
|
|
96
|
-
"@atlaskit/badge": "^18.
|
|
96
|
+
"@atlaskit/badge": "^18.7.0",
|
|
97
97
|
"@atlaskit/banner": "^14.1.0",
|
|
98
98
|
"@atlaskit/breadcrumbs": "^16.1.0",
|
|
99
|
-
"@atlaskit/dropdown-menu": "^16.
|
|
100
|
-
"@atlaskit/flag": "^17.
|
|
99
|
+
"@atlaskit/dropdown-menu": "^16.10.0",
|
|
100
|
+
"@atlaskit/flag": "^17.13.0",
|
|
101
101
|
"@atlaskit/form": "^15.5.0",
|
|
102
102
|
"@atlaskit/heading": "^5.4.0",
|
|
103
103
|
"@atlaskit/inline-dialog": "^18.1.0",
|
|
104
104
|
"@atlaskit/link": "^3.4.0",
|
|
105
105
|
"@atlaskit/lozenge": "^13.8.0",
|
|
106
106
|
"@atlaskit/menu": "^8.5.0",
|
|
107
|
-
"@atlaskit/modal-dialog": "^15.
|
|
107
|
+
"@atlaskit/modal-dialog": "^15.2.0",
|
|
108
108
|
"@atlaskit/onboarding": "^14.6.0",
|
|
109
109
|
"@atlaskit/page-header": "^12.2.0",
|
|
110
110
|
"@atlaskit/page-layout": "^4.3.0",
|
|
@@ -112,11 +112,11 @@
|
|
|
112
112
|
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": "^2.1.0",
|
|
113
113
|
"@atlaskit/select": "^21.12.0",
|
|
114
114
|
"@atlaskit/skeleton": "^2.1.0",
|
|
115
|
-
"@atlaskit/spotlight": "^0.
|
|
115
|
+
"@atlaskit/spotlight": "^0.15.0",
|
|
116
116
|
"@atlaskit/textfield": "^8.3.0",
|
|
117
|
-
"@atlaskit/top-layer": "^0.
|
|
117
|
+
"@atlaskit/top-layer": "^0.16.0",
|
|
118
118
|
"@atlassian/feature-flags-test-utils": "^1.1.0",
|
|
119
|
-
"@atlassian/gemini": "^1.
|
|
119
|
+
"@atlassian/gemini": "^1.46.0",
|
|
120
120
|
"@atlassian/react-compiler-gating": "workspace:^",
|
|
121
121
|
"@atlassian/search-dialog": "^10.3.0",
|
|
122
122
|
"@atlassian/ssr-tests": "workspace:^",
|