@skbkontur/side-menu 3.4.8 → 4.0.0-alpha.0
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 +12 -0
- package/internal/themes/SideMenuDarkTheme.d.ts +27 -0
- package/internal/themes/SideMenuDarkTheme.js +53 -0
- package/internal/themes/SideMenuTheme.d.ts +82 -99
- package/internal/themes/SideMenuTheme.js +129 -177
- package/lib/theming/ThemeHelpers.js +3 -1
- package/package.json +1 -1
- package/src/Navigation.d.ts +2 -2
- package/src/Navigation.js +5 -5
- package/src/SideMenu/SideMenu.d.ts +0 -12
- package/src/SideMenu/SideMenu.js +119 -127
- package/src/SideMenu/SideMenu.styles.d.ts +19 -16
- package/src/SideMenu/SideMenu.styles.js +51 -41
- package/src/SideMenuAvatar/SideMenuAvatar.d.ts +2 -1
- package/src/SideMenuBody/SideMenuBody.js +3 -4
- package/src/SideMenuContext.d.ts +4 -3
- package/src/SideMenuDivider/SideMenuDivider.js +1 -2
- package/src/SideMenuDivider/SideMenuDivider.styles.js +1 -1
- package/src/SideMenuDropdown/SideMenuDropdown.d.ts +2 -1
- package/src/SideMenuDropdown/SideMenuDropdown.js +8 -9
- package/src/SideMenuDropdown/SideMenuDropdown.styles.d.ts +2 -2
- package/src/SideMenuDropdown/SideMenuDropdown.styles.js +3 -3
- package/src/SideMenuFooter/SideMenuFooter.js +4 -4
- package/src/SideMenuFooter/SideMenuFooter.styles.d.ts +1 -1
- package/src/SideMenuFooter/SideMenuFooter.styles.js +2 -2
- package/src/SideMenuHeader/SideMenuHeader.js +5 -5
- package/src/SideMenuHeader/SideMenuHeader.styles.d.ts +3 -3
- package/src/SideMenuHeader/SideMenuHeader.styles.js +6 -6
- package/src/SideMenuLink/SideMenuLink.js +1 -2
- package/src/SideMenuNotifications/BellWidget.js +2 -2
- package/src/SideMenuNotifications/SideMenuNotifications.d.ts +2 -1
- package/src/SideMenuOrganisations/SideMenuOrganisations.d.ts +2 -1
- package/src/SideMenuSubItemHeader/SideMenuSubItemHeader.js +1 -2
- package/src/internal/BackButton.js +1 -1
- package/src/internal/Backdrop.js +1 -4
- package/src/internal/Backdrop.styles.d.ts +1 -1
- package/src/internal/Backdrop.styles.js +1 -1
- package/src/internal/Burger.js +1 -1
- package/src/internal/Burger.styles.d.ts +1 -1
- package/src/internal/Burger.styles.js +2 -2
- package/src/internal/ClickableElement.js +30 -24
- package/src/internal/ClickableElement.styles.d.ts +4 -4
- package/src/internal/ClickableElement.styles.js +11 -11
- package/src/internal/InnerSubMenu.js +1 -2
- package/src/internal/ItemContent/Caption.js +4 -6
- package/src/internal/ItemContent/Caption.styles.d.ts +2 -2
- package/src/internal/ItemContent/Caption.styles.js +5 -5
- package/src/internal/ItemContent/Icon.styles.js +2 -2
- package/src/internal/ItemContent/ItemContent.js +11 -11
- package/src/internal/ItemContent/ItemContent.styles.d.ts +7 -7
- package/src/internal/ItemContent/ItemContent.styles.js +12 -12
- package/src/internal/ItemContent/Marker.d.ts +3 -3
- package/src/internal/ItemContent/Marker.js +6 -7
- package/src/internal/ItemContent/Marker.styles.d.ts +2 -3
- package/src/internal/ItemContent/Marker.styles.js +8 -11
- package/src/internal/NestedMenu.js +1 -7
- package/src/internal/RightBorder.js +4 -3
- package/src/internal/RightBorder.styles.js +1 -1
- package/src/internal/SeparatedSubMenu.js +7 -9
- package/src/internal/SeparatedSubMenu.styles.d.ts +5 -5
- package/src/internal/SeparatedSubMenu.styles.js +9 -9
- package/src/internal/SideMenuLogotype.js +14 -14
- package/src/internal/SideMenuLogotype.styles.d.ts +2 -2
- package/src/internal/SideMenuLogotype.styles.js +5 -5
- package/src/internal/NestedMenu.styles.d.ts +0 -4
- package/src/internal/NestedMenu.styles.js +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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.4.9](https://git.skbkontur.ru/ui/ui-parking-2/compare/@skbkontur/side-menu@3.4.8...@skbkontur/side-menu@3.4.9) (2025-12-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **SideMenu:** add `aria-current="page"` to active menu item ([76a5e37](https://git.skbkontur.ru/ui/ui-parking-2/commits/76a5e3794cf8331d2970cf852354030774827824))
|
|
12
|
+
* **SideMenu:** render RightBorder icon on top of scrollbar ([8ee36f4](https://git.skbkontur.ru/ui/ui-parking-2/commits/8ee36f43b1449d95df3d094baf87654902174d08))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [3.4.8](https://git.skbkontur.ru/ui/ui-parking-2/compare/@skbkontur/side-menu@3.4.7...@skbkontur/side-menu@3.4.8) (2025-12-19)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @skbkontur/side-menu
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SideMenuTheme } from './SideMenuTheme';
|
|
2
|
+
declare class SideMenuDarkTheme extends SideMenuTheme {
|
|
3
|
+
static sideMenuBg: string;
|
|
4
|
+
static sideMenuBgHover: string;
|
|
5
|
+
static sideMenuProductColor: string;
|
|
6
|
+
static sideMenuDividerBg: string;
|
|
7
|
+
static sideMenuItemBgHover: string;
|
|
8
|
+
static sideMenuItemBgActive: string;
|
|
9
|
+
static sideMenuItemColor: string;
|
|
10
|
+
static sideMenuItemColorDisabled: string;
|
|
11
|
+
static sideMenuItemBoxShadowColorFocus: string;
|
|
12
|
+
static sideMenuSubItemWithSeparatedSubMenuBgHover: string;
|
|
13
|
+
static sideMenuSubItemWithSeparatedSubMenuBgActive: string;
|
|
14
|
+
static sideMenuIconSubItemColor: string;
|
|
15
|
+
static sideMenuMarkerColor: string;
|
|
16
|
+
static sideMenuMarkerSubItemColor: string;
|
|
17
|
+
static sideMenuSeparatedSubMenuBg: string;
|
|
18
|
+
static sideMenuSeparatedSubMenuBorderRightColor: string;
|
|
19
|
+
static sideMenuSeparatedSubMenuBoxShadowRadius: string;
|
|
20
|
+
static sideMenuSubItemHeaderColor: string;
|
|
21
|
+
static sideMenuRightBorderIconColor: string;
|
|
22
|
+
static sideMenuRightBorderIconColorHover: string;
|
|
23
|
+
static sideMenuBurgerColor: string;
|
|
24
|
+
static sideMenuNotificationsMarkerBg: string;
|
|
25
|
+
}
|
|
26
|
+
export declare const SideMenuDarkThemeInternal: typeof SideMenuDarkTheme;
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { exposeGetters } from '@skbkontur/react-ui/lib/theming/ThemeHelpers';
|
|
3
|
+
import * as colors from '../../../colors/default-dark';
|
|
4
|
+
import { SideMenuTheme } from './SideMenuTheme';
|
|
5
|
+
var SideMenuDarkTheme = /** @class */ (function (_super) {
|
|
6
|
+
__extends(SideMenuDarkTheme, _super);
|
|
7
|
+
function SideMenuDarkTheme() {
|
|
8
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
9
|
+
}
|
|
10
|
+
// #region SideMenu
|
|
11
|
+
SideMenuDarkTheme.sideMenuBg = colors.surfaceLow;
|
|
12
|
+
SideMenuDarkTheme.sideMenuBgHover = colors.shapeOtherNeutralFaintSolid;
|
|
13
|
+
SideMenuDarkTheme.sideMenuProductColor = colors.shapeBoldBrandOriginal;
|
|
14
|
+
// #endregion
|
|
15
|
+
// #region Divider
|
|
16
|
+
SideMenuDarkTheme.sideMenuDividerBg = colors.lineNeutralFaint;
|
|
17
|
+
// #endregion
|
|
18
|
+
// #region Item
|
|
19
|
+
SideMenuDarkTheme.sideMenuItemBgHover = colors.shapeOtherBacklessHover;
|
|
20
|
+
SideMenuDarkTheme.sideMenuItemBgActive = colors.shapeOtherBase;
|
|
21
|
+
SideMenuDarkTheme.sideMenuItemColor = colors.textNeutralHeavy;
|
|
22
|
+
SideMenuDarkTheme.sideMenuItemColorDisabled = colors.textNeutralFaint;
|
|
23
|
+
SideMenuDarkTheme.sideMenuItemBoxShadowColorFocus = colors.lineAccentBold;
|
|
24
|
+
SideMenuDarkTheme.sideMenuSubItemWithSeparatedSubMenuBgHover = colors.shapeOtherBacklessHover;
|
|
25
|
+
SideMenuDarkTheme.sideMenuSubItemWithSeparatedSubMenuBgActive = colors.shapeFaintNeutralAlpha;
|
|
26
|
+
// #endregion
|
|
27
|
+
// #region Icon
|
|
28
|
+
SideMenuDarkTheme.sideMenuIconSubItemColor = colors.textNeutralSoft;
|
|
29
|
+
// #endregion
|
|
30
|
+
// #region Marker
|
|
31
|
+
SideMenuDarkTheme.sideMenuMarkerColor = colors.textOnBrandOriginalHeavy;
|
|
32
|
+
SideMenuDarkTheme.sideMenuMarkerSubItemColor = colors.textNeutralSoft;
|
|
33
|
+
// #endregion
|
|
34
|
+
// #region SeparatedSubMenu
|
|
35
|
+
SideMenuDarkTheme.sideMenuSeparatedSubMenuBg = colors.surfaceBase;
|
|
36
|
+
SideMenuDarkTheme.sideMenuSeparatedSubMenuBorderRightColor = colors.lineNeutralFaint;
|
|
37
|
+
SideMenuDarkTheme.sideMenuSeparatedSubMenuBoxShadowRadius = '40px';
|
|
38
|
+
// #endregion
|
|
39
|
+
// #region SubItemHeader
|
|
40
|
+
SideMenuDarkTheme.sideMenuSubItemHeaderColor = colors.textNeutralSoft;
|
|
41
|
+
// #endregion
|
|
42
|
+
// #region RightBorder
|
|
43
|
+
SideMenuDarkTheme.sideMenuRightBorderIconColor = colors.textNeutralFaint;
|
|
44
|
+
SideMenuDarkTheme.sideMenuRightBorderIconColorHover = colors.textNeutralHeavy;
|
|
45
|
+
// #endregion
|
|
46
|
+
// #region Burger
|
|
47
|
+
SideMenuDarkTheme.sideMenuBurgerColor = colors.textNeutralHeavy;
|
|
48
|
+
// #endregion
|
|
49
|
+
// #region SideMenuNotifications
|
|
50
|
+
SideMenuDarkTheme.sideMenuNotificationsMarkerBg = colors.textNeutralHeavy;
|
|
51
|
+
return SideMenuDarkTheme;
|
|
52
|
+
}(SideMenuTheme));
|
|
53
|
+
export var SideMenuDarkThemeInternal = exposeGetters(SideMenuDarkTheme);
|
|
@@ -3,134 +3,117 @@ import type { Theme as ReactUITheme } from '@skbkontur/react-ui/lib/theming/Them
|
|
|
3
3
|
declare const SideMenuTheme_base: typeof BasicLightThemeInternal;
|
|
4
4
|
export declare class SideMenuTheme extends SideMenuTheme_base {
|
|
5
5
|
static sideMenuWidth: string;
|
|
6
|
-
static
|
|
7
|
-
static
|
|
6
|
+
static sideMenuWidthTouchScreen: string;
|
|
7
|
+
static sideMenuWidthCollapsed: string;
|
|
8
8
|
static sideMenuMarginX: string;
|
|
9
|
-
static
|
|
10
|
-
static
|
|
11
|
-
static
|
|
12
|
-
static sideMenuBoxShadowBlurRadius: string;
|
|
13
|
-
static sideMenuBoxShadowColor: string;
|
|
14
|
-
static get sideMenuBoxShadow(): string;
|
|
9
|
+
static sideMenuBg: string;
|
|
10
|
+
static sideMenuBgHover: string;
|
|
11
|
+
static sideMenuBoxShadow: string;
|
|
15
12
|
static sideMenuLineHeight: string;
|
|
16
|
-
static
|
|
13
|
+
static sideMenuLineHeightLarge: string;
|
|
17
14
|
static sideMenuProductColor: string;
|
|
18
15
|
static sideMenuDesktopMediaQuery: string;
|
|
19
16
|
static sideMenuNarrowDesktopMediaQuery: string;
|
|
20
17
|
static sideMenuTabletMediaQuery: string;
|
|
21
18
|
static sideMenuMobileMediaQuery: string;
|
|
19
|
+
static sideMenuDividerMarginX: string;
|
|
20
|
+
static sideMenuDividerMarginY: string;
|
|
21
|
+
static sideMenuDividerBg: string;
|
|
22
|
+
static sideMenuLogotypePaddingLeft: string;
|
|
23
|
+
static sideMenuLogotypePaddingTop: string;
|
|
24
|
+
static sideMenuLogotypePaddingBottom: string;
|
|
25
|
+
static sideMenuLogotypeHiddenIconPaddingLeft: string;
|
|
26
|
+
static sideMenuHeaderPaddingTop: string;
|
|
27
|
+
static sideMenuHeaderPaddingBottom: string;
|
|
28
|
+
static get sideMenuHeaderDividerColor(): string;
|
|
29
|
+
static sideMenuHeaderPaddingTopTabletAndMobile: string;
|
|
30
|
+
static sideMenuHeaderMarginLeftTabletAndMobile: string;
|
|
22
31
|
static sideMenuBodyPaddingBottom: string;
|
|
23
|
-
static
|
|
24
|
-
static
|
|
25
|
-
static
|
|
26
|
-
static
|
|
27
|
-
static
|
|
28
|
-
static
|
|
29
|
-
static
|
|
30
|
-
static
|
|
31
|
-
static
|
|
32
|
-
static
|
|
33
|
-
static
|
|
34
|
-
static
|
|
35
|
-
static
|
|
36
|
-
static
|
|
37
|
-
static
|
|
38
|
-
static
|
|
39
|
-
static
|
|
40
|
-
static
|
|
41
|
-
static
|
|
42
|
-
static
|
|
43
|
-
static
|
|
44
|
-
static
|
|
45
|
-
static
|
|
46
|
-
static sideMenuBackButtonCaptionPaddingY: string;
|
|
47
|
-
static sideMenuBackButtonIconPaddingLeft: string;
|
|
48
|
-
static sideMenuBackButtonIconPaddingRight: string;
|
|
32
|
+
static sideMenuFooterPaddingTop: string;
|
|
33
|
+
static sideMenuFooterPaddingBottom: string;
|
|
34
|
+
static get sideMenuFooterDividerColor(): string;
|
|
35
|
+
static sideMenuItemBorderRadius: string;
|
|
36
|
+
static sideMenuItemBgHover: string;
|
|
37
|
+
static sideMenuItemBgActive: string;
|
|
38
|
+
static sideMenuItemColor: string;
|
|
39
|
+
static sideMenuItemColorDisabled: string;
|
|
40
|
+
static sideMenuItemBoxShadowColorFocus: string;
|
|
41
|
+
static get sideMenuItemBoxShadowFocus(): string;
|
|
42
|
+
static sideMenuItemNestedPaddingLeft: string;
|
|
43
|
+
static sideMenuSubItemWithSeparatedSubMenuBgHover: string;
|
|
44
|
+
static sideMenuSubItemWithSeparatedSubMenuBgActive: string;
|
|
45
|
+
static sideMenuItemContentPaddingY: string;
|
|
46
|
+
static sideMenuItemContentPaddingYLarge: string;
|
|
47
|
+
static sideMenuItemContentPaddingYTouchScreen: string;
|
|
48
|
+
static sideMenuItemContentMultilinePaddingTop: string;
|
|
49
|
+
static sideMenuItemContentMultilinePaddingTopLarge: string;
|
|
50
|
+
static sideMenuItemContentMultilinePaddingBottom: string;
|
|
51
|
+
static sideMenuItemContentMultilinePaddingBottomLarge: string;
|
|
52
|
+
static sideMenuSubItemContentPaddingY: string;
|
|
53
|
+
static sideMenuSubItemContentPaddingYLarge: string;
|
|
54
|
+
static sideMenuSubItemContentPaddingYTouchScreen: string;
|
|
49
55
|
static sideMenuIconSize: string;
|
|
50
|
-
static sideMenuIconSubItemSize: string;
|
|
51
56
|
static sideMenuIconMarginY: string;
|
|
52
57
|
static sideMenuIconMarginX: string;
|
|
53
58
|
static get sideMenuIconMarginLeft(): string;
|
|
54
59
|
static get sideMenuIconMarginRight(): string;
|
|
55
60
|
static sideMenuIconMinHeight: string;
|
|
61
|
+
static sideMenuIconMinHeightLarge: string;
|
|
56
62
|
static get sideMenuIconLineHeight(): string;
|
|
57
|
-
static
|
|
58
|
-
static
|
|
63
|
+
static get sideMenuIconLineHeightLarge(): string;
|
|
64
|
+
static sideMenuIconSubItemSize: string;
|
|
59
65
|
static sideMenuIconSubItemPaddingLeft: string;
|
|
60
66
|
static sideMenuIconSubItemPaddingRight: string;
|
|
61
67
|
static sideMenuIconSubItemMinHeight: string;
|
|
68
|
+
static sideMenuIconSubItemMinHeightLarge: string;
|
|
62
69
|
static sideMenuIconSubItemLineHeight: string;
|
|
63
70
|
static sideMenuIconSubItemColor: string;
|
|
64
|
-
static sideMenuIconLargeSubItemMinHeight: string;
|
|
65
71
|
static sideMenuIconWithSeparatedSubMenuSubItemPaddingLeft: string;
|
|
66
|
-
static
|
|
67
|
-
static
|
|
68
|
-
static
|
|
69
|
-
static
|
|
70
|
-
static
|
|
71
|
-
static
|
|
72
|
-
static
|
|
73
|
-
static
|
|
74
|
-
static
|
|
75
|
-
static
|
|
76
|
-
static
|
|
72
|
+
static sideMenuCaptionFontSize: string;
|
|
73
|
+
static sideMenuCaptionFontSizeLarge: string;
|
|
74
|
+
static sideMenuCaptionFontSizeTouchScreen: string;
|
|
75
|
+
static get sideMenuCaptionLineHeight(): string;
|
|
76
|
+
static get sideMenuCaptionLineHeightLarge(): string;
|
|
77
|
+
static sideMenuCaptionLineHeightTouchScreen: string;
|
|
78
|
+
static sideMenuCaptionMultilinePaddingTop: string;
|
|
79
|
+
static sideMenuCaptionMarginRight: string;
|
|
80
|
+
static sideMenuCaptionNoWrapWithMarkerMarginRight: string;
|
|
81
|
+
static sideMenuCaptionSubItemFontSizeTouchScreen: string;
|
|
82
|
+
static get sideMenuCaptionSubItemLineHeightTouchScreen(): string;
|
|
83
|
+
static sideMenuCaptionSubItemMarginLeft: string;
|
|
84
|
+
static sideMenuMarkerFontWeight: string;
|
|
85
|
+
static sideMenuMarkerFontSize: string;
|
|
86
|
+
static sideMenuMarkerLineHeight: string;
|
|
77
87
|
static sideMenuMarkerPaddingX: string;
|
|
78
88
|
static sideMenuMarkerPaddingY: string;
|
|
79
|
-
static get sideMenuMarkerBg(): string;
|
|
80
|
-
static sideMenuMarkerBgDisabled: string;
|
|
81
89
|
static sideMenuMarkerColor: string;
|
|
82
|
-
static
|
|
83
|
-
static sideMenuSubItemEmptyMarkerBg: string;
|
|
84
|
-
static get sideMenuMarkerSubItemColor(): string;
|
|
90
|
+
static get sideMenuMarkerBg(): string;
|
|
85
91
|
static sideMenuMarkerMarginRight: string;
|
|
86
|
-
static sideMenuMarkerFontWeight: string;
|
|
87
|
-
static sideMenuSubItemMarkerFontWeight: string;
|
|
88
92
|
static sideMenuMarkerMultilineMarginTop: string;
|
|
89
|
-
static
|
|
90
|
-
static
|
|
91
|
-
static
|
|
92
|
-
static
|
|
93
|
-
static
|
|
94
|
-
static
|
|
95
|
-
static
|
|
96
|
-
static
|
|
97
|
-
static
|
|
98
|
-
static
|
|
99
|
-
static
|
|
100
|
-
static
|
|
101
|
-
static sideMenuFocusedItemBoxShadowColor: string;
|
|
102
|
-
static get sideMenuFocusedItemBoxShadow(): string;
|
|
103
|
-
static sideMenuDividerMarginX: string;
|
|
104
|
-
static sideMenuDividerMarginY: string;
|
|
105
|
-
static sideMenuDividerBgColor: string;
|
|
106
|
-
static sideMenuNestedMenuPaddingLeft: string;
|
|
93
|
+
static sideMenuMarkerSubItemFontWeight: string;
|
|
94
|
+
static sideMenuMarkerSubItemColor: string;
|
|
95
|
+
static get sideMenuMarkerSubItemEmptyBg(): string;
|
|
96
|
+
static sideMenuAvatarSize: string;
|
|
97
|
+
static sideMenuSeparatedSubMenuBg: string;
|
|
98
|
+
static sideMenuSeparatedSubMenuBorderRightColor: string;
|
|
99
|
+
static sideMenuSeparatedSubMenuPaddingY: string;
|
|
100
|
+
static sideMenuSeparatedSubMenuPaddingX: string;
|
|
101
|
+
static sideMenuSeparatedSubMenuBoxShadowRadius: string;
|
|
102
|
+
static sideMenuSubItemHeaderFontSize: string;
|
|
103
|
+
static sideMenuSubItemHeaderColor: string;
|
|
104
|
+
static sideMenuSubItemHeaderPadding: string;
|
|
107
105
|
static sideMenuRightBorderWidth: string;
|
|
108
|
-
/**
|
|
109
|
-
* @deprecated doesn't work since v 1.12
|
|
110
|
-
*/
|
|
111
|
-
static get sideMenuRightBorderColor(): string;
|
|
112
|
-
/**
|
|
113
|
-
* @deprecated doesn't work since v 1.12
|
|
114
|
-
*/
|
|
115
|
-
static sideMenuRightBorderHoverWidth: string;
|
|
116
106
|
static sideMenuRightBorderIconColor: string;
|
|
117
|
-
static
|
|
118
|
-
static
|
|
119
|
-
static
|
|
120
|
-
static
|
|
121
|
-
static
|
|
122
|
-
static
|
|
123
|
-
static
|
|
124
|
-
static
|
|
125
|
-
static get sideMenuFooterDividerColor(): string;
|
|
126
|
-
static sideMenuHeaderPaddingTop: string;
|
|
127
|
-
static sideMenuHeaderPaddingBottom: string;
|
|
128
|
-
static get sideMenuHeaderDividerColor(): string;
|
|
129
|
-
static sideMenuHeaderPaddingTopForTouchScreens: string;
|
|
107
|
+
static sideMenuRightBorderIconColorHover: string;
|
|
108
|
+
static sideMenuBurgerColor: string;
|
|
109
|
+
static sideMenuBackButtonCaptionFontWeight: string;
|
|
110
|
+
static sideMenuBackButtonCaptionFontSize: string;
|
|
111
|
+
static sideMenuBackButtonCaptionLineHeight: string;
|
|
112
|
+
static sideMenuBackButtonCaptionPaddingY: string;
|
|
113
|
+
static sideMenuBackButtonIconPaddingLeft: string;
|
|
114
|
+
static sideMenuBackButtonIconPaddingRight: string;
|
|
130
115
|
static sideMenuNotificationsMarkerBg: string;
|
|
131
|
-
/**
|
|
132
|
-
* от 400px до 784px
|
|
133
|
-
*/
|
|
116
|
+
/** от 400px до 784px */
|
|
134
117
|
static sideMenuNotificationsWrapperHeight: string;
|
|
135
118
|
}
|
|
136
119
|
export declare const REACT_UI_SIDE_MENU_THEME_KEY = "__IS_REACT_UI_SIDE_MENU_THEME__";
|