@atlaskit/media-common 2.16.2 → 2.16.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 +6 -0
- package/analytics/package.json +8 -1
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/dist/types-ts4.0/analytics/constants.d.ts +1 -0
- package/dist/types-ts4.0/analytics/index.d.ts +3 -0
- package/dist/types-ts4.0/analytics/types.d.ts +77 -0
- package/dist/types-ts4.0/analytics/withMediaAnalyticsContext.d.ts +18 -0
- package/dist/types-ts4.0/docs/index.d.ts +1 -0
- package/dist/types-ts4.0/docs/rxjs-notice.d.ts +2 -0
- package/dist/types-ts4.0/downloadUrl.d.ts +4 -0
- package/dist/types-ts4.0/index.d.ts +15 -0
- package/dist/types-ts4.0/mediaFeatureFlag-local.d.ts +1 -0
- package/dist/types-ts4.0/mediaFeatureFlags/index.d.ts +2 -0
- package/dist/types-ts4.0/mediaFeatureFlags/mediaFeatureFlags.d.ts +26 -0
- package/dist/types-ts4.0/mediaFeatureFlags/productKeys.d.ts +2 -0
- package/dist/types-ts4.0/mediaFeatureFlags/types.d.ts +21 -0
- package/dist/types-ts4.0/mediaTypeUtils/index.d.ts +4 -0
- package/dist/types-ts4.0/mediaTypeUtils/isArchive.d.ts +1 -0
- package/dist/types-ts4.0/mediaTypeUtils/isMimeTypeSupportedByBrowser.d.ts +14 -0
- package/dist/types-ts4.0/mediaTypeUtils/isMimeTypeSupportedByServer.d.ts +6 -0
- package/dist/types-ts4.0/utils/helpers.d.ts +9 -0
- package/downloadUrl/package.json +8 -1
- package/mediaFeatureFlags/package.json +8 -1
- package/mediaTypeUtils/package.json +8 -1
- package/package.json +9 -2
package/CHANGELOG.md
CHANGED
package/analytics/package.json
CHANGED
|
@@ -4,5 +4,12 @@
|
|
|
4
4
|
"module": "../dist/esm/analytics/index.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/analytics/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"types": "../dist/types/analytics/index.d.ts"
|
|
7
|
+
"types": "../dist/types/analytics/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/analytics/index.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
8
15
|
}
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const ANALYTICS_MEDIA_CHANNEL = "media";
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export type { PackageAttributes, WithFileAttributes, FileAttributes, SuccessAttributes, FailureAttributes, OperationalAttributes, OperationalEventPayload, UIAttributes, UIEventPayload, ScreenAttributes, ScreenEventPayload, TrackAttributes, TrackEventPayload, ContextPublicAttributes, ContextStaticProps, } from './types';
|
|
2
|
+
export { withMediaAnalyticsContext } from './withMediaAnalyticsContext';
|
|
3
|
+
export { ANALYTICS_MEDIA_CHANNEL } from './constants';
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { GasCorePayload } from '@atlaskit/analytics-gas-types';
|
|
2
|
+
import { MEDIA_CONTEXT } from '@atlaskit/analytics-namespaced-context/MediaAnalyticsContext';
|
|
3
|
+
import { MediaType, FileStatus, WithMediaFeatureFlags } from '..';
|
|
4
|
+
export declare type BaseAttributes = {};
|
|
5
|
+
export declare type PackageAttributes = {
|
|
6
|
+
packageName: string;
|
|
7
|
+
packageVersion: string;
|
|
8
|
+
componentName: string;
|
|
9
|
+
component: string;
|
|
10
|
+
};
|
|
11
|
+
export declare type BaseEventPayload<Attributes extends BaseAttributes> = Omit<GasCorePayload, 'attributes'> & {
|
|
12
|
+
attributes: Attributes;
|
|
13
|
+
};
|
|
14
|
+
export declare type FileAttributes = {
|
|
15
|
+
fileId: string;
|
|
16
|
+
fileSize?: number;
|
|
17
|
+
fileMediatype?: MediaType;
|
|
18
|
+
fileMimetype?: string;
|
|
19
|
+
fileSource?: string;
|
|
20
|
+
fileStatus?: FileStatus;
|
|
21
|
+
};
|
|
22
|
+
export declare type PerformanceAttributes = {
|
|
23
|
+
overall: {
|
|
24
|
+
durationSincePageStart: number;
|
|
25
|
+
durationSinceCommenced?: number;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
export declare type WithFileAttributes = {
|
|
29
|
+
fileAttributes: FileAttributes;
|
|
30
|
+
};
|
|
31
|
+
export declare type WithPerformanceAttributes = {
|
|
32
|
+
performanceAttributes?: PerformanceAttributes;
|
|
33
|
+
};
|
|
34
|
+
export declare type SuccessAttributes = {
|
|
35
|
+
status: 'success';
|
|
36
|
+
fileMediatype?: MediaType;
|
|
37
|
+
};
|
|
38
|
+
export declare type FailureAttributes = {
|
|
39
|
+
status: 'fail';
|
|
40
|
+
failReason: string;
|
|
41
|
+
error?: string;
|
|
42
|
+
errorDetail?: string;
|
|
43
|
+
};
|
|
44
|
+
export declare type StatusAttributes = SuccessAttributes | FailureAttributes;
|
|
45
|
+
export declare type OperationalAttributes = BaseAttributes | (BaseAttributes & WithFileAttributes) | (BaseAttributes & WithFileAttributes & StatusAttributes) | (BaseAttributes & WithFileAttributes & StatusAttributes & WithPerformanceAttributes);
|
|
46
|
+
export declare type OperationalEventPayload<Attributes extends OperationalAttributes, Action extends string, ActionSubject extends string, ActionSubjectId extends string = string> = BaseEventPayload<Attributes> & {
|
|
47
|
+
eventType: 'operational';
|
|
48
|
+
action: Action;
|
|
49
|
+
actionSubject: ActionSubject;
|
|
50
|
+
actionSubjectId?: ActionSubjectId;
|
|
51
|
+
};
|
|
52
|
+
export declare type UIAttributes = BaseAttributes | (BaseAttributes & WithFileAttributes);
|
|
53
|
+
export declare type UIEventPayload<Attributes extends UIAttributes, Action extends string, ActionSubject extends string> = BaseEventPayload<Attributes> & {
|
|
54
|
+
eventType: 'ui';
|
|
55
|
+
action: Action;
|
|
56
|
+
actionSubject: ActionSubject;
|
|
57
|
+
actionSubjectId?: string;
|
|
58
|
+
};
|
|
59
|
+
export declare type ScreenAttributes = BaseAttributes | (BaseAttributes & WithFileAttributes);
|
|
60
|
+
export declare type ScreenEventPayload<Attributes extends ScreenAttributes, ActionSubject extends string> = BaseEventPayload<Attributes> & {
|
|
61
|
+
eventType: 'screen';
|
|
62
|
+
actionSubject: ActionSubject;
|
|
63
|
+
name: ActionSubject;
|
|
64
|
+
};
|
|
65
|
+
export declare type TrackAttributes = BaseAttributes | (BaseAttributes & WithFileAttributes);
|
|
66
|
+
export declare type TrackEventPayload<Attributes extends TrackAttributes, Action extends string, ActionSubject extends string, ActionSubjectId extends string = string> = BaseEventPayload<Attributes> & {
|
|
67
|
+
eventType: 'track';
|
|
68
|
+
action: Action;
|
|
69
|
+
actionSubject: ActionSubject;
|
|
70
|
+
actionSubjectId?: ActionSubjectId;
|
|
71
|
+
};
|
|
72
|
+
export declare type ContextPublicAttributes = PackageAttributes;
|
|
73
|
+
export declare type ContextPrivateAttributes = WithMediaFeatureFlags;
|
|
74
|
+
export declare type ContextStaticProps = WithMediaFeatureFlags;
|
|
75
|
+
export declare type ContextData = ContextPublicAttributes & {
|
|
76
|
+
[MEDIA_CONTEXT]: ContextPrivateAttributes;
|
|
77
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { MediaFeatureFlags } from '../mediaFeatureFlags';
|
|
3
|
+
import { ContextPublicAttributes } from './types';
|
|
4
|
+
/**
|
|
5
|
+
* HOC for attaching MediaAnalyticsContext to a top-level React Component.
|
|
6
|
+
*
|
|
7
|
+
* Similar than "packages/analytics/analytics-next/src/hocs/withAnalyticsContext.tsx",
|
|
8
|
+
* except that we restrict attributes put in this context using ContextPublicAttributes and ContextPrivateAttributes.
|
|
9
|
+
*
|
|
10
|
+
* As a constraint, the wrapped React Component's props must extend ContextStaticProps.
|
|
11
|
+
*
|
|
12
|
+
* @param {ContextPublicAttributes} attributes public attributes to put in context
|
|
13
|
+
*
|
|
14
|
+
* @see packages/analytics/analytics-next/src/hocs/withAnalyticsContext.tsx
|
|
15
|
+
*/
|
|
16
|
+
export declare const withMediaAnalyticsContext: (contextPublicAttributes: ContextPublicAttributes, options?: {
|
|
17
|
+
filterFeatureFlags?: Array<keyof MediaFeatureFlags>;
|
|
18
|
+
}) => <Props extends import("../mediaFeatureFlags").WithMediaFeatureFlags, Component extends React.ComponentType<Props>>(WrappedComponent: React.JSXElementConstructor<Props> & Component) => React.ForwardRefExoticComponent<React.PropsWithoutRef<JSX.LibraryManagedAttributes<Component, Props>> & React.RefAttributes<any>>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { createRxjsNotice } from './rxjs-notice';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export { downloadUrl } from './downloadUrl';
|
|
2
|
+
export declare type MediaType = 'doc' | 'audio' | 'video' | 'image' | 'archive' | 'unknown';
|
|
3
|
+
export declare type FileStatus = 'uploading' | 'processing' | 'processed' | 'error' | 'failed-processing';
|
|
4
|
+
export { getMediaFeatureFlag, defaultMediaFeatureFlags, areEqualFeatureFlags, useMemoizeFeatureFlags, filterFeatureFlagNames, filterFeatureFlagKeysAllProducts, } from './mediaFeatureFlags';
|
|
5
|
+
export type { MediaFeatureFlags, WithMediaFeatureFlags, } from './mediaFeatureFlags';
|
|
6
|
+
export interface NumericalCardDimensions {
|
|
7
|
+
width: number;
|
|
8
|
+
height: number;
|
|
9
|
+
}
|
|
10
|
+
export type { PackageAttributes, WithFileAttributes, WithPerformanceAttributes, FileAttributes, PerformanceAttributes, SuccessAttributes, FailureAttributes, OperationalAttributes, OperationalEventPayload, UIAttributes, UIEventPayload, ScreenAttributes, ScreenEventPayload, TrackAttributes, TrackEventPayload, ContextPublicAttributes, ContextStaticProps, } from './analytics/types';
|
|
11
|
+
export { withMediaAnalyticsContext } from './analytics/withMediaAnalyticsContext';
|
|
12
|
+
export { ANALYTICS_MEDIA_CHANNEL } from './analytics/constants';
|
|
13
|
+
export { getMediaTypeFromMimeType, isImageMimeTypeSupportedByBrowser, isDocumentMimeTypeSupportedByBrowser, isMimeTypeSupportedByBrowser, isImageMimeTypeSupportedByServer, isDocumentMimeTypeSupportedByServer, isAudioMimeTypeSupportedByServer, isVideoMimeTypeSupportedByServer, isUnknownMimeTypeSupportedByServer, isMimeTypeSupportedByServer, } from './mediaTypeUtils';
|
|
14
|
+
export declare type SSR = 'client' | 'server';
|
|
15
|
+
export { isUndefined, pick, omitBy, debounce, matches } from './utils/helpers';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const getLocalMediaFeatureFlag: (key: string) => string | null;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { getMediaFeatureFlag, useMemoizeFeatureFlags, defaultMediaFeatureFlags, areEqualFeatureFlags, filterFeatureFlagNames, filterFeatureFlagKeysAllProducts, } from './mediaFeatureFlags';
|
|
2
|
+
export type { MediaFeatureFlags, WithMediaFeatureFlags, SupportedProduct, } from './types';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { RequiredMediaFeatureFlags, MediaFeatureFlags, SupportedProduct } from './types';
|
|
2
|
+
export declare const areEqualFeatureFlags: (ffA?: MediaFeatureFlags | undefined, ffB?: MediaFeatureFlags | undefined) => boolean;
|
|
3
|
+
export declare const filterFeatureFlagNames: (flags: RequiredMediaFeatureFlags) => Array<keyof MediaFeatureFlags>;
|
|
4
|
+
/**
|
|
5
|
+
* Takes a record of {Media Feature Flag Names → boolean} and a supported product name.
|
|
6
|
+
* Returns the corresponding product’s Launch Darkly Keys for each of the flags set as true in the input record.
|
|
7
|
+
* */
|
|
8
|
+
export declare const mapAndFilterFeatureFlagNames: (flags: RequiredMediaFeatureFlags, product: SupportedProduct) => Array<string>;
|
|
9
|
+
/**
|
|
10
|
+
* Takes a record of {Media Feature Flag Names → boolean}.
|
|
11
|
+
* Returns the Launch Darkly Keys from all products for each of the flags set as true in the input record.
|
|
12
|
+
* */
|
|
13
|
+
export declare const filterFeatureFlagKeysAllProducts: (flags: RequiredMediaFeatureFlags) => Array<string>;
|
|
14
|
+
export declare const defaultMediaFeatureFlags: Required<MediaFeatureFlags>;
|
|
15
|
+
/**
|
|
16
|
+
* Public accessor from components to fallback to defaults if flags not passed,
|
|
17
|
+
* otherwise whatever product has set will be returned.
|
|
18
|
+
*
|
|
19
|
+
* To override locally for testing:
|
|
20
|
+
* - `localStorage[flagName] = true` to enable locally,
|
|
21
|
+
* - `delete localStorage[flagName]` to remove.
|
|
22
|
+
*
|
|
23
|
+
* (you will see a warning in console if override used)
|
|
24
|
+
* */
|
|
25
|
+
export declare function getMediaFeatureFlag<T = boolean>(flagName: keyof MediaFeatureFlags, featureFlags?: MediaFeatureFlags): T;
|
|
26
|
+
export declare const useMemoizeFeatureFlags: (featureFlags?: MediaFeatureFlags | undefined) => MediaFeatureFlags | undefined;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface MediaFeatureFlags {
|
|
2
|
+
newCardExperience?: boolean;
|
|
3
|
+
captions?: boolean;
|
|
4
|
+
mediaInline?: boolean;
|
|
5
|
+
folderUploads?: boolean;
|
|
6
|
+
observedWidth?: boolean;
|
|
7
|
+
timestampOnVideo?: boolean;
|
|
8
|
+
mediaUploadApiV2?: boolean;
|
|
9
|
+
memoryCacheLogging?: boolean;
|
|
10
|
+
}
|
|
11
|
+
export interface WithMediaFeatureFlags {
|
|
12
|
+
featureFlags?: MediaFeatureFlags;
|
|
13
|
+
}
|
|
14
|
+
export declare type RequiredMediaFeatureFlags = Record<keyof Required<MediaFeatureFlags>, boolean>;
|
|
15
|
+
export declare type MediaFeatureFlagsMap = Record<keyof Required<MediaFeatureFlags>, string>;
|
|
16
|
+
export declare const supportedProducts: readonly [
|
|
17
|
+
"confluence",
|
|
18
|
+
"jira"
|
|
19
|
+
];
|
|
20
|
+
export declare type SupportedProduct = typeof supportedProducts[number];
|
|
21
|
+
export declare type ProductKeys = Record<SupportedProduct, MediaFeatureFlagsMap>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { MediaType } from '..';
|
|
2
|
+
export { isImageMimeTypeSupportedByBrowser, isDocumentMimeTypeSupportedByBrowser, isAudioMimeTypeSupportedByBrowser, isVideoMimeTypeSupportedByBrowser, isMimeTypeSupportedByBrowser, } from './isMimeTypeSupportedByBrowser';
|
|
3
|
+
export { isImageMimeTypeSupportedByServer, isDocumentMimeTypeSupportedByServer, isAudioMimeTypeSupportedByServer, isVideoMimeTypeSupportedByServer, isUnknownMimeTypeSupportedByServer, isMimeTypeSupportedByServer, } from './isMimeTypeSupportedByServer';
|
|
4
|
+
export declare const getMediaTypeFromMimeType: (mimeType: string) => MediaType;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const isArchive: (mimeType: string) => boolean;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export declare const isImageMimeTypeSupportedByBrowser: (mimeType: string) => boolean;
|
|
2
|
+
export declare const isDocumentMimeTypeSupportedByBrowser: (mimeType: string) => boolean;
|
|
3
|
+
export declare const isAudioMimeTypeSupportedByBrowser: (mimeType: string) => boolean;
|
|
4
|
+
/**
|
|
5
|
+
* For backward compatilbity, we assume MP4/MOV is natively supported.
|
|
6
|
+
* TODO: Improve detection of supported video formats by the browser.
|
|
7
|
+
*
|
|
8
|
+
* See related tickets:
|
|
9
|
+
* - https://product-fabric.atlassian.net/browse/MPT-477
|
|
10
|
+
* - https://product-fabric.atlassian.net/browse/EDM-634
|
|
11
|
+
* - https://product-fabric.atlassian.net/browse/EDM-426
|
|
12
|
+
*/
|
|
13
|
+
export declare const isVideoMimeTypeSupportedByBrowser: (mimeType: string) => boolean;
|
|
14
|
+
export declare const isMimeTypeSupportedByBrowser: (mimeType: string) => boolean;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const isImageMimeTypeSupportedByServer: (mimeType: string) => boolean;
|
|
2
|
+
export declare const isDocumentMimeTypeSupportedByServer: (mimeType: string) => boolean;
|
|
3
|
+
export declare const isAudioMimeTypeSupportedByServer: (mimeType: string) => boolean;
|
|
4
|
+
export declare const isVideoMimeTypeSupportedByServer: (mimeType: string) => boolean;
|
|
5
|
+
export declare const isUnknownMimeTypeSupportedByServer: (mimeType: string) => boolean;
|
|
6
|
+
export declare const isMimeTypeSupportedByServer: (mimeType: string) => boolean;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare const isUndefined: (value: any) => boolean;
|
|
2
|
+
export declare const pick: (obj?: Object | undefined, keys?: Array<String>) => {
|
|
3
|
+
[k: string]: any;
|
|
4
|
+
};
|
|
5
|
+
export declare const omitBy: (obj: Object, predicate: Function) => {
|
|
6
|
+
[k: string]: any;
|
|
7
|
+
};
|
|
8
|
+
export declare const debounce: (func: Function, wait: number) => (...args: any[]) => void;
|
|
9
|
+
export declare const matches: (srcObj: Object) => (obj: Object) => boolean;
|
package/downloadUrl/package.json
CHANGED
|
@@ -4,5 +4,12 @@
|
|
|
4
4
|
"module": "../dist/esm/downloadUrl.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/downloadUrl.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"types": "../dist/types/downloadUrl.d.ts"
|
|
7
|
+
"types": "../dist/types/downloadUrl.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/downloadUrl.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
8
15
|
}
|
|
@@ -4,5 +4,12 @@
|
|
|
4
4
|
"module": "../dist/esm/mediaFeatureFlags/index.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/mediaFeatureFlags/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"types": "../dist/types/mediaFeatureFlags/index.d.ts"
|
|
7
|
+
"types": "../dist/types/mediaFeatureFlags/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/mediaFeatureFlags/index.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
8
15
|
}
|
|
@@ -4,5 +4,12 @@
|
|
|
4
4
|
"module": "../dist/esm/mediaTypeUtils/index.js",
|
|
5
5
|
"module:es2019": "../dist/es2019/mediaTypeUtils/index.js",
|
|
6
6
|
"sideEffects": false,
|
|
7
|
-
"types": "../dist/types/mediaTypeUtils/index.d.ts"
|
|
7
|
+
"types": "../dist/types/mediaTypeUtils/index.d.ts",
|
|
8
|
+
"typesVersions": {
|
|
9
|
+
">=4.0 <4.5": {
|
|
10
|
+
"*": [
|
|
11
|
+
"../dist/types-ts4.0/mediaTypeUtils/index.d.ts"
|
|
12
|
+
]
|
|
13
|
+
}
|
|
14
|
+
}
|
|
8
15
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-common",
|
|
3
|
-
"version": "2.16.
|
|
3
|
+
"version": "2.16.3",
|
|
4
4
|
"description": "Includes common utilities used by other media packages",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -12,6 +12,13 @@
|
|
|
12
12
|
"module": "dist/esm/index.js",
|
|
13
13
|
"module:es2019": "dist/es2019/index.js",
|
|
14
14
|
"types": "dist/types/index.d.ts",
|
|
15
|
+
"typesVersions": {
|
|
16
|
+
">=4.0 <4.5": {
|
|
17
|
+
"*": [
|
|
18
|
+
"dist/types-ts4.0/*"
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
},
|
|
15
22
|
"sideEffects": false,
|
|
16
23
|
"atlaskit:src": "src/index.ts",
|
|
17
24
|
"af:exports": {
|
|
@@ -49,7 +56,7 @@
|
|
|
49
56
|
"enzyme": "^3.10.0",
|
|
50
57
|
"react": "^16.8.0",
|
|
51
58
|
"react-dom": "^16.8.0",
|
|
52
|
-
"typescript": "4.
|
|
59
|
+
"typescript": "4.5.5"
|
|
53
60
|
},
|
|
54
61
|
"prettier": "@atlassian/atlassian-frontend-prettier-config-1.0.1"
|
|
55
62
|
}
|