@topconsultnpm/sdkui-react 6.20.0-dev1.4 → 6.20.0-dev1.40

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.
Files changed (73) hide show
  1. package/lib/components/NewComponents/ContextMenu/TMContextMenu.d.ts +4 -0
  2. package/lib/components/NewComponents/ContextMenu/TMContextMenu.js +248 -0
  3. package/lib/components/NewComponents/ContextMenu/hooks.d.ts +12 -0
  4. package/lib/components/NewComponents/ContextMenu/hooks.js +52 -0
  5. package/lib/components/NewComponents/ContextMenu/index.d.ts +2 -0
  6. package/lib/components/NewComponents/ContextMenu/index.js +1 -0
  7. package/lib/components/NewComponents/ContextMenu/styles.d.ts +31 -0
  8. package/lib/components/NewComponents/ContextMenu/styles.js +336 -0
  9. package/lib/components/NewComponents/ContextMenu/types.d.ts +38 -0
  10. package/lib/components/NewComponents/ContextMenu/types.js +1 -0
  11. package/lib/components/NewComponents/FloatingMenuBar/TMFloatingMenuBar.d.ts +4 -0
  12. package/lib/components/NewComponents/FloatingMenuBar/TMFloatingMenuBar.js +471 -0
  13. package/lib/components/NewComponents/FloatingMenuBar/index.d.ts +2 -0
  14. package/lib/components/NewComponents/FloatingMenuBar/index.js +2 -0
  15. package/lib/components/NewComponents/FloatingMenuBar/styles.d.ts +47 -0
  16. package/lib/components/NewComponents/FloatingMenuBar/styles.js +346 -0
  17. package/lib/components/NewComponents/FloatingMenuBar/types.d.ts +29 -0
  18. package/lib/components/NewComponents/FloatingMenuBar/types.js +1 -0
  19. package/lib/components/base/TMCustomButton.js +61 -17
  20. package/lib/components/base/TMDataGrid.d.ts +7 -4
  21. package/lib/components/base/TMDataGrid.js +112 -11
  22. package/lib/components/choosers/TMMetadataChooser.js +8 -1
  23. package/lib/components/editors/TMHtmlEditor.js +1 -1
  24. package/lib/components/editors/TMMetadataValues.js +20 -2
  25. package/lib/components/features/documents/TMDcmtBlog.d.ts +1 -7
  26. package/lib/components/features/documents/TMDcmtBlog.js +29 -2
  27. package/lib/components/features/documents/TMDcmtForm.js +269 -169
  28. package/lib/components/features/documents/TMDcmtPreview.js +37 -66
  29. package/lib/components/features/documents/TMMasterDetailDcmts.js +1 -1
  30. package/lib/components/features/search/TMDcmtCheckoutInfoForm.d.ts +8 -0
  31. package/lib/components/features/search/{TMSearchResultCheckoutInfoForm.js → TMDcmtCheckoutInfoForm.js} +6 -11
  32. package/lib/components/features/search/TMSearch.js +30 -5
  33. package/lib/components/features/search/TMSearchQueryPanel.js +13 -12
  34. package/lib/components/features/search/TMSearchResult.js +71 -120
  35. package/lib/components/features/search/TMSearchResultsMenuItems.d.ts +3 -3
  36. package/lib/components/features/search/TMSearchResultsMenuItems.js +216 -180
  37. package/lib/components/features/search/TMSignSettingsForm.js +1 -1
  38. package/lib/components/features/search/TMSignatureInfoContent.d.ts +6 -0
  39. package/lib/components/features/search/TMSignatureInfoContent.js +140 -0
  40. package/lib/components/features/search/TMViewHistoryDcmt.js +1 -1
  41. package/lib/components/features/tasks/TMTasksView.js +2 -2
  42. package/lib/components/forms/Login/LoginValidatorService.d.ts +2 -0
  43. package/lib/components/forms/Login/LoginValidatorService.js +7 -2
  44. package/lib/components/forms/Login/TMLoginForm.js +34 -6
  45. package/lib/components/forms/TMChooserForm.js +1 -1
  46. package/lib/components/index.d.ts +0 -1
  47. package/lib/components/index.js +0 -1
  48. package/lib/css/tm-sdkui.css +1 -1
  49. package/lib/helper/SDKUI_Globals.d.ts +19 -14
  50. package/lib/helper/SDKUI_Globals.js +9 -0
  51. package/lib/helper/SDKUI_Localizator.d.ts +8 -0
  52. package/lib/helper/SDKUI_Localizator.js +98 -0
  53. package/lib/helper/TMIcons.d.ts +1 -0
  54. package/lib/helper/TMIcons.js +3 -0
  55. package/lib/helper/TMPdfViewer.d.ts +8 -0
  56. package/lib/helper/TMPdfViewer.js +187 -0
  57. package/lib/helper/TMUtils.d.ts +3 -1
  58. package/lib/helper/TMUtils.js +51 -0
  59. package/lib/helper/checkinCheckoutManager.d.ts +85 -0
  60. package/lib/helper/checkinCheckoutManager.js +348 -0
  61. package/lib/helper/devextremeCustomMessages.d.ts +30 -0
  62. package/lib/helper/devextremeCustomMessages.js +30 -0
  63. package/lib/helper/helpers.js +7 -1
  64. package/lib/helper/index.d.ts +2 -0
  65. package/lib/helper/index.js +2 -0
  66. package/lib/helper/queryHelper.js +29 -0
  67. package/lib/hooks/useCheckInOutOperations.d.ts +28 -0
  68. package/lib/hooks/useCheckInOutOperations.js +223 -0
  69. package/lib/services/platform_services.d.ts +1 -1
  70. package/package.json +5 -2
  71. package/lib/components/features/search/TMSearchResultCheckoutInfoForm.d.ts +0 -8
  72. package/lib/helper/cicoHelper.d.ts +0 -31
  73. package/lib/helper/cicoHelper.js +0 -155
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import type { TMContextMenuProps } from './types';
3
+ declare const TMContextMenu: React.FC<TMContextMenuProps>;
4
+ export default TMContextMenu;
@@ -0,0 +1,248 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { useState, useRef, useEffect } from 'react';
3
+ import * as S from './styles';
4
+ import { useIsMobile, useMenuPosition } from './hooks';
5
+ import { IconArrowLeft } from '../../../helper';
6
+ const TMContextMenu = ({ items, trigger = 'right', children, externalControl, keepOpenOnClick = false }) => {
7
+ const [menuState, setMenuState] = useState({
8
+ visible: false,
9
+ position: { x: 0, y: 0 },
10
+ submenuStack: [items],
11
+ parentNames: [],
12
+ });
13
+ const [hoveredSubmenus, setHoveredSubmenus] = useState([]);
14
+ const isMobile = useIsMobile();
15
+ const menuRef = useRef(null);
16
+ const triggerRef = useRef(null);
17
+ const submenuTimeoutRef = useRef(null);
18
+ const { openLeft, openUp, isCalculated } = useMenuPosition(menuRef, menuState.position);
19
+ const handleClose = () => {
20
+ if (externalControl) {
21
+ externalControl.onClose();
22
+ }
23
+ else {
24
+ setMenuState(prev => ({
25
+ ...prev,
26
+ visible: false,
27
+ submenuStack: [items],
28
+ parentNames: [],
29
+ }));
30
+ }
31
+ setHoveredSubmenus([]);
32
+ };
33
+ // Sync with external control when provided
34
+ useEffect(() => {
35
+ if (externalControl) {
36
+ setMenuState(prev => ({
37
+ ...prev,
38
+ visible: externalControl.visible,
39
+ position: externalControl.position,
40
+ submenuStack: [items],
41
+ parentNames: [],
42
+ }));
43
+ }
44
+ }, [externalControl, items]);
45
+ // Update items when they change while menu is visible (for keepOpenOnClick behavior)
46
+ useEffect(() => {
47
+ if (!keepOpenOnClick)
48
+ return;
49
+ if (!externalControl && menuState.visible) {
50
+ setMenuState(prev => ({
51
+ ...prev,
52
+ submenuStack: [items],
53
+ }));
54
+ // Update hoveredSubmenus with fresh items while keeping them open
55
+ setHoveredSubmenus(prev => {
56
+ if (prev.length === 0)
57
+ return prev;
58
+ // Rebuild hoveredSubmenus with updated items from the new items structure
59
+ return prev.map(submenu => {
60
+ // Find the matching submenu in the new items structure
61
+ const findSubmenuInItems = (searchItems) => {
62
+ for (const item of searchItems) {
63
+ if (item.submenu && item.submenu.length > 0) {
64
+ // Check if this submenu matches (compare first item name as identifier)
65
+ if (submenu.items.length > 0 && item.submenu.length > 0 &&
66
+ item.submenu[0].name === submenu.items[0].name) {
67
+ return item.submenu;
68
+ }
69
+ // Recursively search in nested submenus
70
+ const found = findSubmenuInItems(item.submenu);
71
+ if (found)
72
+ return found;
73
+ }
74
+ }
75
+ return null;
76
+ };
77
+ const updatedItems = findSubmenuInItems(items);
78
+ return {
79
+ ...submenu,
80
+ items: updatedItems || submenu.items, // Use updated items if found, otherwise keep old
81
+ };
82
+ });
83
+ });
84
+ }
85
+ }, [items, menuState.visible, externalControl, keepOpenOnClick]);
86
+ useEffect(() => {
87
+ if (!menuState.visible)
88
+ return;
89
+ const handleClickOutside = (event) => {
90
+ const target = event.target;
91
+ // Check if click is inside main menu
92
+ if (menuRef.current?.contains(target)) {
93
+ return;
94
+ }
95
+ // Check if click is inside any submenu
96
+ const submenus = document.querySelectorAll('[data-submenu="true"]');
97
+ for (const submenu of Array.from(submenus)) {
98
+ if (submenu.contains(target)) {
99
+ return;
100
+ }
101
+ }
102
+ // Click is outside all menus, close them
103
+ handleClose();
104
+ };
105
+ document.addEventListener('mousedown', handleClickOutside);
106
+ document.addEventListener('touchstart', handleClickOutside);
107
+ return () => {
108
+ document.removeEventListener('mousedown', handleClickOutside);
109
+ document.removeEventListener('touchstart', handleClickOutside);
110
+ };
111
+ }, [menuState.visible]);
112
+ const handleContextMenu = (e) => {
113
+ if (trigger === 'right') {
114
+ e.preventDefault();
115
+ setMenuState({
116
+ visible: true,
117
+ position: { x: e.clientX, y: e.clientY },
118
+ submenuStack: [items],
119
+ parentNames: [],
120
+ });
121
+ }
122
+ };
123
+ const handleClick = (e) => {
124
+ if (trigger === 'left') {
125
+ e.preventDefault();
126
+ setMenuState({
127
+ visible: true,
128
+ position: { x: e.clientX, y: e.clientY },
129
+ submenuStack: [items],
130
+ parentNames: [],
131
+ });
132
+ }
133
+ };
134
+ const handleItemClick = (item) => {
135
+ if (item.disabled)
136
+ return;
137
+ // Always execute onClick if present
138
+ if (item.onClick) {
139
+ item.onClick();
140
+ }
141
+ if (item.submenu && item.submenu.length > 0) {
142
+ if (isMobile) {
143
+ // Mobile: Push submenu to stack
144
+ setMenuState(prev => ({
145
+ ...prev,
146
+ submenuStack: [...prev.submenuStack, item.submenu],
147
+ parentNames: [...prev.parentNames, item.name],
148
+ }));
149
+ }
150
+ // Desktop: Submenus are handled by hover, don't close menu
151
+ }
152
+ else {
153
+ // No submenu: close menu after executing action (unless keepOpenOnClick is true)
154
+ if (!keepOpenOnClick) {
155
+ handleClose();
156
+ }
157
+ }
158
+ };
159
+ const handleBack = () => {
160
+ setMenuState(prev => ({
161
+ ...prev,
162
+ submenuStack: prev.submenuStack.slice(0, -1),
163
+ parentNames: prev.parentNames.slice(0, -1),
164
+ }));
165
+ };
166
+ const handleMouseEnter = (item, event, depth = 0) => {
167
+ if (isMobile || !item.submenu || item.submenu.length === 0)
168
+ return;
169
+ if (submenuTimeoutRef.current) {
170
+ clearTimeout(submenuTimeoutRef.current);
171
+ submenuTimeoutRef.current = null;
172
+ }
173
+ const rect = event.currentTarget.getBoundingClientRect();
174
+ // Calculate if submenu should open upward based on available space
175
+ // Estimate submenu height: ~35px per item (accounting for smaller padding) + container padding
176
+ const estimatedSubmenuHeight = (item.submenu.length * 35) + 8;
177
+ const spaceBelow = window.innerHeight - rect.top;
178
+ const spaceAbove = rect.bottom;
179
+ // Open upward only if there's not enough space below AND there's more space above
180
+ const shouldOpenUp = spaceBelow < estimatedSubmenuHeight && spaceAbove > spaceBelow;
181
+ // Remove all submenus at this depth and deeper
182
+ setHoveredSubmenus(prev => {
183
+ const filtered = prev.filter(sub => sub.depth < depth);
184
+ if (!item.submenu)
185
+ return filtered;
186
+ return [
187
+ ...filtered,
188
+ {
189
+ items: item.submenu,
190
+ parentRect: rect,
191
+ depth: depth,
192
+ openUp: shouldOpenUp,
193
+ }
194
+ ];
195
+ });
196
+ };
197
+ const handleMouseLeave = (depth = 0) => {
198
+ if (isMobile)
199
+ return;
200
+ if (submenuTimeoutRef.current) {
201
+ clearTimeout(submenuTimeoutRef.current);
202
+ }
203
+ const targetDepth = depth;
204
+ submenuTimeoutRef.current = setTimeout(() => {
205
+ setHoveredSubmenus(prev => prev.filter(sub => sub.depth < targetDepth));
206
+ }, 300);
207
+ };
208
+ const handleSubmenuMouseEnter = () => {
209
+ if (submenuTimeoutRef.current) {
210
+ clearTimeout(submenuTimeoutRef.current);
211
+ submenuTimeoutRef.current = null;
212
+ }
213
+ };
214
+ useEffect(() => {
215
+ return () => {
216
+ if (submenuTimeoutRef.current) {
217
+ clearTimeout(submenuTimeoutRef.current);
218
+ }
219
+ };
220
+ }, []);
221
+ const renderMenuItems = (menuItems, depth = 0) => {
222
+ return menuItems
223
+ .filter(item => item.visible !== false)
224
+ .map((item, idx) => {
225
+ const itemKey = `${item.name}-${idx}`.replaceAll(/\s+/g, '-');
226
+ const handleClick = (e) => {
227
+ if (item.disabled)
228
+ return;
229
+ e.stopPropagation();
230
+ handleItemClick(item);
231
+ };
232
+ const handleRightIconClick = (e) => {
233
+ e.stopPropagation();
234
+ // if (item.disabled) return;
235
+ item.onRightIconClick?.();
236
+ };
237
+ return (_jsxs(S.MenuItem, { "$disabled": item.disabled, "$hasSubmenu": !!item.submenu && item.submenu.length > 0, "$beginGroup": item.beginGroup, onMouseDown: handleClick, onMouseEnter: (e) => !isMobile && handleMouseEnter(item, e, depth + 1), onMouseLeave: () => !isMobile && handleMouseLeave(depth + 1), title: item.tooltip, children: [_jsxs(S.MenuItemContent, { children: [item.icon && _jsx(S.IconWrapper, { children: item.icon }), _jsx(S.MenuItemName, { children: item.name })] }), item.rightIcon && item.onRightIconClick && (_jsx(S.RightIconButton, { onClick: handleRightIconClick, onMouseDown: (e) => e.stopPropagation(), "aria-label": `Action for ${item.name}`, children: item.rightIcon })), item.submenu && item.submenu.length > 0 && (_jsx(S.SubmenuIndicator, { "$isMobile": isMobile, children: isMobile ? '›' : '▸' }))] }, itemKey));
238
+ });
239
+ };
240
+ const currentMenu = menuState.submenuStack.at(-1) || items;
241
+ const currentParentName = menuState.parentNames.at(-1) || '';
242
+ return (_jsxs(_Fragment, { children: [!externalControl && children && (_jsx("div", { ref: triggerRef, onContextMenu: handleContextMenu, onClick: handleClick, onKeyDown: (e) => {
243
+ if (e.key === 'Enter' || e.key === ' ') {
244
+ handleClick(e);
245
+ }
246
+ }, role: "button", tabIndex: 0, style: { display: 'inline-block' }, children: children })), menuState.visible && (_jsxs(_Fragment, { children: [_jsxs(S.MenuContainer, { ref: menuRef, "$x": menuState.position.x, "$y": menuState.position.y, "$openLeft": openLeft, "$openUp": openUp, "$isPositioned": isCalculated, "$externalControl": !!externalControl, children: [isMobile && menuState.parentNames.length > 0 && (_jsxs(S.MobileMenuHeader, { children: [_jsx(S.BackButton, { onClick: handleBack, "aria-label": "Go back", children: _jsx(IconArrowLeft, {}) }), _jsx(S.HeaderTitle, { children: currentParentName })] })), renderMenuItems(currentMenu, 0)] }), !isMobile && hoveredSubmenus.map((submenu, idx) => (_jsx(S.Submenu, { "$parentRect": submenu.parentRect, "$openUp": submenu.openUp, "data-submenu": "true", onMouseEnter: handleSubmenuMouseEnter, onMouseLeave: () => handleMouseLeave(submenu.depth), children: renderMenuItems(submenu.items, submenu.depth) }, `submenu-${submenu.depth}-${idx}`)))] }))] }));
247
+ };
248
+ export default TMContextMenu;
@@ -0,0 +1,12 @@
1
+ export declare const useIsMobile: () => boolean;
2
+ export declare const useClickOutside: (callback: () => void) => import("react").RefObject<HTMLDivElement>;
3
+ interface Position {
4
+ x: number;
5
+ y: number;
6
+ }
7
+ export declare const useMenuPosition: (menuRef: React.RefObject<HTMLDivElement | null>, position: Position) => {
8
+ isCalculated: boolean;
9
+ openLeft: boolean;
10
+ openUp: boolean;
11
+ };
12
+ export {};
@@ -0,0 +1,52 @@
1
+ import { useState, useEffect, useLayoutEffect, useRef } from 'react';
2
+ export const useIsMobile = () => {
3
+ const [isMobile, setIsMobile] = useState(false);
4
+ useEffect(() => {
5
+ const checkMobile = () => {
6
+ const mobile = globalThis.innerWidth <= 768 || 'ontouchstart' in globalThis;
7
+ setIsMobile(mobile);
8
+ };
9
+ checkMobile();
10
+ window.addEventListener('resize', checkMobile);
11
+ return () => window.removeEventListener('resize', checkMobile);
12
+ }, []);
13
+ return isMobile;
14
+ };
15
+ export const useClickOutside = (callback) => {
16
+ const ref = useRef(null);
17
+ useEffect(() => {
18
+ const handleClick = (event) => {
19
+ if (ref.current && !ref.current.contains(event.target)) {
20
+ callback();
21
+ }
22
+ };
23
+ document.addEventListener('mousedown', handleClick);
24
+ document.addEventListener('touchstart', handleClick);
25
+ return () => {
26
+ document.removeEventListener('mousedown', handleClick);
27
+ document.removeEventListener('touchstart', handleClick);
28
+ };
29
+ }, [callback]);
30
+ return ref;
31
+ };
32
+ export const useMenuPosition = (menuRef, position) => {
33
+ const [adjustedPosition, setAdjustedPosition] = useState({ openLeft: false, openUp: false });
34
+ const [isCalculated, setIsCalculated] = useState(false);
35
+ useLayoutEffect(() => {
36
+ if (!menuRef.current) {
37
+ setIsCalculated(false);
38
+ return;
39
+ }
40
+ const menuRect = menuRef.current.getBoundingClientRect();
41
+ const viewportWidth = window.innerWidth;
42
+ const viewportHeight = window.innerHeight;
43
+ const spaceRight = viewportWidth - position.x;
44
+ const spaceBottom = viewportHeight - position.y;
45
+ setAdjustedPosition({
46
+ openLeft: spaceRight < menuRect.width + 20,
47
+ openUp: spaceBottom < menuRect.height + 20,
48
+ });
49
+ setIsCalculated(true);
50
+ }, [position, menuRef]);
51
+ return { ...adjustedPosition, isCalculated };
52
+ };
@@ -0,0 +1,2 @@
1
+ export { default as ContextMenu } from './TMContextMenu';
2
+ export type { TMContextMenuItemProps, TMContextMenuProps } from './types';
@@ -0,0 +1 @@
1
+ export { default as ContextMenu } from './TMContextMenu';
@@ -0,0 +1,31 @@
1
+ export declare const MenuContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
2
+ $x: number;
3
+ $y: number;
4
+ $openLeft: boolean;
5
+ $openUp: boolean;
6
+ $isPositioned: boolean;
7
+ $externalControl?: boolean;
8
+ }>> & string;
9
+ export declare const MenuItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
10
+ $disabled?: boolean;
11
+ $hasSubmenu?: boolean;
12
+ $beginGroup?: boolean;
13
+ }>> & string;
14
+ export declare const MenuItemContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
15
+ export declare const IconWrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
16
+ export declare const MenuItemName: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, never>> & string;
17
+ export declare const RightIconButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("styled-components").FastOmit<import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
18
+ ref?: ((instance: HTMLButtonElement | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<HTMLButtonElement> | null | undefined;
19
+ }>, never>, never>> & string;
20
+ export declare const SubmenuIndicator: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
21
+ $isMobile?: boolean;
22
+ }>> & string;
23
+ export declare const Submenu: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
24
+ $parentRect: DOMRect;
25
+ $openUp?: boolean;
26
+ }>> & string;
27
+ export declare const MobileMenuHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
28
+ export declare const BackButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
29
+ export declare const HeaderTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
30
+ export declare const MenuDivider: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
31
+ export declare const Overlay: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;