@atlaskit/media-client 23.1.0 → 23.1.2
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 +12 -0
- package/compass.yml +47 -0
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/version.json +1 -1
- package/dist/esm/version.json +1 -1
- package/example-helpers/styles.ts +5 -5
- package/package.json +3 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/media-client
|
|
2
2
|
|
|
3
|
+
## 23.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`b9355830504`](https://bitbucket.org/atlassian/atlassian-frontend/commits/b9355830504) - Opt out of peer dependency enforcement
|
|
8
|
+
|
|
9
|
+
## 23.1.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`3fb20c4aeba`](https://bitbucket.org/atlassian/atlassian-frontend/commits/3fb20c4aeba) - Add postinstall check to enforce internal peer dependencies
|
|
14
|
+
|
|
3
15
|
## 23.1.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/compass.yml
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
name: Media Client
|
|
2
|
+
id: 'ari:cloud:compass:a436116f-02ce-4520-8fbb-7301462a1674:component/c5751cc6-3513-4070-9deb-af31e86aed34/652381b6-c323-4b50-bf31-c94941a0b6ef'
|
|
3
|
+
description: Media API Web Client Library
|
|
4
|
+
configVersion: 1
|
|
5
|
+
typeId: UI_ELEMENT
|
|
6
|
+
ownerId: 'ari:cloud:teams::team/ef910622-ce0a-44a0-b441-ba89efe7891b'
|
|
7
|
+
fields:
|
|
8
|
+
lifecycle: Active
|
|
9
|
+
tier: 4
|
|
10
|
+
labels:
|
|
11
|
+
- atlassian-platform
|
|
12
|
+
customFields:
|
|
13
|
+
- name: Dev Owner
|
|
14
|
+
type: user
|
|
15
|
+
value: null
|
|
16
|
+
- name: Product
|
|
17
|
+
type: text
|
|
18
|
+
value: null
|
|
19
|
+
- name: Test
|
|
20
|
+
type: text
|
|
21
|
+
value: null
|
|
22
|
+
links:
|
|
23
|
+
- name: ''
|
|
24
|
+
type: REPOSITORY
|
|
25
|
+
url: 'https://bitbucket.org/atlassian/atlassian-frontend/src/master/packages/media/media-client/'
|
|
26
|
+
- name: ''
|
|
27
|
+
type: DOCUMENT
|
|
28
|
+
url: 'https://atlaskit.atlassian.com/packages/media/media-client'
|
|
29
|
+
#- name: '' # Tome Capability
|
|
30
|
+
# type: OTHER_LINK
|
|
31
|
+
# url: ''
|
|
32
|
+
- name: Media By Product
|
|
33
|
+
type: DASHBOARD
|
|
34
|
+
url: 'https://atlassian.signalfx.com/#/dashboard/E-vk3wqAwAA?groupId=E-vkzo1AwAA&configId=E-vk5fsAwAA&startTime=-7d&endTime=Now'
|
|
35
|
+
- name: ''
|
|
36
|
+
type: CHAT_CHANNEL
|
|
37
|
+
url: 'https://atlassian.slack.com/archives/C020CGJDJ3A'
|
|
38
|
+
- name: ''
|
|
39
|
+
type: ON_CALL
|
|
40
|
+
url: 'https://atlassian.app.opsgenie.com/settings/schedule/detail/b62291ff-4029-4f26-b7fc-d75d46d7aebc'
|
|
41
|
+
- name: ''
|
|
42
|
+
type: PROJECT
|
|
43
|
+
url: 'https://product-fabric.atlassian.net/jira/software/c/projects/MEX/boards/713'
|
|
44
|
+
relationships: {}
|
|
45
|
+
|
|
46
|
+
# Learn more about formatting compass.yml:
|
|
47
|
+
# https://go.atlassian.com/compass-yml-format
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -37,7 +37,7 @@ const statusColorMap: { [key in FileStatus]: string } = {
|
|
|
37
37
|
'failed-processing': token('color.background.accent.red.subtle', 'indianred'),
|
|
38
38
|
};
|
|
39
39
|
|
|
40
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
40
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
41
41
|
export const fileWrapperStyles = (status: FileStatus) => css`
|
|
42
42
|
padding: 5px;
|
|
43
43
|
margin: 10px;
|
|
@@ -46,7 +46,7 @@ export const fileWrapperStyles = (status: FileStatus) => css`
|
|
|
46
46
|
background-color: ${statusColorMap[status]};
|
|
47
47
|
`;
|
|
48
48
|
|
|
49
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
49
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
50
50
|
export const cardsWrapperStyles = css`
|
|
51
51
|
width: 900px;
|
|
52
52
|
padding: 10px;
|
|
@@ -64,14 +64,14 @@ export const cardsWrapperStyles = css`
|
|
|
64
64
|
}
|
|
65
65
|
`;
|
|
66
66
|
|
|
67
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
67
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
68
68
|
export const headerStyles = css`
|
|
69
69
|
button {
|
|
70
70
|
margin: 5px;
|
|
71
71
|
}
|
|
72
72
|
`;
|
|
73
73
|
|
|
74
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
74
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
75
75
|
export const fileStateWrapperStyles = css`
|
|
76
76
|
border: 1px solid ${token('color.border', '#ccc')};
|
|
77
77
|
margin: 10px;
|
|
@@ -90,7 +90,7 @@ export const uploadTouchWrapperStyles = css`
|
|
|
90
90
|
align-content: center;
|
|
91
91
|
`;
|
|
92
92
|
|
|
93
|
-
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
93
|
+
// eslint-disable-next-line @atlaskit/design-system/ensure-design-token-usage
|
|
94
94
|
export const rowStyles = css`
|
|
95
95
|
flex-direction: row;
|
|
96
96
|
justify-content: center;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/media-client",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.2",
|
|
4
4
|
"description": "Media API Web Client Library",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@atlaskit/chunkinator": "^4.2.0",
|
|
39
|
-
"@atlaskit/media-common": "^7.
|
|
39
|
+
"@atlaskit/media-common": "^7.1.0",
|
|
40
40
|
"@babel/runtime": "^7.0.0",
|
|
41
41
|
"dataloader": "^2.0.0",
|
|
42
42
|
"deep-equal": "^1.0.1",
|
|
@@ -55,12 +55,10 @@
|
|
|
55
55
|
"react": "^16.8.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@atlaskit/button": "^16.7.0",
|
|
59
|
-
"@atlaskit/docs": "*",
|
|
60
58
|
"@atlaskit/media-core": "^34.1.0",
|
|
61
59
|
"@atlaskit/media-test-helpers": "^33.0.0",
|
|
62
60
|
"@atlaskit/ssr": "*",
|
|
63
|
-
"@atlaskit/tokens": "^1.
|
|
61
|
+
"@atlaskit/tokens": "^1.13.0",
|
|
64
62
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
65
63
|
"@emotion/react": "^11.7.1",
|
|
66
64
|
"@types/deep-equal": "^1.0.1",
|