@atlaskit/smart-card 42.3.3 → 42.3.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 +7 -0
- package/dist/cjs/messages.js +0 -10
- package/dist/cjs/view/FlexibleCard/components/actions/follow-action/index.js +1 -1
- package/dist/es2019/messages.js +0 -10
- package/dist/es2019/view/FlexibleCard/components/actions/follow-action/index.js +1 -1
- package/dist/esm/messages.js +0 -10
- package/dist/esm/view/FlexibleCard/components/actions/follow-action/index.js +1 -1
- package/dist/types/messages.d.ts +1 -1
- package/dist/types-ts4.5/messages.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/cjs/messages.js
CHANGED
|
@@ -800,11 +800,6 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
|
800
800
|
defaultMessage: 'Follow to get notifications on this space',
|
|
801
801
|
description: 'Description on what Follow does'
|
|
802
802
|
},
|
|
803
|
-
follow_projectGalaxia: {
|
|
804
|
-
id: 'fabric.linking.follow_project-galaxia',
|
|
805
|
-
defaultMessage: 'Follow space',
|
|
806
|
-
description: 'Click to follow a project.'
|
|
807
|
-
},
|
|
808
803
|
follow_project_errorGalaxia: {
|
|
809
804
|
id: 'fabric.linking.follow_project_error-galaxia',
|
|
810
805
|
defaultMessage: 'We encountered an error while trying to follow the space. Check your connection or refresh the page and try again.',
|
|
@@ -815,11 +810,6 @@ var messages = exports.messages = (0, _reactIntlNext.defineMessages)({
|
|
|
815
810
|
defaultMessage: 'Unfollow to stop receiving space notifications',
|
|
816
811
|
description: 'Description on what Unfollow does'
|
|
817
812
|
},
|
|
818
|
-
unfollow_projectGalaxia: {
|
|
819
|
-
id: 'fabric.linking.unfollow_project-galaxia',
|
|
820
|
-
defaultMessage: 'Unfollow space',
|
|
821
|
-
description: 'Click to unfollow a project.'
|
|
822
|
-
},
|
|
823
813
|
unfollow_project_errorGalaxia: {
|
|
824
814
|
id: 'fabric.linking.unfollow_project_error-galaxia',
|
|
825
815
|
defaultMessage: 'We encountered an error while trying to unfollow the space. Check your connection or refresh the page and try again.',
|
|
@@ -60,7 +60,7 @@ var FollowAction = function FollowAction(props) {
|
|
|
60
60
|
data = (0, _objectWithoutProperties2.default)(actionData, _excluded);
|
|
61
61
|
var isStackItem = props.as === 'stack-item';
|
|
62
62
|
var message = value ? _messages.messages.follow : _messages.messages.unfollow;
|
|
63
|
-
var projectMessage = value ?
|
|
63
|
+
var projectMessage = value ? _messages.messages.follow_project : _messages.messages.unfollow_project;
|
|
64
64
|
var goalMessage = value ? _messages.messages.follow_goal : _messages.messages.unfollow_goal;
|
|
65
65
|
var stackMessage = isProject ? projectMessage : goalMessage;
|
|
66
66
|
var label = isStackItem ? stackMessage : message;
|
package/dist/es2019/messages.js
CHANGED
|
@@ -794,11 +794,6 @@ export const messages = defineMessages({
|
|
|
794
794
|
defaultMessage: 'Follow to get notifications on this space',
|
|
795
795
|
description: 'Description on what Follow does'
|
|
796
796
|
},
|
|
797
|
-
follow_projectGalaxia: {
|
|
798
|
-
id: 'fabric.linking.follow_project-galaxia',
|
|
799
|
-
defaultMessage: 'Follow space',
|
|
800
|
-
description: 'Click to follow a project.'
|
|
801
|
-
},
|
|
802
797
|
follow_project_errorGalaxia: {
|
|
803
798
|
id: 'fabric.linking.follow_project_error-galaxia',
|
|
804
799
|
defaultMessage: 'We encountered an error while trying to follow the space. Check your connection or refresh the page and try again.',
|
|
@@ -809,11 +804,6 @@ export const messages = defineMessages({
|
|
|
809
804
|
defaultMessage: 'Unfollow to stop receiving space notifications',
|
|
810
805
|
description: 'Description on what Unfollow does'
|
|
811
806
|
},
|
|
812
|
-
unfollow_projectGalaxia: {
|
|
813
|
-
id: 'fabric.linking.unfollow_project-galaxia',
|
|
814
|
-
defaultMessage: 'Unfollow space',
|
|
815
|
-
description: 'Click to unfollow a project.'
|
|
816
|
-
},
|
|
817
807
|
unfollow_project_errorGalaxia: {
|
|
818
808
|
id: 'fabric.linking.unfollow_project_error-galaxia',
|
|
819
809
|
defaultMessage: 'We encountered an error while trying to unfollow the space. Check your connection or refresh the page and try again.',
|
|
@@ -41,7 +41,7 @@ const FollowAction = props => {
|
|
|
41
41
|
} = actionData;
|
|
42
42
|
const isStackItem = props.as === 'stack-item';
|
|
43
43
|
const message = value ? messages.follow : messages.unfollow;
|
|
44
|
-
const projectMessage = value ?
|
|
44
|
+
const projectMessage = value ? messages.follow_project : messages.unfollow_project;
|
|
45
45
|
const goalMessage = value ? messages.follow_goal : messages.unfollow_goal;
|
|
46
46
|
const stackMessage = isProject ? projectMessage : goalMessage;
|
|
47
47
|
const label = isStackItem ? stackMessage : message;
|
package/dist/esm/messages.js
CHANGED
|
@@ -794,11 +794,6 @@ export var messages = defineMessages({
|
|
|
794
794
|
defaultMessage: 'Follow to get notifications on this space',
|
|
795
795
|
description: 'Description on what Follow does'
|
|
796
796
|
},
|
|
797
|
-
follow_projectGalaxia: {
|
|
798
|
-
id: 'fabric.linking.follow_project-galaxia',
|
|
799
|
-
defaultMessage: 'Follow space',
|
|
800
|
-
description: 'Click to follow a project.'
|
|
801
|
-
},
|
|
802
797
|
follow_project_errorGalaxia: {
|
|
803
798
|
id: 'fabric.linking.follow_project_error-galaxia',
|
|
804
799
|
defaultMessage: 'We encountered an error while trying to follow the space. Check your connection or refresh the page and try again.',
|
|
@@ -809,11 +804,6 @@ export var messages = defineMessages({
|
|
|
809
804
|
defaultMessage: 'Unfollow to stop receiving space notifications',
|
|
810
805
|
description: 'Description on what Unfollow does'
|
|
811
806
|
},
|
|
812
|
-
unfollow_projectGalaxia: {
|
|
813
|
-
id: 'fabric.linking.unfollow_project-galaxia',
|
|
814
|
-
defaultMessage: 'Unfollow space',
|
|
815
|
-
description: 'Click to unfollow a project.'
|
|
816
|
-
},
|
|
817
807
|
unfollow_project_errorGalaxia: {
|
|
818
808
|
id: 'fabric.linking.unfollow_project_error-galaxia',
|
|
819
809
|
defaultMessage: 'We encountered an error while trying to unfollow the space. Check your connection or refresh the page and try again.',
|
|
@@ -47,7 +47,7 @@ var FollowAction = function FollowAction(props) {
|
|
|
47
47
|
data = _objectWithoutProperties(actionData, _excluded);
|
|
48
48
|
var isStackItem = props.as === 'stack-item';
|
|
49
49
|
var message = value ? messages.follow : messages.unfollow;
|
|
50
|
-
var projectMessage = value ?
|
|
50
|
+
var projectMessage = value ? messages.follow_project : messages.unfollow_project;
|
|
51
51
|
var goalMessage = value ? messages.follow_goal : messages.unfollow_goal;
|
|
52
52
|
var stackMessage = isProject ? projectMessage : goalMessage;
|
|
53
53
|
var label = isStackItem ? stackMessage : message;
|
package/dist/types/messages.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type 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_abbreviation' | 'ai_summarized_info' | 'ai_summarized_info_short' | 'ai_summarizing' | 'ai_summary_error_generic' | 'ai_summary_error_acceptable_use_violation' | 'ai_summary_error_hipaa_content_detected' | 'ai_summary_error_exceeding_context_length_error' | 'ai_summary_action' | 'ai_summary_action_description' | 'automation_action_title' | 'automation_action_tooltip' | 'automation_action_icon_label' | 'automation_action_confluence_page_modal_title' | 'automation_action_confluence_page_modal_description' | 'copy_summary_action' | 'copy_summary_action_description' | 'copied_summary_action_description' | 'beta' | 'cannot_find_link' | 'compass_applied_components_count' | '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' | 'copied_url_to_clipboard' | 'could_not_load_link' | 'download' | 'download_description' | 'download_file' | 'follow' | 'follow_project_description' | 'follow_project_descriptionGalaxia' | 'follow_project' | '
|
|
3
|
+
export type MessageKey = 'assigned_to' | 'ai_summarize' | 'ai_summarized' | 'ai_summarized_abbreviation' | 'ai_summarized_info' | 'ai_summarized_info_short' | 'ai_summarizing' | 'ai_summary_error_generic' | 'ai_summary_error_acceptable_use_violation' | 'ai_summary_error_hipaa_content_detected' | 'ai_summary_error_exceeding_context_length_error' | 'ai_summary_action' | 'ai_summary_action_description' | 'automation_action_title' | 'automation_action_tooltip' | 'automation_action_icon_label' | 'automation_action_confluence_page_modal_title' | 'automation_action_confluence_page_modal_description' | 'copy_summary_action' | 'copy_summary_action_description' | 'copied_summary_action_description' | 'beta' | 'cannot_find_link' | 'compass_applied_components_count' | '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' | 'copied_url_to_clipboard' | 'could_not_load_link' | 'download' | 'download_description' | 'download_file' | 'follow' | 'follow_project_description' | 'follow_project_descriptionGalaxia' | 'follow_project' | 'follow_goal' | 'follow_goal_description' | 'follow_project_error' | 'follow_project_errorGalaxia' | 'follow_goal_error' | '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' | 'owned_by_override' | 'preview_description' | 'preview_improved' | 'preview_modal' | 'preview_panel' | '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' | 'unfollow_project_description' | 'unfollow_project_descriptionGalaxia' | 'unfollow_project' | 'unfollow_project_error' | 'unfollow_project_errorGalaxia' | 'unfollow_goal' | 'unfollow_goal_description' | 'unfollow_goal_error' | 'user_attributes' | 'view' | 'viewIn' | 'viewOriginal' | 'actions' | 'add_account' | 'cancel' | 'close' | 'connect_to' | 'connect_account_description' | 'retry' | 'save' | 'unlink_account' | RequestAccessMessageKey | 'related' | 'generic_error_message' | 'related_links_modal_error_title' | 'related_links_modal_error_description' | 'related_links_modal_unavailable_title' | 'related_links_modal_unavailable_description' | 'related_links_modal_title' | 'related_links_view_related_urls' | 'related_links_view_related_links' | 'related_links_found_in' | 'related_links_includes_links_to' | 'related_links_not_found' | 'join_to_viewIssueTermRefresh' | 'open_issue_in_jiraIssueTermRefresh' | 'request_access_to_viewIssueTermRefresh' | 'team_members_count' | 'status_change_permission_errorIssueTermRefresh' | 'connect_unauthorised_account_description_appify' | 'connect_unauthorised_account_description_no_provider_appify' | 'learn_more_about_connecting_account_appify';
|
|
4
4
|
type Messages = {
|
|
5
5
|
[K in MessageKey]: MessageDescriptor;
|
|
6
6
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type 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_abbreviation' | 'ai_summarized_info' | 'ai_summarized_info_short' | 'ai_summarizing' | 'ai_summary_error_generic' | 'ai_summary_error_acceptable_use_violation' | 'ai_summary_error_hipaa_content_detected' | 'ai_summary_error_exceeding_context_length_error' | 'ai_summary_action' | 'ai_summary_action_description' | 'automation_action_title' | 'automation_action_tooltip' | 'automation_action_icon_label' | 'automation_action_confluence_page_modal_title' | 'automation_action_confluence_page_modal_description' | 'copy_summary_action' | 'copy_summary_action_description' | 'copied_summary_action_description' | 'beta' | 'cannot_find_link' | 'compass_applied_components_count' | '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' | 'copied_url_to_clipboard' | 'could_not_load_link' | 'download' | 'download_description' | 'download_file' | 'follow' | 'follow_project_description' | 'follow_project_descriptionGalaxia' | 'follow_project' | '
|
|
3
|
+
export type MessageKey = 'assigned_to' | 'ai_summarize' | 'ai_summarized' | 'ai_summarized_abbreviation' | 'ai_summarized_info' | 'ai_summarized_info_short' | 'ai_summarizing' | 'ai_summary_error_generic' | 'ai_summary_error_acceptable_use_violation' | 'ai_summary_error_hipaa_content_detected' | 'ai_summary_error_exceeding_context_length_error' | 'ai_summary_action' | 'ai_summary_action_description' | 'automation_action_title' | 'automation_action_tooltip' | 'automation_action_icon_label' | 'automation_action_confluence_page_modal_title' | 'automation_action_confluence_page_modal_description' | 'copy_summary_action' | 'copy_summary_action_description' | 'copied_summary_action_description' | 'beta' | 'cannot_find_link' | 'compass_applied_components_count' | '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' | 'copied_url_to_clipboard' | 'could_not_load_link' | 'download' | 'download_description' | 'download_file' | 'follow' | 'follow_project_description' | 'follow_project_descriptionGalaxia' | 'follow_project' | 'follow_goal' | 'follow_goal_description' | 'follow_project_error' | 'follow_project_errorGalaxia' | 'follow_goal_error' | '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' | 'owned_by_override' | 'preview_description' | 'preview_improved' | 'preview_modal' | 'preview_panel' | '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' | 'unfollow_project_description' | 'unfollow_project_descriptionGalaxia' | 'unfollow_project' | 'unfollow_project_error' | 'unfollow_project_errorGalaxia' | 'unfollow_goal' | 'unfollow_goal_description' | 'unfollow_goal_error' | 'user_attributes' | 'view' | 'viewIn' | 'viewOriginal' | 'actions' | 'add_account' | 'cancel' | 'close' | 'connect_to' | 'connect_account_description' | 'retry' | 'save' | 'unlink_account' | RequestAccessMessageKey | 'related' | 'generic_error_message' | 'related_links_modal_error_title' | 'related_links_modal_error_description' | 'related_links_modal_unavailable_title' | 'related_links_modal_unavailable_description' | 'related_links_modal_title' | 'related_links_view_related_urls' | 'related_links_view_related_links' | 'related_links_found_in' | 'related_links_includes_links_to' | 'related_links_not_found' | 'join_to_viewIssueTermRefresh' | 'open_issue_in_jiraIssueTermRefresh' | 'request_access_to_viewIssueTermRefresh' | 'team_members_count' | 'status_change_permission_errorIssueTermRefresh' | 'connect_unauthorised_account_description_appify' | 'connect_unauthorised_account_description_no_provider_appify' | 'learn_more_about_connecting_account_appify';
|
|
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": "42.3.
|
|
3
|
+
"version": "42.3.4",
|
|
4
4
|
"description": "Smart card component",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"@atlaskit/afm-i18n-platform-linking-platform-smart-card": "2.6.0",
|
|
30
30
|
"@atlaskit/analytics-gas-types": "^5.1.0",
|
|
31
31
|
"@atlaskit/analytics-next": "^11.1.0",
|
|
32
|
-
"@atlaskit/avatar": "^25.
|
|
33
|
-
"@atlaskit/avatar-group": "^12.
|
|
32
|
+
"@atlaskit/avatar": "^25.3.0",
|
|
33
|
+
"@atlaskit/avatar-group": "^12.3.0",
|
|
34
34
|
"@atlaskit/badge": "^18.2.0",
|
|
35
|
-
"@atlaskit/button": "^23.
|
|
35
|
+
"@atlaskit/button": "^23.5.0",
|
|
36
36
|
"@atlaskit/checkbox": "^17.1.0",
|
|
37
37
|
"@atlaskit/css": "^0.14.0",
|
|
38
38
|
"@atlaskit/dropdown-menu": "^16.3.0",
|