@skbkontur/side-menu 3.1.2 → 3.1.4
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 +19 -0
- package/internal/themes/SideMenuTheme.d.ts +2 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
## [3.1.4](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/side-menu@3.1.3...@skbkontur/side-menu@3.1.4) (2025-01-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* incorrect import ([68b396d](https://git.skbkontur.ru/ui/ui-parking/commits/68b396d0d6c82a5835d9b029f4fc59efc4f09a5b))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.1.3](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/side-menu@3.1.2...@skbkontur/side-menu@3.1.3) (2025-01-16)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @skbkontur/side-menu
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [3.1.2](https://git.skbkontur.ru/ui/ui-parking/compare/@skbkontur/side-menu@3.1.1...@skbkontur/side-menu@3.1.2) (2024-12-20)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @skbkontur/side-menu
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { BasicLightThemeInternal } from '@skbkontur/react-ui/internal/themes/BasicLightTheme';
|
|
1
2
|
import { Theme as ReactUITheme } from '@skbkontur/react-ui/lib/theming/Theme';
|
|
2
|
-
declare const SideMenuTheme_base: typeof
|
|
3
|
+
declare const SideMenuTheme_base: typeof BasicLightThemeInternal;
|
|
3
4
|
export declare class SideMenuTheme extends SideMenuTheme_base {
|
|
4
5
|
static sideMenuWidth: string;
|
|
5
6
|
static sideMenuWidthForTouchScreens: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skbkontur/side-menu",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"registry": "https://registry.npmjs.org/"
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"react-dom": ">=16.9"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@skbkontur/react-ui": "5.0.0"
|
|
22
|
+
"@skbkontur/react-ui": "^5.0.0"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@skbkontur/icons": "^1.15.
|
|
26
|
-
"@skbkontur/react-ui-addons": "^5.1.
|
|
25
|
+
"@skbkontur/icons": "^1.15.2",
|
|
26
|
+
"@skbkontur/react-ui-addons": "^5.1.2",
|
|
27
27
|
"tslib": "^1"
|
|
28
28
|
}
|
|
29
29
|
}
|