@atlaskit/side-navigation 11.1.5 → 11.1.7

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,17 @@
1
1
  # @atlaskit/side-navigation
2
2
 
3
+ ## 11.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+
9
+ ## 11.1.6
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+
3
15
  ## 11.1.5
4
16
 
5
17
  ### Patch Changes
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
4
  "target": "es5",
6
5
  "outDir": "../../../../../confluence/tsDist/@atlaskit__side-navigation",
7
6
  "rootDir": "../",
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
4
  "target": "es5",
6
5
  "outDir": "../../../../../jira/tsDist/@atlaskit__side-navigation/app",
7
6
  "rootDir": "../",
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "extends": "../../../../tsconfig.local-consumption.json",
3
3
  "compilerOptions": {
4
- "declaration": true,
5
4
  "target": "es5",
6
5
  "outDir": "../../../../../tsDist/@atlaskit__side-navigation/app",
7
6
  "rootDir": "../",
@@ -35,5 +35,5 @@ export interface LoadingItemsProps {
35
35
  *
36
36
  * Loading items conditionally render based on the useShouldNestedElementRender() hook.
37
37
  */
38
- declare const LoadingItems: ({ children, isLoading, fallback, testId }: LoadingItemsProps) => JSX.Element;
38
+ declare const LoadingItems: ({ children, isLoading, fallback, testId, }: LoadingItemsProps) => JSX.Element;
39
39
  export default LoadingItems;
@@ -19,7 +19,7 @@ export interface NestedContextValue {
19
19
  /**
20
20
  * @internal
21
21
  */
22
- export declare const NestedContext: import("react").Context<NestedContextValue | undefined>;
22
+ export declare const NestedContext: import('react').Context<NestedContextValue | undefined>;
23
23
  export declare const useNestedContext: () => NestedContextValue;
24
24
  /**
25
25
  * Used by children of the NestableNavigationContent component to see if they should render or not.
@@ -35,5 +35,5 @@ export interface LoadingItemsProps {
35
35
  *
36
36
  * Loading items conditionally render based on the useShouldNestedElementRender() hook.
37
37
  */
38
- declare const LoadingItems: ({ children, isLoading, fallback, testId }: LoadingItemsProps) => JSX.Element;
38
+ declare const LoadingItems: ({ children, isLoading, fallback, testId, }: LoadingItemsProps) => JSX.Element;
39
39
  export default LoadingItems;
@@ -19,7 +19,7 @@ export interface NestedContextValue {
19
19
  /**
20
20
  * @internal
21
21
  */
22
- export declare const NestedContext: import("react").Context<NestedContextValue | undefined>;
22
+ export declare const NestedContext: import('react').Context<NestedContextValue | undefined>;
23
23
  export declare const useNestedContext: () => NestedContextValue;
24
24
  /**
25
25
  * Used by children of the NestableNavigationContent component to see if they should render or not.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaskit/side-navigation",
3
- "version": "11.1.5",
3
+ "version": "11.1.7",
4
4
  "description": "A highly composable side navigation component that supports nested views.",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/"
@@ -30,12 +30,12 @@
30
30
  "dependencies": {
31
31
  "@atlaskit/css": "^0.19.0",
32
32
  "@atlaskit/ds-lib": "^5.3.0",
33
- "@atlaskit/icon": "^31.0.0",
33
+ "@atlaskit/icon": "^32.0.0",
34
34
  "@atlaskit/menu": "^8.4.0",
35
35
  "@atlaskit/motion": "^5.3.0",
36
36
  "@atlaskit/platform-feature-flags": "^1.1.0",
37
37
  "@atlaskit/primitives": "^18.0.0",
38
- "@atlaskit/theme": "^21.0.0",
38
+ "@atlaskit/theme": "^22.0.0",
39
39
  "@atlaskit/tokens": "^11.0.0",
40
40
  "@babel/runtime": "^7.0.0",
41
41
  "@compiled/react": "^0.18.6"
@@ -48,9 +48,9 @@
48
48
  "@af/integration-testing": "workspace:^",
49
49
  "@af/visual-regression": "workspace:^",
50
50
  "@atlaskit/atlassian-navigation": "^5.6.0",
51
- "@atlaskit/button": "^23.9.0",
52
- "@atlaskit/docs": "^11.3.0",
53
- "@atlaskit/dropdown-menu": "^16.4.0",
51
+ "@atlaskit/button": "^23.10.0",
52
+ "@atlaskit/docs": "^11.5.0",
53
+ "@atlaskit/dropdown-menu": "^16.5.0",
54
54
  "@atlaskit/form": "^15.3.0",
55
55
  "@atlaskit/image": "^3.0.0",
56
56
  "@atlaskit/link": "^3.3.0",
package/tsconfig.json CHANGED
@@ -14,6 +14,5 @@
14
14
  ],
15
15
  "exclude": [
16
16
  "node_modules"
17
- ],
18
- "compilerOptions": {}
17
+ ]
19
18
  }