@atlaskit/mobile-header 7.0.3 → 7.0.5
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 +18 -0
- package/dist/cjs/styled.js +1 -1
- package/dist/es2019/styled.js +1 -1
- package/dist/esm/styled.js +1 -1
- package/package.json +9 -6
- package/styled/package.json +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @atlaskit/mobile-header
|
|
2
2
|
|
|
3
|
+
## 7.0.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 7.0.4
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#120533](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/pull-requests/120533)
|
|
14
|
+
[`f1bec731e278f`](https://bitbucket.org/atlassian/atlassian-frontend-monorepo/commits/f1bec731e278f) -
|
|
15
|
+
Adds a `sideEffects` field to ensure this package does not have Compiled styles tree-shaken in the
|
|
16
|
+
future to avoid an accidental regression.
|
|
17
|
+
|
|
18
|
+
This is related to
|
|
19
|
+
https://community.developer.atlassian.com/t/rfc-73-migrating-our-components-to-compiled-css-in-js/85953
|
|
20
|
+
|
|
3
21
|
## 7.0.3
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/cjs/styled.js
CHANGED
|
@@ -100,5 +100,5 @@ var FakeBlanket = exports.FakeBlanket = _styled.default.div(_templateObject3 ||
|
|
|
100
100
|
var PageHeading = exports.PageHeading = _styled.default.h1({
|
|
101
101
|
flexGrow: 1,
|
|
102
102
|
marginLeft: "var(--ds-space-100, 8px)",
|
|
103
|
-
font: "var(--ds-font-heading-small, normal 600 16px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
103
|
+
font: "var(--ds-font-heading-small, normal 600 16px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
104
104
|
});
|
package/dist/es2019/styled.js
CHANGED
|
@@ -102,5 +102,5 @@ export const FakeBlanket = styled.div`
|
|
|
102
102
|
export const PageHeading = styled.h1({
|
|
103
103
|
flexGrow: 1,
|
|
104
104
|
marginLeft: "var(--ds-space-100, 8px)",
|
|
105
|
-
font: "var(--ds-font-heading-small, normal 600 16px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
105
|
+
font: "var(--ds-font-heading-small, normal 600 16px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
106
106
|
});
|
package/dist/esm/styled.js
CHANGED
|
@@ -94,5 +94,5 @@ export var FakeBlanket = styled.div(_templateObject3 || (_templateObject3 = _tag
|
|
|
94
94
|
export var PageHeading = styled.h1({
|
|
95
95
|
flexGrow: 1,
|
|
96
96
|
marginLeft: "var(--ds-space-100, 8px)",
|
|
97
|
-
font: "var(--ds-font-heading-small, normal 600 16px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu,
|
|
97
|
+
font: "var(--ds-font-heading-small, normal 600 16px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)"
|
|
98
98
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/mobile-header",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.5",
|
|
4
4
|
"description": "A React component rendering a mobile header",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@atlaskit/button": "^21.
|
|
36
|
-
"@atlaskit/icon": "^24.
|
|
37
|
-
"@atlaskit/theme": "^
|
|
38
|
-
"@atlaskit/tokens": "^4.
|
|
35
|
+
"@atlaskit/button": "^21.1.0",
|
|
36
|
+
"@atlaskit/icon": "^24.1.0",
|
|
37
|
+
"@atlaskit/theme": "^18.0.0",
|
|
38
|
+
"@atlaskit/tokens": "^4.3.0",
|
|
39
39
|
"@babel/runtime": "^7.0.0",
|
|
40
40
|
"@emotion/styled": "^11.0.0"
|
|
41
41
|
},
|
|
@@ -53,5 +53,8 @@
|
|
|
53
53
|
"@atlassian/frontend": {
|
|
54
54
|
"import-structure": "atlassian-conventions"
|
|
55
55
|
}
|
|
56
|
-
}
|
|
56
|
+
},
|
|
57
|
+
"sideEffects": [
|
|
58
|
+
"*.compiled.css"
|
|
59
|
+
]
|
|
57
60
|
}
|
package/styled/package.json
CHANGED