Add options for the cards #93
|
@ -79,7 +79,8 @@ class Radio extends Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
function RadioWrapper(target, id, data, {title, variants, outvar, fallback, icon, tip}) {
|
function RadioWrapper(target, id, data, {title, variants, outvar, fallback, icon, tip}) {
|
||||||
return <Radio target={target} title={title} variants={variants} outvar={outvar} icon={icon} tip={tip} key={id} fallback={fallback}
|
return <Radio target={target} title={title} variants={variants} outvar={outvar} icon={icon} tip={tip} key={id}
|
||||||
|
fallback={fallback}
|
||||||
id={id} data={data}/>;
|
id={id} data={data}/>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -336,7 +337,11 @@ export function ProcessOptions({options, data, target, id}) {
|
||||||
|
|
||||||
export function OptionsDialogPopup({options, data, target, id, big}) {
|
export function OptionsDialogPopup({options, data, target, id, big}) {
|
||||||
const [show, setShow] = useState(false);
|
const [show, setShow] = useState(false);
|
||||||
const ref = useClickAway(() => setShow(false));
|
const ref = useClickAway((e) => {
|
||||||
|
if (e.type === "mousedown") // ignore touchstart
|
||||||
|
setShow(false)
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
let div_classes = "overlayVariant border rounded " + (big ? "overlay-bigcard" : "overlay-smallcard")
|
let div_classes = "overlayVariant border rounded " + (big ? "overlay-bigcard" : "overlay-smallcard")
|
||||||
const handleClick = (event) => {
|
const handleClick = (event) => {
|
||||||
|
|
Loading…
Reference in New Issue