aboutsummaryrefslogtreecommitdiff
path: root/input/checkboxes.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'input/checkboxes.d.ts')
-rw-r--r--input/checkboxes.d.ts32
1 files changed, 32 insertions, 0 deletions
diff --git a/input/checkboxes.d.ts b/input/checkboxes.d.ts
new file mode 100644
index 0000000..89a35d3
--- /dev/null
+++ b/input/checkboxes.d.ts
@@ -0,0 +1,32 @@
+import { WuiInputOption } from "./option.js";
+export interface WuiKeyValue {
+ [key: string]: string;
+}
+export interface WuiKeySelectOption {
+ [key: string]: WuiInputOption;
+}
+export interface WuiInputCheckboxesOpts {
+ label: string;
+ name: string;
+ options: WuiKeySelectOption;
+ id?: string;
+ hint?: string;
+ is_disabled?: boolean;
+ onChangeHandler?: (values: string[]) => void;
+}
+export declare class WuiInputCheckboxes {
+ opts: WuiInputCheckboxesOpts;
+ el: HTMLElement;
+ private el_label;
+ private el_fieldset;
+ private el_hint;
+ private el_hint_toggler;
+ private values;
+ constructor(opts: WuiInputCheckboxesOpts);
+ private generateLabel;
+ private generateInput;
+ private generateHintToggler;
+ private generateHint;
+ private onClickHintToggler;
+ private onClickCheckbox;
+}