@skbkontur/side-menu 4.0.0-beta.3 → 4.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.
- package/CHANGELOG.md +37 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,43 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.1](/compare/@skbkontur/side-menu@4.0.0...@skbkontur/side-menu@4.0.1) (2026-04-10)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @skbkontur/side-menu
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [4.0.0](/compare/@skbkontur/side-menu@3.5.0...@skbkontur/side-menu@4.0.0) (2026-03-31)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **SideMenu:** add dark theme, refactor theme variables ([67d9cfd](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/67d9cfd))
|
|
20
|
+
* **SideMenu:** add focus state to Burger ([10f5f29](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/10f5f29))
|
|
21
|
+
* **SideMenu:** hide marker on disabled items ([111614f](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/111614f))
|
|
22
|
+
* **SideMenu:** use Kontur Colors in themes ([7cce950](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/7cce950))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **SideMenu.Item:** change item focus color variable ([772e0ea](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/772e0ea))
|
|
28
|
+
* **SideMenu:** add full-width to nested MenuItems ([53c55e4](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/53c55e4))
|
|
29
|
+
* **SideMenuDropdown:** use correct ref ([410645f](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/410645f))
|
|
30
|
+
* **SideMenu:** remove horizontal scrolling in touchscreen ([5fef1ac](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/5fef1ac))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
### BREAKING CHANGES
|
|
34
|
+
|
|
35
|
+
* type module, esm-only build, exports ([60e9281](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/60e9281))
|
|
36
|
+
* update typescript to 5.9.3 ([8e3a23d](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/8e3a23d))
|
|
37
|
+
* add explicit types ([a95c75d](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/a95c75d))
|
|
38
|
+
* adopt react-ui v6 changes ([6521a68](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/6521a68))
|
|
39
|
+
* adopt react-ui v6 renderEnvironment context ([0c119ec](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/0c119ec))
|
|
40
|
+
* improve typescript usage ([9fdd79c](https://git.skbkontur.ru/ui/ui-parking-2/-/commit/9fdd79c))
|
|
41
|
+
|
|
42
|
+
|
|
6
43
|
# [3.5.0](https://git.skbkontur.ru/ui/ui-parking-2/compare/@skbkontur/side-menu@3.4.8...@skbkontur/side-menu@3.5.0) (2026-03-12)
|
|
7
44
|
|
|
8
45
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skbkontur/side-menu",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -26,19 +26,19 @@
|
|
|
26
26
|
},
|
|
27
27
|
"author": "Kontur",
|
|
28
28
|
"peerDependencies": {
|
|
29
|
-
"@skbkontur/react-ui": ">=5
|
|
30
|
-
"react": ">=16.9
|
|
31
|
-
"react-dom": ">=16.9
|
|
29
|
+
"@skbkontur/react-ui": ">=5 <=6",
|
|
30
|
+
"react": ">=16.9 <=19",
|
|
31
|
+
"react-dom": ">=16.9 <=19"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@skbkontur/ui-cdn-components": "^1.9.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@skbkontur/bell-widget-npm-loader": "^0.3.0",
|
|
38
|
-
"@skbkontur/colors": "^2.1.
|
|
39
|
-
"@skbkontur/empty-state": "^2.0.0
|
|
38
|
+
"@skbkontur/colors": "^2.1.6",
|
|
39
|
+
"@skbkontur/empty-state": "^2.0.0",
|
|
40
40
|
"@skbkontur/icons": ">=2 <3",
|
|
41
|
-
"@skbkontur/react-ui-addons": "^6.0.
|
|
41
|
+
"@skbkontur/react-ui-addons": "^6.0.1",
|
|
42
42
|
"@skbkontur/widget-consumer-react-utils": "^1.6.12",
|
|
43
43
|
"tslib": "^2.8.0"
|
|
44
44
|
}
|