@atlaskit/smart-card 43.1.4 → 43.1.6

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.
Files changed (20) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/cjs/utils/analytics/analytics.js +1 -1
  3. package/dist/cjs/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-container/manual-triggers-form/main.js +1 -2
  4. package/dist/cjs/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-modal/sub-components/header/main.js +1 -2
  5. package/dist/cjs/view/LinkUrl/LinkWarningModal/index.js +1 -2
  6. package/dist/cjs/view/LinkUrl/index.js +1 -1
  7. package/dist/cjs/view/RelatedLinksModal/components/RelatedLinksBaseModal.js +1 -2
  8. package/dist/es2019/utils/analytics/analytics.js +1 -1
  9. package/dist/es2019/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-container/manual-triggers-form/main.js +1 -2
  10. package/dist/es2019/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-modal/sub-components/header/main.js +1 -2
  11. package/dist/es2019/view/LinkUrl/LinkWarningModal/index.js +1 -2
  12. package/dist/es2019/view/LinkUrl/index.js +1 -1
  13. package/dist/es2019/view/RelatedLinksModal/components/RelatedLinksBaseModal.js +1 -2
  14. package/dist/esm/utils/analytics/analytics.js +1 -1
  15. package/dist/esm/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-container/manual-triggers-form/main.js +1 -2
  16. package/dist/esm/view/FlexibleCard/components/actions/automation-action/automation-manual-triggers/manual-triggers-modal/sub-components/header/main.js +1 -2
  17. package/dist/esm/view/LinkUrl/LinkWarningModal/index.js +1 -2
  18. package/dist/esm/view/LinkUrl/index.js +1 -1
  19. package/dist/esm/view/RelatedLinksModal/components/RelatedLinksBaseModal.js +1 -2
  20. package/package.json +7 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @atlaskit/smart-card
2
2
 
3
+ ## 43.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 43.1.5
10
+
11
+ ### Patch Changes
12
+
13
+ - [`4f3b60691a4d6`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/4f3b60691a4d6) -
14
+ NAVX-1976 cleaning up navx-1483-a11y-close-button-in-modal-updates
15
+
3
16
  ## 43.1.4
4
17
 
5
18
  ### Patch Changes
@@ -11,7 +11,7 @@ var ANALYTICS_CHANNEL = exports.ANALYTICS_CHANNEL = 'media';
11
11
  var context = exports.context = {
12
12
  componentName: 'smart-cards',
13
13
  packageName: "@atlaskit/smart-card",
14
- packageVersion: "0.0.0-development"
14
+ packageVersion: "43.1.5"
15
15
  };
16
16
  var TrackQuickActionType = exports.TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
17
17
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -12,7 +12,6 @@ var _reactMagneticDi = require("react-magnetic-di");
12
12
  var _new = _interopRequireDefault(require("@atlaskit/button/new"));
13
13
  var _form = _interopRequireWildcard(require("@atlaskit/form"));
14
14
  var _modalDialog = _interopRequireWildcard(require("@atlaskit/modal-dialog"));
15
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
16
15
  var _messages = _interopRequireDefault(require("../common/messages"));
17
16
  var _types = require("../common/types");
18
17
  var _main = _interopRequireDefault(require("./boolean-prompt/main"));
@@ -122,7 +121,7 @@ var UserInputForm = function UserInputForm(props) {
122
121
  var formProps = _ref4.formProps,
123
122
  submitting = _ref4.submitting;
124
123
  return /*#__PURE__*/_react.default.createElement("form", formProps, /*#__PURE__*/_react.default.createElement(_modalDialog.ModalHeader, {
125
- hasCloseButton: (0, _platformFeatureFlags.fg)('navx-1483-a11y-close-button-in-modal-updates')
124
+ hasCloseButton: true
126
125
  }, /*#__PURE__*/_react.default.createElement(_modalDialog.ModalTitle, null, rule.name)), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalBody, null, _messages.default.inputRequiredForAction.defaultMessage, /*#__PURE__*/_react.default.createElement(_form.FormSection, null, userInputPrompts.map(generateUserInputForm))), /*#__PURE__*/_react.default.createElement(_modalDialog.ModalFooter, null, /*#__PURE__*/_react.default.createElement(_new.default, {
127
126
  appearance: "subtle",
128
127
  onClick: handleClose,
@@ -14,7 +14,6 @@ var _reactIntlNext = require("react-intl-next");
14
14
  var _heading = _interopRequireDefault(require("@atlaskit/heading"));
15
15
  var _manualTriggerIcon = _interopRequireDefault(require("@atlaskit/legacy-custom-icons/manual-trigger-icon"));
16
16
  var _modalDialog = require("@atlaskit/modal-dialog");
17
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
18
17
  var _compiled = require("@atlaskit/primitives/compiled");
19
18
  var _colors = require("@atlaskit/theme/colors");
20
19
  var _menuContext = require("../../menu-context");
@@ -42,7 +41,7 @@ var AutomationModalHeader = exports.AutomationModalHeader = function AutomationM
42
41
  titleId = _useModal.titleId;
43
42
  var showDescription = initialised && rules.length > 0 && !!modalDescription;
44
43
  return /*#__PURE__*/React.createElement(_modalDialog.ModalHeader, {
45
- hasCloseButton: (0, _platformFeatureFlags.fg)('navx-1483-a11y-close-button-in-modal-updates')
44
+ hasCloseButton: true
46
45
  }, /*#__PURE__*/React.createElement(_compiled.Stack, null, /*#__PURE__*/React.createElement(_compiled.Inline, {
47
46
  alignBlock: "center"
48
47
  }, /*#__PURE__*/React.createElement(_compiled.Box, {
@@ -15,7 +15,6 @@ var _reactIntlNext = require("react-intl-next");
15
15
  var _standardButton = _interopRequireDefault(require("@atlaskit/button/standard-button"));
16
16
  var _link = _interopRequireDefault(require("@atlaskit/link"));
17
17
  var _modalDialog = _interopRequireWildcard(require("@atlaskit/modal-dialog"));
18
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
19
18
  var _messages = require("../../../messages");
20
19
  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); }
21
20
  var breakWordsCss = null;
@@ -30,7 +29,7 @@ var WarningModal = function WarningModal(props) {
30
29
  onClose: onClose,
31
30
  testId: "link-with-safety-warning"
32
31
  }, /*#__PURE__*/React.createElement(_modalDialog.ModalHeader, {
33
- hasCloseButton: (0, _platformFeatureFlags.fg)('navx-1483-a11y-close-button-in-modal-updates')
32
+ hasCloseButton: true
34
33
  }, /*#__PURE__*/React.createElement(_modalDialog.ModalTitle, {
35
34
  appearance: "warning"
36
35
  }, /*#__PURE__*/React.createElement(_reactIntlNext.FormattedMessage, _messages.messages.check_this_link))), /*#__PURE__*/React.createElement(_modalDialog.ModalBody, null, /*#__PURE__*/React.createElement("div", {
@@ -22,7 +22,7 @@ var _excluded = ["href", "children", "checkSafety", "onClick", "testId", "isLink
22
22
  _excluded2 = ["isLinkSafe", "showSafetyWarningModal"];
23
23
  var PACKAGE_DATA = {
24
24
  packageName: "@atlaskit/smart-card",
25
- packageVersion: "0.0.0-development",
25
+ packageVersion: "43.1.5",
26
26
  componentName: 'linkUrl'
27
27
  };
28
28
  var Anchor = (0, _click.withLinkClickedEvent)('a');
@@ -13,7 +13,6 @@ var _runtime = require("@compiled/react/runtime");
13
13
  var _reactIntlNext = require("react-intl-next");
14
14
  var _new = _interopRequireDefault(require("@atlaskit/button/new"));
15
15
  var _modalDialog = _interopRequireWildcard(require("@atlaskit/modal-dialog"));
16
- var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
17
16
  var _useAnalyticsEvents2 = require("../../../common/analytics/generated/use-analytics-events");
18
17
  var _messages = require("../../../messages");
19
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); }
@@ -45,7 +44,7 @@ var RelatedLinksBaseModal = function RelatedLinksBaseModal(_ref) {
45
44
  onOpenComplete: openCompleteHandler,
46
45
  height: '504px'
47
46
  }, /*#__PURE__*/React.createElement(_modalDialog.ModalHeader, {
48
- hasCloseButton: (0, _platformFeatureFlags.fg)('navx-1483-a11y-close-button-in-modal-updates')
47
+ hasCloseButton: true
49
48
  }, /*#__PURE__*/React.createElement(_modalDialog.ModalTitle, null, /*#__PURE__*/React.createElement(_reactIntlNext.FormattedMessage, _messages.messages.related_links_modal_title))), /*#__PURE__*/React.createElement(_modalDialog.ModalBody, null, children), /*#__PURE__*/React.createElement(_modalDialog.ModalFooter, null, /*#__PURE__*/React.createElement(_new.default, {
50
49
  appearance: "primary",
51
50
  onClick: closeHandler
@@ -2,7 +2,7 @@ export const ANALYTICS_CHANNEL = 'media';
2
2
  export const context = {
3
3
  componentName: 'smart-cards',
4
4
  packageName: "@atlaskit/smart-card",
5
- packageVersion: "0.0.0-development"
5
+ packageVersion: "43.1.5"
6
6
  };
7
7
  export let TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
8
8
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -3,7 +3,6 @@ import { di } from 'react-magnetic-di';
3
3
  import Button from '@atlaskit/button/new';
4
4
  import Form, { ErrorMessage, FormSection } from '@atlaskit/form';
5
5
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle } from '@atlaskit/modal-dialog';
6
- import { fg } from '@atlaskit/platform-feature-flags';
7
6
  import messages from '../common/messages';
8
7
  import { UserInputType } from '../common/types';
9
8
  import BooleanInputPrompt from './boolean-prompt/main';
@@ -114,7 +113,7 @@ const UserInputForm = props => {
114
113
  formProps,
115
114
  submitting
116
115
  }) => /*#__PURE__*/React.createElement("form", formProps, /*#__PURE__*/React.createElement(ModalHeader, {
117
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
116
+ hasCloseButton: true
118
117
  }, /*#__PURE__*/React.createElement(ModalTitle, null, rule.name)), /*#__PURE__*/React.createElement(ModalBody, null, messages.inputRequiredForAction.defaultMessage, /*#__PURE__*/React.createElement(FormSection, null, userInputPrompts.map(generateUserInputForm))), /*#__PURE__*/React.createElement(ModalFooter, null, /*#__PURE__*/React.createElement(Button, {
119
118
  appearance: "subtle",
120
119
  onClick: handleClose,
@@ -6,7 +6,6 @@ import { defineMessages, useIntl } from 'react-intl-next';
6
6
  import Heading from '@atlaskit/heading';
7
7
  import LegacyManualTriggerIcon from '@atlaskit/legacy-custom-icons/manual-trigger-icon';
8
8
  import { ModalHeader, useModal } from '@atlaskit/modal-dialog';
9
- import { fg } from '@atlaskit/platform-feature-flags';
10
9
  import { Box, Inline, Stack } from '@atlaskit/primitives/compiled';
11
10
  import { G50 } from '@atlaskit/theme/colors';
12
11
  import { useAutomationMenu } from '../../menu-context';
@@ -37,7 +36,7 @@ export const AutomationModalHeader = ({
37
36
  } = useModal();
38
37
  const showDescription = initialised && rules.length > 0 && !!modalDescription;
39
38
  return /*#__PURE__*/React.createElement(ModalHeader, {
40
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
39
+ hasCloseButton: true
41
40
  }, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Inline, {
42
41
  alignBlock: "center"
43
42
  }, /*#__PURE__*/React.createElement(Box, {
@@ -7,7 +7,6 @@ import { FormattedMessage, injectIntl, IntlProvider } from 'react-intl-next';
7
7
  import Button from '@atlaskit/button/standard-button';
8
8
  import Link from '@atlaskit/link';
9
9
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
10
- import { fg } from '@atlaskit/platform-feature-flags';
11
10
  import { messages } from '../../../messages';
12
11
  const breakWordsCss = null;
13
12
  const WarningModal = props => {
@@ -23,7 +22,7 @@ const WarningModal = props => {
23
22
  onClose: onClose,
24
23
  testId: "link-with-safety-warning"
25
24
  }, /*#__PURE__*/React.createElement(ModalHeader, {
26
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
25
+ hasCloseButton: true
27
26
  }, /*#__PURE__*/React.createElement(ModalTitle, {
28
27
  appearance: "warning"
29
28
  }, /*#__PURE__*/React.createElement(FormattedMessage, messages.check_this_link))), /*#__PURE__*/React.createElement(ModalBody, null, /*#__PURE__*/React.createElement("div", {
@@ -12,7 +12,7 @@ import LinkWarningModal from './LinkWarningModal';
12
12
  import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-modal';
13
13
  const PACKAGE_DATA = {
14
14
  packageName: "@atlaskit/smart-card",
15
- packageVersion: "0.0.0-development",
15
+ packageVersion: "43.1.5",
16
16
  componentName: 'linkUrl'
17
17
  };
18
18
  const Anchor = withLinkClickedEvent('a');
@@ -5,7 +5,6 @@ import { useCallback, useRef } from 'react';
5
5
  import { FormattedMessage } from 'react-intl-next';
6
6
  import Button from '@atlaskit/button/new';
7
7
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
8
- import { fg } from '@atlaskit/platform-feature-flags';
9
8
  import { useAnalyticsEvents } from '../../../common/analytics/generated/use-analytics-events';
10
9
  import { messages } from '../../../messages';
11
10
  const fixedWidth = 'small'; // pre-defined 400px by Atlaskit
@@ -38,7 +37,7 @@ const RelatedLinksBaseModal = ({
38
37
  onOpenComplete: openCompleteHandler,
39
38
  height: '504px'
40
39
  }, /*#__PURE__*/React.createElement(ModalHeader, {
41
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
40
+ hasCloseButton: true
42
41
  }, /*#__PURE__*/React.createElement(ModalTitle, null, /*#__PURE__*/React.createElement(FormattedMessage, messages.related_links_modal_title))), /*#__PURE__*/React.createElement(ModalBody, null, children), /*#__PURE__*/React.createElement(ModalFooter, null, /*#__PURE__*/React.createElement(Button, {
43
42
  appearance: "primary",
44
43
  onClick: closeHandler
@@ -4,7 +4,7 @@ export var ANALYTICS_CHANNEL = 'media';
4
4
  export var context = {
5
5
  componentName: 'smart-cards',
6
6
  packageName: "@atlaskit/smart-card",
7
- packageVersion: "0.0.0-development"
7
+ packageVersion: "43.1.5"
8
8
  };
9
9
  export var TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
10
10
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -4,7 +4,6 @@ import { di } from 'react-magnetic-di';
4
4
  import Button from '@atlaskit/button/new';
5
5
  import Form, { ErrorMessage, FormSection } from '@atlaskit/form';
6
6
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle } from '@atlaskit/modal-dialog';
7
- import { fg } from '@atlaskit/platform-feature-flags';
8
7
  import messages from '../common/messages';
9
8
  import { UserInputType } from '../common/types';
10
9
  import BooleanInputPrompt from './boolean-prompt/main';
@@ -113,7 +112,7 @@ var UserInputForm = function UserInputForm(props) {
113
112
  var formProps = _ref4.formProps,
114
113
  submitting = _ref4.submitting;
115
114
  return /*#__PURE__*/React.createElement("form", formProps, /*#__PURE__*/React.createElement(ModalHeader, {
116
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
115
+ hasCloseButton: true
117
116
  }, /*#__PURE__*/React.createElement(ModalTitle, null, rule.name)), /*#__PURE__*/React.createElement(ModalBody, null, messages.inputRequiredForAction.defaultMessage, /*#__PURE__*/React.createElement(FormSection, null, userInputPrompts.map(generateUserInputForm))), /*#__PURE__*/React.createElement(ModalFooter, null, /*#__PURE__*/React.createElement(Button, {
118
117
  appearance: "subtle",
119
118
  onClick: handleClose,
@@ -6,7 +6,6 @@ import { defineMessages, useIntl } from 'react-intl-next';
6
6
  import Heading from '@atlaskit/heading';
7
7
  import LegacyManualTriggerIcon from '@atlaskit/legacy-custom-icons/manual-trigger-icon';
8
8
  import { ModalHeader, useModal } from '@atlaskit/modal-dialog';
9
- import { fg } from '@atlaskit/platform-feature-flags';
10
9
  import { Box, Inline, Stack } from '@atlaskit/primitives/compiled';
11
10
  import { G50 } from '@atlaskit/theme/colors';
12
11
  import { useAutomationMenu } from '../../menu-context';
@@ -33,7 +32,7 @@ export var AutomationModalHeader = function AutomationModalHeader(_ref) {
33
32
  titleId = _useModal.titleId;
34
33
  var showDescription = initialised && rules.length > 0 && !!modalDescription;
35
34
  return /*#__PURE__*/React.createElement(ModalHeader, {
36
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
35
+ hasCloseButton: true
37
36
  }, /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Inline, {
38
37
  alignBlock: "center"
39
38
  }, /*#__PURE__*/React.createElement(Box, {
@@ -7,7 +7,6 @@ import { FormattedMessage, injectIntl, IntlProvider } from 'react-intl-next';
7
7
  import Button from '@atlaskit/button/standard-button';
8
8
  import Link from '@atlaskit/link';
9
9
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
10
- import { fg } from '@atlaskit/platform-feature-flags';
11
10
  import { messages } from '../../../messages';
12
11
  var breakWordsCss = null;
13
12
  var WarningModal = function WarningModal(props) {
@@ -21,7 +20,7 @@ var WarningModal = function WarningModal(props) {
21
20
  onClose: onClose,
22
21
  testId: "link-with-safety-warning"
23
22
  }, /*#__PURE__*/React.createElement(ModalHeader, {
24
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
23
+ hasCloseButton: true
25
24
  }, /*#__PURE__*/React.createElement(ModalTitle, {
26
25
  appearance: "warning"
27
26
  }, /*#__PURE__*/React.createElement(FormattedMessage, messages.check_this_link))), /*#__PURE__*/React.createElement(ModalBody, null, /*#__PURE__*/React.createElement("div", {
@@ -15,7 +15,7 @@ import LinkWarningModal from './LinkWarningModal';
15
15
  import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-modal';
16
16
  var PACKAGE_DATA = {
17
17
  packageName: "@atlaskit/smart-card",
18
- packageVersion: "0.0.0-development",
18
+ packageVersion: "43.1.5",
19
19
  componentName: 'linkUrl'
20
20
  };
21
21
  var Anchor = withLinkClickedEvent('a');
@@ -5,7 +5,6 @@ import { useCallback, useRef } from 'react';
5
5
  import { FormattedMessage } from 'react-intl-next';
6
6
  import Button from '@atlaskit/button/new';
7
7
  import Modal, { ModalBody, ModalFooter, ModalHeader, ModalTitle, ModalTransition } from '@atlaskit/modal-dialog';
8
- import { fg } from '@atlaskit/platform-feature-flags';
9
8
  import { useAnalyticsEvents } from '../../../common/analytics/generated/use-analytics-events';
10
9
  import { messages } from '../../../messages';
11
10
  var fixedWidth = 'small'; // pre-defined 400px by Atlaskit
@@ -36,7 +35,7 @@ var RelatedLinksBaseModal = function RelatedLinksBaseModal(_ref) {
36
35
  onOpenComplete: openCompleteHandler,
37
36
  height: '504px'
38
37
  }, /*#__PURE__*/React.createElement(ModalHeader, {
39
- hasCloseButton: fg('navx-1483-a11y-close-button-in-modal-updates')
38
+ hasCloseButton: true
40
39
  }, /*#__PURE__*/React.createElement(ModalTitle, null, /*#__PURE__*/React.createElement(FormattedMessage, messages.related_links_modal_title))), /*#__PURE__*/React.createElement(ModalBody, null, children), /*#__PURE__*/React.createElement(ModalFooter, null, /*#__PURE__*/React.createElement(Button, {
41
40
  appearance: "primary",
42
41
  onClick: closeHandler
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "43.1.4",
3
+ "version": "43.1.6",
4
4
  "description": "Smart card component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -34,7 +34,7 @@
34
34
  "@atlaskit/badge": "^18.2.0",
35
35
  "@atlaskit/button": "^23.5.0",
36
36
  "@atlaskit/checkbox": "^17.1.0",
37
- "@atlaskit/css": "^0.14.0",
37
+ "@atlaskit/css": "^0.15.0",
38
38
  "@atlaskit/dropdown-menu": "^16.3.0",
39
39
  "@atlaskit/embedded-confluence": "^4.3.0",
40
40
  "@atlaskit/feature-gate-js-client": "^5.5.0",
@@ -44,7 +44,7 @@
44
44
  "@atlaskit/icon": "^28.5.0",
45
45
  "@atlaskit/icon-file-type": "^7.0.0",
46
46
  "@atlaskit/icon-lab": "^5.10.0",
47
- "@atlaskit/icon-object": "^7.2.0",
47
+ "@atlaskit/icon-object": "^7.3.0",
48
48
  "@atlaskit/icon-priority": "^6.3.0",
49
49
  "@atlaskit/image": "^3.0.0",
50
50
  "@atlaskit/json-ld-types": "^1.4.0",
@@ -55,7 +55,7 @@
55
55
  "@atlaskit/link-extractors": "^2.4.0",
56
56
  "@atlaskit/link-test-helpers": "^8.4.0",
57
57
  "@atlaskit/linking-common": "^9.7.0",
58
- "@atlaskit/linking-types": "^14.0.0",
58
+ "@atlaskit/linking-types": "^14.1.0",
59
59
  "@atlaskit/logo": "^19.9.0",
60
60
  "@atlaskit/lozenge": "^13.0.0",
61
61
  "@atlaskit/menu": "^8.4.0",
@@ -63,15 +63,15 @@
63
63
  "@atlaskit/outbound-auth-flow-client": "^3.4.0",
64
64
  "@atlaskit/platform-feature-flags": "^1.1.0",
65
65
  "@atlaskit/popup": "^4.4.0",
66
- "@atlaskit/primitives": "^14.15.0",
66
+ "@atlaskit/primitives": "^15.0.0",
67
67
  "@atlaskit/section-message": "^8.7.0",
68
68
  "@atlaskit/select": "^21.3.0",
69
69
  "@atlaskit/spinner": "^19.0.0",
70
70
  "@atlaskit/textarea": "^8.0.0",
71
71
  "@atlaskit/textfield": "^8.0.0",
72
72
  "@atlaskit/theme": "^21.0.0",
73
- "@atlaskit/tmp-editor-statsig": "^13.9.0",
74
- "@atlaskit/tokens": "^6.4.0",
73
+ "@atlaskit/tmp-editor-statsig": "^13.10.0",
74
+ "@atlaskit/tokens": "^6.5.0",
75
75
  "@atlaskit/tooltip": "^20.5.0",
76
76
  "@atlaskit/ufo": "^0.4.0",
77
77
  "@babel/runtime": "^7.0.0",
@@ -220,9 +220,6 @@
220
220
  "platform_deprecate_lp_cc_embed": {
221
221
  "type": "boolean"
222
222
  },
223
- "navx-1483-a11y-close-button-in-modal-updates": {
224
- "type": "boolean"
225
- },
226
223
  "navx-1706-smart-link-layered-link-a11y-update": {
227
224
  "type": "boolean"
228
225
  },