feat(react/dialogs): port import

This commit is contained in:
Elian Doran
2025-08-07 19:20:35 +03:00
parent 90f9416524
commit 8d27a5aa39
4 changed files with 112 additions and 182 deletions

View File

@@ -1,10 +1,11 @@
import { Tooltip } from "bootstrap";
import { useEffect, useRef } from "preact/compat";
import { escapeQuotes } from "../../services/utils";
import { ComponentChildren } from "preact";
interface FormCheckboxProps {
name: string;
label: string;
label: string | ComponentChildren;
/**
* If set, the checkbox label will be underlined and dotted, indicating a hint. When hovered, it will show the hint text.
*/