@atlaskit/side-navigation 3.3.4 → 3.3.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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @atlaskit/side-navigation
2
2
 
3
+ ## 3.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
3
9
  ## 3.3.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "3.3.4",
3
+ "version": "3.3.5",
4
4
  "description": "A highly composable side navigation component that supports nested views.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -31,11 +31,11 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@atlaskit/ds-lib": "^2.3.0",
34
- "@atlaskit/icon": "^22.5.0",
35
- "@atlaskit/menu": "^2.6.0",
34
+ "@atlaskit/icon": "^22.6.0",
35
+ "@atlaskit/menu": "^2.7.0",
36
36
  "@atlaskit/motion": "^1.7.0",
37
37
  "@atlaskit/platform-feature-flags": "^0.3.0",
38
- "@atlaskit/primitives": "^10.0.0",
38
+ "@atlaskit/primitives": "^11.0.0",
39
39
  "@atlaskit/theme": "^12.11.0",
40
40
  "@atlaskit/tokens": "^1.53.0",
41
41
  "@babel/runtime": "^7.0.0",
@@ -1,16 +0,0 @@
1
- /* eslint-disable @repo/internal/deprecations/deprecation-ticket-required */
2
- /* eslint-disable @repo/internal/react/boolean-prop-naming-convention */
3
- /* eslint-disable @repo/internal/react/consistent-props-definitions */
4
-
5
- import { type HeaderProps } from '../../src/components/Header';
6
-
7
- interface FooterProps extends HeaderProps {
8
- /**
9
- * @deprecated
10
- * Enables use of deprecated `cssFn`, `onClick` and `component` props.
11
- * If this prop is not set to true, you will see a deprecation warning.
12
- */
13
- useDeprecatedApi?: boolean;
14
- }
15
-
16
- export default (props: FooterProps) => null;