@atlaskit/profilecard 23.18.1 → 23.18.3

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,19 @@
1
1
  # @atlaskit/profilecard
2
2
 
3
+ ## 23.18.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 23.18.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#170226](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/170226)
14
+ [`1ac0fbf884924`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/1ac0fbf884924) -
15
+ NO-ISSUE Fix profile card pop up content text selection issue
16
+
3
17
  ## 23.18.1
4
18
 
5
19
  ### 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', "23.18.1");
14
+ headers.append('atl-client-version', "23.18.3");
15
15
  return headers;
16
16
  };
17
17
  function getOrgIdForCloudIdFromAGG(_x, _x2) {
@@ -65,7 +65,7 @@ var addHeaders = exports.addHeaders = function addHeaders(headers) {
65
65
  headers.append('X-ExperimentalApi', 'teams-beta');
66
66
  headers.append('X-ExperimentalApi', 'team-members-beta');
67
67
  headers.append('atl-client-name', "@atlaskit/profilecard");
68
- headers.append('atl-client-version', "23.18.1");
68
+ headers.append('atl-client-version', "23.18.3");
69
69
  return headers;
70
70
  };
71
71
  function getTeamFromAGG(_x, _x2, _x3) {
@@ -55,7 +55,7 @@ var TeamConnections = exports.TeamConnections = function TeamConnections(_ref) {
55
55
  href: link,
56
56
  onClick: onClick
57
57
  }, (0, _platformFeatureFlags.fg)('enable_new_tab_for_team_container') ? {
58
- target: "_blank"
58
+ target: '_blank'
59
59
  } : {}), /*#__PURE__*/_react.default.createElement(_compiled.Inline, {
60
60
  space: "space.100",
61
61
  xcss: styles.containerWrapperStyles
@@ -117,7 +117,7 @@ var NewTeamConnections = exports.NewTeamConnections = function NewTeamConnection
117
117
  href: link,
118
118
  onClick: onClick
119
119
  }, (0, _platformFeatureFlags.fg)('enable_new_tab_for_team_container') ? {
120
- target: "_blank"
120
+ target: '_blank'
121
121
  } : {}, {
122
122
  description: /*#__PURE__*/_react.default.createElement(_compiled.Inline, {
123
123
  space: "space.050"
@@ -45,7 +45,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
45
45
  actionSubjectId: actionSubjectId,
46
46
  attributes: _objectSpread(_objectSpread({
47
47
  packageName: "@atlaskit/profilecard",
48
- packageVersion: "23.18.1"
48
+ packageVersion: "23.18.3"
49
49
  }, attributes), {}, {
50
50
  firedAt: Math.round((0, _performance.getPageTime)())
51
51
  })
@@ -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', "23.18.1");
9
+ headers.append('atl-client-version', "23.18.3");
10
10
  return headers;
11
11
  };
12
12
  export async function getOrgIdForCloudIdFromAGG(url, cloudId) {
@@ -74,7 +74,7 @@ export const addHeaders = headers => {
74
74
  headers.append('X-ExperimentalApi', 'teams-beta');
75
75
  headers.append('X-ExperimentalApi', 'team-members-beta');
76
76
  headers.append('atl-client-name', "@atlaskit/profilecard");
77
- headers.append('atl-client-version', "23.18.1");
77
+ headers.append('atl-client-version', "23.18.3");
78
78
  return headers;
79
79
  };
80
80
  export async function getTeamFromAGG(url, teamId, siteId) {
@@ -49,7 +49,7 @@ export const TeamConnections = ({
49
49
  href: link,
50
50
  onClick: onClick
51
51
  }, fg('enable_new_tab_for_team_container') ? {
52
- target: "_blank"
52
+ target: '_blank'
53
53
  } : {}), /*#__PURE__*/React.createElement(Inline, {
54
54
  space: "space.100",
55
55
  xcss: styles.containerWrapperStyles
@@ -114,7 +114,7 @@ export const NewTeamConnections = ({
114
114
  href: link,
115
115
  onClick: onClick
116
116
  }, fg('enable_new_tab_for_team_container') ? {
117
- target: "_blank"
117
+ target: '_blank'
118
118
  } : {}, {
119
119
  description: /*#__PURE__*/React.createElement(Inline, {
120
120
  space: "space.050"
@@ -32,7 +32,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
32
32
  actionSubjectId,
33
33
  attributes: {
34
34
  packageName: "@atlaskit/profilecard",
35
- packageVersion: "23.18.1",
35
+ packageVersion: "23.18.3",
36
36
  ...attributes,
37
37
  firedAt: Math.round(getPageTime())
38
38
  }
@@ -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', "23.18.1");
7
+ headers.append('atl-client-version', "23.18.3");
8
8
  return headers;
9
9
  };
10
10
  export function getOrgIdForCloudIdFromAGG(_x, _x2) {
@@ -56,7 +56,7 @@ export var addHeaders = function addHeaders(headers) {
56
56
  headers.append('X-ExperimentalApi', 'teams-beta');
57
57
  headers.append('X-ExperimentalApi', 'team-members-beta');
58
58
  headers.append('atl-client-name', "@atlaskit/profilecard");
59
- headers.append('atl-client-version', "23.18.1");
59
+ headers.append('atl-client-version', "23.18.3");
60
60
  return headers;
61
61
  };
62
62
  export function getTeamFromAGG(_x, _x2, _x3) {
@@ -46,7 +46,7 @@ export var TeamConnections = function TeamConnections(_ref) {
46
46
  href: link,
47
47
  onClick: onClick
48
48
  }, fg('enable_new_tab_for_team_container') ? {
49
- target: "_blank"
49
+ target: '_blank'
50
50
  } : {}), /*#__PURE__*/React.createElement(Inline, {
51
51
  space: "space.100",
52
52
  xcss: styles.containerWrapperStyles
@@ -108,7 +108,7 @@ export var NewTeamConnections = function NewTeamConnections(_ref2) {
108
108
  href: link,
109
109
  onClick: onClick
110
110
  }, fg('enable_new_tab_for_team_container') ? {
111
- target: "_blank"
111
+ target: '_blank'
112
112
  } : {}, {
113
113
  description: /*#__PURE__*/React.createElement(Inline, {
114
114
  space: "space.050"
@@ -39,7 +39,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
39
39
  actionSubjectId: actionSubjectId,
40
40
  attributes: _objectSpread(_objectSpread({
41
41
  packageName: "@atlaskit/profilecard",
42
- packageVersion: "23.18.1"
42
+ packageVersion: "23.18.3"
43
43
  }, attributes), {}, {
44
44
  firedAt: Math.round(getPageTime())
45
45
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "23.18.1",
3
+ "version": "23.18.3",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -74,12 +74,12 @@
74
74
  "@atlaskit/popup": "^4.3.0",
75
75
  "@atlaskit/primitives": "^14.8.0",
76
76
  "@atlaskit/rovo-agent-components": "^2.11.0",
77
- "@atlaskit/rovo-triggers": "^2.15.0",
77
+ "@atlaskit/rovo-triggers": "^2.16.0",
78
78
  "@atlaskit/spinner": "^18.0.0",
79
79
  "@atlaskit/teams-avatar": "^2.3.0",
80
- "@atlaskit/teams-public": "^0.36.0",
80
+ "@atlaskit/teams-public": "^0.37.0",
81
81
  "@atlaskit/theme": "^18.0.0",
82
- "@atlaskit/tokens": "^5.1.0",
82
+ "@atlaskit/tokens": "^5.2.0",
83
83
  "@atlaskit/tooltip": "^20.3.0",
84
84
  "@babel/runtime": "^7.0.0",
85
85
  "@compiled/react": "^0.18.3",