@atlaskit/profilecard 26.10.3 → 26.12.0

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,27 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 26.12.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`7bbeb928e7b97`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/7bbeb928e7b97) -
8
+ Passes editor context from agent profile card action to rovo chat
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 26.11.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [`2ae2f4d041a3a`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/2ae2f4d041a3a) -
19
+ Update i18n NPM package versions for people-and-teams,identity (Group 8)
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+
3
25
  ## 26.10.3
4
26
 
5
27
  ### Patch Changes
@@ -11,7 +11,7 @@ var _graphqlUtils = require("./graphqlUtils");
11
11
  var ORG_ID_FROM_CLOUD_ID_QUERY = "query OrgIdFromCloudId($cloudId: ID!) {\n\ttenantContexts(cloudIds: [$cloudId]) {\n\t\torgId\n\t}\n}";
12
12
  var addHeaders = function addHeaders(headers) {
13
13
  headers.append('atl-client-name', "@atlaskit/profilecard");
14
- headers.append('atl-client-version', "26.10.2");
14
+ headers.append('atl-client-version', "26.11.0");
15
15
  return headers;
16
16
  };
17
17
  function getOrgIdForCloudIdFromAGG(_x, _x2) {
@@ -66,7 +66,7 @@ var addHeaders = exports.addHeaders = function addHeaders(headers) {
66
66
  headers.append('X-ExperimentalApi', 'teams-beta');
67
67
  headers.append('X-ExperimentalApi', 'team-members-beta');
68
68
  headers.append('atl-client-name', "@atlaskit/profilecard");
69
- headers.append('atl-client-version', "26.10.2");
69
+ headers.append('atl-client-version', "26.11.0");
70
70
  return headers;
71
71
  };
72
72
  function getTeamFromAGG(_x, _x2, _x3) {
@@ -306,7 +306,7 @@ var AgentProfileCard = function AgentProfileCard(_ref) {
306
306
  })),
307
307
  onDeleteAgent: handleOnDelete,
308
308
  onChatClick: onChatClick ? function (event) {
309
- return onChatClick(event);
309
+ onChatClick(event, (0, _platformFeatureFlags.fg)('platform_editor_agent_mentions_drop_one_fixes') ? agent.id : undefined);
310
310
  } : function () {
311
311
  return onOpenChatFullScreen(agent.id, agent.name);
312
312
  },
@@ -12,7 +12,7 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
12
12
  function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2.default)(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
13
13
  var PACKAGE_META_DATA = exports.PACKAGE_META_DATA = {
14
14
  packageName: (_process$env$_PACKAGE = "@atlaskit/profilecard") !== null && _process$env$_PACKAGE !== void 0 ? _process$env$_PACKAGE : '',
15
- packageVersion: (_process$env$_PACKAGE2 = "26.10.2") !== null && _process$env$_PACKAGE2 !== void 0 ? _process$env$_PACKAGE2 : ''
15
+ packageVersion: (_process$env$_PACKAGE2 = "26.11.0") !== null && _process$env$_PACKAGE2 !== void 0 ? _process$env$_PACKAGE2 : ''
16
16
  };
17
17
  var TEAM_SUBJECT = 'teamProfileCard';
18
18
  var USER_SUBJECT = 'profilecard';
@@ -31,7 +31,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
31
31
  actionSubjectId: actionSubjectId,
32
32
  attributes: _objectSpread(_objectSpread({
33
33
  packageName: "@atlaskit/profilecard",
34
- packageVersion: "26.10.2"
34
+ packageVersion: "26.11.0"
35
35
  }, attributes), {}, {
36
36
  firedAt: Math.round((0, _performance.getPageTime)())
37
37
  })
@@ -6,7 +6,7 @@ const ORG_ID_FROM_CLOUD_ID_QUERY = `query OrgIdFromCloudId($cloudId: ID!) {
6
6
  }`;
7
7
  const addHeaders = headers => {
8
8
  headers.append('atl-client-name', "@atlaskit/profilecard");
9
- headers.append('atl-client-version', "26.10.2");
9
+ headers.append('atl-client-version', "26.11.0");
10
10
  return headers;
11
11
  };
12
12
  export async function getOrgIdForCloudIdFromAGG(url, cloudId) {
@@ -78,7 +78,7 @@ export const addHeaders = headers => {
78
78
  headers.append('X-ExperimentalApi', 'teams-beta');
79
79
  headers.append('X-ExperimentalApi', 'team-members-beta');
80
80
  headers.append('atl-client-name', "@atlaskit/profilecard");
81
- headers.append('atl-client-version', "26.10.2");
81
+ headers.append('atl-client-version', "26.11.0");
82
82
  return headers;
83
83
  };
84
84
  export async function getTeamFromAGG(url, teamId, siteId) {
@@ -237,7 +237,9 @@ const AgentProfileCard = ({
237
237
  onCopyAgent: () => onCopyAgent(agent.id),
238
238
  onDuplicateAgent: async () => await onDuplicateAgent(agent.id),
239
239
  onDeleteAgent: handleOnDelete,
240
- onChatClick: onChatClick ? event => onChatClick(event) : () => onOpenChatFullScreen(agent.id, agent.name),
240
+ onChatClick: onChatClick ? event => {
241
+ onChatClick(event, fg('platform_editor_agent_mentions_drop_one_fixes') ? agent.id : undefined);
242
+ } : () => onOpenChatFullScreen(agent.id, agent.name),
241
243
  resourceClient: resourceClient,
242
244
  onViewFullProfileClick: () => onViewFullProfile(agent.id),
243
245
  hideMoreActions: hideMoreActions
@@ -2,7 +2,7 @@ var _process$env$_PACKAGE, _process$env$_PACKAGE2;
2
2
  import { getPageTime } from './performance';
3
3
  export const PACKAGE_META_DATA = {
4
4
  packageName: (_process$env$_PACKAGE = "@atlaskit/profilecard") !== null && _process$env$_PACKAGE !== void 0 ? _process$env$_PACKAGE : '',
5
- packageVersion: (_process$env$_PACKAGE2 = "26.10.2") !== null && _process$env$_PACKAGE2 !== void 0 ? _process$env$_PACKAGE2 : ''
5
+ packageVersion: (_process$env$_PACKAGE2 = "26.11.0") !== null && _process$env$_PACKAGE2 !== void 0 ? _process$env$_PACKAGE2 : ''
6
6
  };
7
7
  const TEAM_SUBJECT = 'teamProfileCard';
8
8
  const USER_SUBJECT = 'profilecard';
@@ -19,7 +19,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
19
19
  actionSubjectId,
20
20
  attributes: {
21
21
  packageName: "@atlaskit/profilecard",
22
- packageVersion: "26.10.2",
22
+ packageVersion: "26.11.0",
23
23
  ...attributes,
24
24
  firedAt: Math.round(getPageTime())
25
25
  }
@@ -4,7 +4,7 @@ import { AGGQuery } from './graphqlUtils';
4
4
  var ORG_ID_FROM_CLOUD_ID_QUERY = "query OrgIdFromCloudId($cloudId: ID!) {\n\ttenantContexts(cloudIds: [$cloudId]) {\n\t\torgId\n\t}\n}";
5
5
  var addHeaders = function addHeaders(headers) {
6
6
  headers.append('atl-client-name', "@atlaskit/profilecard");
7
- headers.append('atl-client-version', "26.10.2");
7
+ headers.append('atl-client-version', "26.11.0");
8
8
  return headers;
9
9
  };
10
10
  export function getOrgIdForCloudIdFromAGG(_x, _x2) {
@@ -59,7 +59,7 @@ export var addHeaders = function addHeaders(headers) {
59
59
  headers.append('X-ExperimentalApi', 'teams-beta');
60
60
  headers.append('X-ExperimentalApi', 'team-members-beta');
61
61
  headers.append('atl-client-name', "@atlaskit/profilecard");
62
- headers.append('atl-client-version', "26.10.2");
62
+ headers.append('atl-client-version', "26.11.0");
63
63
  return headers;
64
64
  };
65
65
  export function getTeamFromAGG(_x, _x2, _x3) {
@@ -297,7 +297,7 @@ var AgentProfileCard = function AgentProfileCard(_ref) {
297
297
  })),
298
298
  onDeleteAgent: handleOnDelete,
299
299
  onChatClick: onChatClick ? function (event) {
300
- return onChatClick(event);
300
+ onChatClick(event, fg('platform_editor_agent_mentions_drop_one_fixes') ? agent.id : undefined);
301
301
  } : function () {
302
302
  return onOpenChatFullScreen(agent.id, agent.name);
303
303
  },
@@ -5,7 +5,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
5
5
  import { getPageTime } from './performance';
6
6
  export var PACKAGE_META_DATA = {
7
7
  packageName: (_process$env$_PACKAGE = "@atlaskit/profilecard") !== null && _process$env$_PACKAGE !== void 0 ? _process$env$_PACKAGE : '',
8
- packageVersion: (_process$env$_PACKAGE2 = "26.10.2") !== null && _process$env$_PACKAGE2 !== void 0 ? _process$env$_PACKAGE2 : ''
8
+ packageVersion: (_process$env$_PACKAGE2 = "26.11.0") !== null && _process$env$_PACKAGE2 !== void 0 ? _process$env$_PACKAGE2 : ''
9
9
  };
10
10
  var TEAM_SUBJECT = 'teamProfileCard';
11
11
  var USER_SUBJECT = 'profilecard';
@@ -24,7 +24,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
24
24
  actionSubjectId: actionSubjectId,
25
25
  attributes: _objectSpread(_objectSpread({
26
26
  packageName: "@atlaskit/profilecard",
27
- packageVersion: "26.10.2"
27
+ packageVersion: "26.11.0"
28
28
  }, attributes), {}, {
29
29
  firedAt: Math.round(getPageTime())
30
30
  })
@@ -6,7 +6,7 @@ type AgentActionsProps = {
6
6
  onCopyAgent: () => void;
7
7
  onDuplicateAgent: () => Promise<void>;
8
8
  onDeleteAgent: () => void;
9
- onChatClick: (event: React.MouseEvent) => void;
9
+ onChatClick: (event: React.MouseEvent, agentStudioId?: string) => void;
10
10
  onViewFullProfileClick: () => void;
11
11
  resourceClient: ProfileClient;
12
12
  hideMoreActions?: boolean;
@@ -284,7 +284,13 @@ export interface TeamProfilecardCoreProps {
284
284
  viewProfileOnClick?: (event?: React.MouseEvent<Element>) => void;
285
285
  }
286
286
  export interface AgentActionsType {
287
- onChatClick?: (event: React.MouseEvent) => void;
287
+ /**
288
+ * Called when the "Chat with Agent" button is clicked. Receives the mouse event
289
+ * and the Agent Studio UUID.
290
+ * So callers can open Rovo chat with the correct agent without needing
291
+ * their own AAID→UUID resolution.
292
+ */
293
+ onChatClick?: (event: React.MouseEvent, agentStudioId?: string) => void;
288
294
  onConversationStartersClick?: (starter: ConversationStarter) => void;
289
295
  }
290
296
  export interface AgentProfileCardTriggerProps extends AgentActionsType {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "26.10.3",
3
+ "version": "26.12.0",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -38,7 +38,7 @@
38
38
  "access": "public"
39
39
  },
40
40
  "dependencies": {
41
- "@atlaskit/afm-i18n-platform-people-and-teams-profilecard": "2.172.0",
41
+ "@atlaskit/afm-i18n-platform-people-and-teams-profilecard": "2.193.0",
42
42
  "@atlaskit/atlassian-context": "^1.1.0",
43
43
  "@atlaskit/avatar": "^26.2.0",
44
44
  "@atlaskit/avatar-group": "^13.1.0",
@@ -66,10 +66,10 @@
66
66
  "@atlaskit/teams-app-internal-analytics": "^2.2.0",
67
67
  "@atlaskit/teams-app-internal-navigation": "^2.1.0",
68
68
  "@atlaskit/teams-avatar": "^3.2.0",
69
- "@atlaskit/teams-public": "^2.4.0",
69
+ "@atlaskit/teams-public": "^2.5.0",
70
70
  "@atlaskit/theme": "^26.1.0",
71
- "@atlaskit/tmp-editor-statsig": "^127.0.0",
72
- "@atlaskit/tokens": "^16.0.0",
71
+ "@atlaskit/tmp-editor-statsig": "^129.0.0",
72
+ "@atlaskit/tokens": "^16.1.0",
73
73
  "@atlaskit/tooltip": "^23.1.0",
74
74
  "@babel/runtime": "^7.0.0",
75
75
  "@compiled/react": "^0.20.0",