-
Notifications
You must be signed in to change notification settings - Fork 841
/
index.d.ts
61 lines (51 loc) · 1.33 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import { CommonProps } from '../../common';
import {
FunctionComponent,
ReactNode,
HTMLAttributes,
ChangeEventHandler,
InputHTMLAttributes,
} from 'react';
declare module '@elastic/eui' {
/**
* checkbox type defs
*
* @see './checkbox.js'
*/
export type EuiCheckboxType = 'inList';
export interface EuiCheckboxProps {
id: string;
checked?: boolean;
onChange: ChangeEventHandler<HTMLInputElement>; // overriding to make it required
label?: ReactNode;
type?: EuiCheckboxType;
disabled?: boolean;
compressed?: boolean;
indeterminate?: boolean;
}
export const EuiCheckbox: FunctionComponent<
CommonProps & InputHTMLAttributes<HTMLInputElement> & EuiCheckboxProps
>;
/**
* checkbox group type defs
*
* @see './checkbox_group.js'
*/
export interface EuiCheckboxGroupOption {
id: string;
label?: ReactNode;
}
export interface EuiCheckboxGroupIdToSelectedMap {
[id: string]: boolean;
}
export interface EuiCheckboxGroupProps {
options: EuiCheckboxGroupOption[];
idToSelectedMap: EuiCheckboxGroupIdToSelectedMap;
onChange: ChangeEventHandler<HTMLInputElement>;
compressed?: boolean;
disabled?: boolean;
}
export const EuiCheckboxGroup: FunctionComponent<
CommonProps & HTMLAttributes<HTMLDivElement> & EuiCheckboxGroupProps
>;
}