@atlaskit/profilecard 19.5.12 → 19.5.14

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/profilecard
2
2
 
3
+ ## 19.5.14
4
+
5
+ ### Patch Changes
6
+
7
+ - [#41283](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41283) [`4eb4f881efa`](https://bitbucket.org/atlassian/atlassian-frontend/commits/4eb4f881efa) - fix strict typescript errors
8
+
9
+ ## 19.5.13
10
+
11
+ ### Patch Changes
12
+
13
+ - [#41140](https://bitbucket.org/atlassian/atlassian-frontend/pull-requests/41140) [`e54969bc4d1`](https://bitbucket.org/atlassian/atlassian-frontend/commits/e54969bc4d1) - PTC-7540 as a PIR, add unit tests for graphql queries
14
+
3
15
  ## 19.5.12
4
16
 
5
17
  ### Patch Changes
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.default = void 0;
7
+ exports.default = exports.buildReportingLinesQuery = exports.buildCheckFeatureFlagQuery = void 0;
8
8
  var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
9
9
  var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
10
10
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
@@ -16,7 +16,7 @@ var _CachingClient2 = _interopRequireDefault(require("./CachingClient"));
16
16
  var _graphqlUtils = require("./graphqlUtils");
17
17
  function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; }
18
18
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
19
- var buildReportingLinesQuery = function buildReportingLinesQuery(aaid) {
19
+ var buildReportingLinesQuery = exports.buildReportingLinesQuery = function buildReportingLinesQuery(aaid) {
20
20
  return {
21
21
  query: "\n fragment ReportingLinesUserPII on UserPII {\n name\n picture\n }\n\n fragment ReportingLinesUserFragment on ReportingLinesUser {\n accountIdentifier\n identifierType\n pii {\n ...ReportingLinesUserPII\n }\n }\n\n query ReportingLines($aaid: String) {\n reportingLines(aaidOrHash: $aaid) {\n managers {\n ...ReportingLinesUserFragment\n }\n reports {\n ...ReportingLinesUserFragment\n }\n }\n }\n ",
22
22
  variables: {
@@ -24,7 +24,7 @@ var buildReportingLinesQuery = function buildReportingLinesQuery(aaid) {
24
24
  }
25
25
  };
26
26
  };
27
- var buildCheckFeatureFlagQuery = function buildCheckFeatureFlagQuery(featureKey, context) {
27
+ var buildCheckFeatureFlagQuery = exports.buildCheckFeatureFlagQuery = function buildCheckFeatureFlagQuery(featureKey, context) {
28
28
  return {
29
29
  query: "\n query isFeatureKeyEnabled($featureKey: String!, $context: [IsFeatureEnabledContextInput]) {\n isFeatureEnabled(featureKey: $featureKey, context: $context) {\n enabled\n }\n }\n ",
30
30
  variables: {
@@ -4,7 +4,7 @@ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefau
4
4
  Object.defineProperty(exports, "__esModule", {
5
5
  value: true
6
6
  });
7
- exports.modifyResponse = exports.default = void 0;
7
+ exports.modifyResponse = exports.default = exports.buildUserQuery = void 0;
8
8
  var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
9
9
  var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
10
10
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
@@ -57,9 +57,9 @@ var modifyResponse = exports.modifyResponse = function modifyResponse(response)
57
57
  * @param {string} cloudId
58
58
  * @return {string} GraphQL Query String
59
59
  */
60
- var buildUserQuery = function buildUserQuery(cloudId, userId) {
60
+ var buildUserQuery = exports.buildUserQuery = function buildUserQuery(cloudId, userId) {
61
61
  return {
62
- query: "query User($userId: String!, $cloudId: String!) {\n User: CloudUser(userId: $userId, cloudId: $cloudId) {\n id,\n isCurrentUser,\n status,\n statusModifiedDate,\n isBot,\n isNotMentionable,\n fullName,\n nickname,\n email,\n meta: title,\n location,\n companyName,\n avatarUrl(size: 192),\n remoteWeekdayIndex: localTime(format: \"d\"),\n remoteWeekdayString: localTime(format: \"ddd\"),\n remoteTimeString: localTime(format: \"h:mma\"),\n }\n }",
62
+ query: "query User($userId: String!, $cloudId: String!) {\n User: CloudUser(userId: $userId, cloudId: $cloudId) {\n id\n isCurrentUser\n status\n statusModifiedDate\n isBot\n isNotMentionable\n fullName\n nickname\n email\n meta: title\n location\n companyName\n avatarUrl(size: 192)\n remoteWeekdayIndex: localTime(format: \"d\")\n remoteWeekdayString: localTime(format: \"ddd\")\n remoteTimeString: localTime(format: \"h:mma\")\n }\n }",
63
63
  variables: {
64
64
  cloudId: cloudId,
65
65
  userId: userId
@@ -60,7 +60,7 @@ var addHeaders = exports.addHeaders = function addHeaders(headers) {
60
60
  headers.append('X-ExperimentalApi', 'teams-beta');
61
61
  headers.append('X-ExperimentalApi', 'team-members-beta');
62
62
  headers.append('atl-client-name', "@atlaskit/profilecard");
63
- headers.append('atl-client-version', "19.5.12");
63
+ headers.append('atl-client-version', "19.5.14");
64
64
  return headers;
65
65
  };
66
66
  function getTeamFromAGG(_x, _x2, _x3) {
@@ -108,7 +108,7 @@ var ProfileCardResourced = /*#__PURE__*/function (_React$PureComponent) {
108
108
  }
109
109
  }, {
110
110
  key: "componentDidUpdate",
111
- value: function componentDidUpdate(prevProps, prevState) {
111
+ value: function componentDidUpdate(prevProps) {
112
112
  var _this$props2 = this.props,
113
113
  userId = _this$props2.userId,
114
114
  cloudId = _this$props2.cloudId,
@@ -56,7 +56,7 @@ var ReportingLinesDetails = function ReportingLinesDetails(props) {
56
56
  }), /*#__PURE__*/_react.default.createElement(_ReportingLines.ManagerName, null, (_manager$pii2 = manager.pii) === null || _manager$pii2 === void 0 ? void 0 : _manager$pii2.name))))), hasReports && /*#__PURE__*/_react.default.createElement(_ReportingLines.ReportingLinesSection, null, /*#__PURE__*/_react.default.createElement(_ReportingLines.ReportingLinesHeading, null, /*#__PURE__*/_react.default.createElement(_reactIntlNext.FormattedMessage, _messages.default.directReportsSectionHeading)), /*#__PURE__*/_react.default.createElement(_avatarGroup.default, {
57
57
  appearance: "stack",
58
58
  size: "small",
59
- data: reports.map(function (member, index) {
59
+ data: reports.map(function (member) {
60
60
  var _member$pii, _member$pii2;
61
61
  return {
62
62
  key: member.accountIdentifier,
@@ -44,7 +44,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
44
44
  actionSubjectId: actionSubjectId,
45
45
  attributes: _objectSpread(_objectSpread({
46
46
  packageName: "@atlaskit/profilecard",
47
- packageVersion: "19.5.12"
47
+ packageVersion: "19.5.14"
48
48
  }, attributes), {}, {
49
49
  firedAt: Math.round((0, _performance.getPageTime)())
50
50
  })
@@ -1,6 +1,6 @@
1
1
  import CachingClient from './CachingClient';
2
2
  import { directoryGraphqlQuery } from './graphqlUtils';
3
- const buildReportingLinesQuery = aaid => ({
3
+ export const buildReportingLinesQuery = aaid => ({
4
4
  query: `
5
5
  fragment ReportingLinesUserPII on UserPII {
6
6
  name
@@ -30,7 +30,7 @@ const buildReportingLinesQuery = aaid => ({
30
30
  aaid
31
31
  }
32
32
  });
33
- const buildCheckFeatureFlagQuery = (featureKey, context) => ({
33
+ export const buildCheckFeatureFlagQuery = (featureKey, context) => ({
34
34
  query: `
35
35
  query isFeatureKeyEnabled($featureKey: String!, $context: [IsFeatureEnabledContextInput]) {
36
36
  isFeatureEnabled(featureKey: $featureKey, context: $context) {
@@ -41,25 +41,25 @@ export const modifyResponse = response => {
41
41
  * @param {string} cloudId
42
42
  * @return {string} GraphQL Query String
43
43
  */
44
- const buildUserQuery = (cloudId, userId) => ({
44
+ export const buildUserQuery = (cloudId, userId) => ({
45
45
  query: `query User($userId: String!, $cloudId: String!) {
46
46
  User: CloudUser(userId: $userId, cloudId: $cloudId) {
47
- id,
48
- isCurrentUser,
49
- status,
50
- statusModifiedDate,
51
- isBot,
52
- isNotMentionable,
53
- fullName,
54
- nickname,
55
- email,
56
- meta: title,
57
- location,
58
- companyName,
59
- avatarUrl(size: 192),
60
- remoteWeekdayIndex: localTime(format: "d"),
61
- remoteWeekdayString: localTime(format: "ddd"),
62
- remoteTimeString: localTime(format: "h:mma"),
47
+ id
48
+ isCurrentUser
49
+ status
50
+ statusModifiedDate
51
+ isBot
52
+ isNotMentionable
53
+ fullName
54
+ nickname
55
+ email
56
+ meta: title
57
+ location
58
+ companyName
59
+ avatarUrl(size: 192)
60
+ remoteWeekdayIndex: localTime(format: "d")
61
+ remoteWeekdayString: localTime(format: "ddd")
62
+ remoteTimeString: localTime(format: "h:mma")
63
63
  }
64
64
  }`,
65
65
  variables: {
@@ -77,7 +77,7 @@ export const addHeaders = headers => {
77
77
  headers.append('X-ExperimentalApi', 'teams-beta');
78
78
  headers.append('X-ExperimentalApi', 'team-members-beta');
79
79
  headers.append('atl-client-name', "@atlaskit/profilecard");
80
- headers.append('atl-client-version', "19.5.12");
80
+ headers.append('atl-client-version', "19.5.14");
81
81
  return headers;
82
82
  };
83
83
  export async function getTeamFromAGG(url, teamId, siteId) {
@@ -69,7 +69,7 @@ class ProfileCardResourced extends React.PureComponent {
69
69
  this._isMounted = true;
70
70
  this.clientFetchProfile();
71
71
  }
72
- componentDidUpdate(prevProps, prevState) {
72
+ componentDidUpdate(prevProps) {
73
73
  const {
74
74
  userId,
75
75
  cloudId,
@@ -46,7 +46,7 @@ const ReportingLinesDetails = props => {
46
46
  }), /*#__PURE__*/React.createElement(ManagerName, null, (_manager$pii2 = manager.pii) === null || _manager$pii2 === void 0 ? void 0 : _manager$pii2.name))))), hasReports && /*#__PURE__*/React.createElement(ReportingLinesSection, null, /*#__PURE__*/React.createElement(ReportingLinesHeading, null, /*#__PURE__*/React.createElement(FormattedMessage, messages.directReportsSectionHeading)), /*#__PURE__*/React.createElement(AvatarGroup, {
47
47
  appearance: "stack",
48
48
  size: "small",
49
- data: reports.map((member, index) => {
49
+ data: reports.map(member => {
50
50
  var _member$pii, _member$pii2;
51
51
  return {
52
52
  key: member.accountIdentifier,
@@ -31,7 +31,7 @@ const createEvent = (eventType, action, actionSubject, actionSubjectId, attribut
31
31
  actionSubjectId,
32
32
  attributes: {
33
33
  packageName: "@atlaskit/profilecard",
34
- packageVersion: "19.5.12",
34
+ packageVersion: "19.5.14",
35
35
  ...attributes,
36
36
  firedAt: Math.round(getPageTime())
37
37
  }
@@ -9,7 +9,7 @@ function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflec
9
9
  function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
10
10
  import CachingClient from './CachingClient';
11
11
  import { directoryGraphqlQuery } from './graphqlUtils';
12
- var buildReportingLinesQuery = function buildReportingLinesQuery(aaid) {
12
+ export var buildReportingLinesQuery = function buildReportingLinesQuery(aaid) {
13
13
  return {
14
14
  query: "\n fragment ReportingLinesUserPII on UserPII {\n name\n picture\n }\n\n fragment ReportingLinesUserFragment on ReportingLinesUser {\n accountIdentifier\n identifierType\n pii {\n ...ReportingLinesUserPII\n }\n }\n\n query ReportingLines($aaid: String) {\n reportingLines(aaidOrHash: $aaid) {\n managers {\n ...ReportingLinesUserFragment\n }\n reports {\n ...ReportingLinesUserFragment\n }\n }\n }\n ",
15
15
  variables: {
@@ -17,7 +17,7 @@ var buildReportingLinesQuery = function buildReportingLinesQuery(aaid) {
17
17
  }
18
18
  };
19
19
  };
20
- var buildCheckFeatureFlagQuery = function buildCheckFeatureFlagQuery(featureKey, context) {
20
+ export var buildCheckFeatureFlagQuery = function buildCheckFeatureFlagQuery(featureKey, context) {
21
21
  return {
22
22
  query: "\n query isFeatureKeyEnabled($featureKey: String!, $context: [IsFeatureEnabledContextInput]) {\n isFeatureEnabled(featureKey: $featureKey, context: $context) {\n enabled\n }\n }\n ",
23
23
  variables: {
@@ -51,9 +51,9 @@ export var modifyResponse = function modifyResponse(response) {
51
51
  * @param {string} cloudId
52
52
  * @return {string} GraphQL Query String
53
53
  */
54
- var buildUserQuery = function buildUserQuery(cloudId, userId) {
54
+ export var buildUserQuery = function buildUserQuery(cloudId, userId) {
55
55
  return {
56
- query: "query User($userId: String!, $cloudId: String!) {\n User: CloudUser(userId: $userId, cloudId: $cloudId) {\n id,\n isCurrentUser,\n status,\n statusModifiedDate,\n isBot,\n isNotMentionable,\n fullName,\n nickname,\n email,\n meta: title,\n location,\n companyName,\n avatarUrl(size: 192),\n remoteWeekdayIndex: localTime(format: \"d\"),\n remoteWeekdayString: localTime(format: \"ddd\"),\n remoteTimeString: localTime(format: \"h:mma\"),\n }\n }",
56
+ query: "query User($userId: String!, $cloudId: String!) {\n User: CloudUser(userId: $userId, cloudId: $cloudId) {\n id\n isCurrentUser\n status\n statusModifiedDate\n isBot\n isNotMentionable\n fullName\n nickname\n email\n meta: title\n location\n companyName\n avatarUrl(size: 192)\n remoteWeekdayIndex: localTime(format: \"d\")\n remoteWeekdayString: localTime(format: \"ddd\")\n remoteTimeString: localTime(format: \"h:mma\")\n }\n }",
57
57
  variables: {
58
58
  cloudId: cloudId,
59
59
  userId: userId
@@ -51,7 +51,7 @@ export var addHeaders = function addHeaders(headers) {
51
51
  headers.append('X-ExperimentalApi', 'teams-beta');
52
52
  headers.append('X-ExperimentalApi', 'team-members-beta');
53
53
  headers.append('atl-client-name', "@atlaskit/profilecard");
54
- headers.append('atl-client-version', "19.5.12");
54
+ headers.append('atl-client-version', "19.5.14");
55
55
  return headers;
56
56
  };
57
57
  export function getTeamFromAGG(_x, _x2, _x3) {
@@ -98,7 +98,7 @@ var ProfileCardResourced = /*#__PURE__*/function (_React$PureComponent) {
98
98
  }
99
99
  }, {
100
100
  key: "componentDidUpdate",
101
- value: function componentDidUpdate(prevProps, prevState) {
101
+ value: function componentDidUpdate(prevProps) {
102
102
  var _this$props2 = this.props,
103
103
  userId = _this$props2.userId,
104
104
  cloudId = _this$props2.cloudId,
@@ -49,7 +49,7 @@ var ReportingLinesDetails = function ReportingLinesDetails(props) {
49
49
  }), /*#__PURE__*/React.createElement(ManagerName, null, (_manager$pii2 = manager.pii) === null || _manager$pii2 === void 0 ? void 0 : _manager$pii2.name))))), hasReports && /*#__PURE__*/React.createElement(ReportingLinesSection, null, /*#__PURE__*/React.createElement(ReportingLinesHeading, null, /*#__PURE__*/React.createElement(FormattedMessage, messages.directReportsSectionHeading)), /*#__PURE__*/React.createElement(AvatarGroup, {
50
50
  appearance: "stack",
51
51
  size: "small",
52
- data: reports.map(function (member, index) {
52
+ data: reports.map(function (member) {
53
53
  var _member$pii, _member$pii2;
54
54
  return {
55
55
  key: member.accountIdentifier,
@@ -38,7 +38,7 @@ var createEvent = function createEvent(eventType, action, actionSubject, actionS
38
38
  actionSubjectId: actionSubjectId,
39
39
  attributes: _objectSpread(_objectSpread({
40
40
  packageName: "@atlaskit/profilecard",
41
- packageVersion: "19.5.12"
41
+ packageVersion: "19.5.14"
42
42
  }, attributes), {}, {
43
43
  firedAt: Math.round(getPageTime())
44
44
  })
@@ -1,5 +1,18 @@
1
1
  import { ProfileClientOptions, TeamCentralReportingLinesData } from '../types';
2
2
  import CachingClient from './CachingClient';
3
+ export declare const buildReportingLinesQuery: (aaid: string) => {
4
+ query: string;
5
+ variables: {
6
+ aaid: string;
7
+ };
8
+ };
9
+ export declare const buildCheckFeatureFlagQuery: (featureKey: string, context?: FeatureFlagExtraContext[]) => {
10
+ query: string;
11
+ variables: {
12
+ featureKey: string;
13
+ context: FeatureFlagExtraContext[];
14
+ };
15
+ };
3
16
  type TeamCentralCardClientOptions = ProfileClientOptions & {
4
17
  teamCentralUrl: string;
5
18
  };
@@ -10,6 +10,18 @@ import CachingClient from './CachingClient';
10
10
  * @return {object}
11
11
  */
12
12
  export declare const modifyResponse: (response: ApiClientResponse) => ProfileCardClientData;
13
+ /**
14
+ * @param {string} userId
15
+ * @param {string} cloudId
16
+ * @return {string} GraphQL Query String
17
+ */
18
+ export declare const buildUserQuery: (cloudId: string, userId: string) => {
19
+ query: string;
20
+ variables: {
21
+ cloudId: string;
22
+ userId: string;
23
+ };
24
+ };
13
25
  export default class UserProfileCardClient extends CachingClient<any> {
14
26
  options: ProfileClientOptions;
15
27
  constructor(options: ProfileClientOptions);
@@ -7,7 +7,7 @@ declare class ProfileCardResourced extends React.PureComponent<ProfileCardResour
7
7
  state: ProfileCardResourcedState;
8
8
  fireAnalytics: (payload: AnalyticsEventPayload) => void;
9
9
  componentDidMount(): void;
10
- componentDidUpdate(prevProps: ProfileCardResourcedProps, prevState: ProfileCardResourcedState): void;
10
+ componentDidUpdate(prevProps: ProfileCardResourcedProps): void;
11
11
  componentWillUnmount(): void;
12
12
  clientFetchProfile: () => void;
13
13
  handleClientSuccess(profileData: ProfileCardClientData, reportingLinesData: TeamCentralReportingLinesData, shouldShowGiveKudos: boolean): void;
@@ -1,5 +1,18 @@
1
1
  import { ProfileClientOptions, TeamCentralReportingLinesData } from '../types';
2
2
  import CachingClient from './CachingClient';
3
+ export declare const buildReportingLinesQuery: (aaid: string) => {
4
+ query: string;
5
+ variables: {
6
+ aaid: string;
7
+ };
8
+ };
9
+ export declare const buildCheckFeatureFlagQuery: (featureKey: string, context?: FeatureFlagExtraContext[]) => {
10
+ query: string;
11
+ variables: {
12
+ featureKey: string;
13
+ context: FeatureFlagExtraContext[];
14
+ };
15
+ };
3
16
  type TeamCentralCardClientOptions = ProfileClientOptions & {
4
17
  teamCentralUrl: string;
5
18
  };
@@ -10,6 +10,18 @@ import CachingClient from './CachingClient';
10
10
  * @return {object}
11
11
  */
12
12
  export declare const modifyResponse: (response: ApiClientResponse) => ProfileCardClientData;
13
+ /**
14
+ * @param {string} userId
15
+ * @param {string} cloudId
16
+ * @return {string} GraphQL Query String
17
+ */
18
+ export declare const buildUserQuery: (cloudId: string, userId: string) => {
19
+ query: string;
20
+ variables: {
21
+ cloudId: string;
22
+ userId: string;
23
+ };
24
+ };
13
25
  export default class UserProfileCardClient extends CachingClient<any> {
14
26
  options: ProfileClientOptions;
15
27
  constructor(options: ProfileClientOptions);
@@ -7,7 +7,7 @@ declare class ProfileCardResourced extends React.PureComponent<ProfileCardResour
7
7
  state: ProfileCardResourcedState;
8
8
  fireAnalytics: (payload: AnalyticsEventPayload) => void;
9
9
  componentDidMount(): void;
10
- componentDidUpdate(prevProps: ProfileCardResourcedProps, prevState: ProfileCardResourcedState): void;
10
+ componentDidUpdate(prevProps: ProfileCardResourcedProps): void;
11
11
  componentWillUnmount(): void;
12
12
  clientFetchProfile: () => void;
13
13
  handleClientSuccess(profileData: ProfileCardClientData, reportingLinesData: TeamCentralReportingLinesData, shouldShowGiveKudos: boolean): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/profilecard",
3
- "version": "19.5.12",
3
+ "version": "19.5.14",
4
4
  "description": "A React component to display a card with user information.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "dependencies": {
52
52
  "@atlaskit/analytics-next": "^9.1.0",
53
- "@atlaskit/avatar": "^21.3.0",
53
+ "@atlaskit/avatar": "^21.4.0",
54
54
  "@atlaskit/avatar-group": "^9.4.0",
55
55
  "@atlaskit/button": "^16.10.0",
56
56
  "@atlaskit/dropdown-menu": "^11.14.0",
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "devDependencies": {
81
81
  "@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
82
- "@atlassian/ptc-test-utils": "^0.7.0",
82
+ "@atlassian/ptc-test-utils": "^0.8.0",
83
83
  "@testing-library/react": "^12.1.5",
84
84
  "enzyme": "^3.10.0",
85
85
  "es6-promise": "^4.0.5",