@tap-payments/os-micro-frontend-shared 0.0.246 → 0.0.248

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.
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { AppWindowHeaderProps } from './type';
3
+ declare function AppWindowHeader({ isMaximized, id, isToolbarAnimationDisabled, title, leftActions, onClose, onMaximize, sx }: AppWindowHeaderProps): import("react/jsx-runtime").JSX.Element;
4
+ declare const _default: import("react").MemoExoticComponent<typeof AppWindowHeader>;
5
+ export default _default;
@@ -0,0 +1,23 @@
1
+ import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { memo } from 'react';
3
+ import { motion } from 'framer-motion';
4
+ import { useMouseState } from '../../../../hooks/index.js';
5
+ import { animationDuration } from '../../AppWindow/constant';
6
+ import AppWindowHeaderBase from './AppWindowHeaderBase';
7
+ import { CloseIcon, MaximizeIcon } from '../../../ToolbarIcon';
8
+ function AppWindowHeader({ isMaximized, id, isToolbarAnimationDisabled, title, leftActions, onClose, onMaximize, sx }) {
9
+ const { isHovered, onMouseEnter, onMouseLeave } = useMouseState();
10
+ return (_jsx(motion.div, Object.assign({ style: Object.assign({}, (isMaximized && {
11
+ height: 0,
12
+ zIndex: 1000,
13
+ position: 'relative',
14
+ })), animate: Object.assign(Object.assign({}, (isMaximized && {
15
+ width: '100vw',
16
+ })), (!isMaximized && {
17
+ transform: 'translateX(0px)',
18
+ width: '100%',
19
+ })), transition: Object.assign({ duration: animationDuration }, (isToolbarAnimationDisabled && {
20
+ duration: 0,
21
+ })) }, { children: _jsx(AppWindowHeaderBase, { title: title, maximized: isMaximized, id: id || 'draggable-dialog-title', isHovered: isHovered, onMouseHover: onMouseEnter, onMouseLeave: onMouseLeave, leftActions: leftActions || (_jsxs(_Fragment, { children: [_jsx(CloseIcon, { onClick: onClose }), _jsx(MaximizeIcon, { isMaximized: isMaximized, onClick: () => onMaximize === null || onMaximize === void 0 ? void 0 : onMaximize(!isMaximized) })] })), sx: sx }) })));
22
+ }
23
+ export default memo(AppWindowHeader);
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { AppWindowHeaderBaseProps } from './type';
3
+ declare function AppWindowHeaderBase({ title, maximized, id, isHovered, onMouseHover, onMouseLeave, leftActions, sandboxMode, titleIconSrc, sx, ...rootProps }: AppWindowHeaderBaseProps): import("react/jsx-runtime").JSX.Element;
4
+ declare const _default: import("react").MemoExoticComponent<typeof AppWindowHeaderBase>;
5
+ export default _default;
@@ -0,0 +1,20 @@
1
+ var __rest = (this && this.__rest) || function (s, e) {
2
+ var t = {};
3
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
4
+ t[p] = s[p];
5
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
6
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
7
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
8
+ t[p[i]] = s[p[i]];
9
+ }
10
+ return t;
11
+ };
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { memo } from 'react';
14
+ import Toolbar from '../../../Toolbar';
15
+ import { StyledHeaderWrapperStyled } from '../../../Toolbar/style';
16
+ function AppWindowHeaderBase(_a) {
17
+ var { title, maximized = false, id, isHovered = false, onMouseHover, onMouseLeave, leftActions, sandboxMode = false, titleIconSrc, sx } = _a, rootProps = __rest(_a, ["title", "maximized", "id", "isHovered", "onMouseHover", "onMouseLeave", "leftActions", "sandboxMode", "titleIconSrc", "sx"]);
18
+ return (_jsx(StyledHeaderWrapperStyled, Object.assign({ className: "header-wrapper", id: id, maximized: maximized || false, sandboxMode: sandboxMode, sx: sx }, rootProps, { children: _jsx(Toolbar, { onMouseEnter: onMouseHover, onMouseLeave: onMouseLeave, isMaximized: maximized, isHovered: isHovered, title: title || '', icon: titleIconSrc, leftActions: leftActions }) })));
19
+ }
20
+ export default memo(AppWindowHeaderBase);
@@ -0,0 +1,4 @@
1
+ import AppWindowHeader from './AppWindowHeader';
2
+ export default AppWindowHeader;
3
+ export { default as AppWindowHeaderBase } from './AppWindowHeaderBase';
4
+ export * from './type';
@@ -0,0 +1,4 @@
1
+ import AppWindowHeader from './AppWindowHeader';
2
+ export default AppWindowHeader;
3
+ export { default as AppWindowHeaderBase } from './AppWindowHeaderBase';
4
+ export * from './type';
@@ -0,0 +1,25 @@
1
+ import { StyledHeaderWrapperStyled, ToolbarProps } from '../../../Toolbar';
2
+ import type { SxProps, Theme } from '@mui/material/styles';
3
+ import { ReactNode, SyntheticEvent } from 'react';
4
+ export type AppWindowHeaderBaseProps = React.ComponentProps<typeof StyledHeaderWrapperStyled> & {
5
+ title?: string;
6
+ maximized?: boolean;
7
+ id?: string;
8
+ isHovered?: boolean;
9
+ onMouseHover?: (e: SyntheticEvent) => void;
10
+ onMouseLeave?: (e: SyntheticEvent) => void;
11
+ leftActions?: ToolbarProps['leftActions'];
12
+ titleIconSrc?: ToolbarProps['icon'];
13
+ };
14
+ export type AppWindowHeaderProps = {
15
+ id?: string;
16
+ isToolbarAnimationDisabled?: boolean;
17
+ isMaximized?: boolean;
18
+ title?: string;
19
+ leftActions?: ReactNode;
20
+ onClose?: () => void;
21
+ onMaximize?: (isMaximized: boolean) => void;
22
+ headerBaseProps?: Partial<AppWindowHeaderBaseProps>;
23
+ headerBaseStyles?: SxProps<Theme>;
24
+ sx?: AppWindowHeaderBaseProps['sx'];
25
+ };
@@ -1,6 +1,8 @@
1
1
  import AppWindowWrapper from './AppWindowWrapper';
2
2
  export { default as AppWindow, type WindowProps, LEFT_SIDEBAR, RIGHT_SIDEBAR, VIEWER_HEIGHT, VIEWER_WIDTH, animationDuration, FOOTER_HEIGHT, StyledFooter, StyledHideButton, StyledMenuLink, StyledSubmitButton, SubmitButtonWrapper, } from './AppWindow';
3
3
  export * from './headers/AccountHeader';
4
+ export * from './headers/AppWindowHeader';
5
+ export { default as AppWindowHeader } from './headers/AppWindowHeader';
4
6
  export * from './context';
5
7
  export type { AppWindowProps } from './type';
6
8
  export default AppWindowWrapper;
@@ -1,5 +1,7 @@
1
1
  import AppWindowWrapper from './AppWindowWrapper';
2
2
  export { default as AppWindow, LEFT_SIDEBAR, RIGHT_SIDEBAR, VIEWER_HEIGHT, VIEWER_WIDTH, animationDuration, FOOTER_HEIGHT, StyledFooter, StyledHideButton, StyledMenuLink, StyledSubmitButton, SubmitButtonWrapper, } from './AppWindow';
3
3
  export * from './headers/AccountHeader';
4
+ export * from './headers/AppWindowHeader';
5
+ export { default as AppWindowHeader } from './headers/AppWindowHeader';
4
6
  export * from './context';
5
7
  export default AppWindowWrapper;
@@ -20,7 +20,7 @@ export const sheetViewChipStyles = {
20
20
  },
21
21
  ABANDONED: {
22
22
  color: '#FFD600',
23
- background: 'transparent',
23
+ background: 'white',
24
24
  border: '1px solid #FFD60080',
25
25
  },
26
26
  CANCELLED: {
@@ -9,8 +9,8 @@ export declare const StyledBox: import("@emotion/styled").StyledComponent<import
9
9
  ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject<HTMLDivElement> | null | undefined;
10
10
  }, keyof import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme>> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
11
11
  export declare const StyledHeaderWrapper: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
12
- sandboxMode: boolean;
13
- maximized: boolean;
12
+ sandboxMode?: boolean | undefined;
13
+ maximized?: boolean | undefined;
14
14
  isDragging?: boolean | undefined;
15
15
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
16
16
  export declare const ToolbarStyled: import("@emotion/styled").StyledComponent<import("@mui/system").BoxOwnProps<import("@mui/material/styles").Theme> & Omit<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
@@ -20,7 +20,7 @@ export declare const ToolbarStyled: import("@emotion/styled").StyledComponent<im
20
20
  isHovered?: boolean | undefined;
21
21
  }, {}, {}>;
22
22
  export declare const StyledHeaderWrapperStyled: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
23
- sandboxMode: boolean;
24
- maximized: boolean;
23
+ sandboxMode?: boolean | undefined;
24
+ maximized?: boolean | undefined;
25
25
  isDragging?: boolean | undefined;
26
26
  } & import("react").ClassAttributes<HTMLDivElement> & import("react").HTMLAttributes<HTMLDivElement>, {}, {}>;
@@ -1,6 +1,6 @@
1
1
  import { BoxProps } from '@mui/material/Box';
2
2
  interface MaximizeIconProps extends BoxProps {
3
- isMaximized: boolean;
3
+ isMaximized?: boolean;
4
4
  }
5
5
  export declare function MaximizeIcon({ isMaximized, ...props }: MaximizeIconProps): import("react/jsx-runtime").JSX.Element;
6
6
  export {};
@@ -1,7 +1,7 @@
1
1
  export { default as AccordionAdapter } from './AccordionAdapter';
2
2
  export { default as ActionMenu, ActionMenuDropDown, ActionMenuItem, type ActionMenuProps } from './ActionMenu';
3
3
  export { default as ActivityAreaChart, type ActivityAreaChartProps, type ChartDataPoint, ChartTooltip, type ChartTooltipProps, LoadingChart, type PayloadItem, } from './ActivityAreaChart';
4
- export { default as AppWindowWrapper, type AccountHeaderProps, AccountHeaderTitle, AppWindow, type AccountHeaderTitleProps, type AppWindowProps, type WindowProps, AppWindowContext, AppWindowContextProvider, LEFT_SIDEBAR, RIGHT_SIDEBAR, VIEWER_HEIGHT, VIEWER_WIDTH, animationDuration, StyledFooter, StyledHideButton, StyledMenuLink, StyledSubmitButton, SubmitButtonWrapper, } from './AppWindowWrapper';
4
+ export { default as AppWindowWrapper, type AccountHeaderProps, AccountHeaderTitle, AppWindowHeader, type AppWindowHeaderProps, type AppWindowHeaderBaseProps, AppWindow, type AccountHeaderTitleProps, type AppWindowProps, type WindowProps, AppWindowContext, AppWindowContextProvider, LEFT_SIDEBAR, RIGHT_SIDEBAR, VIEWER_HEIGHT, VIEWER_WIDTH, animationDuration, StyledFooter, StyledHideButton, StyledMenuLink, StyledSubmitButton, SubmitButtonWrapper, } from './AppWindowWrapper';
5
5
  export { default as BackgroundAnimation, type BlobGradient, type Blob } from './BackgroundAnimation';
6
6
  export { default as Button, PlusButton, StyledButton } from './Button';
7
7
  export { default as Calender, type CalenderProps, type DateObject } from './Calender';
@@ -1,7 +1,7 @@
1
1
  export { default as AccordionAdapter } from './AccordionAdapter';
2
2
  export { default as ActionMenu, ActionMenuDropDown, ActionMenuItem } from './ActionMenu';
3
3
  export { default as ActivityAreaChart, ChartTooltip, LoadingChart, } from './ActivityAreaChart';
4
- export { default as AppWindowWrapper, AccountHeaderTitle, AppWindow, AppWindowContext, AppWindowContextProvider, LEFT_SIDEBAR, RIGHT_SIDEBAR, VIEWER_HEIGHT, VIEWER_WIDTH, animationDuration, StyledFooter, StyledHideButton, StyledMenuLink, StyledSubmitButton, SubmitButtonWrapper, } from './AppWindowWrapper';
4
+ export { default as AppWindowWrapper, AccountHeaderTitle, AppWindowHeader, AppWindow, AppWindowContext, AppWindowContextProvider, LEFT_SIDEBAR, RIGHT_SIDEBAR, VIEWER_HEIGHT, VIEWER_WIDTH, animationDuration, StyledFooter, StyledHideButton, StyledMenuLink, StyledSubmitButton, SubmitButtonWrapper, } from './AppWindowWrapper';
5
5
  export { default as BackgroundAnimation } from './BackgroundAnimation';
6
6
  export { default as Button, PlusButton, StyledButton } from './Button';
7
7
  export { default as Calender } from './Calender';
@@ -511,3 +511,4 @@ export declare const dashedOutlinedCircle: string;
511
511
  export declare const deactivatedCircle: string;
512
512
  export declare const exclamationOutlinedCircle: string;
513
513
  export declare const outlinedCircle: string;
514
+ export declare const greenCheck2ACE00: string;
@@ -515,3 +515,4 @@ export const dashedOutlinedCircle = `${lightUrl}/dashedOutlinedCircle.svg`;
515
515
  export const deactivatedCircle = `${lightUrl}/deactivatedCircle.svg`;
516
516
  export const exclamationOutlinedCircle = `${lightUrl}/exclamationOutlinedCircle.svg`;
517
517
  export const outlinedCircle = `${lightUrl}/outlinedCircle.svg`;
518
+ export const greenCheck2ACE00 = `${lightUrl}/greenCheck2ACE00.svg`;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.0.246",
4
+ "version": "0.0.248",
5
5
  "testVersion": 1,
6
6
  "type": "module",
7
7
  "main": "build/index.js",