@atlaskit/side-navigation 1.6.8 → 1.7.1
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
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @atlaskit/side-navigation
|
|
2
2
|
|
|
3
|
+
## 1.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`41fae2c6f68`](https://bitbucket.org/atlassian/atlassian-frontend/commits/41fae2c6f68) - Upgrade Typescript from `4.5.5` to `4.9.5`
|
|
8
|
+
|
|
9
|
+
## 1.7.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [`56507598609`](https://bitbucket.org/atlassian/atlassian-frontend/commits/56507598609) - Skip minor dependency bump
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
|
|
3
19
|
## 1.6.8
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/cjs/version.json
CHANGED
package/dist/es2019/version.json
CHANGED
package/dist/esm/version.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { HeaderProps } from '../Header';
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
type NewFooterProps = Omit<HeaderProps, 'cssFn' | 'component' | 'onClick'>;
|
|
4
|
+
type FooterFacadeProps = (HeaderProps & {
|
|
5
5
|
/**
|
|
6
6
|
* @private
|
|
7
7
|
* @deprecated
|
|
@@ -17,7 +17,7 @@ declare type FooterFacadeProps = (HeaderProps & {
|
|
|
17
17
|
component?: never;
|
|
18
18
|
onClick?: never;
|
|
19
19
|
});
|
|
20
|
-
export
|
|
20
|
+
export type FooterProps = HeaderProps | NewFooterProps;
|
|
21
21
|
/**
|
|
22
22
|
* __Footer__
|
|
23
23
|
*
|
|
@@ -6,7 +6,7 @@ import { CSSFn, CustomItemComponentProps } from '@atlaskit/menu';
|
|
|
6
6
|
* A container for Header and Footer that safely handles props to the child component
|
|
7
7
|
*/
|
|
8
8
|
export declare const Container: React.FC<CustomItemComponentProps>;
|
|
9
|
-
export
|
|
9
|
+
export type HeaderProps = {
|
|
10
10
|
/**
|
|
11
11
|
* A function that can be used to override the styles of the component.
|
|
12
12
|
* It receives the current styles and state and expects a styles object.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaskit/side-navigation",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.1",
|
|
4
4
|
"description": "A highly composable side navigation component that supports nested views.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -12,6 +12,14 @@
|
|
|
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.5 <4.9": {
|
|
17
|
+
"*": [
|
|
18
|
+
"dist/types-ts4.5/*",
|
|
19
|
+
"dist/types-ts4.5/index.d.ts"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
},
|
|
15
23
|
"sideEffects": false,
|
|
16
24
|
"atlaskit:src": "src/index.tsx",
|
|
17
25
|
"atlassian": {
|
|
@@ -24,14 +32,14 @@
|
|
|
24
32
|
}
|
|
25
33
|
},
|
|
26
34
|
"dependencies": {
|
|
27
|
-
"@atlaskit/ds-explorations": "^2.
|
|
28
|
-
"@atlaskit/ds-lib": "^2.
|
|
29
|
-
"@atlaskit/icon": "^21.
|
|
30
|
-
"@atlaskit/menu": "^1.
|
|
31
|
-
"@atlaskit/motion": "^1.
|
|
32
|
-
"@atlaskit/primitives": "^0.
|
|
33
|
-
"@atlaskit/theme": "^12.
|
|
34
|
-
"@atlaskit/tokens": "^1.
|
|
35
|
+
"@atlaskit/ds-explorations": "^2.1.0",
|
|
36
|
+
"@atlaskit/ds-lib": "^2.2.0",
|
|
37
|
+
"@atlaskit/icon": "^21.12.0",
|
|
38
|
+
"@atlaskit/menu": "^1.6.0",
|
|
39
|
+
"@atlaskit/motion": "^1.4.0",
|
|
40
|
+
"@atlaskit/primitives": "^0.9.0",
|
|
41
|
+
"@atlaskit/theme": "^12.5.0",
|
|
42
|
+
"@atlaskit/tokens": "^1.4.0",
|
|
35
43
|
"@babel/runtime": "^7.0.0",
|
|
36
44
|
"@emotion/react": "^11.7.1"
|
|
37
45
|
},
|
|
@@ -39,13 +47,13 @@
|
|
|
39
47
|
"react": "^16.8.0"
|
|
40
48
|
},
|
|
41
49
|
"devDependencies": {
|
|
42
|
-
"@atlaskit/atlassian-navigation": "^2.
|
|
43
|
-
"@atlaskit/button": "^16.
|
|
50
|
+
"@atlaskit/atlassian-navigation": "^2.5.0",
|
|
51
|
+
"@atlaskit/button": "^16.7.0",
|
|
44
52
|
"@atlaskit/docs": "*",
|
|
45
|
-
"@atlaskit/logo": "^13.
|
|
46
|
-
"@atlaskit/onboarding": "^10.
|
|
47
|
-
"@atlaskit/section-message": "^6.
|
|
48
|
-
"@atlaskit/select": "^16.
|
|
53
|
+
"@atlaskit/logo": "^13.14.0",
|
|
54
|
+
"@atlaskit/onboarding": "^10.8.0",
|
|
55
|
+
"@atlaskit/section-message": "^6.4.0",
|
|
56
|
+
"@atlaskit/select": "^16.2.0",
|
|
49
57
|
"@atlaskit/visual-regression": "*",
|
|
50
58
|
"@atlaskit/webdriver-runner": "*",
|
|
51
59
|
"@atlassian/atlassian-frontend-prettier-config-1.0.1": "npm:@atlassian/atlassian-frontend-prettier-config@1.0.1",
|
|
@@ -57,7 +65,7 @@
|
|
|
57
65
|
"jscodeshift": "^0.13.0",
|
|
58
66
|
"raf-stub": "^2.0.1",
|
|
59
67
|
"react-beautiful-dnd": "^12.1.1",
|
|
60
|
-
"typescript": "4.
|
|
68
|
+
"typescript": "~4.9.5"
|
|
61
69
|
},
|
|
62
70
|
"techstack": {
|
|
63
71
|
"@atlassian/frontend": {
|