@atlaskit/profilecard 24.35.2 → 24.37.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,28 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 24.37.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`92f68aebd9135`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/92f68aebd9135) -
8
+ Update i18n NPM package versions for people-and-teams,identity (Group 8)
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+
14
+ ## 24.36.0
15
+
16
+ ### Minor Changes
17
+
18
+ - [`ebdb0137330d9`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/ebdb0137330d9) -
19
+ Support REMOTE_A2A agent exposing isForgeAgentByCreatorType to public repo and deprecating
20
+ isForgeAgent from private repo
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+
3
26
  ## 24.35.2
4
27
 
5
28
  ### 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', "24.35.1");
14
+ headers.append('atl-client-version', "0.0.0-development");
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', "24.35.1");
69
+ headers.append('atl-client-version', "0.0.0-development");
70
70
  return headers;
71
71
  };
72
72
  function getTeamFromAGG(_x, _x2, _x3) {
@@ -200,7 +200,7 @@ var AgentProfileCard = function AgentProfileCard(_ref) {
200
200
  agentIdentityAccountId: agent.identity_account_id,
201
201
  size: (0, _platformFeatureFlags.fg)('rovo_agent_empty_state_refresh') ? 'large' : 'xlarge',
202
202
  isRovoDev: isRovoDev && (0, _platformFeatureFlags.fg)('rovo_dev_themed_identity_card'),
203
- isForgeAgent: agent.creator_type === 'FORGE' || agent.creator_type === 'THIRD_PARTY',
203
+ isForgeAgent: (0, _platformFeatureFlags.fg)('rovo_agent_support_a2a_avatar') ? (0, _AgentAvatar.isForgeAgentByCreatorType)(agent.creator_type) : agent.creator_type === 'FORGE' || agent.creator_type === 'THIRD_PARTY',
204
204
  forgeAgentIconUrl: agent.icon
205
205
  })), /*#__PURE__*/_react.default.createElement(_compiled.Stack, {
206
206
  space: "space.100",
@@ -13,7 +13,7 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
13
13
  var ANALYTICS_CHANNEL = 'peopleTeams';
14
14
  var PACKAGE_META_DATA = exports.PACKAGE_META_DATA = {
15
15
  packageName: "@atlaskit/profilecard",
16
- packageVersion: "24.35.1"
16
+ packageVersion: "0.0.0-development"
17
17
  };
18
18
  var runItLater = function runItLater(cb) {
19
19
  var requestIdleCallback = window.requestIdleCallback;
@@ -58,7 +58,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
58
58
  actionSubjectId: actionSubjectId,
59
59
  attributes: _objectSpread(_objectSpread({
60
60
  packageName: "@atlaskit/profilecard",
61
- packageVersion: "24.35.1"
61
+ packageVersion: "0.0.0-development"
62
62
  }, attributes), {}, {
63
63
  firedAt: Math.round((0, _performance.getPageTime)())
64
64
  })
@@ -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', "24.35.1");
9
+ headers.append('atl-client-version', "0.0.0-development");
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', "24.35.1");
81
+ headers.append('atl-client-version', "0.0.0-development");
82
82
  return headers;
83
83
  };
84
84
  export async function getTeamFromAGG(url, teamId, siteId) {
@@ -9,7 +9,7 @@ import { fg } from '@atlaskit/platform-feature-flags';
9
9
  import { Box, Flex, Stack, Text } from '@atlaskit/primitives/compiled';
10
10
  import { AgentBanner } from '@atlaskit/rovo-agent-components/ui/agent-avatar/GeneratedAvatar';
11
11
  import { AgentStarCount } from '@atlaskit/rovo-agent-components/ui/agent-profile-info/AgentStarCount';
12
- import { AgentAvatar } from '@atlaskit/rovo-agent-components/ui/AgentAvatar';
12
+ import { AgentAvatar, isForgeAgentByCreatorType } from '@atlaskit/rovo-agent-components/ui/AgentAvatar';
13
13
  import { AgentProfileCreator, AgentProfileInfo } from '@atlaskit/rovo-agent-components/ui/AgentProfileInfo';
14
14
  import { useAnalyticsEvents as useAnalyticsEventsNext } from '@atlaskit/teams-app-internal-analytics';
15
15
  import { PACKAGE_META_DATA } from '../../util/analytics';
@@ -153,7 +153,7 @@ const AgentProfileCard = ({
153
153
  agentIdentityAccountId: agent.identity_account_id,
154
154
  size: fg('rovo_agent_empty_state_refresh') ? 'large' : 'xlarge',
155
155
  isRovoDev: isRovoDev && fg('rovo_dev_themed_identity_card'),
156
- isForgeAgent: agent.creator_type === 'FORGE' || agent.creator_type === 'THIRD_PARTY',
156
+ isForgeAgent: fg('rovo_agent_support_a2a_avatar') ? isForgeAgentByCreatorType(agent.creator_type) : agent.creator_type === 'FORGE' || agent.creator_type === 'THIRD_PARTY',
157
157
  forgeAgentIconUrl: agent.icon
158
158
  })), /*#__PURE__*/React.createElement(Stack, {
159
159
  space: "space.100",
@@ -4,7 +4,7 @@ import { getPageTime } from './performance';
4
4
  const ANALYTICS_CHANNEL = 'peopleTeams';
5
5
  export const PACKAGE_META_DATA = {
6
6
  packageName: "@atlaskit/profilecard",
7
- packageVersion: "24.35.1"
7
+ packageVersion: "0.0.0-development"
8
8
  };
9
9
  const runItLater = cb => {
10
10
  const requestIdleCallback = window.requestIdleCallback;
@@ -45,7 +45,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
45
45
  actionSubjectId,
46
46
  attributes: {
47
47
  packageName: "@atlaskit/profilecard",
48
- packageVersion: "24.35.1",
48
+ packageVersion: "0.0.0-development",
49
49
  ...attributes,
50
50
  firedAt: Math.round(getPageTime())
51
51
  }
@@ -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', "24.35.1");
7
+ headers.append('atl-client-version', "0.0.0-development");
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', "24.35.1");
62
+ headers.append('atl-client-version', "0.0.0-development");
63
63
  return headers;
64
64
  };
65
65
  export function getTeamFromAGG(_x, _x2, _x3) {
@@ -15,7 +15,7 @@ import { fg } from '@atlaskit/platform-feature-flags';
15
15
  import { Box, Flex, Stack, Text } from '@atlaskit/primitives/compiled';
16
16
  import { AgentBanner } from '@atlaskit/rovo-agent-components/ui/agent-avatar/GeneratedAvatar';
17
17
  import { AgentStarCount } from '@atlaskit/rovo-agent-components/ui/agent-profile-info/AgentStarCount';
18
- import { AgentAvatar } from '@atlaskit/rovo-agent-components/ui/AgentAvatar';
18
+ import { AgentAvatar, isForgeAgentByCreatorType } from '@atlaskit/rovo-agent-components/ui/AgentAvatar';
19
19
  import { AgentProfileCreator, AgentProfileInfo } from '@atlaskit/rovo-agent-components/ui/AgentProfileInfo';
20
20
  import { useAnalyticsEvents as useAnalyticsEventsNext } from '@atlaskit/teams-app-internal-analytics';
21
21
  import { PACKAGE_META_DATA } from '../../util/analytics';
@@ -191,7 +191,7 @@ var AgentProfileCard = function AgentProfileCard(_ref) {
191
191
  agentIdentityAccountId: agent.identity_account_id,
192
192
  size: fg('rovo_agent_empty_state_refresh') ? 'large' : 'xlarge',
193
193
  isRovoDev: isRovoDev && fg('rovo_dev_themed_identity_card'),
194
- isForgeAgent: agent.creator_type === 'FORGE' || agent.creator_type === 'THIRD_PARTY',
194
+ isForgeAgent: fg('rovo_agent_support_a2a_avatar') ? isForgeAgentByCreatorType(agent.creator_type) : agent.creator_type === 'FORGE' || agent.creator_type === 'THIRD_PARTY',
195
195
  forgeAgentIconUrl: agent.icon
196
196
  })), /*#__PURE__*/React.createElement(Stack, {
197
197
  space: "space.100",
@@ -7,7 +7,7 @@ import { getPageTime } from './performance';
7
7
  var ANALYTICS_CHANNEL = 'peopleTeams';
8
8
  export var PACKAGE_META_DATA = {
9
9
  packageName: "@atlaskit/profilecard",
10
- packageVersion: "24.35.1"
10
+ packageVersion: "0.0.0-development"
11
11
  };
12
12
  var runItLater = function runItLater(cb) {
13
13
  var requestIdleCallback = window.requestIdleCallback;
@@ -52,7 +52,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
52
52
  actionSubjectId: actionSubjectId,
53
53
  attributes: _objectSpread(_objectSpread({
54
54
  packageName: "@atlaskit/profilecard",
55
- packageVersion: "24.35.1"
55
+ packageVersion: "0.0.0-development"
56
56
  }, attributes), {}, {
57
57
  firedAt: Math.round(getPageTime())
58
58
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "24.35.2",
3
+ "version": "24.37.0",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -39,7 +39,7 @@
39
39
  "access": "public"
40
40
  },
41
41
  "dependencies": {
42
- "@atlaskit/afm-i18n-platform-people-and-teams-profilecard": "2.7.0",
42
+ "@atlaskit/afm-i18n-platform-people-and-teams-profilecard": "2.39.0",
43
43
  "@atlaskit/analytics-next": "^11.1.0",
44
44
  "@atlaskit/atlassian-context": "^0.6.0",
45
45
  "@atlaskit/avatar": "^25.7.0",
@@ -48,7 +48,7 @@
48
48
  "@atlaskit/css": "^0.19.0",
49
49
  "@atlaskit/dropdown-menu": "^16.4.0",
50
50
  "@atlaskit/empty-state": "^10.1.0",
51
- "@atlaskit/give-kudos": "^4.11.0",
51
+ "@atlaskit/give-kudos": "^4.12.0",
52
52
  "@atlaskit/heading": "^5.3.0",
53
53
  "@atlaskit/icon": "^31.0.0",
54
54
  "@atlaskit/link": "3.3.3",
@@ -60,13 +60,13 @@
60
60
  "@atlaskit/platform-feature-flags-react": "^0.4.0",
61
61
  "@atlaskit/popup": "^4.13.0",
62
62
  "@atlaskit/primitives": "^18.0.0",
63
- "@atlaskit/rovo-agent-components": "^3.32.0",
64
- "@atlaskit/rovo-triggers": "^5.14.0",
63
+ "@atlaskit/rovo-agent-components": "^3.33.0",
64
+ "@atlaskit/rovo-triggers": "^5.16.0",
65
65
  "@atlaskit/spinner": "^19.0.0",
66
66
  "@atlaskit/teams-app-config": "^1.12.0",
67
67
  "@atlaskit/teams-app-internal-analytics": "^1.24.0",
68
68
  "@atlaskit/teams-avatar": "^2.4.0",
69
- "@atlaskit/teams-public": "^0.69.0",
69
+ "@atlaskit/teams-public": "^0.70.0",
70
70
  "@atlaskit/theme": "^21.0.0",
71
71
  "@atlaskit/tokens": "^11.0.0",
72
72
  "@atlaskit/tooltip": "^20.14.0",
@@ -183,6 +183,9 @@
183
183
  },
184
184
  "new_team_profile_fedramp": {
185
185
  "type": "boolean"
186
+ },
187
+ "rovo_agent_support_a2a_avatar": {
188
+ "type": "boolean"
186
189
  }
187
190
  },
188
191
  "sideEffects": [
package/tsconfig.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "extends": "../../../tsconfig.json",
3
- "compilerOptions": {},
4
3
  "include": [
5
4
  "./src/**/*.ts",
6
5
  "./src/**/*.tsx",