@atlaskit/mobile-header 7.0.20 → 7.0.22
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 -5
- package/afm-products/tsconfig.json +39 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @atlaskit/mobile-header
|
|
2
2
|
|
|
3
|
+
## 7.0.22
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
|
|
9
|
+
## 7.0.21
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
|
|
3
15
|
## 7.0.20
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -451,7 +463,6 @@
|
|
|
451
463
|
|
|
452
464
|
Remove namespace imports from React, ReactDom, and PropTypes- Updated dependencies
|
|
453
465
|
[6548261c9a](https://bitbucket.org/atlassian/atlassian-frontend/commits/6548261c9a):
|
|
454
|
-
|
|
455
466
|
- @atlaskit/docs@8.3.2
|
|
456
467
|
- @atlaskit/banner@10.1.5
|
|
457
468
|
- @atlaskit/button@13.3.7
|
|
@@ -537,14 +548,12 @@
|
|
|
537
548
|
### Minor Changes
|
|
538
549
|
|
|
539
550
|
- [minor][92a9ce6f80](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/92a9ce6f80):
|
|
540
|
-
|
|
541
551
|
- Added property `topOffset` to handle cases such as when we need to display banner above the
|
|
542
552
|
mobile header
|
|
543
553
|
|
|
544
554
|
## 3.0.0
|
|
545
555
|
|
|
546
556
|
- [major][7c17b35107](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/7c17b35107):
|
|
547
|
-
|
|
548
557
|
- Updates react and react-dom peer dependencies to react@^16.8.0 and react-dom@^16.8.0. To use
|
|
549
558
|
this package, please ensure you use at least this version of react and react-dom.
|
|
550
559
|
|
|
@@ -571,7 +580,6 @@
|
|
|
571
580
|
## 2.1.0
|
|
572
581
|
|
|
573
582
|
- [minor][1b1adaea63](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/1b1adaea63):
|
|
574
|
-
|
|
575
583
|
- Support using a custom menu button via new customMenu prop
|
|
576
584
|
|
|
577
585
|
## 2.0.1
|
|
@@ -587,7 +595,6 @@
|
|
|
587
595
|
## 2.0.0
|
|
588
596
|
|
|
589
597
|
- [major][76299208e6](https://bitbucket.org/atlassian/atlaskit-mk-2/commits/76299208e6):
|
|
590
|
-
|
|
591
598
|
- Drop ES5 from all the flow modules
|
|
592
599
|
|
|
593
600
|
### Dropping CJS support in all @atlaskit packages
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../../tsconfig.entry-points.products.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"target": "es5",
|
|
6
|
+
"outDir": "../../../../../tsDist/@atlaskit__mobile-header/app",
|
|
7
|
+
"rootDir": "../",
|
|
8
|
+
"composite": true
|
|
9
|
+
},
|
|
10
|
+
"include": [
|
|
11
|
+
"../src/**/*.ts",
|
|
12
|
+
"../src/**/*.tsx"
|
|
13
|
+
],
|
|
14
|
+
"exclude": [
|
|
15
|
+
"../src/**/__tests__/*",
|
|
16
|
+
"../src/**/*.test.*",
|
|
17
|
+
"../src/**/test.*",
|
|
18
|
+
"../src/**/examples.*",
|
|
19
|
+
"../src/**/examples/*",
|
|
20
|
+
"../src/**/examples/**/*",
|
|
21
|
+
"../src/**/*.stories.*",
|
|
22
|
+
"../src/**/stories/*",
|
|
23
|
+
"../src/**/stories/**/*"
|
|
24
|
+
],
|
|
25
|
+
"references": [
|
|
26
|
+
{
|
|
27
|
+
"path": "../../../design-system/button/afm-products/tsconfig.json"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"path": "../../../design-system/icon/afm-products/tsconfig.json"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"path": "../../../design-system/theme/afm-products/tsconfig.json"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"path": "../../../design-system/tokens/afm-products/tsconfig.json"
|
|
37
|
+
}
|
|
38
|
+
]
|
|
39
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/mobile-header",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.22",
|
|
4
4
|
"description": "A React component rendering a mobile header",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@atlaskit/button": "^23.
|
|
32
|
-
"@atlaskit/icon": "^28.
|
|
31
|
+
"@atlaskit/button": "^23.6.0",
|
|
32
|
+
"@atlaskit/icon": "^28.5.0",
|
|
33
33
|
"@atlaskit/theme": "^21.0.0",
|
|
34
|
-
"@atlaskit/tokens": "^
|
|
34
|
+
"@atlaskit/tokens": "^8.0.0",
|
|
35
35
|
"@babel/runtime": "^7.0.0",
|
|
36
36
|
"@emotion/styled": "^11.0.0"
|
|
37
37
|
},
|