@atlaskit/profilecard 19.5.9 → 19.5.11
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 +120 -108
- package/dist/cjs/client/TeamCentralCardClient.js +2 -2
- package/dist/cjs/client/UserProfileCardClient.js +1 -1
- package/dist/cjs/client/errorUtils.js +67 -14
- package/dist/cjs/client/getTeamFromAGG.js +5 -5
- package/dist/cjs/client/graphqlUtils.js +106 -36
- package/dist/cjs/client/types.js +5 -0
- package/dist/cjs/mocks/mock-team-client.js +6 -1
- package/dist/cjs/styled/ReportingLines.js +1 -1
- package/dist/cjs/styled/TeamCard.js +2 -2
- package/dist/cjs/util/analytics.js +1 -1
- package/dist/cjs/util/errors.js +114 -0
- package/dist/es2019/client/TeamCentralCardClient.js +3 -3
- package/dist/es2019/client/UserProfileCardClient.js +2 -2
- package/dist/es2019/client/errorUtils.js +63 -12
- package/dist/es2019/client/getTeamFromAGG.js +3 -3
- package/dist/es2019/client/graphqlUtils.js +28 -26
- package/dist/es2019/client/types.js +1 -0
- package/dist/es2019/mocks/mock-team-client.js +6 -1
- package/dist/es2019/styled/ReportingLines.js +1 -1
- package/dist/es2019/styled/TeamCard.js +3 -3
- package/dist/es2019/util/analytics.js +1 -1
- package/dist/es2019/util/errors.js +59 -0
- package/dist/esm/client/TeamCentralCardClient.js +3 -3
- package/dist/esm/client/UserProfileCardClient.js +2 -2
- package/dist/esm/client/errorUtils.js +63 -12
- package/dist/esm/client/getTeamFromAGG.js +6 -6
- package/dist/esm/client/graphqlUtils.js +104 -35
- package/dist/esm/client/types.js +1 -0
- package/dist/esm/mocks/mock-team-client.js +6 -1
- package/dist/esm/styled/ReportingLines.js +1 -1
- package/dist/esm/styled/TeamCard.js +2 -2
- package/dist/esm/util/analytics.js +1 -1
- package/dist/esm/util/errors.js +102 -0
- package/dist/types/client/errorUtils.d.ts +5 -9
- package/dist/types/client/graphqlUtils.d.ts +13 -1
- package/dist/types/client/types.d.ts +12 -0
- package/dist/types/mocks/mock-team-client.d.ts +1 -0
- package/dist/types/util/analytics.d.ts +2 -1
- package/dist/types/util/errors.d.ts +43 -0
- package/dist/types-ts4.5/client/errorUtils.d.ts +5 -9
- package/dist/types-ts4.5/client/graphqlUtils.d.ts +13 -1
- package/dist/types-ts4.5/client/types.d.ts +12 -0
- package/dist/types-ts4.5/mocks/mock-team-client.d.ts +1 -0
- package/dist/types-ts4.5/util/analytics.d.ts +2 -1
- package/dist/types-ts4.5/util/errors.d.ts +43 -0
- package/package.json +6 -6
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
|
2
|
+
import _createClass from "@babel/runtime/helpers/createClass";
|
|
3
|
+
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
4
|
+
import _inherits from "@babel/runtime/helpers/inherits";
|
|
5
|
+
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
6
|
+
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
7
|
+
import _wrapNativeSuper from "@babel/runtime/helpers/wrapNativeSuper";
|
|
8
|
+
var _excluded = ["errorNumber"],
|
|
9
|
+
_excluded2 = ["statusCode", "errorType", "classification"];
|
|
10
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
11
|
+
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; } }
|
|
12
|
+
export var HttpError = /*#__PURE__*/function (_Error) {
|
|
13
|
+
_inherits(HttpError, _Error);
|
|
14
|
+
var _super = _createSuper(HttpError);
|
|
15
|
+
function HttpError(code, reason, traceId) {
|
|
16
|
+
var _this;
|
|
17
|
+
_classCallCheck(this, HttpError);
|
|
18
|
+
_this = _super.call(this, reason);
|
|
19
|
+
_this.code = code;
|
|
20
|
+
_this.traceId = traceId;
|
|
21
|
+
return _this;
|
|
22
|
+
}
|
|
23
|
+
return _createClass(HttpError);
|
|
24
|
+
}( /*#__PURE__*/_wrapNativeSuper(Error));
|
|
25
|
+
export var DirectoryGraphQLError = /*#__PURE__*/function (_Error2) {
|
|
26
|
+
_inherits(DirectoryGraphQLError, _Error2);
|
|
27
|
+
var _super2 = _createSuper(DirectoryGraphQLError);
|
|
28
|
+
function DirectoryGraphQLError(message, category, type, extensions) {
|
|
29
|
+
var _this2;
|
|
30
|
+
var path = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : [];
|
|
31
|
+
_classCallCheck(this, DirectoryGraphQLError);
|
|
32
|
+
_this2 = _super2.call(this, message);
|
|
33
|
+
_this2.category = category;
|
|
34
|
+
_this2.type = type;
|
|
35
|
+
_this2.path = path.join('.');
|
|
36
|
+
var errorNumber = extensions.errorNumber,
|
|
37
|
+
unknownExtension = _objectWithoutProperties(extensions, _excluded);
|
|
38
|
+
_this2.errorNumber = extensions.errorNumber;
|
|
39
|
+
_this2.extensions = unknownExtension;
|
|
40
|
+
return _this2;
|
|
41
|
+
}
|
|
42
|
+
return _createClass(DirectoryGraphQLError);
|
|
43
|
+
}( /*#__PURE__*/_wrapNativeSuper(Error));
|
|
44
|
+
export var DirectoryGraphQLErrors = /*#__PURE__*/function (_Error3) {
|
|
45
|
+
_inherits(DirectoryGraphQLErrors, _Error3);
|
|
46
|
+
var _super3 = _createSuper(DirectoryGraphQLErrors);
|
|
47
|
+
function DirectoryGraphQLErrors(errors, traceId) {
|
|
48
|
+
var _this3;
|
|
49
|
+
_classCallCheck(this, DirectoryGraphQLErrors);
|
|
50
|
+
_this3 = _super3.call(this, 'DirectoryGraphQLErrors');
|
|
51
|
+
_this3.traceId = traceId;
|
|
52
|
+
if (Array.isArray(errors)) {
|
|
53
|
+
_this3.errors = errors.map(function (error) {
|
|
54
|
+
return new DirectoryGraphQLError(error.message, error.category, error.type, error.extensions, error.path);
|
|
55
|
+
});
|
|
56
|
+
} else {
|
|
57
|
+
_this3.errors = [];
|
|
58
|
+
}
|
|
59
|
+
return _this3;
|
|
60
|
+
}
|
|
61
|
+
return _createClass(DirectoryGraphQLErrors);
|
|
62
|
+
}( /*#__PURE__*/_wrapNativeSuper(Error));
|
|
63
|
+
export var AGGError = /*#__PURE__*/function (_Error4) {
|
|
64
|
+
_inherits(AGGError, _Error4);
|
|
65
|
+
var _super4 = _createSuper(AGGError);
|
|
66
|
+
function AGGError(message, extensions) {
|
|
67
|
+
var _this4;
|
|
68
|
+
var path = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : [];
|
|
69
|
+
_classCallCheck(this, AGGError);
|
|
70
|
+
_this4 = _super4.call(this, message);
|
|
71
|
+
_this4.path = path === null || path === void 0 ? void 0 : path.join('.');
|
|
72
|
+
var statusCode = extensions.statusCode,
|
|
73
|
+
errorType = extensions.errorType,
|
|
74
|
+
classification = extensions.classification,
|
|
75
|
+
unknownExtension = _objectWithoutProperties(extensions, _excluded2);
|
|
76
|
+
_this4.statusCode = statusCode;
|
|
77
|
+
_this4.errorType = errorType;
|
|
78
|
+
_this4.classification = classification;
|
|
79
|
+
_this4.extensions = unknownExtension;
|
|
80
|
+
return _this4;
|
|
81
|
+
}
|
|
82
|
+
return _createClass(AGGError);
|
|
83
|
+
}( /*#__PURE__*/_wrapNativeSuper(Error));
|
|
84
|
+
export var AGGErrors = /*#__PURE__*/function (_Error5) {
|
|
85
|
+
_inherits(AGGErrors, _Error5);
|
|
86
|
+
var _super5 = _createSuper(AGGErrors);
|
|
87
|
+
function AGGErrors(errors, traceId) {
|
|
88
|
+
var _this5;
|
|
89
|
+
_classCallCheck(this, AGGErrors);
|
|
90
|
+
_this5 = _super5.call(this, 'AGGErrors');
|
|
91
|
+
_this5.traceId = traceId;
|
|
92
|
+
if (Array.isArray(errors)) {
|
|
93
|
+
_this5.errors = errors.map(function (error) {
|
|
94
|
+
return new AGGError(error.message, error.extensions, error.path);
|
|
95
|
+
});
|
|
96
|
+
} else {
|
|
97
|
+
_this5.errors = [];
|
|
98
|
+
}
|
|
99
|
+
return _this5;
|
|
100
|
+
}
|
|
101
|
+
return _createClass(AGGErrors);
|
|
102
|
+
}( /*#__PURE__*/_wrapNativeSuper(Error));
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
errorSource: string | undefined;
|
|
7
|
-
isSLOFailure: boolean;
|
|
8
|
-
traceId: string | undefined;
|
|
9
|
-
};
|
|
1
|
+
import { AGGError, AGGErrors, DirectoryGraphQLError, DirectoryGraphQLErrors } from '../util/errors';
|
|
2
|
+
import { ErrorAttributes } from './types';
|
|
3
|
+
export declare const getErrorAttributes: (error?: DirectoryGraphQLErrors | Error | unknown | DirectoryGraphQLError | AGGError | AGGErrors) => ErrorAttributes;
|
|
4
|
+
export declare const handleDirectoryGraphQLErrors: (errors: unknown, traceId: string | null) => void;
|
|
5
|
+
export declare const handleAGGErrors: (errors: unknown, traceId: string | null) => void;
|
|
@@ -8,6 +8,12 @@ export interface GraphQLError {
|
|
|
8
8
|
source?: string;
|
|
9
9
|
message?: string;
|
|
10
10
|
traceId?: string;
|
|
11
|
+
category: string;
|
|
12
|
+
type: string;
|
|
13
|
+
path: string[];
|
|
14
|
+
extensions: {
|
|
15
|
+
errorNumber: number;
|
|
16
|
+
} & Record<string, any>;
|
|
11
17
|
}
|
|
12
18
|
type HeaderProcessor = (headers: Headers) => Headers;
|
|
13
19
|
/**
|
|
@@ -15,5 +21,11 @@ type HeaderProcessor = (headers: Headers) => Headers;
|
|
|
15
21
|
* @param {Query} query - GraphQL query
|
|
16
22
|
* @param {HeaderProcessor} processHeaders - a function to add extra headers to the request
|
|
17
23
|
*/
|
|
18
|
-
export declare function
|
|
24
|
+
export declare function directoryGraphqlQuery<D>(serviceUrl: string, query: Query, processHeaders?: HeaderProcessor): Promise<D>;
|
|
25
|
+
/**
|
|
26
|
+
* @param {string} serviceUrl - GraphQL service endpoint
|
|
27
|
+
* @param {Query} query - GraphQL query
|
|
28
|
+
* @param {HeaderProcessor} processHeaders - a function to add extra headers to the request
|
|
29
|
+
*/
|
|
30
|
+
export declare function AGGQuery<D>(serviceUrl: string, query: Query, processHeaders?: HeaderProcessor): Promise<D>;
|
|
19
31
|
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type ErrorAttributes = {
|
|
2
|
+
errorCount?: number;
|
|
3
|
+
errorDetails?: Omit<ErrorAttributes, 'errorDetails'>[];
|
|
4
|
+
errorMessage: string;
|
|
5
|
+
errorCategory?: string;
|
|
6
|
+
errorType?: string;
|
|
7
|
+
errorPath?: string;
|
|
8
|
+
errorNumber?: number;
|
|
9
|
+
isSLOFailure: boolean;
|
|
10
|
+
traceId?: string | null;
|
|
11
|
+
errorStatusCode?: number;
|
|
12
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AnalyticsEventPayload } from '@atlaskit/analytics-next';
|
|
2
2
|
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next/types';
|
|
3
|
-
|
|
3
|
+
import { ErrorAttributes } from '../client/types';
|
|
4
|
+
type GenericAttributes = Record<string, string | number | boolean | undefined | string[]> | ErrorAttributes;
|
|
4
5
|
interface AnalyticsEvent {
|
|
5
6
|
action?: string;
|
|
6
7
|
actionSubject?: string;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export declare class HttpError extends Error {
|
|
2
|
+
code: number;
|
|
3
|
+
traceId?: string | null;
|
|
4
|
+
constructor(code: number, reason: string, traceId?: string | null);
|
|
5
|
+
}
|
|
6
|
+
type KnownErrorExtensions = {
|
|
7
|
+
errorNumber?: number;
|
|
8
|
+
};
|
|
9
|
+
type ErrorExtensions = KnownErrorExtensions & Record<string, any>;
|
|
10
|
+
type ErrorCategory = 'NotFound' | 'NotPermitted' | 'MalformedInput' | 'Internal' | 'Gone';
|
|
11
|
+
export declare class DirectoryGraphQLError extends Error {
|
|
12
|
+
category: ErrorCategory;
|
|
13
|
+
type: string;
|
|
14
|
+
path: string;
|
|
15
|
+
errorNumber?: number;
|
|
16
|
+
extensions: Record<string, any>;
|
|
17
|
+
constructor(message: string, category: ErrorCategory, type: string, extensions: ErrorExtensions, path?: (string | number)[]);
|
|
18
|
+
}
|
|
19
|
+
export declare class DirectoryGraphQLErrors extends Error {
|
|
20
|
+
errors: DirectoryGraphQLError[];
|
|
21
|
+
traceId?: string | null;
|
|
22
|
+
constructor(errors: unknown, traceId: string | null);
|
|
23
|
+
}
|
|
24
|
+
type KnownAggErrorExtensions = {
|
|
25
|
+
statusCode?: number;
|
|
26
|
+
errorType?: string;
|
|
27
|
+
classification?: string;
|
|
28
|
+
};
|
|
29
|
+
type AggErrorExtensions = KnownAggErrorExtensions & Record<string, any>;
|
|
30
|
+
export declare class AGGError extends Error {
|
|
31
|
+
path: string;
|
|
32
|
+
extensions: Record<string, any>;
|
|
33
|
+
statusCode?: number;
|
|
34
|
+
errorType?: string;
|
|
35
|
+
classification?: string;
|
|
36
|
+
constructor(message: string, extensions: AggErrorExtensions, path?: (string | number)[]);
|
|
37
|
+
}
|
|
38
|
+
export declare class AGGErrors extends Error {
|
|
39
|
+
errors: AGGError[];
|
|
40
|
+
traceId?: string | null;
|
|
41
|
+
constructor(errors: unknown, traceId: string | null);
|
|
42
|
+
}
|
|
43
|
+
export {};
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
errorSource: string | undefined;
|
|
7
|
-
isSLOFailure: boolean;
|
|
8
|
-
traceId: string | undefined;
|
|
9
|
-
};
|
|
1
|
+
import { AGGError, AGGErrors, DirectoryGraphQLError, DirectoryGraphQLErrors } from '../util/errors';
|
|
2
|
+
import { ErrorAttributes } from './types';
|
|
3
|
+
export declare const getErrorAttributes: (error?: DirectoryGraphQLErrors | Error | unknown | DirectoryGraphQLError | AGGError | AGGErrors) => ErrorAttributes;
|
|
4
|
+
export declare const handleDirectoryGraphQLErrors: (errors: unknown, traceId: string | null) => void;
|
|
5
|
+
export declare const handleAGGErrors: (errors: unknown, traceId: string | null) => void;
|
|
@@ -8,6 +8,12 @@ export interface GraphQLError {
|
|
|
8
8
|
source?: string;
|
|
9
9
|
message?: string;
|
|
10
10
|
traceId?: string;
|
|
11
|
+
category: string;
|
|
12
|
+
type: string;
|
|
13
|
+
path: string[];
|
|
14
|
+
extensions: {
|
|
15
|
+
errorNumber: number;
|
|
16
|
+
} & Record<string, any>;
|
|
11
17
|
}
|
|
12
18
|
type HeaderProcessor = (headers: Headers) => Headers;
|
|
13
19
|
/**
|
|
@@ -15,5 +21,11 @@ type HeaderProcessor = (headers: Headers) => Headers;
|
|
|
15
21
|
* @param {Query} query - GraphQL query
|
|
16
22
|
* @param {HeaderProcessor} processHeaders - a function to add extra headers to the request
|
|
17
23
|
*/
|
|
18
|
-
export declare function
|
|
24
|
+
export declare function directoryGraphqlQuery<D>(serviceUrl: string, query: Query, processHeaders?: HeaderProcessor): Promise<D>;
|
|
25
|
+
/**
|
|
26
|
+
* @param {string} serviceUrl - GraphQL service endpoint
|
|
27
|
+
* @param {Query} query - GraphQL query
|
|
28
|
+
* @param {HeaderProcessor} processHeaders - a function to add extra headers to the request
|
|
29
|
+
*/
|
|
30
|
+
export declare function AGGQuery<D>(serviceUrl: string, query: Query, processHeaders?: HeaderProcessor): Promise<D>;
|
|
19
31
|
export {};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type ErrorAttributes = {
|
|
2
|
+
errorCount?: number;
|
|
3
|
+
errorDetails?: Omit<ErrorAttributes, 'errorDetails'>[];
|
|
4
|
+
errorMessage: string;
|
|
5
|
+
errorCategory?: string;
|
|
6
|
+
errorType?: string;
|
|
7
|
+
errorPath?: string;
|
|
8
|
+
errorNumber?: number;
|
|
9
|
+
isSLOFailure: boolean;
|
|
10
|
+
traceId?: string | null;
|
|
11
|
+
errorStatusCode?: number;
|
|
12
|
+
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AnalyticsEventPayload } from '@atlaskit/analytics-next';
|
|
2
2
|
import type { CreateUIAnalyticsEvent } from '@atlaskit/analytics-next/types';
|
|
3
|
-
|
|
3
|
+
import { ErrorAttributes } from '../client/types';
|
|
4
|
+
type GenericAttributes = Record<string, string | number | boolean | undefined | string[]> | ErrorAttributes;
|
|
4
5
|
interface AnalyticsEvent {
|
|
5
6
|
action?: string;
|
|
6
7
|
actionSubject?: string;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
export declare class HttpError extends Error {
|
|
2
|
+
code: number;
|
|
3
|
+
traceId?: string | null;
|
|
4
|
+
constructor(code: number, reason: string, traceId?: string | null);
|
|
5
|
+
}
|
|
6
|
+
type KnownErrorExtensions = {
|
|
7
|
+
errorNumber?: number;
|
|
8
|
+
};
|
|
9
|
+
type ErrorExtensions = KnownErrorExtensions & Record<string, any>;
|
|
10
|
+
type ErrorCategory = 'NotFound' | 'NotPermitted' | 'MalformedInput' | 'Internal' | 'Gone';
|
|
11
|
+
export declare class DirectoryGraphQLError extends Error {
|
|
12
|
+
category: ErrorCategory;
|
|
13
|
+
type: string;
|
|
14
|
+
path: string;
|
|
15
|
+
errorNumber?: number;
|
|
16
|
+
extensions: Record<string, any>;
|
|
17
|
+
constructor(message: string, category: ErrorCategory, type: string, extensions: ErrorExtensions, path?: (string | number)[]);
|
|
18
|
+
}
|
|
19
|
+
export declare class DirectoryGraphQLErrors extends Error {
|
|
20
|
+
errors: DirectoryGraphQLError[];
|
|
21
|
+
traceId?: string | null;
|
|
22
|
+
constructor(errors: unknown, traceId: string | null);
|
|
23
|
+
}
|
|
24
|
+
type KnownAggErrorExtensions = {
|
|
25
|
+
statusCode?: number;
|
|
26
|
+
errorType?: string;
|
|
27
|
+
classification?: string;
|
|
28
|
+
};
|
|
29
|
+
type AggErrorExtensions = KnownAggErrorExtensions & Record<string, any>;
|
|
30
|
+
export declare class AGGError extends Error {
|
|
31
|
+
path: string;
|
|
32
|
+
extensions: Record<string, any>;
|
|
33
|
+
statusCode?: number;
|
|
34
|
+
errorType?: string;
|
|
35
|
+
classification?: string;
|
|
36
|
+
constructor(message: string, extensions: AggErrorExtensions, path?: (string | number)[]);
|
|
37
|
+
}
|
|
38
|
+
export declare class AGGErrors extends Error {
|
|
39
|
+
errors: AGGError[];
|
|
40
|
+
traceId?: string | null;
|
|
41
|
+
constructor(errors: unknown, traceId: string | null);
|
|
42
|
+
}
|
|
43
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/profilecard",
|
|
3
|
-
"version": "19.5.
|
|
3
|
+
"version": "19.5.11",
|
|
4
4
|
"description": "A React component to display a card with user information.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -53,18 +53,18 @@
|
|
|
53
53
|
"@atlaskit/avatar": "^21.3.0",
|
|
54
54
|
"@atlaskit/avatar-group": "^9.4.0",
|
|
55
55
|
"@atlaskit/button": "^16.10.0",
|
|
56
|
-
"@atlaskit/dropdown-menu": "^11.
|
|
56
|
+
"@atlaskit/dropdown-menu": "^11.14.0",
|
|
57
57
|
"@atlaskit/empty-state": "^7.6.0",
|
|
58
58
|
"@atlaskit/focus-ring": "^1.3.4",
|
|
59
59
|
"@atlaskit/give-kudos": "^2.0.0",
|
|
60
60
|
"@atlaskit/icon": "^21.12.0",
|
|
61
61
|
"@atlaskit/lozenge": "^11.4.0",
|
|
62
|
-
"@atlaskit/menu": "^1.
|
|
62
|
+
"@atlaskit/menu": "^1.11.0",
|
|
63
63
|
"@atlaskit/platform-feature-flags": "^0.2.4",
|
|
64
|
-
"@atlaskit/popup": "^1.
|
|
65
|
-
"@atlaskit/spinner": "^15.
|
|
64
|
+
"@atlaskit/popup": "^1.10.0",
|
|
65
|
+
"@atlaskit/spinner": "^15.6.0",
|
|
66
66
|
"@atlaskit/theme": "^12.6.0",
|
|
67
|
-
"@atlaskit/tokens": "^1.
|
|
67
|
+
"@atlaskit/tokens": "^1.25.0",
|
|
68
68
|
"@babel/runtime": "^7.0.0",
|
|
69
69
|
"@emotion/react": "^11.7.1",
|
|
70
70
|
"@emotion/styled": "^11.0.0",
|