@atlaskit/mobile-header 7.0.25 → 7.0.26
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/afm-products/tsconfig.json +1 -1
- package/dist/cjs/components/MobileHeader.js +0 -1
- package/dist/cjs/styled.js +1 -1
- package/dist/es2019/components/MobileHeader.js +0 -1
- package/dist/es2019/styled.js +1 -1
- package/dist/esm/components/MobileHeader.js +0 -1
- package/dist/esm/styled.js +1 -1
- package/docs/0-intro.tsx +2 -1
- package/package.json +4 -3
- package/build/tsconfig.json +0 -23
package/CHANGELOG.md
CHANGED
|
@@ -84,7 +84,6 @@ var MobileHeader = /*#__PURE__*/function (_PureComponent) {
|
|
|
84
84
|
appearance: "subtle",
|
|
85
85
|
iconBefore: /*#__PURE__*/_react.default.createElement(_menu.default, {
|
|
86
86
|
label: menuIconLabel,
|
|
87
|
-
LEGACY_size: "large",
|
|
88
87
|
color: "currentColor",
|
|
89
88
|
spacing: "spacious"
|
|
90
89
|
}),
|
package/dist/cjs/styled.js
CHANGED
|
@@ -100,6 +100,6 @@ var PageHeading = exports.PageHeading = _styled.default.h1({
|
|
|
100
100
|
flexGrow: 1,
|
|
101
101
|
margin: 0,
|
|
102
102
|
marginLeft: "var(--ds-space-100, 8px)",
|
|
103
|
-
font: "var(--ds-font-heading-small, normal
|
|
103
|
+
font: "var(--ds-font-heading-small, normal 653 16px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
104
104
|
alignSelf: 'center'
|
|
105
105
|
});
|
package/dist/es2019/styled.js
CHANGED
|
@@ -102,6 +102,6 @@ export const PageHeading = styled.h1({
|
|
|
102
102
|
flexGrow: 1,
|
|
103
103
|
margin: 0,
|
|
104
104
|
marginLeft: "var(--ds-space-100, 8px)",
|
|
105
|
-
font: "var(--ds-font-heading-small, normal
|
|
105
|
+
font: "var(--ds-font-heading-small, normal 653 16px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
106
106
|
alignSelf: 'center'
|
|
107
107
|
});
|
package/dist/esm/styled.js
CHANGED
|
@@ -94,6 +94,6 @@ export var PageHeading = styled.h1({
|
|
|
94
94
|
flexGrow: 1,
|
|
95
95
|
margin: 0,
|
|
96
96
|
marginLeft: "var(--ds-space-100, 8px)",
|
|
97
|
-
font: "var(--ds-font-heading-small, normal
|
|
97
|
+
font: "var(--ds-font-heading-small, normal 653 16px/20px \"Atlassian Sans\", ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, \"Helvetica Neue\", sans-serif)",
|
|
98
98
|
alignSelf: 'center'
|
|
99
99
|
});
|
package/docs/0-intro.tsx
CHANGED
|
@@ -2,7 +2,7 @@ import React from 'react';
|
|
|
2
2
|
|
|
3
3
|
import { AtlassianInternalWarning, code, Example, md, Props } from '@atlaskit/docs';
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
const _default_1: any = md`
|
|
6
6
|
${(<AtlassianInternalWarning />)}
|
|
7
7
|
|
|
8
8
|
The Mobile Header is a way to render a header that hides the Navigation and Sidebar
|
|
@@ -28,3 +28,4 @@ export default md`
|
|
|
28
28
|
/>
|
|
29
29
|
)}
|
|
30
30
|
`;
|
|
31
|
+
export default _default_1;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/mobile-header",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.26",
|
|
4
4
|
"description": "A React component rendering a mobile header",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -29,9 +29,9 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@atlaskit/button": "^23.9.0",
|
|
32
|
-
"@atlaskit/icon": "^29.
|
|
32
|
+
"@atlaskit/icon": "^29.4.0",
|
|
33
33
|
"@atlaskit/theme": "^21.0.0",
|
|
34
|
-
"@atlaskit/tokens": "^
|
|
34
|
+
"@atlaskit/tokens": "^10.0.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0",
|
|
36
36
|
"@emotion/styled": "^11.0.0"
|
|
37
37
|
},
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"react": "^18.2.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
+
"@atlassian/a11y-jest-testing": "^0.6.0",
|
|
43
44
|
"@testing-library/react": "^16.3.0",
|
|
44
45
|
"@testing-library/user-event": "^14.4.3",
|
|
45
46
|
"react-dom": "^18.2.0",
|
package/build/tsconfig.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../tsconfig",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"declaration": true,
|
|
5
|
-
"target": "es5",
|
|
6
|
-
"paths": {}
|
|
7
|
-
},
|
|
8
|
-
"include": [
|
|
9
|
-
"../src/**/*.ts",
|
|
10
|
-
"../src/**/*.tsx"
|
|
11
|
-
],
|
|
12
|
-
"exclude": [
|
|
13
|
-
"../src/**/__tests__/*",
|
|
14
|
-
"../src/**/*.test.*",
|
|
15
|
-
"../src/**/test.*",
|
|
16
|
-
"../src/**/examples.*",
|
|
17
|
-
"../src/**/examples/*",
|
|
18
|
-
"../src/**/examples/**/*",
|
|
19
|
-
"../src/**/*.stories.*",
|
|
20
|
-
"../src/**/stories/*",
|
|
21
|
-
"../src/**/stories/**/*"
|
|
22
|
-
]
|
|
23
|
-
}
|