@atlaskit/link-create 4.3.5 → 4.4.1
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 +19 -0
- package/dist/cjs/common/constants.js +1 -1
- package/dist/cjs/common/ui/confirm-dismiss-dialog/main.js +4 -1
- package/dist/cjs/common/ui/error-boundary-modal/index.js +4 -1
- package/dist/cjs/common/ui/icon/index.compiled.css +1 -1
- package/dist/cjs/common/ui/icon/index.js +1 -1
- package/dist/cjs/ui/modal-create/main.js +3 -1
- package/dist/es2019/common/constants.js +1 -1
- package/dist/es2019/common/ui/confirm-dismiss-dialog/main.js +4 -1
- package/dist/es2019/common/ui/error-boundary-modal/index.js +5 -2
- package/dist/es2019/common/ui/icon/index.compiled.css +1 -1
- package/dist/es2019/common/ui/icon/index.js +1 -1
- package/dist/es2019/ui/modal-create/main.js +3 -1
- package/dist/esm/common/constants.js +1 -1
- package/dist/esm/common/ui/confirm-dismiss-dialog/main.js +4 -1
- package/dist/esm/common/ui/error-boundary-modal/index.js +5 -2
- package/dist/esm/common/ui/icon/index.compiled.css +1 -1
- package/dist/esm/common/ui/icon/index.js +1 -1
- package/dist/esm/ui/modal-create/main.js +3 -1
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @atlaskit/link-create
|
|
2
2
|
|
|
3
|
+
## 4.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`beaa6ee463aa8`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/beaa6ee463aa8) -
|
|
8
|
+
Internal changes to how border radius is applied.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
|
|
11
|
+
## 4.4.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- [`6ce6f7249075d`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/6ce6f7249075d) -
|
|
16
|
+
[ux] NAVX-1483 using the ADS modal built in hasCloseButton for LP components to adhere to a11y
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
|
|
3
22
|
## 4.3.5
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
|
@@ -16,7 +16,7 @@ var CREATE_FORM_MIN_HEIGHT_IN_PX = exports.CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
16
16
|
var LINK_CREATE_FORM_POST_CREATE_FIELD = exports.LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
17
17
|
var PACKAGE_DATA = exports.PACKAGE_DATA = {
|
|
18
18
|
packageName: "@atlaskit/link-create" || '',
|
|
19
|
-
packageVersion: "
|
|
19
|
+
packageVersion: "0.0.0-development" || '',
|
|
20
20
|
component: COMPONENT_NAME,
|
|
21
21
|
componentName: COMPONENT_NAME
|
|
22
22
|
};
|
|
@@ -9,6 +9,7 @@ var _react = _interopRequireDefault(require("react"));
|
|
|
9
9
|
var _reactIntlNext = require("react-intl-next");
|
|
10
10
|
var _analyticsNext = require("@atlaskit/analytics-next");
|
|
11
11
|
var _modalDialog = require("@atlaskit/modal-dialog");
|
|
12
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
12
13
|
var _Button = require("../Button");
|
|
13
14
|
var _ModalDialog = require("../ModalDialog");
|
|
14
15
|
var _messages = _interopRequireDefault(require("./messages"));
|
|
@@ -36,7 +37,9 @@ var ConfirmDismissDialog = exports.ConfirmDismissDialog = function ConfirmDismis
|
|
|
36
37
|
screen: screen,
|
|
37
38
|
onClose: onCancelDismiss,
|
|
38
39
|
width: "small"
|
|
39
|
-
}, /*#__PURE__*/_react.default.createElement(_modalDialog.ModalHeader,
|
|
40
|
+
}, /*#__PURE__*/_react.default.createElement(_modalDialog.ModalHeader, {
|
|
41
|
+
hasCloseButton: (0, _platformFeatureFlags.fg)('navx-1483-a11y-close-button-in-modal-updates')
|
|
42
|
+
}, /*#__PURE__*/_react.default.createElement(_modalDialog.ModalTitle, null, intl.formatMessage(_messages.default.title))), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalBody, null, intl.formatMessage(_messages.default.description)), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalFooter, null, /*#__PURE__*/_react.default.createElement(_Button.Button, {
|
|
40
43
|
actionSubjectId: "cancel",
|
|
41
44
|
appearance: "subtle",
|
|
42
45
|
onClick: onCancelDismiss
|
|
@@ -8,6 +8,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
8
8
|
exports.ErrorBoundaryModal = void 0;
|
|
9
9
|
var _react = _interopRequireDefault(require("react"));
|
|
10
10
|
var _modalDialog = _interopRequireWildcard(require("@atlaskit/modal-dialog"));
|
|
11
|
+
var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
|
|
11
12
|
var _constants = require("../../constants");
|
|
12
13
|
var _errorBoundaryUi = require("../error-boundary-ui");
|
|
13
14
|
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); }
|
|
@@ -24,5 +25,7 @@ var ErrorBoundaryModal = exports.ErrorBoundaryModal = function ErrorBoundaryModa
|
|
|
24
25
|
onClose: onClose,
|
|
25
26
|
shouldScrollInViewport: true,
|
|
26
27
|
width: "".concat(_constants.CREATE_FORM_MAX_WIDTH_IN_PX, "px")
|
|
27
|
-
},
|
|
28
|
+
}, (0, _platformFeatureFlags.fg)('navx-1483-a11y-close-button-in-modal-updates') && /*#__PURE__*/_react.default.createElement(_modalDialog.ModalHeader, {
|
|
29
|
+
hasCloseButton: true
|
|
30
|
+
}), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalBody, null, /*#__PURE__*/_react.default.createElement(_errorBoundaryUi.ErrorBoundaryUI, null))));
|
|
28
31
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
2
|
+
._2rkofajl{border-radius:var(--ds-radius-small,3px)}._12vemgnk{background-repeat:no-repeat}
|
|
3
3
|
._1bsbpxbi{width:var(--ds-space-200,1pc)}
|
|
4
4
|
._1lrw1f51{background-size:contain}
|
|
5
5
|
._1o9zidpf{flex-shrink:0}
|
|
@@ -19,7 +19,7 @@ var UrlIcon = exports.UrlIcon = function UrlIcon(_ref) {
|
|
|
19
19
|
var url = _ref.url,
|
|
20
20
|
children = _ref.children;
|
|
21
21
|
return /*#__PURE__*/_react.default.createElement("div", {
|
|
22
|
-
className: (0, _runtime.ax)(["
|
|
22
|
+
className: (0, _runtime.ax)(["_2rkofajl _bfhk3yfp _1lrw1f51 _12vemgnk _4t3ipxbi _1bsbpxbi _1o9zidpf"]),
|
|
23
23
|
style: {
|
|
24
24
|
backgroundImage: "url(".concat(url !== null && url !== void 0 ? url : '', ")"),
|
|
25
25
|
"--_1j9jaml": (0, _runtime.ix)("var(--ds-skeleton, ".concat(_colors.N20A, ")"))
|
|
@@ -69,7 +69,9 @@ var LinkCreateWithModal = function LinkCreateWithModal(_ref) {
|
|
|
69
69
|
width: "".concat(_constants.CREATE_FORM_MAX_WIDTH_IN_PX, "px")
|
|
70
70
|
}, /*#__PURE__*/_react.default.createElement(_modalHero.ModalHero, {
|
|
71
71
|
hero: modalHero
|
|
72
|
-
}), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalHeader,
|
|
72
|
+
}), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalHeader, {
|
|
73
|
+
hasCloseButton: (0, _platformFeatureFlags.fg)('navx-1483-a11y-close-button-in-modal-updates')
|
|
74
|
+
}, /*#__PURE__*/_react.default.createElement(_modalDialog.ModalTitle, null, modalTitle || intl.formatMessage(_messages.messages.heading))), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalBody, null, /*#__PURE__*/_react.default.createElement(_compiled.Box, {
|
|
73
75
|
testId: testId
|
|
74
76
|
}, /*#__PURE__*/_react.default.createElement(_errorBoundary.ErrorBoundary, null, /*#__PURE__*/_react.default.createElement(_linkCreateContent.LinkCreateContent, {
|
|
75
77
|
plugins: plugins,
|
|
@@ -10,7 +10,7 @@ export const CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
10
10
|
export const LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
11
11
|
export const PACKAGE_DATA = {
|
|
12
12
|
packageName: "@atlaskit/link-create" || '',
|
|
13
|
-
packageVersion: "
|
|
13
|
+
packageVersion: "0.0.0-development" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { useIntl } from 'react-intl-next';
|
|
3
3
|
import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
4
4
|
import { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
|
|
5
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
6
|
import { Button } from '../Button';
|
|
6
7
|
import { Modal } from '../ModalDialog';
|
|
7
8
|
import messages from './messages';
|
|
@@ -28,7 +29,9 @@ export const ConfirmDismissDialog = ({
|
|
|
28
29
|
screen: screen,
|
|
29
30
|
onClose: onCancelDismiss,
|
|
30
31
|
width: "small"
|
|
31
|
-
}, /*#__PURE__*/React.createElement(ModalHeader,
|
|
32
|
+
}, /*#__PURE__*/React.createElement(ModalHeader, {
|
|
33
|
+
hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
|
|
34
|
+
}, /*#__PURE__*/React.createElement(ModalTitle, null, intl.formatMessage(messages.title))), /*#__PURE__*/React.createElement(ModalBody, null, intl.formatMessage(messages.description)), /*#__PURE__*/React.createElement(ModalFooter, null, /*#__PURE__*/React.createElement(Button, {
|
|
32
35
|
actionSubjectId: "cancel",
|
|
33
36
|
appearance: "subtle",
|
|
34
37
|
onClick: onCancelDismiss
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import Modal, { ModalBody, ModalTransition } from '@atlaskit/modal-dialog';
|
|
2
|
+
import Modal, { ModalBody, ModalHeader, ModalTransition } from '@atlaskit/modal-dialog';
|
|
3
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
3
4
|
import { CREATE_FORM_MAX_WIDTH_IN_PX } from '../../constants';
|
|
4
5
|
import { ErrorBoundaryUI } from '../error-boundary-ui';
|
|
5
6
|
|
|
@@ -17,5 +18,7 @@ export const ErrorBoundaryModal = ({
|
|
|
17
18
|
onClose: onClose,
|
|
18
19
|
shouldScrollInViewport: true,
|
|
19
20
|
width: `${CREATE_FORM_MAX_WIDTH_IN_PX}px`
|
|
20
|
-
},
|
|
21
|
+
}, fg('navx-1483-a11y-close-button-in-modal-updates') && /*#__PURE__*/React.createElement(ModalHeader, {
|
|
22
|
+
hasCloseButton: true
|
|
23
|
+
}), /*#__PURE__*/React.createElement(ModalBody, null, /*#__PURE__*/React.createElement(ErrorBoundaryUI, null))));
|
|
21
24
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
2
|
+
._2rkofajl{border-radius:var(--ds-radius-small,3px)}._12vemgnk{background-repeat:no-repeat}
|
|
3
3
|
._1bsbpxbi{width:var(--ds-space-200,1pc)}
|
|
4
4
|
._1lrw1f51{background-size:contain}
|
|
5
5
|
._1o9zidpf{flex-shrink:0}
|
|
@@ -16,7 +16,7 @@ export const UrlIcon = ({
|
|
|
16
16
|
style: {
|
|
17
17
|
backgroundImage: `url(${url !== null && url !== void 0 ? url : ''})`
|
|
18
18
|
},
|
|
19
|
-
className: ax(["
|
|
19
|
+
className: ax(["_2rkofajl _bfhklbf8 _1lrw1f51 _12vemgnk _4t3ipxbi _1bsbpxbi _1o9zidpf"])
|
|
20
20
|
}, children);
|
|
21
21
|
};
|
|
22
22
|
export const PageIcon = () => {
|
|
@@ -59,7 +59,9 @@ const LinkCreateWithModal = ({
|
|
|
59
59
|
width: `${CREATE_FORM_MAX_WIDTH_IN_PX}px`
|
|
60
60
|
}, /*#__PURE__*/React.createElement(ModalHero, {
|
|
61
61
|
hero: modalHero
|
|
62
|
-
}), /*#__PURE__*/React.createElement(ModalHeader,
|
|
62
|
+
}), /*#__PURE__*/React.createElement(ModalHeader, {
|
|
63
|
+
hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
|
|
64
|
+
}, /*#__PURE__*/React.createElement(ModalTitle, null, modalTitle || intl.formatMessage(messages.heading))), /*#__PURE__*/React.createElement(ModalBody, null, /*#__PURE__*/React.createElement(Box, {
|
|
63
65
|
testId: testId
|
|
64
66
|
}, /*#__PURE__*/React.createElement(ErrorBoundary, null, /*#__PURE__*/React.createElement(LinkCreateContent, {
|
|
65
67
|
plugins: plugins,
|
|
@@ -10,7 +10,7 @@ export var CREATE_FORM_MIN_HEIGHT_IN_PX = '200';
|
|
|
10
10
|
export var LINK_CREATE_FORM_POST_CREATE_FIELD = '__post_create__';
|
|
11
11
|
export var PACKAGE_DATA = {
|
|
12
12
|
packageName: "@atlaskit/link-create" || '',
|
|
13
|
-
packageVersion: "
|
|
13
|
+
packageVersion: "0.0.0-development" || '',
|
|
14
14
|
component: COMPONENT_NAME,
|
|
15
15
|
componentName: COMPONENT_NAME
|
|
16
16
|
};
|
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { useIntl } from 'react-intl-next';
|
|
3
3
|
import { AnalyticsContext } from '@atlaskit/analytics-next';
|
|
4
4
|
import { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
|
|
5
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
5
6
|
import { Button } from '../Button';
|
|
6
7
|
import { Modal } from '../ModalDialog';
|
|
7
8
|
import messages from './messages';
|
|
@@ -29,7 +30,9 @@ export var ConfirmDismissDialog = function ConfirmDismissDialog(_ref) {
|
|
|
29
30
|
screen: screen,
|
|
30
31
|
onClose: onCancelDismiss,
|
|
31
32
|
width: "small"
|
|
32
|
-
}, /*#__PURE__*/React.createElement(ModalHeader,
|
|
33
|
+
}, /*#__PURE__*/React.createElement(ModalHeader, {
|
|
34
|
+
hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
|
|
35
|
+
}, /*#__PURE__*/React.createElement(ModalTitle, null, intl.formatMessage(messages.title))), /*#__PURE__*/React.createElement(ModalBody, null, intl.formatMessage(messages.description)), /*#__PURE__*/React.createElement(ModalFooter, null, /*#__PURE__*/React.createElement(Button, {
|
|
33
36
|
actionSubjectId: "cancel",
|
|
34
37
|
appearance: "subtle",
|
|
35
38
|
onClick: onCancelDismiss
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import Modal, { ModalBody, ModalTransition } from '@atlaskit/modal-dialog';
|
|
2
|
+
import Modal, { ModalBody, ModalHeader, ModalTransition } from '@atlaskit/modal-dialog';
|
|
3
|
+
import { fg } from '@atlaskit/platform-feature-flags';
|
|
3
4
|
import { CREATE_FORM_MAX_WIDTH_IN_PX } from '../../constants';
|
|
4
5
|
import { ErrorBoundaryUI } from '../error-boundary-ui';
|
|
5
6
|
|
|
@@ -16,5 +17,7 @@ export var ErrorBoundaryModal = function ErrorBoundaryModal(_ref) {
|
|
|
16
17
|
onClose: onClose,
|
|
17
18
|
shouldScrollInViewport: true,
|
|
18
19
|
width: "".concat(CREATE_FORM_MAX_WIDTH_IN_PX, "px")
|
|
19
|
-
},
|
|
20
|
+
}, fg('navx-1483-a11y-close-button-in-modal-updates') && /*#__PURE__*/React.createElement(ModalHeader, {
|
|
21
|
+
hasCloseButton: true
|
|
22
|
+
}), /*#__PURE__*/React.createElement(ModalBody, null, /*#__PURE__*/React.createElement(ErrorBoundaryUI, null))));
|
|
20
23
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
.
|
|
2
|
+
._2rkofajl{border-radius:var(--ds-radius-small,3px)}._12vemgnk{background-repeat:no-repeat}
|
|
3
3
|
._1bsbpxbi{width:var(--ds-space-200,1pc)}
|
|
4
4
|
._1lrw1f51{background-size:contain}
|
|
5
5
|
._1o9zidpf{flex-shrink:0}
|
|
@@ -12,7 +12,7 @@ export var UrlIcon = function UrlIcon(_ref) {
|
|
|
12
12
|
var url = _ref.url,
|
|
13
13
|
children = _ref.children;
|
|
14
14
|
return /*#__PURE__*/React.createElement("div", {
|
|
15
|
-
className: ax(["
|
|
15
|
+
className: ax(["_2rkofajl _bfhk3yfp _1lrw1f51 _12vemgnk _4t3ipxbi _1bsbpxbi _1o9zidpf"]),
|
|
16
16
|
style: {
|
|
17
17
|
backgroundImage: "url(".concat(url !== null && url !== void 0 ? url : '', ")"),
|
|
18
18
|
"--_1j9jaml": ix("var(--ds-skeleton, ".concat(N20A, ")"))
|
|
@@ -60,7 +60,9 @@ var LinkCreateWithModal = function LinkCreateWithModal(_ref) {
|
|
|
60
60
|
width: "".concat(CREATE_FORM_MAX_WIDTH_IN_PX, "px")
|
|
61
61
|
}, /*#__PURE__*/React.createElement(ModalHero, {
|
|
62
62
|
hero: modalHero
|
|
63
|
-
}), /*#__PURE__*/React.createElement(ModalHeader,
|
|
63
|
+
}), /*#__PURE__*/React.createElement(ModalHeader, {
|
|
64
|
+
hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
|
|
65
|
+
}, /*#__PURE__*/React.createElement(ModalTitle, null, modalTitle || intl.formatMessage(messages.heading))), /*#__PURE__*/React.createElement(ModalBody, null, /*#__PURE__*/React.createElement(Box, {
|
|
64
66
|
testId: testId
|
|
65
67
|
}, /*#__PURE__*/React.createElement(ErrorBoundary, null, /*#__PURE__*/React.createElement(LinkCreateContent, {
|
|
66
68
|
plugins: plugins,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/link-create",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.1",
|
|
4
4
|
"description": "The driver component of meta creation flow",
|
|
5
5
|
"author": "Atlassian Pty Ltd",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
39
39
|
"@atlaskit/atlassian-context": "^0.5.0",
|
|
40
40
|
"@atlaskit/button": "^23.4.0",
|
|
41
|
-
"@atlaskit/css": "^0.
|
|
41
|
+
"@atlaskit/css": "^0.13.0",
|
|
42
42
|
"@atlaskit/empty-state": "^10.1.0",
|
|
43
|
-
"@atlaskit/form": "^12.
|
|
43
|
+
"@atlaskit/form": "^12.4.0",
|
|
44
44
|
"@atlaskit/icon": "^28.1.0",
|
|
45
45
|
"@atlaskit/icon-file-type": "^7.0.0",
|
|
46
46
|
"@atlaskit/icon-object": "^7.2.0",
|
|
@@ -50,13 +50,13 @@
|
|
|
50
50
|
"@atlaskit/linking-common": "^9.5.0",
|
|
51
51
|
"@atlaskit/modal-dialog": "^14.3.0",
|
|
52
52
|
"@atlaskit/platform-feature-flags": "^1.1.0",
|
|
53
|
-
"@atlaskit/primitives": "^14.
|
|
53
|
+
"@atlaskit/primitives": "^14.13.0",
|
|
54
54
|
"@atlaskit/select": "^21.2.0",
|
|
55
55
|
"@atlaskit/smart-user-picker": "^8.2.0",
|
|
56
56
|
"@atlaskit/spinner": "^19.0.0",
|
|
57
57
|
"@atlaskit/textfield": "^8.0.0",
|
|
58
58
|
"@atlaskit/theme": "^20.0.0",
|
|
59
|
-
"@atlaskit/tokens": "^6.
|
|
59
|
+
"@atlaskit/tokens": "^6.2.0",
|
|
60
60
|
"@babel/runtime": "^7.0.0",
|
|
61
61
|
"@compiled/react": "^0.18.3",
|
|
62
62
|
"debounce-promise": "^3.1.2",
|
|
@@ -131,6 +131,9 @@
|
|
|
131
131
|
},
|
|
132
132
|
"layering-tree-graph": {
|
|
133
133
|
"type": "boolean"
|
|
134
|
+
},
|
|
135
|
+
"navx-1483-a11y-close-button-in-modal-updates": {
|
|
136
|
+
"type": "boolean"
|
|
134
137
|
}
|
|
135
138
|
},
|
|
136
139
|
"compassUnitTestMetricSourceId": "ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:metric-source/c5751cc6-3513-4070-9deb-af31e86aed34/5ebc0bfb-9b6d-4ec0-adbe-e4d5e88ace44"
|