@yogiswara/honcho-editor-ui 3.5.6 → 3.5.8
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.
|
@@ -110,9 +110,9 @@ export default function HAccordionDetails(props) {
|
|
|
110
110
|
}
|
|
111
111
|
}, onTouchEnd: () => {
|
|
112
112
|
props.onDragEnd();
|
|
113
|
-
} })] }), _jsxs(Stack, { direction: "column", gap: "3px", sx: { pt: '10px', pb: '0px', px: '0px', mx: '0px', '&:focus-within .MuiFilledInput-input': focusedInputStyle, }, children: [_jsxs(Stack, { direction: "row", justifyContent: "space-between", children: [_jsx(Typography, { component: "label", htmlFor: "sharpness-input", sx: { ...typography.bodyMedium, userSelect: 'none' }, children: "Sharpness" }), _jsx(TextField, { hiddenLabel: true, id: "sharpness-input", value: sharpnessInput, variant: "filled", onChange: (e) => handleInputChange(e,
|
|
113
|
+
} })] }), _jsxs(Stack, { direction: "column", gap: "3px", sx: { pt: '10px', pb: '0px', px: '0px', mx: '0px', '&:focus-within .MuiFilledInput-input': focusedInputStyle, }, children: [_jsxs(Stack, { direction: "row", justifyContent: "space-between", children: [_jsx(Typography, { component: "label", htmlFor: "sharpness-input", sx: { ...typography.bodyMedium, userSelect: 'none' }, children: "Sharpness" }), _jsx(TextField, { hiddenLabel: true, id: "sharpness-input", value: sharpnessInput, variant: "filled", onChange: (e) => handleInputChange(e, 0, 100, (val) => props.onSharpnessChange("sharpnessScore", val)), onBlur: () => commitInput(sharpnessInput, 0, 100, (val) => props.onSharpnessChange("sharpnessScore", val)), onKeyDown: (e) => {
|
|
114
114
|
if (e.key === "Enter") {
|
|
115
|
-
commitInput(sharpnessInput,
|
|
115
|
+
commitInput(sharpnessInput, 0, 100, (val) => props.onSharpnessChange("sharpnessScore", val));
|
|
116
116
|
e.currentTarget.blur(); // blur so it formats
|
|
117
117
|
}
|
|
118
118
|
}, sx: {
|
|
@@ -167,7 +167,7 @@ export default function HAccordionDetails(props) {
|
|
|
167
167
|
opacity: 1,
|
|
168
168
|
boxShadow: 'none',
|
|
169
169
|
},
|
|
170
|
-
}, size: "small", value: props.SharpnessScore, step: 1, min:
|
|
170
|
+
}, size: "small", value: props.SharpnessScore, step: 1, min: 0, max: 100, onChange: (_event, newValue) => props.onSharpnessChange("sharpnessScore", newValue), onDoubleClick: () => props.onSharpnessChange("sharpnessScore", 0), onMouseDown: () => {
|
|
171
171
|
if (!props.isBatchMode) {
|
|
172
172
|
props.onDragStart();
|
|
173
173
|
}
|
|
@@ -6,5 +6,8 @@ import useColors from '../../themes/colors';
|
|
|
6
6
|
export default function HTabPresetMobile(props) {
|
|
7
7
|
const typography = useHonchoTypography();
|
|
8
8
|
const colors = useColors();
|
|
9
|
-
|
|
9
|
+
const stopPropagation = (e) => {
|
|
10
|
+
e.stopPropagation;
|
|
11
|
+
};
|
|
12
|
+
return (_jsx(_Fragment, { children: _jsxs(Stack, { direction: "column", spacing: 0, sx: { px: "0px", mx: "0px" }, children: [props.presets.map((preset) => (_jsxs(Stack, { direction: "row", alignItems: "center", justifyContent: "space-between", children: [_jsx(Button, { sx: { ...typography.bodyMedium, color: colors.surface, justifyContent: 'flex-start', flexGrow: 1, textTransform: 'none' }, onClick: () => props.onSelectPreset(preset.id), children: preset.name }), _jsxs(Stack, { direction: "row", alignItems: "center", spacing: 1, children: [props.selectedPreset === preset.id && (_jsx(CardMedia, { component: "img", image: "v1/svg/check-ratio-editor.svg", sx: { width: "20px", height: "20px", px: "2px" } })), _jsx(IconButton, { "aria-label": preset.name, sx: { px: "8px" }, onClick: (event) => props.presetOptionModal(event, preset.id), children: _jsx(CardMedia, { component: "img", image: "/v1/svg/dots-editor.svg", alt: "Options" }) })] })] }, preset.id))), _jsx(Button, { variant: "text", sx: { color: colors.surface, border: "1px solid", borderColor: colors.surface, borderRadius: "40px", mt: "12px", textTransform: 'none' }, onClick: props.onOpenPresetModal, onMouseDown: stopPropagation, onTouchStart: stopPropagation, children: "Create Preset" })] }) }));
|
|
10
13
|
}
|