@yogiswara/honcho-editor-ui 3.4.1 → 3.4.2
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.
|
@@ -3,8 +3,13 @@ interface Props {
|
|
|
3
3
|
anchorEl?: null | HTMLElement;
|
|
4
4
|
valueSelect?: string;
|
|
5
5
|
isPasteEnabled?: boolean;
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
isCopyEnabled?: boolean;
|
|
7
|
+
canUndo?: boolean;
|
|
8
|
+
canRedo?: boolean;
|
|
9
|
+
isSelectedMode?: boolean;
|
|
10
|
+
isNoneSelected?: boolean;
|
|
11
|
+
selectedCount?: number;
|
|
12
|
+
totalCount?: number;
|
|
8
13
|
onBack?: () => void;
|
|
9
14
|
onUndo?: () => void;
|
|
10
15
|
onRedo?: () => void;
|
|
@@ -14,6 +19,9 @@ interface Props {
|
|
|
14
19
|
onMenuClick?: (event: React.MouseEvent<HTMLElement>) => void;
|
|
15
20
|
onMenuClose?: () => void;
|
|
16
21
|
onSelectButton?: () => void;
|
|
22
|
+
onSelectAll?: () => void;
|
|
23
|
+
onSelectedMode?: () => void;
|
|
24
|
+
onCloseSelection?: () => void;
|
|
17
25
|
}
|
|
18
26
|
export default function HHeaderEditor(props: Props): import("react/jsx-runtime").JSX.Element;
|
|
19
27
|
export {};
|
|
@@ -17,12 +17,14 @@ export default function HHeaderEditor(props) {
|
|
|
17
17
|
right: isMobile ? 0 : 'auto',
|
|
18
18
|
zIndex: 1300,
|
|
19
19
|
backgroundColor: 'transparent',
|
|
20
|
+
pt: !isMobile ? "20px" : "15px",
|
|
21
|
+
pb: "12px",
|
|
20
22
|
}, children: [_jsx(Stack, { direction: "row", justifyContent: "flex-start", sx: { pl: !isMobile ? "0px" : "14px" }, children: _jsx(IconButton, { "aria-label": "back", onClick: props.onBack, sx: {
|
|
21
23
|
'&:active': {
|
|
22
24
|
transform: 'scale(0.92)',
|
|
23
25
|
},
|
|
24
26
|
transition: 'transform 0.1s ease-in-out',
|
|
25
|
-
}, children: _jsx(CardMedia, { title: "back", src: "svg/Back.svg", component: "img" }) }) }), _jsxs(Stack, { direction: "row", justifyContent: "flex-end", alignItems: "center",
|
|
27
|
+
}, children: _jsx(CardMedia, { title: "back", src: "svg/Back.svg", component: "img" }) }) }), _jsxs(Stack, { direction: "row", justifyContent: "flex-end", alignItems: "center", spacing: 0.1, children: [_jsx(IconButton, { "aria-label": "undo", onClick: props.onUndo, sx: { color: colors.outlineVariant, opacity: props.canUndo ? 1 : 0.5 }, disabled: !props.canUndo, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/undo-editor.svg" }) }), _jsx(IconButton, { "aria-label": "redo", onClick: props.onRedo, sx: { color: colors.outlineVariant, opacity: props.canRedo ? 1 : 0.5 }, disabled: !props.canRedo, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/redo-editor.svg" }) }), _jsx(IconButton, { "aria-label": "option", onClick: props.onMenuClick, "aria-controls": open ? 'options-menu' : undefined, "aria-haspopup": "true", "aria-expanded": open ? 'true' : undefined, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/dots-editor.svg" }) }), _jsxs(Menu, { id: "options-menu", anchorEl: props.anchorEl, open: open, onClose: props.onMenuClose, transformOrigin: { horizontal: 'right', vertical: 'top' }, anchorOrigin: { horizontal: 'right', vertical: 'bottom' }, slotProps: {
|
|
26
28
|
paper: {
|
|
27
29
|
sx: {
|
|
28
30
|
backgroundColor: colors.onBackground,
|
|
@@ -30,7 +32,7 @@ export default function HHeaderEditor(props) {
|
|
|
30
32
|
border: `1px solid ${colors.outlineVariant}`,
|
|
31
33
|
},
|
|
32
34
|
},
|
|
33
|
-
}, children: [_jsxs(MenuItem, { onClick: props.onRevert, children: [_jsx(ListItemIcon, { sx: { minWidth: 0, mr: "0px", px: "0px" }, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/revert-editor.svg", sx: { width: "20px", height: "20px" } }) }), _jsx(ListItemText, { children: _jsx(Typography, { sx: { fontSize: "14px", color: colors.surface }, children: "Revert to original" }) })] }), _jsxs(MenuItem, { onClick: props.onCopyEdit, children: [_jsx(ListItemIcon, { sx: { minWidth: 0, mr: "0px", px: "0px" }, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/copy-editor.svg", sx: { width: "20px", height: "20px" } }) }), _jsx(ListItemText, { children: _jsx(Typography, { sx: { fontSize: "14px", color: colors.surface }, children: "Copy edits" }) }), !isMobile &&
|
|
35
|
+
}, children: [_jsxs(MenuItem, { onClick: props.onRevert, children: [_jsx(ListItemIcon, { sx: { minWidth: 0, mr: "0px", px: "0px" }, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/revert-editor.svg", sx: { width: "20px", height: "20px" } }) }), _jsx(ListItemText, { children: _jsx(Typography, { sx: { fontSize: "14px", color: colors.surface }, children: "Revert to original" }) })] }), _jsxs(MenuItem, { onClick: props.onCopyEdit, disabled: !props.isCopyEnabled, children: [_jsx(ListItemIcon, { sx: { minWidth: 0, mr: "0px", px: "0px" }, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/copy-editor.svg", sx: { width: "20px", height: "20px" } }) }), _jsx(ListItemText, { children: _jsx(Typography, { sx: { fontSize: "14px", color: !props.isCopyEnabled ? colors.onSurfaceVariant1 : colors.surface }, children: "Copy edits" }) }), !isMobile &&
|
|
34
36
|
_jsx(ListItemIcon, { sx: { marginLeft: 'auto' }, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/shortcut-copy-editor.svg", sx: { width: "25px", height: "20px" } }) })] }), _jsxs(MenuItem, { onClick: props.onPasteEdit, disabled: !props.isPasteEnabled, children: [_jsx(ListItemIcon, { sx: { minWidth: 0, mr: "0px", px: "0px" }, children: _jsx(CardMedia, { component: "img", image: !props.isPasteEnabled ? "/v1/svg/paste-editor.svg" : "/v1/svg/paste-white.svg", sx: { width: "20px", height: "20px" } }) }), _jsx(ListItemText, { children: _jsx(Typography, { sx: { fontSize: "14px", color: !props.isPasteEnabled ? colors.onSurfaceVariant1 : colors.surface }, children: "Paste edits" }) }), !isMobile &&
|
|
35
37
|
_jsx(ListItemIcon, { sx: { marginLeft: '30px' }, children: _jsx(CardMedia, { component: "img", image: "/v1/svg/shortcut-paste-editor.svg", sx: { width: "25px", height: "20px" } }) })] })] })] })] }) }));
|
|
36
38
|
}
|