@diplodoc/client 3.0.0 → 3.0.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.
@@ -17,6 +17,7 @@ jobs:
17
17
  uses: actions/setup-node@v3
18
18
  with:
19
19
  node-version: ${{ matrix.node-version }}
20
- cache: "npm"
20
+ cache: 'npm'
21
21
  - run: npm ci
22
22
  - run: npm run lint
23
+ - run: npm run typecheck
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.0.1](https://github.com/diplodoc-platform/client/compare/v3.0.0...v3.0.1) (2024-09-24)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * Update components ([9a54523](https://github.com/diplodoc-platform/client/commit/9a54523c39abc8b43328603657e6534338de1d03))
9
+
3
10
  ## [3.0.0](https://github.com/diplodoc-platform/client/compare/v2.6.2...v3.0.0) (2024-09-24)
4
11
 
5
12
  ### ⚠ BREAKING CHANGES
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { Router } from '@diplodoc/components';
3
2
  export interface RouterConfig extends Router {
4
3
  depth: number;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { SearchConfig, WorkerApi, WorkerConfig } from './types';
3
2
  export type { SearchConfig, WorkerConfig, WorkerApi };
4
3
  export declare const SearchContext: import("react").Context<SearchConfig | null | undefined>;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import { Lang } from '@diplodoc/components';
3
2
  export declare const LangProvider: import("react").Provider<Lang>;
4
3
  export declare function useLang(): Lang;