@tap-payments/os-micro-frontend-shared 0.1.371 → 0.1.372-test.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.
Files changed (86) hide show
  1. package/build/components/AnimatedSpinnerIcon/style.d.ts +0 -1
  2. package/build/components/Chip/style.d.ts +0 -1
  3. package/build/components/CountBadge/style.d.ts +0 -1
  4. package/build/components/Dialog/style.d.ts +0 -1
  5. package/build/components/FlippingCard/style.d.ts +0 -1
  6. package/build/components/ImageWrapper/ImageWrapper.d.ts +0 -1
  7. package/build/components/JSONViewer/style.d.ts +0 -1
  8. package/build/components/LeftPeekRightExpandingChip/style.d.ts +0 -1
  9. package/build/components/RightLeftExpandingCenterChip/style.d.ts +0 -1
  10. package/build/components/Sandbox/style.js +3 -2
  11. package/build/components/SearchButton/styles.d.ts +0 -1
  12. package/build/components/StatusIcons/AuthIcons/style.d.ts +0 -1
  13. package/build/components/StatusIcons/AuthorizationAutoIcons/style.d.ts +0 -1
  14. package/build/components/StatusIcons/ChargeStatusIcon/style.d.ts +0 -1
  15. package/build/components/StatusIcons/SourceIcons/style.d.ts +0 -1
  16. package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +0 -1
  17. package/build/components/TableCells/CustomCells/AgreementCell/style.d.ts +0 -1
  18. package/build/components/TableCells/CustomCells/ApplicationStatusCell/style.d.ts +0 -1
  19. package/build/components/TableCells/CustomCells/AuthenticationCell/style.d.ts +0 -1
  20. package/build/components/TableCells/CustomCells/AuthenticationStatusCell/style.d.ts +0 -1
  21. package/build/components/TableCells/CustomCells/AuthenticationTypeCell/style.d.ts +0 -1
  22. package/build/components/TableCells/CustomCells/BalanceCell/style.d.ts +0 -1
  23. package/build/components/TableCells/CustomCells/ChannelsCell/style.d.ts +0 -1
  24. package/build/components/TableCells/CustomCells/CheckoutStatusCell/style.d.ts +0 -1
  25. package/build/components/TableCells/CustomCells/DestinationStatusCell/style.d.ts +0 -1
  26. package/build/components/TableCells/CustomCells/DueDateCell/style.d.ts +0 -1
  27. package/build/components/TableCells/CustomCells/IDButton/style.d.ts +0 -1
  28. package/build/components/TableCells/CustomCells/IntentsStatusCell/style.d.ts +0 -1
  29. package/build/components/TableCells/CustomCells/InvoiceStatusCell/style.d.ts +0 -1
  30. package/build/components/TableCells/CustomCells/PayoutReportCell/style.d.ts +0 -1
  31. package/build/components/TableCells/CustomCells/PayoutStatusCell/style.d.ts +0 -1
  32. package/build/components/TableCells/CustomCells/ProductsCell/style.d.ts +0 -1
  33. package/build/components/TableCells/CustomCells/ReferenceCell/style.d.ts +0 -1
  34. package/build/components/TableCells/CustomCells/RefundChargeCell/style.d.ts +0 -1
  35. package/build/components/TableCells/CustomCells/RefundStatusCell/style.d.ts +0 -1
  36. package/build/components/TableCells/CustomCells/SalesChannelCell/style.d.ts +0 -1
  37. package/build/components/TableCells/CustomCells/SegmentsCell/style.d.ts +0 -1
  38. package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +0 -1
  39. package/build/components/TableCells/CustomCells/TokenStatusCell/style.d.ts +0 -1
  40. package/build/components/TableCells/CustomCells/style.d.ts +0 -1
  41. package/build/components/TableHeader/FiltersRow.d.ts +1 -1
  42. package/build/components/TableHeader/FiltersRow.js +4 -2
  43. package/build/components/TableHeader/TableHeader.d.ts +1 -1
  44. package/build/components/TableHeader/TableHeader.js +2 -2
  45. package/build/components/TableHeader/TableView/CreateViewDialog.d.ts +3 -0
  46. package/build/components/TableHeader/TableView/CreateViewDialog.js +58 -0
  47. package/build/components/TableHeader/TableView/CustomViews.js +1 -1
  48. package/build/components/TableHeader/TableView/TableView.js +0 -1
  49. package/build/components/TableHeader/TableView/ViewsDropdown.d.ts +5 -0
  50. package/build/components/TableHeader/TableView/ViewsDropdown.js +169 -0
  51. package/build/components/TableHeader/TableView/ViewsManager.d.ts +5 -0
  52. package/build/components/TableHeader/TableView/ViewsManager.js +123 -0
  53. package/build/components/TableHeader/TableView/components/ColumnList.d.ts +3 -0
  54. package/build/components/TableHeader/TableView/components/ColumnList.js +61 -0
  55. package/build/components/TableHeader/TableView/components/ViewsSubmenu.d.ts +3 -0
  56. package/build/components/TableHeader/TableView/components/ViewsSubmenu.js +52 -0
  57. package/build/components/TableHeader/TableView/components/index.d.ts +2 -0
  58. package/build/components/TableHeader/TableView/components/index.js +2 -0
  59. package/build/components/TableHeader/TableView/constants.d.ts +10 -0
  60. package/build/components/TableHeader/TableView/constants.js +10 -0
  61. package/build/components/TableHeader/TableView/data.d.ts +5 -0
  62. package/build/components/TableHeader/TableView/data.js +48 -0
  63. package/build/components/TableHeader/TableView/hooks/useCreateViewDialog.d.ts +22 -0
  64. package/build/components/TableHeader/TableView/hooks/useCreateViewDialog.js +76 -0
  65. package/build/components/TableHeader/TableView/hooks/useNestedSubmenu.d.ts +7 -0
  66. package/build/components/TableHeader/TableView/hooks/useNestedSubmenu.js +34 -0
  67. package/build/components/TableHeader/TableView/hooks/useViewsManager.d.ts +11 -0
  68. package/build/components/TableHeader/TableView/hooks/useViewsManager.js +40 -0
  69. package/build/components/TableHeader/TableView/hooks.d.ts +28 -0
  70. package/build/components/TableHeader/TableView/hooks.js +81 -0
  71. package/build/components/TableHeader/TableView/index.d.ts +12 -3
  72. package/build/components/TableHeader/TableView/index.js +11 -3
  73. package/build/components/TableHeader/TableView/styles.d.ts +127 -0
  74. package/build/components/TableHeader/TableView/styles.js +417 -0
  75. package/build/components/TableHeader/TableView/types.d.ts +175 -0
  76. package/build/components/TableHeader/TableView/types.js +1 -0
  77. package/build/components/TableHeader/TableView/utils.d.ts +111 -0
  78. package/build/components/TableHeader/TableView/utils.js +399 -0
  79. package/build/components/TableHeader/type.d.ts +21 -0
  80. package/build/components/TableReports/components/DownloadButton/style.d.ts +0 -1
  81. package/build/components/TableReports/style.d.ts +0 -1
  82. package/build/components/Toolbar/Toolbar.js +1 -1
  83. package/build/components/VirtualTables/components/style.d.ts +0 -1
  84. package/build/constants/assets.d.ts +1 -0
  85. package/build/constants/assets.js +1 -0
  86. package/package.json +3 -3
@@ -0,0 +1,34 @@
1
+ import { useState, useRef, useCallback } from 'react';
2
+ import { SUBMENU_CLOSE_DELAY } from '../constants';
3
+ export const useNestedSubmenu = () => {
4
+ const [hoveredNestedColumn, setHoveredNestedColumn] = useState(null);
5
+ const [nestedSubmenuAnchorEl, setNestedSubmenuAnchorEl] = useState(null);
6
+ const nestedCloseTimeoutRef = useRef(null);
7
+ const openNestedSubmenu = useCallback((columnName, element) => {
8
+ if (nestedCloseTimeoutRef.current) {
9
+ clearTimeout(nestedCloseTimeoutRef.current);
10
+ nestedCloseTimeoutRef.current = null;
11
+ }
12
+ setHoveredNestedColumn(columnName);
13
+ setNestedSubmenuAnchorEl(element);
14
+ }, []);
15
+ const closeNestedSubmenu = useCallback(() => {
16
+ nestedCloseTimeoutRef.current = setTimeout(() => {
17
+ setHoveredNestedColumn(null);
18
+ setNestedSubmenuAnchorEl(null);
19
+ }, SUBMENU_CLOSE_DELAY);
20
+ }, []);
21
+ const cancelNestedClose = useCallback(() => {
22
+ if (nestedCloseTimeoutRef.current) {
23
+ clearTimeout(nestedCloseTimeoutRef.current);
24
+ nestedCloseTimeoutRef.current = null;
25
+ }
26
+ }, []);
27
+ return {
28
+ hoveredNestedColumn,
29
+ nestedSubmenuAnchorEl,
30
+ openNestedSubmenu,
31
+ closeNestedSubmenu,
32
+ cancelNestedClose,
33
+ };
34
+ };
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import type { ColumnViewProps } from '../../../../types/index.js';
3
+ import type { UseViewsManagerProps, ViewMenuItem } from '../types';
4
+ export declare const useViewsManager: ({ mode, layoutData, initialTableViews, initialCustomViews, templates, lang }: UseViewsManagerProps) => {
5
+ defaultColumns: ColumnViewProps[];
6
+ setDefaultColumns: import("react").Dispatch<import("react").SetStateAction<ColumnViewProps[]>>;
7
+ internalTableViews: ColumnViewProps[];
8
+ setInternalTableViews: import("react").Dispatch<import("react").SetStateAction<ColumnViewProps[]>>;
9
+ internalCustomViews: ViewMenuItem[];
10
+ setInternalCustomViews: import("react").Dispatch<import("react").SetStateAction<ViewMenuItem[]>>;
11
+ };
@@ -0,0 +1,40 @@
1
+ import { useState, useEffect, useMemo } from 'react';
2
+ import { getColumnsByMode, transformTemplatesToViewMenuItems, getLayoutDataFromTemplates } from '../utils';
3
+ export const useViewsManager = ({ mode, layoutData, initialTableViews, initialCustomViews, templates, lang = 'en' }) => {
4
+ // Transform templates internally if provided
5
+ const transformedTemplates = useMemo(() => {
6
+ if (!templates)
7
+ return null;
8
+ const templatesArray = Array.isArray(templates) ? templates : templates.templates;
9
+ return {
10
+ customViews: transformTemplatesToViewMenuItems(templatesArray, mode, lang),
11
+ layoutData: getLayoutDataFromTemplates(templatesArray),
12
+ };
13
+ }, [templates, mode, lang]);
14
+ // Use transformed templates or provided props
15
+ const effectiveLayoutData = (transformedTemplates === null || transformedTemplates === void 0 ? void 0 : transformedTemplates.layoutData) || layoutData;
16
+ const effectiveCustomViews = (transformedTemplates === null || transformedTemplates === void 0 ? void 0 : transformedTemplates.customViews) || initialCustomViews;
17
+ const [defaultColumns, setDefaultColumns] = useState(() => getColumnsByMode(mode, effectiveLayoutData));
18
+ const [internalTableViews, setInternalTableViews] = useState(initialTableViews || getColumnsByMode(mode, effectiveLayoutData) || []);
19
+ const [internalCustomViews, setInternalCustomViews] = useState(effectiveCustomViews || []);
20
+ useEffect(() => {
21
+ setDefaultColumns(getColumnsByMode(mode, effectiveLayoutData));
22
+ if (!initialTableViews && effectiveLayoutData) {
23
+ setInternalTableViews(getColumnsByMode(mode, effectiveLayoutData));
24
+ }
25
+ }, [mode, effectiveLayoutData, initialTableViews]);
26
+ // Update custom views when templates change
27
+ useEffect(() => {
28
+ if (transformedTemplates === null || transformedTemplates === void 0 ? void 0 : transformedTemplates.customViews) {
29
+ setInternalCustomViews(transformedTemplates.customViews);
30
+ }
31
+ }, [transformedTemplates === null || transformedTemplates === void 0 ? void 0 : transformedTemplates.customViews]);
32
+ return {
33
+ defaultColumns,
34
+ setDefaultColumns,
35
+ internalTableViews,
36
+ setInternalTableViews,
37
+ internalCustomViews,
38
+ setInternalCustomViews,
39
+ };
40
+ };
@@ -0,0 +1,28 @@
1
+ import type { ColumnViewProps } from '../../../types/index.js';
2
+ export { useSubMenu } from './hooks/useSubMenu';
3
+ export { useViewColumns } from './hooks/useViewColumns';
4
+ export { useColumnItem } from './hooks/useColumnItem';
5
+ export { useCreateViewDialog } from './hooks/useCreateViewDialog';
6
+ export { useNestedSubmenu } from './hooks/useNestedSubmenu';
7
+ export { useViewsManager } from './hooks/useViewsManager';
8
+ export declare const useSubmenuHover: () => {
9
+ hoveredColumn: string | null;
10
+ anchorEl: HTMLElement | null;
11
+ openSubmenu: (columnName: string, element: HTMLElement) => void;
12
+ closeSubmenu: () => void;
13
+ cancelClose: () => void;
14
+ forceClose: () => void;
15
+ };
16
+ export declare const useDialogPosition: (dialogWidth: number, dialogHeight: number) => {
17
+ position: {
18
+ x: number;
19
+ y: number;
20
+ };
21
+ resetPosition: () => void;
22
+ updatePosition: (x: number, y: number) => void;
23
+ };
24
+ export declare const useOriginalColumns: (defaultColumns: ColumnViewProps[]) => {
25
+ originalColumns: ColumnViewProps[];
26
+ saveOriginalState: () => void;
27
+ clearOriginalState: () => void;
28
+ };
@@ -0,0 +1,81 @@
1
+ import { useState, useRef, useCallback } from 'react';
2
+ import { SUBMENU_CLOSE_DELAY } from './constants';
3
+ export { useSubMenu } from './hooks/useSubMenu';
4
+ export { useViewColumns } from './hooks/useViewColumns';
5
+ export { useColumnItem } from './hooks/useColumnItem';
6
+ export { useCreateViewDialog } from './hooks/useCreateViewDialog';
7
+ export { useNestedSubmenu } from './hooks/useNestedSubmenu';
8
+ export { useViewsManager } from './hooks/useViewsManager';
9
+ export const useSubmenuHover = () => {
10
+ const [hoveredColumn, setHoveredColumn] = useState(null);
11
+ const [anchorEl, setAnchorEl] = useState(null);
12
+ const closeTimeoutRef = useRef(null);
13
+ const openSubmenu = useCallback((columnName, element) => {
14
+ if (closeTimeoutRef.current) {
15
+ clearTimeout(closeTimeoutRef.current);
16
+ closeTimeoutRef.current = null;
17
+ }
18
+ setHoveredColumn(columnName);
19
+ setAnchorEl(element);
20
+ }, []);
21
+ const closeSubmenu = useCallback(() => {
22
+ closeTimeoutRef.current = setTimeout(() => {
23
+ setHoveredColumn(null);
24
+ setAnchorEl(null);
25
+ }, SUBMENU_CLOSE_DELAY);
26
+ }, []);
27
+ const cancelClose = useCallback(() => {
28
+ if (closeTimeoutRef.current) {
29
+ clearTimeout(closeTimeoutRef.current);
30
+ closeTimeoutRef.current = null;
31
+ }
32
+ }, []);
33
+ const forceClose = useCallback(() => {
34
+ if (closeTimeoutRef.current) {
35
+ clearTimeout(closeTimeoutRef.current);
36
+ closeTimeoutRef.current = null;
37
+ }
38
+ setHoveredColumn(null);
39
+ setAnchorEl(null);
40
+ }, []);
41
+ return {
42
+ hoveredColumn,
43
+ anchorEl,
44
+ openSubmenu,
45
+ closeSubmenu,
46
+ cancelClose,
47
+ forceClose,
48
+ };
49
+ };
50
+ export const useDialogPosition = (dialogWidth, dialogHeight) => {
51
+ const [position, setPosition] = useState({ x: 0, y: 0 });
52
+ const resetPosition = useCallback(() => {
53
+ const centerX = window.innerWidth / 2 - dialogWidth / 2;
54
+ const centerY = window.innerHeight / 2 - dialogHeight / 2;
55
+ setPosition({
56
+ x: Math.max(0, centerX),
57
+ y: Math.max(0, centerY),
58
+ });
59
+ }, [dialogWidth, dialogHeight]);
60
+ const updatePosition = useCallback((x, y) => {
61
+ setPosition({ x, y });
62
+ }, []);
63
+ return { position, resetPosition, updatePosition };
64
+ };
65
+ export const useOriginalColumns = (defaultColumns) => {
66
+ const [originalColumns, setOriginalColumns] = useState([]);
67
+ const saveOriginalState = useCallback(() => {
68
+ setOriginalColumns(defaultColumns.map((col) => {
69
+ var _a;
70
+ return (Object.assign(Object.assign({}, col), { selected: col.selected, menuItems: (_a = col.menuItems) === null || _a === void 0 ? void 0 : _a.map((item) => (Object.assign(Object.assign({}, item), { selected: item.selected }))) }));
71
+ }));
72
+ }, [defaultColumns]);
73
+ const clearOriginalState = useCallback(() => {
74
+ setOriginalColumns([]);
75
+ }, []);
76
+ return {
77
+ originalColumns,
78
+ saveOriginalState,
79
+ clearOriginalState,
80
+ };
81
+ };
@@ -1,3 +1,12 @@
1
- import TableView from './TableView';
2
- export * from './TableView';
3
- export default TableView;
1
+ export { default } from './TableView';
2
+ export { default as TableView } from './TableView';
3
+ export { default as DefaultViews } from './DefaultViews';
4
+ export { default as CustomViews } from './CustomViews';
5
+ export { default as ViewsManager } from './ViewsManager';
6
+ export { default as ViewsDropdown } from './ViewsDropdown';
7
+ export { default as CreateViewDialog } from './CreateViewDialog';
8
+ export type { ViewMenuItem, ViewMode, CreateCustomViewDialogProps, LayoutSection, ColumnItem, FieldItem, TemplateResponse, TemplatesListResponse } from './types';
9
+ export { transformLayoutToColumns, getColumnsByMode, createCustomViewMenuItem, setViewAsDefault, transformTemplatesToViewMenuItems, convertColumnsToLayoutSection, isDateColumn, getColumnCheckState } from './utils';
10
+ export { useSubmenuHover, useDialogPosition } from './hooks';
11
+ export { DIALOG_WIDTH, DIALOG_HEIGHT, MAX_CUSTOM_VIEWS, TEMPLATE_NAME_MAX_LENGTH } from './constants';
12
+ export { defaultViewList, advancedColumns, sheetColumns } from './data';
@@ -1,3 +1,11 @@
1
- import TableView from './TableView';
2
- export * from './TableView';
3
- export default TableView;
1
+ export { default } from './TableView';
2
+ export { default as TableView } from './TableView';
3
+ export { default as DefaultViews } from './DefaultViews';
4
+ export { default as CustomViews } from './CustomViews';
5
+ export { default as ViewsManager } from './ViewsManager';
6
+ export { default as ViewsDropdown } from './ViewsDropdown';
7
+ export { default as CreateViewDialog } from './CreateViewDialog';
8
+ export { transformLayoutToColumns, getColumnsByMode, createCustomViewMenuItem, setViewAsDefault, transformTemplatesToViewMenuItems, convertColumnsToLayoutSection, isDateColumn, getColumnCheckState } from './utils';
9
+ export { useSubmenuHover, useDialogPosition } from './hooks';
10
+ export { DIALOG_WIDTH, DIALOG_HEIGHT, MAX_CUSTOM_VIEWS, TEMPLATE_NAME_MAX_LENGTH } from './constants';
11
+ export { defaultViewList, advancedColumns, sheetColumns } from './data';
@@ -0,0 +1,127 @@
1
+ /// <reference types="react" />
2
+ import type { SxProps, Theme } from '@mui/material/styles';
3
+ export declare const ButtonStyled: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
4
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
5
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
6
+ export declare const ViewWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
7
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
8
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
9
+ export declare const ListStyled: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
10
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
11
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
12
+ export declare const DropdownStyled: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
13
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
14
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
15
+ export declare const MenuItem: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
16
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
17
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme> & {
18
+ addColumnViewEl?: boolean | undefined;
19
+ }, {}, {}>;
20
+ export declare const Space: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
21
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
22
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
23
+ export declare const SpaceAfter: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
24
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
25
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
26
+ export declare const DialogContentWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
27
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
28
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
29
+ export declare const ScrollableContent: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
30
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
31
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
32
+ export declare const TitleSection: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
33
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
34
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
35
+ export declare const ColumnListContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
36
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
37
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
38
+ export declare const SelectAllHeader: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
39
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
40
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
41
+ export declare const ColumnItemRow: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
42
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
43
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme> & {
44
+ isHovered?: boolean | undefined;
45
+ isDate?: boolean | undefined;
46
+ }, {}, {}>;
47
+ export declare const DragIconWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
48
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
49
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
50
+ export declare const CheckboxWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
51
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
52
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
53
+ export declare const FooterBar: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
54
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
55
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
56
+ export declare const CreateButtonWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
57
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
58
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
59
+ export declare const SubmenuPaper: import("@emotion/styled").StyledComponent<import("@mui/material").PaperOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
60
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
61
+ }, "classes" | "className" | "style" | "children" | "sx" | "variant" | "square" | "elevation"> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
62
+ export declare const SubmenuItem: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
63
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
64
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
65
+ export declare const DeleteButton: import("@emotion/styled").StyledComponent<import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
66
+ ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
67
+ }, "color" | "disabled" | "classes" | "className" | "style" | "tabIndex" | "children" | "sx" | "variant" | "size" | "fullWidth" | "href" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple" | "endIcon" | "startIcon"> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
68
+ export declare const CreateButton: import("@emotion/styled").StyledComponent<import("@mui/material").ButtonOwnProps & Omit<import("@mui/material").ButtonBaseOwnProps, "classes"> & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
69
+ ref?: ((instance: HTMLButtonElement | null) => void) | import("react").RefObject<HTMLButtonElement> | null | undefined;
70
+ }, "color" | "disabled" | "classes" | "className" | "style" | "tabIndex" | "children" | "sx" | "variant" | "size" | "fullWidth" | "href" | "action" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableElevation" | "disableFocusRipple" | "endIcon" | "startIcon"> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
71
+ export declare const NameTextField: import("@emotion/styled").StyledComponent<{
72
+ variant?: import("@mui/material").TextFieldVariants | undefined;
73
+ } & Omit<import("@mui/material").FilledTextFieldProps | import("@mui/material").OutlinedTextFieldProps | import("@mui/material").StandardTextFieldProps, "variant"> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
74
+ export declare const checkboxSx: SxProps<Theme>;
75
+ export declare const getDialogPaperStyle: (width: number, height: number) => {
76
+ margin: number;
77
+ maxHeight: string;
78
+ maxWidth: string;
79
+ width: number;
80
+ height: number;
81
+ borderRadius: number;
82
+ overflow: string;
83
+ boxShadow: string;
84
+ };
85
+ export declare const dialogSx: {
86
+ backgroundColor: string;
87
+ pointerEvents: string;
88
+ zIndex: number;
89
+ '& .MuiDialog-container': {
90
+ transition: string;
91
+ zIndex: number;
92
+ };
93
+ '& .MuiDialog-paper': {
94
+ transition: string;
95
+ pointerEvents: string;
96
+ zIndex: number;
97
+ };
98
+ };
99
+ export declare const ResetHeaderBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
100
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
101
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
102
+ export declare const ResetCheckboxSx: SxProps<Theme>;
103
+ export declare const SubmenuContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
104
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
105
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
106
+ export declare const ColumnItemsContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
107
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
108
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
109
+ export declare const SaveCustomViewBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
110
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
111
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
112
+ export declare const SaveCustomViewInnerBox: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
113
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
114
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme> & {
115
+ disabled?: boolean | undefined;
116
+ }, {}, {}>;
117
+ export declare const ButtonsContainer: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
118
+ ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
119
+ }, keyof import("@mui/system").BoxOwnProps<Theme>> & import("@mui/system").MUIStyledCommonProps<Theme>, {}, {}>;
120
+ export declare const CancelButtonSx: SxProps<Theme>;
121
+ export declare const OkayButtonSx: SxProps<Theme>;
122
+ export declare const ModifiedTextSx: {
123
+ readonly color: "#20232B80";
124
+ readonly fontSize: "9px";
125
+ readonly fontWeight: 500;
126
+ readonly marginLeft: "4px";
127
+ };