@atlaskit/util-data-test 17.7.0 → 17.8.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,21 @@
1
1
  # @atlaskit/util-data-test
2
2
 
3
+ ## 17.8.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+
13
+ ## 17.7.1
14
+
15
+ ### Patch Changes
16
+
17
+ - [`2e01c9c74b5`](https://bitbucket.org/atlassian/atlassian-frontend/commits/2e01c9c74b5) - DUMMY remove before merging to master; dupe adf-schema via adf-utils
18
+
3
19
  ## 17.7.0
4
20
 
5
21
  ### Minor Changes
@@ -19,24 +19,22 @@ var defaultFetch = /*#__PURE__*/function () {
19
19
  var _ref = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
20
20
  var response;
21
21
  return _regenerator.default.wrap(function _callee$(_context) {
22
- while (1) {
23
- switch (_context.prev = _context.next) {
24
- case 0:
25
- _context.next = 2;
26
- return fetch('./emoji/emoji-all.json');
27
- case 2:
28
- response = _context.sent;
29
- if (response.ok) {
30
- _context.next = 5;
31
- break;
32
- }
33
- throw new Error("Could not fetch emoji data: ".concat(response.status, " ").concat(response.statusText));
34
- case 5:
35
- return _context.abrupt("return", response.json());
36
- case 6:
37
- case "end":
38
- return _context.stop();
39
- }
22
+ while (1) switch (_context.prev = _context.next) {
23
+ case 0:
24
+ _context.next = 2;
25
+ return fetch('./emoji/emoji-all.json');
26
+ case 2:
27
+ response = _context.sent;
28
+ if (response.ok) {
29
+ _context.next = 5;
30
+ break;
31
+ }
32
+ throw new Error("Could not fetch emoji data: ".concat(response.status, " ").concat(response.statusText));
33
+ case 5:
34
+ return _context.abrupt("return", response.json());
35
+ case 6:
36
+ case "end":
37
+ return _context.stop();
40
38
  }
41
39
  }, _callee);
42
40
  }));
@@ -54,21 +52,19 @@ var getEmojiProvider = /*#__PURE__*/function () {
54
52
  repository,
55
53
  _args2 = arguments;
56
54
  return _regenerator.default.wrap(function _callee2$(_context2) {
57
- while (1) {
58
- switch (_context2.prev = _context2.next) {
59
- case 0:
60
- fn = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : defaultFetch;
61
- _context2.next = 3;
62
- return fn();
63
- case 3:
64
- response = _context2.sent;
65
- _denormaliseEmojiServ = (0, _utils.denormaliseEmojiServiceResponse)(response), emojis = _denormaliseEmojiServ.emojis;
66
- repository = new _resource.EmojiRepository(emojis);
67
- return _context2.abrupt("return", new _mockEmojiResource.MockEmojiResource(repository, config));
68
- case 7:
69
- case "end":
70
- return _context2.stop();
71
- }
55
+ while (1) switch (_context2.prev = _context2.next) {
56
+ case 0:
57
+ fn = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : defaultFetch;
58
+ _context2.next = 3;
59
+ return fn();
60
+ case 3:
61
+ response = _context2.sent;
62
+ _denormaliseEmojiServ = (0, _utils.denormaliseEmojiServiceResponse)(response), emojis = _denormaliseEmojiServ.emojis;
63
+ repository = new _resource.EmojiRepository(emojis);
64
+ return _context2.abrupt("return", new _mockEmojiResource.MockEmojiResource(repository, config));
65
+ case 7:
66
+ case "end":
67
+ return _context2.stop();
72
68
  }
73
69
  }, _callee2);
74
70
  }));
@@ -39,20 +39,18 @@ var MockEmojiResource = /*#__PURE__*/function (_MockNonUploadingEmoj) {
39
39
  value: function () {
40
40
  var _getMediaEmojiDescriptionURLWithInlineToken = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(emoji) {
41
41
  return _regenerator.default.wrap(function _callee$(_context) {
42
- while (1) {
43
- switch (_context.prev = _context.next) {
44
- case 0:
45
- if (!this.promiseBuilder) {
46
- _context.next = 2;
47
- break;
48
- }
49
- return _context.abrupt("return", this.promiseBuilder(emoji, 'getMediaEmojiDescriptionURLWithInlineToken'));
50
- case 2:
51
- return _context.abrupt("return", emoji);
52
- case 3:
53
- case "end":
54
- return _context.stop();
55
- }
42
+ while (1) switch (_context.prev = _context.next) {
43
+ case 0:
44
+ if (!this.promiseBuilder) {
45
+ _context.next = 2;
46
+ break;
47
+ }
48
+ return _context.abrupt("return", this.promiseBuilder(emoji, 'getMediaEmojiDescriptionURLWithInlineToken'));
49
+ case 2:
50
+ return _context.abrupt("return", emoji);
51
+ case 3:
52
+ case "end":
53
+ return _context.stop();
56
54
  }
57
55
  }, _callee, this);
58
56
  }));
@@ -66,14 +64,12 @@ var MockEmojiResource = /*#__PURE__*/function (_MockNonUploadingEmoj) {
66
64
  value: function () {
67
65
  var _fetchEmojiProvider = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(force) {
68
66
  return _regenerator.default.wrap(function _callee2$(_context2) {
69
- while (1) {
70
- switch (_context2.prev = _context2.next) {
71
- case 0:
72
- return _context2.abrupt("return", Promise.resolve(this.emojiRepository));
73
- case 1:
74
- case "end":
75
- return _context2.stop();
76
- }
67
+ while (1) switch (_context2.prev = _context2.next) {
68
+ case 0:
69
+ return _context2.abrupt("return", Promise.resolve(this.emojiRepository));
70
+ case 1:
71
+ case "end":
72
+ return _context2.stop();
77
73
  }
78
74
  }, _callee2, this);
79
75
  }));
@@ -87,14 +83,12 @@ var MockEmojiResource = /*#__PURE__*/function (_MockNonUploadingEmoj) {
87
83
  value: function () {
88
84
  var _fetchByEmojiId = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(emojiId, optimistic) {
89
85
  return _regenerator.default.wrap(function _callee3$(_context3) {
90
- while (1) {
91
- switch (_context3.prev = _context3.next) {
92
- case 0:
93
- return _context3.abrupt("return", this.findByEmojiId(emojiId));
94
- case 1:
95
- case "end":
96
- return _context3.stop();
97
- }
86
+ while (1) switch (_context3.prev = _context3.next) {
87
+ case 0:
88
+ return _context3.abrupt("return", this.findByEmojiId(emojiId));
89
+ case 1:
90
+ case "end":
91
+ return _context3.stop();
98
92
  }
99
93
  }, _callee3, this);
100
94
  }));
@@ -49,14 +49,12 @@ var MockNonUploadingEmojiResource = /*#__PURE__*/function (_ref) {
49
49
  value: function () {
50
50
  var _fetchEmojiProvider = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee(force) {
51
51
  return _regenerator.default.wrap(function _callee$(_context) {
52
- while (1) {
53
- switch (_context.prev = _context.next) {
54
- case 0:
55
- return _context.abrupt("return", Promise.resolve(this.emojiRepository));
56
- case 1:
57
- case "end":
58
- return _context.stop();
59
- }
52
+ while (1) switch (_context.prev = _context.next) {
53
+ case 0:
54
+ return _context.abrupt("return", Promise.resolve(this.emojiRepository));
55
+ case 1:
56
+ case "end":
57
+ return _context.stop();
60
58
  }
61
59
  }, _callee, this);
62
60
  }));
@@ -138,14 +136,12 @@ var MockNonUploadingEmojiResource = /*#__PURE__*/function (_ref) {
138
136
  value: function () {
139
137
  var _getFrequentlyUsed = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(options) {
140
138
  return _regenerator.default.wrap(function _callee2$(_context2) {
141
- while (1) {
142
- switch (_context2.prev = _context2.next) {
143
- case 0:
144
- return _context2.abrupt("return", this.promiseBuilder(this.emojiRepository.getFrequentlyUsed(options), 'getFrequentlyUsed'));
145
- case 1:
146
- case "end":
147
- return _context2.stop();
148
- }
139
+ while (1) switch (_context2.prev = _context2.next) {
140
+ case 0:
141
+ return _context2.abrupt("return", this.promiseBuilder(this.emojiRepository.getFrequentlyUsed(options), 'getFrequentlyUsed'));
142
+ case 1:
143
+ case "end":
144
+ return _context2.stop();
149
145
  }
150
146
  }, _callee2, this);
151
147
  }));
@@ -159,14 +155,12 @@ var MockNonUploadingEmojiResource = /*#__PURE__*/function (_ref) {
159
155
  value: function () {
160
156
  var _getMediaEmojiDescriptionURLWithInlineToken = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(emoji) {
161
157
  return _regenerator.default.wrap(function _callee3$(_context3) {
162
- while (1) {
163
- switch (_context3.prev = _context3.next) {
164
- case 0:
165
- return _context3.abrupt("return", emoji);
166
- case 1:
167
- case "end":
168
- return _context3.stop();
169
- }
158
+ while (1) switch (_context3.prev = _context3.next) {
159
+ case 0:
160
+ return _context3.abrupt("return", emoji);
161
+ case 1:
162
+ case "end":
163
+ return _context3.stop();
170
164
  }
171
165
  }, _callee3);
172
166
  }));
@@ -95,33 +95,29 @@ function simpleMockProfilecardClient() {
95
95
  var _getProfile = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee2(_cloudId, userId) {
96
96
  var timeout;
97
97
  return _regenerator.default.wrap(function _callee2$(_context2) {
98
- while (1) {
99
- switch (_context2.prev = _context2.next) {
100
- case 0:
101
- timeout = (0, _util.random)(1500) + 500;
102
- return _context2.abrupt("return", new Promise(function (resolve, reject) {
103
- window.setTimeout( /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
104
- return _regenerator.default.wrap(function _callee$(_context) {
105
- while (1) {
106
- switch (_context.prev = _context.next) {
107
- case 0:
108
- getMockProfile(userId).then(function (data) {
109
- return resolve((0, _profilecard.modifyResponse)(data));
110
- }).catch(function (error) {
111
- return reject(error);
112
- });
113
- case 1:
114
- case "end":
115
- return _context.stop();
116
- }
117
- }
118
- }, _callee);
119
- })), timeout);
120
- }));
121
- case 2:
122
- case "end":
123
- return _context2.stop();
124
- }
98
+ while (1) switch (_context2.prev = _context2.next) {
99
+ case 0:
100
+ timeout = (0, _util.random)(1500) + 500;
101
+ return _context2.abrupt("return", new Promise(function (resolve, reject) {
102
+ window.setTimeout( /*#__PURE__*/(0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee() {
103
+ return _regenerator.default.wrap(function _callee$(_context) {
104
+ while (1) switch (_context.prev = _context.next) {
105
+ case 0:
106
+ getMockProfile(userId).then(function (data) {
107
+ return resolve((0, _profilecard.modifyResponse)(data));
108
+ }).catch(function (error) {
109
+ return reject(error);
110
+ });
111
+ case 1:
112
+ case "end":
113
+ return _context.stop();
114
+ }
115
+ }, _callee);
116
+ })), timeout);
117
+ }));
118
+ case 2:
119
+ case "end":
120
+ return _context2.stop();
125
121
  }
126
122
  }, _callee2);
127
123
  }));
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.7.0"
3
+ "version": "17.8.0"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.7.0"
3
+ "version": "17.8.0"
4
4
  }
@@ -11,24 +11,22 @@ export var defaultFetch = /*#__PURE__*/function () {
11
11
  var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
12
12
  var response;
13
13
  return _regeneratorRuntime.wrap(function _callee$(_context) {
14
- while (1) {
15
- switch (_context.prev = _context.next) {
16
- case 0:
17
- _context.next = 2;
18
- return fetch('./emoji/emoji-all.json');
19
- case 2:
20
- response = _context.sent;
21
- if (response.ok) {
22
- _context.next = 5;
23
- break;
24
- }
25
- throw new Error("Could not fetch emoji data: ".concat(response.status, " ").concat(response.statusText));
26
- case 5:
27
- return _context.abrupt("return", response.json());
28
- case 6:
29
- case "end":
30
- return _context.stop();
31
- }
14
+ while (1) switch (_context.prev = _context.next) {
15
+ case 0:
16
+ _context.next = 2;
17
+ return fetch('./emoji/emoji-all.json');
18
+ case 2:
19
+ response = _context.sent;
20
+ if (response.ok) {
21
+ _context.next = 5;
22
+ break;
23
+ }
24
+ throw new Error("Could not fetch emoji data: ".concat(response.status, " ").concat(response.statusText));
25
+ case 5:
26
+ return _context.abrupt("return", response.json());
27
+ case 6:
28
+ case "end":
29
+ return _context.stop();
32
30
  }
33
31
  }, _callee);
34
32
  }));
@@ -45,21 +43,19 @@ export var getEmojiProvider = /*#__PURE__*/function () {
45
43
  repository,
46
44
  _args2 = arguments;
47
45
  return _regeneratorRuntime.wrap(function _callee2$(_context2) {
48
- while (1) {
49
- switch (_context2.prev = _context2.next) {
50
- case 0:
51
- fn = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : defaultFetch;
52
- _context2.next = 3;
53
- return fn();
54
- case 3:
55
- response = _context2.sent;
56
- _denormaliseEmojiServ = denormaliseEmojiServiceResponse(response), emojis = _denormaliseEmojiServ.emojis;
57
- repository = new EmojiRepository(emojis);
58
- return _context2.abrupt("return", new MockEmojiResource(repository, config));
59
- case 7:
60
- case "end":
61
- return _context2.stop();
62
- }
46
+ while (1) switch (_context2.prev = _context2.next) {
47
+ case 0:
48
+ fn = _args2.length > 1 && _args2[1] !== undefined ? _args2[1] : defaultFetch;
49
+ _context2.next = 3;
50
+ return fn();
51
+ case 3:
52
+ response = _context2.sent;
53
+ _denormaliseEmojiServ = denormaliseEmojiServiceResponse(response), emojis = _denormaliseEmojiServ.emojis;
54
+ repository = new EmojiRepository(emojis);
55
+ return _context2.abrupt("return", new MockEmojiResource(repository, config));
56
+ case 7:
57
+ case "end":
58
+ return _context2.stop();
63
59
  }
64
60
  }, _callee2);
65
61
  }));
@@ -32,20 +32,18 @@ export var MockEmojiResource = /*#__PURE__*/function (_MockNonUploadingEmoj) {
32
32
  value: function () {
33
33
  var _getMediaEmojiDescriptionURLWithInlineToken = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(emoji) {
34
34
  return _regeneratorRuntime.wrap(function _callee$(_context) {
35
- while (1) {
36
- switch (_context.prev = _context.next) {
37
- case 0:
38
- if (!this.promiseBuilder) {
39
- _context.next = 2;
40
- break;
41
- }
42
- return _context.abrupt("return", this.promiseBuilder(emoji, 'getMediaEmojiDescriptionURLWithInlineToken'));
43
- case 2:
44
- return _context.abrupt("return", emoji);
45
- case 3:
46
- case "end":
47
- return _context.stop();
48
- }
35
+ while (1) switch (_context.prev = _context.next) {
36
+ case 0:
37
+ if (!this.promiseBuilder) {
38
+ _context.next = 2;
39
+ break;
40
+ }
41
+ return _context.abrupt("return", this.promiseBuilder(emoji, 'getMediaEmojiDescriptionURLWithInlineToken'));
42
+ case 2:
43
+ return _context.abrupt("return", emoji);
44
+ case 3:
45
+ case "end":
46
+ return _context.stop();
49
47
  }
50
48
  }, _callee, this);
51
49
  }));
@@ -59,14 +57,12 @@ export var MockEmojiResource = /*#__PURE__*/function (_MockNonUploadingEmoj) {
59
57
  value: function () {
60
58
  var _fetchEmojiProvider = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(force) {
61
59
  return _regeneratorRuntime.wrap(function _callee2$(_context2) {
62
- while (1) {
63
- switch (_context2.prev = _context2.next) {
64
- case 0:
65
- return _context2.abrupt("return", Promise.resolve(this.emojiRepository));
66
- case 1:
67
- case "end":
68
- return _context2.stop();
69
- }
60
+ while (1) switch (_context2.prev = _context2.next) {
61
+ case 0:
62
+ return _context2.abrupt("return", Promise.resolve(this.emojiRepository));
63
+ case 1:
64
+ case "end":
65
+ return _context2.stop();
70
66
  }
71
67
  }, _callee2, this);
72
68
  }));
@@ -80,14 +76,12 @@ export var MockEmojiResource = /*#__PURE__*/function (_MockNonUploadingEmoj) {
80
76
  value: function () {
81
77
  var _fetchByEmojiId = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3(emojiId, optimistic) {
82
78
  return _regeneratorRuntime.wrap(function _callee3$(_context3) {
83
- while (1) {
84
- switch (_context3.prev = _context3.next) {
85
- case 0:
86
- return _context3.abrupt("return", this.findByEmojiId(emojiId));
87
- case 1:
88
- case "end":
89
- return _context3.stop();
90
- }
79
+ while (1) switch (_context3.prev = _context3.next) {
80
+ case 0:
81
+ return _context3.abrupt("return", this.findByEmojiId(emojiId));
82
+ case 1:
83
+ case "end":
84
+ return _context3.stop();
91
85
  }
92
86
  }, _callee3, this);
93
87
  }));
@@ -42,14 +42,12 @@ export var MockNonUploadingEmojiResource = /*#__PURE__*/function (_ref) {
42
42
  value: function () {
43
43
  var _fetchEmojiProvider = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(force) {
44
44
  return _regeneratorRuntime.wrap(function _callee$(_context) {
45
- while (1) {
46
- switch (_context.prev = _context.next) {
47
- case 0:
48
- return _context.abrupt("return", Promise.resolve(this.emojiRepository));
49
- case 1:
50
- case "end":
51
- return _context.stop();
52
- }
45
+ while (1) switch (_context.prev = _context.next) {
46
+ case 0:
47
+ return _context.abrupt("return", Promise.resolve(this.emojiRepository));
48
+ case 1:
49
+ case "end":
50
+ return _context.stop();
53
51
  }
54
52
  }, _callee, this);
55
53
  }));
@@ -131,14 +129,12 @@ export var MockNonUploadingEmojiResource = /*#__PURE__*/function (_ref) {
131
129
  value: function () {
132
130
  var _getFrequentlyUsed = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(options) {
133
131
  return _regeneratorRuntime.wrap(function _callee2$(_context2) {
134
- while (1) {
135
- switch (_context2.prev = _context2.next) {
136
- case 0:
137
- return _context2.abrupt("return", this.promiseBuilder(this.emojiRepository.getFrequentlyUsed(options), 'getFrequentlyUsed'));
138
- case 1:
139
- case "end":
140
- return _context2.stop();
141
- }
132
+ while (1) switch (_context2.prev = _context2.next) {
133
+ case 0:
134
+ return _context2.abrupt("return", this.promiseBuilder(this.emojiRepository.getFrequentlyUsed(options), 'getFrequentlyUsed'));
135
+ case 1:
136
+ case "end":
137
+ return _context2.stop();
142
138
  }
143
139
  }, _callee2, this);
144
140
  }));
@@ -152,14 +148,12 @@ export var MockNonUploadingEmojiResource = /*#__PURE__*/function (_ref) {
152
148
  value: function () {
153
149
  var _getMediaEmojiDescriptionURLWithInlineToken = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3(emoji) {
154
150
  return _regeneratorRuntime.wrap(function _callee3$(_context3) {
155
- while (1) {
156
- switch (_context3.prev = _context3.next) {
157
- case 0:
158
- return _context3.abrupt("return", emoji);
159
- case 1:
160
- case "end":
161
- return _context3.stop();
162
- }
151
+ while (1) switch (_context3.prev = _context3.next) {
152
+ case 0:
153
+ return _context3.abrupt("return", emoji);
154
+ case 1:
155
+ case "end":
156
+ return _context3.stop();
163
157
  }
164
158
  }, _callee3);
165
159
  }));
@@ -87,33 +87,29 @@ export function simpleMockProfilecardClient() {
87
87
  var _getProfile = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(_cloudId, userId) {
88
88
  var timeout;
89
89
  return _regeneratorRuntime.wrap(function _callee2$(_context2) {
90
- while (1) {
91
- switch (_context2.prev = _context2.next) {
92
- case 0:
93
- timeout = random(1500) + 500;
94
- return _context2.abrupt("return", new Promise(function (resolve, reject) {
95
- window.setTimeout( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
96
- return _regeneratorRuntime.wrap(function _callee$(_context) {
97
- while (1) {
98
- switch (_context.prev = _context.next) {
99
- case 0:
100
- getMockProfile(userId).then(function (data) {
101
- return resolve(modifyResponse(data));
102
- }).catch(function (error) {
103
- return reject(error);
104
- });
105
- case 1:
106
- case "end":
107
- return _context.stop();
108
- }
109
- }
110
- }, _callee);
111
- })), timeout);
112
- }));
113
- case 2:
114
- case "end":
115
- return _context2.stop();
116
- }
90
+ while (1) switch (_context2.prev = _context2.next) {
91
+ case 0:
92
+ timeout = random(1500) + 500;
93
+ return _context2.abrupt("return", new Promise(function (resolve, reject) {
94
+ window.setTimeout( /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee() {
95
+ return _regeneratorRuntime.wrap(function _callee$(_context) {
96
+ while (1) switch (_context.prev = _context.next) {
97
+ case 0:
98
+ getMockProfile(userId).then(function (data) {
99
+ return resolve(modifyResponse(data));
100
+ }).catch(function (error) {
101
+ return reject(error);
102
+ });
103
+ case 1:
104
+ case "end":
105
+ return _context.stop();
106
+ }
107
+ }, _callee);
108
+ })), timeout);
109
+ }));
110
+ case 2:
111
+ case "end":
112
+ return _context2.stop();
117
113
  }
118
114
  }, _callee2);
119
115
  }));
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.7.0"
3
+ "version": "17.8.0"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/util-data-test",
3
- "version": "17.7.0",
3
+ "version": "17.8.0",
4
4
  "description": "Shared test and story data",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -67,16 +67,16 @@
67
67
  "access": "public"
68
68
  },
69
69
  "dependencies": {
70
- "@atlaskit/analytics-next": "^9.0.0",
71
- "@atlaskit/emoji": "^67.2.0",
72
- "@atlaskit/icon": "^21.11.0",
73
- "@atlaskit/mention": "^22.0.0",
74
- "@atlaskit/profilecard": "^19.2.0",
75
- "@atlaskit/task-decision": "^17.5.0",
76
- "@atlaskit/theme": "^12.3.0",
77
- "@atlaskit/tokens": "^1.2.0",
78
- "@atlaskit/user-picker": "^10.1.0",
79
- "@atlaskit/util-service-support": "^6.1.0",
70
+ "@atlaskit/analytics-next": "^9.1.0",
71
+ "@atlaskit/emoji": "^67.4.0",
72
+ "@atlaskit/icon": "^21.12.0",
73
+ "@atlaskit/mention": "^22.1.0",
74
+ "@atlaskit/profilecard": "^19.3.0",
75
+ "@atlaskit/task-decision": "^17.6.0",
76
+ "@atlaskit/theme": "^12.5.0",
77
+ "@atlaskit/tokens": "^1.3.0",
78
+ "@atlaskit/user-picker": "^10.2.0",
79
+ "@atlaskit/util-service-support": "^6.2.0",
80
80
  "@babel/runtime": "^7.0.0",
81
81
  "@emotion/react": "^11.7.1",
82
82
  "lodash": "^4.17.21",
@@ -89,7 +89,7 @@
89
89
  "react-dom": "^16.8.0"
90
90
  },
91
91
  "devDependencies": {
92
- "@atlaskit/docs": "^9.0.0",
92
+ "@atlaskit/docs": "^9.1.0",
93
93
  "@atlassian/atlassian-frontend-prettier-config-1.0.0": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.0",
94
94
  "typescript": "4.5.5"
95
95
  },