@atlaskit/smart-card 26.50.2 → 26.50.4

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,17 @@
1
1
  # @atlaskit/smart-card
2
2
 
3
+ ## 26.50.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#81775](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/81775) [`c4ccaeb02473`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/c4ccaeb02473) - Add beta tag to AI summary
8
+
9
+ ## 26.50.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#82262](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/pull-requests/82262) [`dc5f0c05bafa`](https://stash.atlassian.com/projects/CONFCLOUD/repos/confluence-frontend/commits/dc5f0c05bafa) - CAMPTASKS-438 Change the FF used
14
+
3
15
  ## 26.50.2
4
16
 
5
17
  ### Patch Changes
@@ -26,6 +26,11 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
26
26
  defaultMessage: 'Summarized by Atlassian Intelligence',
27
27
  description: 'Shown with the content summarised by AI.'
28
28
  },
29
+ ai_summarized_abbreviation: {
30
+ id: 'fabric.linking.ai_summarized_abbreviation',
31
+ defaultMessage: 'Summarized by AI',
32
+ description: 'Shown with the content summarised by AI. AI is in abbreviation form to reduce space.'
33
+ },
29
34
  ai_summarized_info: {
30
35
  id: 'fabric.linking.ai_summarized_info',
31
36
  defaultMessage: 'Information quality may vary. <a>Learn more</a>',
@@ -51,6 +56,11 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
51
56
  defaultMessage: 'Cancel',
52
57
  description: 'cancel'
53
58
  },
59
+ beta: {
60
+ id: 'fabric.linking.beta',
61
+ defaultMessage: 'Beta',
62
+ description: 'Indicates a beta phase of the feature.'
63
+ },
54
64
  cannot_connect: {
55
65
  id: 'fabric.linking.cannot_connect',
56
66
  defaultMessage: "Can't connect, try again",
@@ -22,7 +22,7 @@ var ANALYTICS_CHANNEL = exports.ANALYTICS_CHANNEL = 'media';
22
22
  var context = exports.context = {
23
23
  componentName: 'smart-cards',
24
24
  packageName: "@atlaskit/smart-card",
25
- packageVersion: "26.50.2"
25
+ packageVersion: "26.50.4"
26
26
  };
27
27
  var TrackQuickActionType = exports.TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
28
28
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -89,7 +89,7 @@ var ExpandedFrame = exports.ExpandedFrame = function ExpandedFrame(_ref) {
89
89
  ,
90
90
  "data-is-selected": isSelected,
91
91
  inheritDimensions: inheritDimensions
92
- }, (0, _platformFeatureFlags.getBooleanFF)('platform.linking-platform.smart-card.embed-card-header-tooltip') ? renderHeader() : renderHeaderOld(), renderContent());
92
+ }, (0, _platformFeatureFlags.getBooleanFF)('platform.linking-platform.smart-card.enable-embed-card-header-tooltip_g9saw') ? renderHeader() : renderHeaderOld(), renderContent());
93
93
  } else {
94
94
  return /*#__PURE__*/_react.default.createElement(_styled.Wrapper, {
95
95
  className: _styled.className,
@@ -103,6 +103,6 @@ var ExpandedFrame = exports.ExpandedFrame = function ExpandedFrame(_ref) {
103
103
  "data-is-selected": isSelected,
104
104
  "data-wrapper-type": "default",
105
105
  "data-is-interactive": isInteractive()
106
- }, (0, _platformFeatureFlags.getBooleanFF)('platform.linking-platform.smart-card.embed-card-header-tooltip') ? renderHeader() : renderHeaderOld(), renderContent());
106
+ }, (0, _platformFeatureFlags.getBooleanFF)('platform.linking-platform.smart-card.enable-embed-card-header-tooltip_g9saw') ? renderHeader() : renderHeaderOld(), renderContent());
107
107
  }
108
108
  };
@@ -10,7 +10,9 @@ var _react = _interopRequireDefault(require("react"));
10
10
  var _reactIntlNext = require("react-intl-next");
11
11
  var _react2 = require("@emotion/react");
12
12
  var _panel = _interopRequireDefault(require("@atlaskit/icon/glyph/editor/panel"));
13
+ var _lozenge = _interopRequireDefault(require("@atlaskit/lozenge"));
13
14
  var _primitives = require("@atlaskit/primitives");
15
+ var _platformFeatureFlags = require("@atlaskit/platform-feature-flags");
14
16
  var _messages = require("../../../../../../messages");
15
17
  var _aiIcon = _interopRequireDefault(require("../../../../../common/ai-icon"));
16
18
  var _aiIndicatorTooltip = _interopRequireDefault(require("./ai-indicator-tooltip"));
@@ -60,6 +62,14 @@ var AIStateDone = function AIStateDone(_ref) {
60
62
  size: "small",
61
63
  testId: "".concat(testId, "-done-icon")
62
64
  });
65
+ var title = (0, _platformFeatureFlags.getBooleanFF)('platform.linking-platform.smart-card.hover-card-ai-summaries-release-stable') ? (0, _react2.jsx)(_primitives.Box, {
66
+ testId: "".concat(testId, "-done-message")
67
+ }, (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _messages.messages.ai_summarized)) : (0, _react2.jsx)(_react.default.Fragment, null, (0, _react2.jsx)(_primitives.Box, {
68
+ testId: "".concat(testId, "-done-message")
69
+ }, (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _messages.messages.ai_summarized_abbreviation)), (0, _react2.jsx)(_primitives.Box, null, (0, _react2.jsx)(_lozenge.default, {
70
+ appearance: "new",
71
+ testId: "".concat(testId, "-beta")
72
+ }, (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _messages.messages.beta))));
63
73
  switch (appearance) {
64
74
  case 'icon-only':
65
75
  return (0, _react2.jsx)(_aiIndicatorTooltip.default, {
@@ -70,10 +80,12 @@ var AIStateDone = function AIStateDone(_ref) {
70
80
  label: "AI",
71
81
  size: "medium",
72
82
  testId: "".concat(testId, "-done-tooltip-icon")
73
- }), (0, _react2.jsx)(_primitives.Stack, null, (0, _react2.jsx)(_primitives.Box, {
74
- xcss: iconTooltipTitleStyles,
75
- testId: "".concat(testId, "-done-tooltip-title")
76
- }, (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _messages.messages.ai_summarized)), (0, _react2.jsx)(_primitives.Box, {
83
+ }), (0, _react2.jsx)(_primitives.Stack, null, (0, _react2.jsx)(_primitives.Inline, {
84
+ alignBlock: "center",
85
+ alignInline: "start",
86
+ space: "space.050",
87
+ xcss: iconTooltipTitleStyles
88
+ }, title), (0, _react2.jsx)(_primitives.Box, {
77
89
  xcss: iconTooltipDescStyles
78
90
  }, (0, _react2.jsx)(_reactIntlNext.FormattedMessage, (0, _extends2.default)({}, _messages.messages.ai_summarized_info, {
79
91
  values: {
@@ -94,9 +106,7 @@ var AIStateDone = function AIStateDone(_ref) {
94
106
  alignBlock: "center",
95
107
  alignInline: "start",
96
108
  space: "space.050"
97
- }, (0, _react2.jsx)(_primitives.Box, {
98
- testId: "".concat(testId, "-done-message")
99
- }, (0, _react2.jsx)(_reactIntlNext.FormattedMessage, _messages.messages.ai_summarized)), (0, _react2.jsx)(_aiIndicatorTooltip.default, {
109
+ }, title, (0, _react2.jsx)(_aiIndicatorTooltip.default, {
100
110
  content: (0, _react2.jsx)(_primitives.Box, {
101
111
  xcss: tooltipMsgStyles,
102
112
  testId: "".concat(testId, "-done-tooltip")
@@ -17,7 +17,7 @@ var _excluded = ["href", "children", "checkSafety", "onClick", "testId"],
17
17
  _excluded2 = ["isLinkSafe", "showSafetyWarningModal"];
18
18
  var PACKAGE_DATA = {
19
19
  packageName: "@atlaskit/smart-card",
20
- packageVersion: "26.50.2",
20
+ packageVersion: "26.50.4",
21
21
  componentName: 'linkUrl'
22
22
  };
23
23
  var Link = (0, _click.withLinkClickedEvent)('a');
@@ -20,6 +20,11 @@ export const messages = defineMessages({
20
20
  defaultMessage: 'Summarized by Atlassian Intelligence',
21
21
  description: 'Shown with the content summarised by AI.'
22
22
  },
23
+ ai_summarized_abbreviation: {
24
+ id: 'fabric.linking.ai_summarized_abbreviation',
25
+ defaultMessage: 'Summarized by AI',
26
+ description: 'Shown with the content summarised by AI. AI is in abbreviation form to reduce space.'
27
+ },
23
28
  ai_summarized_info: {
24
29
  id: 'fabric.linking.ai_summarized_info',
25
30
  defaultMessage: 'Information quality may vary. <a>Learn more</a>',
@@ -45,6 +50,11 @@ export const messages = defineMessages({
45
50
  defaultMessage: 'Cancel',
46
51
  description: 'cancel'
47
52
  },
53
+ beta: {
54
+ id: 'fabric.linking.beta',
55
+ defaultMessage: 'Beta',
56
+ description: 'Indicates a beta phase of the feature.'
57
+ },
48
58
  cannot_connect: {
49
59
  id: 'fabric.linking.cannot_connect',
50
60
  defaultMessage: "Can't connect, try again",
@@ -4,7 +4,7 @@ export const ANALYTICS_CHANNEL = 'media';
4
4
  export const context = {
5
5
  componentName: 'smart-cards',
6
6
  packageName: "@atlaskit/smart-card",
7
- packageVersion: "26.50.2"
7
+ packageVersion: "26.50.4"
8
8
  };
9
9
  export let TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
10
10
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -69,7 +69,7 @@ export const ExpandedFrame = ({
69
69
  ,
70
70
  "data-is-selected": isSelected,
71
71
  inheritDimensions: inheritDimensions
72
- }, getBooleanFF('platform.linking-platform.smart-card.embed-card-header-tooltip') ? renderHeader() : renderHeaderOld(), renderContent());
72
+ }, getBooleanFF('platform.linking-platform.smart-card.enable-embed-card-header-tooltip_g9saw') ? renderHeader() : renderHeaderOld(), renderContent());
73
73
  } else {
74
74
  return /*#__PURE__*/React.createElement(Wrapper, {
75
75
  className: className,
@@ -83,6 +83,6 @@ export const ExpandedFrame = ({
83
83
  "data-is-selected": isSelected,
84
84
  "data-wrapper-type": "default",
85
85
  "data-is-interactive": isInteractive()
86
- }, getBooleanFF('platform.linking-platform.smart-card.embed-card-header-tooltip') ? renderHeader() : renderHeaderOld(), renderContent());
86
+ }, getBooleanFF('platform.linking-platform.smart-card.enable-embed-card-header-tooltip_g9saw') ? renderHeader() : renderHeaderOld(), renderContent());
87
87
  }
88
88
  };
@@ -4,7 +4,9 @@ import React from 'react';
4
4
  import { FormattedMessage } from 'react-intl-next';
5
5
  import { css, jsx } from '@emotion/react';
6
6
  import EditorPanelIcon from '@atlaskit/icon/glyph/editor/panel';
7
+ import Lozenge from '@atlaskit/lozenge';
7
8
  import { Box, Inline, Stack, xcss } from '@atlaskit/primitives';
9
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
8
10
  import { messages } from '../../../../../../messages';
9
11
  import AIIcon from '../../../../../common/ai-icon';
10
12
  import AIIndicatorTooltip from './ai-indicator-tooltip';
@@ -53,6 +55,14 @@ const AIStateDone = ({
53
55
  size: "small",
54
56
  testId: `${testId}-done-icon`
55
57
  });
58
+ const title = getBooleanFF('platform.linking-platform.smart-card.hover-card-ai-summaries-release-stable') ? jsx(Box, {
59
+ testId: `${testId}-done-message`
60
+ }, jsx(FormattedMessage, messages.ai_summarized)) : jsx(React.Fragment, null, jsx(Box, {
61
+ testId: `${testId}-done-message`
62
+ }, jsx(FormattedMessage, messages.ai_summarized_abbreviation)), jsx(Box, null, jsx(Lozenge, {
63
+ appearance: "new",
64
+ testId: `${testId}-beta`
65
+ }, jsx(FormattedMessage, messages.beta))));
56
66
  switch (appearance) {
57
67
  case 'icon-only':
58
68
  return jsx(AIIndicatorTooltip, {
@@ -63,10 +73,12 @@ const AIStateDone = ({
63
73
  label: "AI",
64
74
  size: "medium",
65
75
  testId: `${testId}-done-tooltip-icon`
66
- }), jsx(Stack, null, jsx(Box, {
67
- xcss: iconTooltipTitleStyles,
68
- testId: `${testId}-done-tooltip-title`
69
- }, jsx(FormattedMessage, messages.ai_summarized)), jsx(Box, {
76
+ }), jsx(Stack, null, jsx(Inline, {
77
+ alignBlock: "center",
78
+ alignInline: "start",
79
+ space: "space.050",
80
+ xcss: iconTooltipTitleStyles
81
+ }, title), jsx(Box, {
70
82
  xcss: iconTooltipDescStyles
71
83
  }, jsx(FormattedMessage, _extends({}, messages.ai_summarized_info, {
72
84
  values: {
@@ -85,9 +97,7 @@ const AIStateDone = ({
85
97
  alignBlock: "center",
86
98
  alignInline: "start",
87
99
  space: "space.050"
88
- }, jsx(Box, {
89
- testId: `${testId}-done-message`
90
- }, jsx(FormattedMessage, messages.ai_summarized)), jsx(AIIndicatorTooltip, {
100
+ }, title, jsx(AIIndicatorTooltip, {
91
101
  content: jsx(Box, {
92
102
  xcss: tooltipMsgStyles,
93
103
  testId: `${testId}-done-tooltip`
@@ -7,7 +7,7 @@ import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-m
7
7
  import LinkWarningModal from './LinkWarningModal';
8
8
  const PACKAGE_DATA = {
9
9
  packageName: "@atlaskit/smart-card",
10
- packageVersion: "26.50.2",
10
+ packageVersion: "26.50.4",
11
11
  componentName: 'linkUrl'
12
12
  };
13
13
  const Link = withLinkClickedEvent('a');
@@ -20,6 +20,11 @@ export var messages = defineMessages({
20
20
  defaultMessage: 'Summarized by Atlassian Intelligence',
21
21
  description: 'Shown with the content summarised by AI.'
22
22
  },
23
+ ai_summarized_abbreviation: {
24
+ id: 'fabric.linking.ai_summarized_abbreviation',
25
+ defaultMessage: 'Summarized by AI',
26
+ description: 'Shown with the content summarised by AI. AI is in abbreviation form to reduce space.'
27
+ },
23
28
  ai_summarized_info: {
24
29
  id: 'fabric.linking.ai_summarized_info',
25
30
  defaultMessage: 'Information quality may vary. <a>Learn more</a>',
@@ -45,6 +50,11 @@ export var messages = defineMessages({
45
50
  defaultMessage: 'Cancel',
46
51
  description: 'cancel'
47
52
  },
53
+ beta: {
54
+ id: 'fabric.linking.beta',
55
+ defaultMessage: 'Beta',
56
+ description: 'Indicates a beta phase of the feature.'
57
+ },
48
58
  cannot_connect: {
49
59
  id: 'fabric.linking.cannot_connect',
50
60
  defaultMessage: "Can't connect, try again",
@@ -15,7 +15,7 @@ export var ANALYTICS_CHANNEL = 'media';
15
15
  export var context = {
16
16
  componentName: 'smart-cards',
17
17
  packageName: "@atlaskit/smart-card",
18
- packageVersion: "26.50.2"
18
+ packageVersion: "26.50.4"
19
19
  };
20
20
  export var TrackQuickActionType = /*#__PURE__*/function (TrackQuickActionType) {
21
21
  TrackQuickActionType["StatusUpdate"] = "StatusUpdate";
@@ -82,7 +82,7 @@ export var ExpandedFrame = function ExpandedFrame(_ref) {
82
82
  ,
83
83
  "data-is-selected": isSelected,
84
84
  inheritDimensions: inheritDimensions
85
- }, getBooleanFF('platform.linking-platform.smart-card.embed-card-header-tooltip') ? renderHeader() : renderHeaderOld(), renderContent());
85
+ }, getBooleanFF('platform.linking-platform.smart-card.enable-embed-card-header-tooltip_g9saw') ? renderHeader() : renderHeaderOld(), renderContent());
86
86
  } else {
87
87
  return /*#__PURE__*/React.createElement(Wrapper, {
88
88
  className: className,
@@ -96,6 +96,6 @@ export var ExpandedFrame = function ExpandedFrame(_ref) {
96
96
  "data-is-selected": isSelected,
97
97
  "data-wrapper-type": "default",
98
98
  "data-is-interactive": isInteractive()
99
- }, getBooleanFF('platform.linking-platform.smart-card.embed-card-header-tooltip') ? renderHeader() : renderHeaderOld(), renderContent());
99
+ }, getBooleanFF('platform.linking-platform.smart-card.enable-embed-card-header-tooltip_g9saw') ? renderHeader() : renderHeaderOld(), renderContent());
100
100
  }
101
101
  };
@@ -4,7 +4,9 @@ import React from 'react';
4
4
  import { FormattedMessage } from 'react-intl-next';
5
5
  import { css, jsx } from '@emotion/react';
6
6
  import EditorPanelIcon from '@atlaskit/icon/glyph/editor/panel';
7
+ import Lozenge from '@atlaskit/lozenge';
7
8
  import { Box, Inline, Stack, xcss } from '@atlaskit/primitives';
9
+ import { getBooleanFF } from '@atlaskit/platform-feature-flags';
8
10
  import { messages } from '../../../../../../messages';
9
11
  import AIIcon from '../../../../../common/ai-icon';
10
12
  import AIIndicatorTooltip from './ai-indicator-tooltip';
@@ -52,6 +54,14 @@ var AIStateDone = function AIStateDone(_ref) {
52
54
  size: "small",
53
55
  testId: "".concat(testId, "-done-icon")
54
56
  });
57
+ var title = getBooleanFF('platform.linking-platform.smart-card.hover-card-ai-summaries-release-stable') ? jsx(Box, {
58
+ testId: "".concat(testId, "-done-message")
59
+ }, jsx(FormattedMessage, messages.ai_summarized)) : jsx(React.Fragment, null, jsx(Box, {
60
+ testId: "".concat(testId, "-done-message")
61
+ }, jsx(FormattedMessage, messages.ai_summarized_abbreviation)), jsx(Box, null, jsx(Lozenge, {
62
+ appearance: "new",
63
+ testId: "".concat(testId, "-beta")
64
+ }, jsx(FormattedMessage, messages.beta))));
55
65
  switch (appearance) {
56
66
  case 'icon-only':
57
67
  return jsx(AIIndicatorTooltip, {
@@ -62,10 +72,12 @@ var AIStateDone = function AIStateDone(_ref) {
62
72
  label: "AI",
63
73
  size: "medium",
64
74
  testId: "".concat(testId, "-done-tooltip-icon")
65
- }), jsx(Stack, null, jsx(Box, {
66
- xcss: iconTooltipTitleStyles,
67
- testId: "".concat(testId, "-done-tooltip-title")
68
- }, jsx(FormattedMessage, messages.ai_summarized)), jsx(Box, {
75
+ }), jsx(Stack, null, jsx(Inline, {
76
+ alignBlock: "center",
77
+ alignInline: "start",
78
+ space: "space.050",
79
+ xcss: iconTooltipTitleStyles
80
+ }, title), jsx(Box, {
69
81
  xcss: iconTooltipDescStyles
70
82
  }, jsx(FormattedMessage, _extends({}, messages.ai_summarized_info, {
71
83
  values: {
@@ -86,9 +98,7 @@ var AIStateDone = function AIStateDone(_ref) {
86
98
  alignBlock: "center",
87
99
  alignInline: "start",
88
100
  space: "space.050"
89
- }, jsx(Box, {
90
- testId: "".concat(testId, "-done-message")
91
- }, jsx(FormattedMessage, messages.ai_summarized)), jsx(AIIndicatorTooltip, {
101
+ }, title, jsx(AIIndicatorTooltip, {
92
102
  content: jsx(Box, {
93
103
  xcss: tooltipMsgStyles,
94
104
  testId: "".concat(testId, "-done-tooltip")
@@ -10,7 +10,7 @@ import { useLinkWarningModal } from './LinkWarningModal/hooks/use-link-warning-m
10
10
  import LinkWarningModal from './LinkWarningModal';
11
11
  var PACKAGE_DATA = {
12
12
  packageName: "@atlaskit/smart-card",
13
- packageVersion: "26.50.2",
13
+ packageVersion: "26.50.4",
14
14
  componentName: 'linkUrl'
15
15
  };
16
16
  var Link = withLinkClickedEvent('a');
@@ -1,6 +1,6 @@
1
1
  import { MessageDescriptor } from 'react-intl-next';
2
2
  export type RequestAccessMessageKey = 'click_to_join' | 'click_to_join_description' | 'forbidden_description' | 'request_access' | 'request_access_description' | 'request_access_pending' | 'request_access_pending_title' | 'request_access_pending_description' | 'request_denied_description' | 'default_no_access_title' | 'direct_access_title' | 'direct_access_description' | 'direct_access' | 'access_exists_description' | 'not_found_description' | 'not_found_title';
3
- export type MessageKey = 'assigned_to' | 'ai_summarize' | 'ai_summarized' | 'ai_summarized_info' | 'ai_summarizing' | 'ai_summary_error_generic' | 'cannot_find_link' | 'connect_link_account_card' | 'connect_link_account_card_name' | 'connect_link_account_card_description' | 'connect_unauthorised_account_action' | 'connect_unauthorised_account_description' | 'connect_unauthorised_account_description_no_provider' | 'continue' | 'copy_url_to_clipboard' | 'could_not_load_link' | 'download' | 'follow' | 'go_back' | 'invalid_permissions' | 'invalid_permissions_description' | 'join_to_view' | 'connect_link_account' | 'created_by' | 'created_on_relative' | 'created_on_absolute' | 'check_this_link' | 'delete' | 'edit' | 'learn_more_about_smart_links' | 'learn_more_about_connecting_account' | 'loading' | 'link_safety_warning_message' | 'modified_by' | 'modified_on_relative' | 'modified_on_absolute' | 'more_actions' | 'not_found_title' | 'not_found_description' | 'open_issue_in_jira' | 'open_link_in_a_new_tab' | 'owned_by' | 'preview_improved' | 'preview_close' | 'preview_max_size' | 'preview_min_size' | 'priority_blocker' | 'priority_critical' | 'priority_high' | 'priority_highest' | 'priority_low' | 'priority_lowest' | 'priority_major' | 'priority_medium' | 'priority_minor' | 'priority_trivial' | 'priority_undefined' | 'forbidden_access' | 'pending_request' | 'read_time' | 'restricted_link' | 'request_access_to_view' | 'request_denied' | 'sent_on_relative' | 'sent_on_absolute' | 'status_change_load_error' | 'status_change_permission_error' | 'status_change_update_error' | 'try_again' | 'try_another_account' | 'unauthorised_account_description' | 'unauthorised_account_description_no_provider' | 'unauthorised_account_name' | 'unauthorised_account_name_no_provider' | 'unassigned' | 'unfollow' | 'view' | 'viewIn' | 'viewOriginal' | 'actions' | 'add_account' | 'cancel' | 'close' | 'connect_to' | 'connect_account_description' | 'retry' | 'save' | 'unlink_account' | RequestAccessMessageKey | 'related_work_items_not_found' | 'last_mentioned_in' | 'related' | 'generic_error_message';
3
+ export type MessageKey = 'assigned_to' | 'ai_summarize' | 'ai_summarized' | 'ai_summarized_abbreviation' | 'ai_summarized_info' | 'ai_summarizing' | 'ai_summary_error_generic' | 'beta' | 'cannot_find_link' | 'connect_link_account_card' | 'connect_link_account_card_name' | 'connect_link_account_card_description' | 'connect_unauthorised_account_action' | 'connect_unauthorised_account_description' | 'connect_unauthorised_account_description_no_provider' | 'continue' | 'copy_url_to_clipboard' | 'could_not_load_link' | 'download' | 'follow' | 'go_back' | 'invalid_permissions' | 'invalid_permissions_description' | 'join_to_view' | 'connect_link_account' | 'created_by' | 'created_on_relative' | 'created_on_absolute' | 'check_this_link' | 'delete' | 'edit' | 'learn_more_about_smart_links' | 'learn_more_about_connecting_account' | 'loading' | 'link_safety_warning_message' | 'modified_by' | 'modified_on_relative' | 'modified_on_absolute' | 'more_actions' | 'not_found_title' | 'not_found_description' | 'open_issue_in_jira' | 'open_link_in_a_new_tab' | 'owned_by' | 'preview_improved' | 'preview_close' | 'preview_max_size' | 'preview_min_size' | 'priority_blocker' | 'priority_critical' | 'priority_high' | 'priority_highest' | 'priority_low' | 'priority_lowest' | 'priority_major' | 'priority_medium' | 'priority_minor' | 'priority_trivial' | 'priority_undefined' | 'forbidden_access' | 'pending_request' | 'read_time' | 'restricted_link' | 'request_access_to_view' | 'request_denied' | 'sent_on_relative' | 'sent_on_absolute' | 'status_change_load_error' | 'status_change_permission_error' | 'status_change_update_error' | 'try_again' | 'try_another_account' | 'unauthorised_account_description' | 'unauthorised_account_description_no_provider' | 'unauthorised_account_name' | 'unauthorised_account_name_no_provider' | 'unassigned' | 'unfollow' | 'view' | 'viewIn' | 'viewOriginal' | 'actions' | 'add_account' | 'cancel' | 'close' | 'connect_to' | 'connect_account_description' | 'retry' | 'save' | 'unlink_account' | RequestAccessMessageKey | 'related_work_items_not_found' | 'last_mentioned_in' | 'related' | 'generic_error_message';
4
4
  type Messages = {
5
5
  [K in MessageKey]: MessageDescriptor;
6
6
  };
@@ -1,6 +1,6 @@
1
1
  import { MessageDescriptor } from 'react-intl-next';
2
2
  export type RequestAccessMessageKey = 'click_to_join' | 'click_to_join_description' | 'forbidden_description' | 'request_access' | 'request_access_description' | 'request_access_pending' | 'request_access_pending_title' | 'request_access_pending_description' | 'request_denied_description' | 'default_no_access_title' | 'direct_access_title' | 'direct_access_description' | 'direct_access' | 'access_exists_description' | 'not_found_description' | 'not_found_title';
3
- export type MessageKey = 'assigned_to' | 'ai_summarize' | 'ai_summarized' | 'ai_summarized_info' | 'ai_summarizing' | 'ai_summary_error_generic' | 'cannot_find_link' | 'connect_link_account_card' | 'connect_link_account_card_name' | 'connect_link_account_card_description' | 'connect_unauthorised_account_action' | 'connect_unauthorised_account_description' | 'connect_unauthorised_account_description_no_provider' | 'continue' | 'copy_url_to_clipboard' | 'could_not_load_link' | 'download' | 'follow' | 'go_back' | 'invalid_permissions' | 'invalid_permissions_description' | 'join_to_view' | 'connect_link_account' | 'created_by' | 'created_on_relative' | 'created_on_absolute' | 'check_this_link' | 'delete' | 'edit' | 'learn_more_about_smart_links' | 'learn_more_about_connecting_account' | 'loading' | 'link_safety_warning_message' | 'modified_by' | 'modified_on_relative' | 'modified_on_absolute' | 'more_actions' | 'not_found_title' | 'not_found_description' | 'open_issue_in_jira' | 'open_link_in_a_new_tab' | 'owned_by' | 'preview_improved' | 'preview_close' | 'preview_max_size' | 'preview_min_size' | 'priority_blocker' | 'priority_critical' | 'priority_high' | 'priority_highest' | 'priority_low' | 'priority_lowest' | 'priority_major' | 'priority_medium' | 'priority_minor' | 'priority_trivial' | 'priority_undefined' | 'forbidden_access' | 'pending_request' | 'read_time' | 'restricted_link' | 'request_access_to_view' | 'request_denied' | 'sent_on_relative' | 'sent_on_absolute' | 'status_change_load_error' | 'status_change_permission_error' | 'status_change_update_error' | 'try_again' | 'try_another_account' | 'unauthorised_account_description' | 'unauthorised_account_description_no_provider' | 'unauthorised_account_name' | 'unauthorised_account_name_no_provider' | 'unassigned' | 'unfollow' | 'view' | 'viewIn' | 'viewOriginal' | 'actions' | 'add_account' | 'cancel' | 'close' | 'connect_to' | 'connect_account_description' | 'retry' | 'save' | 'unlink_account' | RequestAccessMessageKey | 'related_work_items_not_found' | 'last_mentioned_in' | 'related' | 'generic_error_message';
3
+ export type MessageKey = 'assigned_to' | 'ai_summarize' | 'ai_summarized' | 'ai_summarized_abbreviation' | 'ai_summarized_info' | 'ai_summarizing' | 'ai_summary_error_generic' | 'beta' | 'cannot_find_link' | 'connect_link_account_card' | 'connect_link_account_card_name' | 'connect_link_account_card_description' | 'connect_unauthorised_account_action' | 'connect_unauthorised_account_description' | 'connect_unauthorised_account_description_no_provider' | 'continue' | 'copy_url_to_clipboard' | 'could_not_load_link' | 'download' | 'follow' | 'go_back' | 'invalid_permissions' | 'invalid_permissions_description' | 'join_to_view' | 'connect_link_account' | 'created_by' | 'created_on_relative' | 'created_on_absolute' | 'check_this_link' | 'delete' | 'edit' | 'learn_more_about_smart_links' | 'learn_more_about_connecting_account' | 'loading' | 'link_safety_warning_message' | 'modified_by' | 'modified_on_relative' | 'modified_on_absolute' | 'more_actions' | 'not_found_title' | 'not_found_description' | 'open_issue_in_jira' | 'open_link_in_a_new_tab' | 'owned_by' | 'preview_improved' | 'preview_close' | 'preview_max_size' | 'preview_min_size' | 'priority_blocker' | 'priority_critical' | 'priority_high' | 'priority_highest' | 'priority_low' | 'priority_lowest' | 'priority_major' | 'priority_medium' | 'priority_minor' | 'priority_trivial' | 'priority_undefined' | 'forbidden_access' | 'pending_request' | 'read_time' | 'restricted_link' | 'request_access_to_view' | 'request_denied' | 'sent_on_relative' | 'sent_on_absolute' | 'status_change_load_error' | 'status_change_permission_error' | 'status_change_update_error' | 'try_again' | 'try_another_account' | 'unauthorised_account_description' | 'unauthorised_account_description_no_provider' | 'unauthorised_account_name' | 'unauthorised_account_name_no_provider' | 'unassigned' | 'unfollow' | 'view' | 'viewIn' | 'viewOriginal' | 'actions' | 'add_account' | 'cancel' | 'close' | 'connect_to' | 'connect_account_description' | 'retry' | 'save' | 'unlink_account' | RequestAccessMessageKey | 'related_work_items_not_found' | 'last_mentioned_in' | 'related' | 'generic_error_message';
4
4
  type Messages = {
5
5
  [K in MessageKey]: MessageDescriptor;
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/smart-card",
3
- "version": "26.50.2",
3
+ "version": "26.50.4",
4
4
  "description": "Smart card component",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -161,12 +161,15 @@
161
161
  "platform.linking-platform.smart-card.hover-card-ai-summaries": {
162
162
  "type": "boolean"
163
163
  },
164
+ "platform.linking-platform.smart-card.hover-card-ai-summaries-release-stable": {
165
+ "type": "boolean"
166
+ },
164
167
  "platform.linking-platform.smart-card.fix-intersection-observer": {
165
168
  "type": "boolean"
166
169
  },
167
- "platform.linking-platform.smart-card.embed-card-header-tooltip": {
170
+ "platform.linking-platform.smart-card.enable-embed-card-header-tooltip_g9saw": {
168
171
  "type": "boolean"
169
172
  }
170
173
  },
171
174
  "prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
172
- }
175
+ }