@rescui/input 0.15.2 → 0.15.4-RUI-293-Update-menu-component-7a032357e.20
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.
- package/README.md +3 -1
- package/lib/_virtual/index.css.js +12 -12
- package/lib/index.css +120 -120
- package/lib/index.d.ts +63 -64
- package/lib/index.js +2 -2
- package/lib/input.d.ts +94 -94
- package/lib/input.p.module.css.js +28 -28
- package/lib/parts/custom-icon.d.ts +26 -26
- package/lib/parts/right-icons.d.ts +14 -14
- package/lib/parts/use-backward-compatible-id.d.ts +4 -4
- package/llm/components/input.md +629 -0
- package/llm/index.md +2 -0
- package/package.json +11 -10
package/lib/index.d.ts
CHANGED
|
@@ -1,64 +1,63 @@
|
|
|
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
|
-
|
|
62
|
-
export
|
|
63
|
-
export {
|
|
64
|
-
export type { InputProps } from './input';
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated use named import instead
|
|
3
|
+
*/
|
|
4
|
+
declare const DefaultInput: import("react").ForwardRefExoticComponent<{
|
|
5
|
+
id?: string;
|
|
6
|
+
className?: string;
|
|
7
|
+
placeholder?: string;
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
error?: boolean | React.ReactNode;
|
|
10
|
+
reserveErrorLine?: boolean;
|
|
11
|
+
busy?: boolean;
|
|
12
|
+
onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
13
|
+
onFocus?: React.FocusEventHandler<HTMLInputElement>;
|
|
14
|
+
onBlur?: React.FocusEventHandler<HTMLInputElement>;
|
|
15
|
+
onClear?: React.MouseEventHandler<HTMLButtonElement>;
|
|
16
|
+
onMouseEnter?: React.MouseEventHandler<HTMLInputElement>;
|
|
17
|
+
onMouseLeave?: React.MouseEventHandler<HTMLInputElement>;
|
|
18
|
+
mode?: import("./input").InputMode;
|
|
19
|
+
size?: import("./input").InputSize;
|
|
20
|
+
theme?: import("./input").InputTheme;
|
|
21
|
+
type?: import("./input").InputType;
|
|
22
|
+
value?: string | number | string[];
|
|
23
|
+
icon?: React.ReactNode;
|
|
24
|
+
iconType?: import("./input").InputIconType;
|
|
25
|
+
label?: React.ReactNode;
|
|
26
|
+
note?: React.ReactNode;
|
|
27
|
+
name?: string;
|
|
28
|
+
clearIcon?: React.ReactNode;
|
|
29
|
+
suffix?: React.ReactNode;
|
|
30
|
+
offSystemMicroelements?: boolean;
|
|
31
|
+
boldLabel?: boolean;
|
|
32
|
+
} & Omit<import("react").HTMLProps<HTMLInputElement>, keyof {
|
|
33
|
+
id?: string;
|
|
34
|
+
className?: string;
|
|
35
|
+
placeholder?: string;
|
|
36
|
+
disabled?: boolean;
|
|
37
|
+
error?: boolean | React.ReactNode;
|
|
38
|
+
reserveErrorLine?: boolean;
|
|
39
|
+
busy?: boolean;
|
|
40
|
+
onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
41
|
+
onFocus?: React.FocusEventHandler<HTMLInputElement>;
|
|
42
|
+
onBlur?: React.FocusEventHandler<HTMLInputElement>;
|
|
43
|
+
onClear?: React.MouseEventHandler<HTMLButtonElement>;
|
|
44
|
+
onMouseEnter?: React.MouseEventHandler<HTMLInputElement>;
|
|
45
|
+
onMouseLeave?: React.MouseEventHandler<HTMLInputElement>;
|
|
46
|
+
mode?: import("./input").InputMode;
|
|
47
|
+
size?: import("./input").InputSize;
|
|
48
|
+
theme?: import("./input").InputTheme;
|
|
49
|
+
type?: import("./input").InputType;
|
|
50
|
+
value?: string | number | string[];
|
|
51
|
+
icon?: React.ReactNode;
|
|
52
|
+
iconType?: import("./input").InputIconType;
|
|
53
|
+
label?: React.ReactNode;
|
|
54
|
+
note?: React.ReactNode;
|
|
55
|
+
name?: string;
|
|
56
|
+
clearIcon?: React.ReactNode;
|
|
57
|
+
suffix?: React.ReactNode;
|
|
58
|
+
offSystemMicroelements?: boolean;
|
|
59
|
+
boldLabel?: boolean;
|
|
60
|
+
} | "ref"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
61
|
+
export default DefaultInput;
|
|
62
|
+
export { Input } from './input';
|
|
63
|
+
export type { InputProps } from './input';
|
package/lib/index.js
CHANGED
package/lib/input.d.ts
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
|
|
8
|
-
id?: string;
|
|
9
|
-
className?: string;
|
|
10
|
-
placeholder?: string;
|
|
11
|
-
/**
|
|
12
|
-
* Disable input
|
|
13
|
-
*/
|
|
14
|
-
disabled?: boolean;
|
|
15
|
-
/**
|
|
16
|
-
* Error state flag
|
|
17
|
-
*/
|
|
18
|
-
error?: boolean | React.ReactNode;
|
|
19
|
-
/**
|
|
20
|
-
* If `true`, there will be reserved a space for a 1-line error message. Subsequent lines will be placed below normally.
|
|
21
|
-
* If `false `, there will be no reservation.
|
|
22
|
-
*/
|
|
23
|
-
reserveErrorLine?: boolean;
|
|
24
|
-
/**
|
|
25
|
-
* Set busy state
|
|
26
|
-
*/
|
|
27
|
-
busy?: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* Change value callback. `value => ...`
|
|
30
|
-
*/
|
|
31
|
-
onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
32
|
-
/**
|
|
33
|
-
* Focus input callback
|
|
34
|
-
*/
|
|
35
|
-
onFocus?: React.FocusEventHandler<HTMLInputElement>;
|
|
36
|
-
/**
|
|
37
|
-
* Blur input callback
|
|
38
|
-
*/
|
|
39
|
-
onBlur?: React.FocusEventHandler<HTMLInputElement>;
|
|
40
|
-
/**
|
|
41
|
-
* Clear input callback, clear button appears when this callback provided and input is not empty
|
|
42
|
-
*/
|
|
43
|
-
onClear?: React.MouseEventHandler<HTMLButtonElement>;
|
|
44
|
-
/**
|
|
45
|
-
* `mouseEnter` input callback
|
|
46
|
-
*/
|
|
47
|
-
onMouseEnter?: React.MouseEventHandler<HTMLInputElement>;
|
|
48
|
-
/**
|
|
49
|
-
* `mouseLeave` input callback
|
|
50
|
-
*/
|
|
51
|
-
onMouseLeave?: React.MouseEventHandler<HTMLInputElement>;
|
|
52
|
-
/**
|
|
53
|
-
* Mode of the input - classic or rock
|
|
54
|
-
*/
|
|
55
|
-
mode?: InputMode;
|
|
56
|
-
/**
|
|
57
|
-
* Size
|
|
58
|
-
*/
|
|
59
|
-
size?: InputSize;
|
|
60
|
-
/**
|
|
61
|
-
* Appearance theme
|
|
62
|
-
*/
|
|
63
|
-
theme?: InputTheme;
|
|
64
|
-
/**
|
|
65
|
-
* Change input behavior
|
|
66
|
-
*/
|
|
67
|
-
type?: InputType;
|
|
68
|
-
/**
|
|
69
|
-
* Set value to control state of the input. `onChange` callback is required.
|
|
70
|
-
*/
|
|
71
|
-
value?: string | number | string[];
|
|
72
|
-
/**
|
|
73
|
-
* Icon to place inside the input, supports only icons from `@rescui/icons` package or similar in structure
|
|
74
|
-
*/
|
|
75
|
-
icon?: React.ReactNode;
|
|
76
|
-
/**
|
|
77
|
-
* Left or right decorative icon or right action (clickable) icon or right action focusable (by tab) icon.
|
|
78
|
-
*/
|
|
79
|
-
iconType?: InputIconType;
|
|
80
|
-
label?: React.ReactNode;
|
|
81
|
-
note?: React.ReactNode;
|
|
82
|
-
name?: string;
|
|
83
|
-
/**
|
|
84
|
-
* Clear icon customization, supports only icons from `@rescui/icons` package
|
|
85
|
-
*/
|
|
86
|
-
clearIcon?: React.ReactNode;
|
|
87
|
-
suffix?: React.ReactNode;
|
|
88
|
-
/** Turns off system microelements in input. For example turns off arrows for input[type='number'] */
|
|
89
|
-
offSystemMicroelements?: boolean;
|
|
90
|
-
boldLabel?: boolean;
|
|
91
|
-
};
|
|
92
|
-
export
|
|
93
|
-
export declare const Input: React.ForwardRefExoticComponent<InputExclusiveProps & Omit<React.HTMLProps<HTMLInputElement>, keyof InputExclusiveProps | "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
94
|
-
export default Input;
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export type InputMode = 'classic' | 'rock';
|
|
3
|
+
export type InputSize = 'l' | 'm' | 's';
|
|
4
|
+
export type InputTheme = 'light' | 'dark';
|
|
5
|
+
export type InputType = 'text' | 'email' | 'search' | 'date' | 'time' | 'password' | 'number' | 'file' | 'url' | 'tel';
|
|
6
|
+
export type InputIconType = 'left' | 'right' | 'rightAction' | 'rightActionFocusable';
|
|
7
|
+
type InputExclusiveProps = {
|
|
8
|
+
id?: string;
|
|
9
|
+
className?: string;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
/**
|
|
12
|
+
* Disable input
|
|
13
|
+
*/
|
|
14
|
+
disabled?: boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Error state flag
|
|
17
|
+
*/
|
|
18
|
+
error?: boolean | React.ReactNode;
|
|
19
|
+
/**
|
|
20
|
+
* If `true`, there will be reserved a space for a 1-line error message. Subsequent lines will be placed below normally.
|
|
21
|
+
* If `false `, there will be no reservation.
|
|
22
|
+
*/
|
|
23
|
+
reserveErrorLine?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Set busy state
|
|
26
|
+
*/
|
|
27
|
+
busy?: boolean;
|
|
28
|
+
/**
|
|
29
|
+
* Change value callback. `value => ...`
|
|
30
|
+
*/
|
|
31
|
+
onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
32
|
+
/**
|
|
33
|
+
* Focus input callback
|
|
34
|
+
*/
|
|
35
|
+
onFocus?: React.FocusEventHandler<HTMLInputElement>;
|
|
36
|
+
/**
|
|
37
|
+
* Blur input callback
|
|
38
|
+
*/
|
|
39
|
+
onBlur?: React.FocusEventHandler<HTMLInputElement>;
|
|
40
|
+
/**
|
|
41
|
+
* Clear input callback, clear button appears when this callback provided and input is not empty
|
|
42
|
+
*/
|
|
43
|
+
onClear?: React.MouseEventHandler<HTMLButtonElement>;
|
|
44
|
+
/**
|
|
45
|
+
* `mouseEnter` input callback
|
|
46
|
+
*/
|
|
47
|
+
onMouseEnter?: React.MouseEventHandler<HTMLInputElement>;
|
|
48
|
+
/**
|
|
49
|
+
* `mouseLeave` input callback
|
|
50
|
+
*/
|
|
51
|
+
onMouseLeave?: React.MouseEventHandler<HTMLInputElement>;
|
|
52
|
+
/**
|
|
53
|
+
* Mode of the input - classic or rock
|
|
54
|
+
*/
|
|
55
|
+
mode?: InputMode;
|
|
56
|
+
/**
|
|
57
|
+
* Size
|
|
58
|
+
*/
|
|
59
|
+
size?: InputSize;
|
|
60
|
+
/**
|
|
61
|
+
* Appearance theme
|
|
62
|
+
*/
|
|
63
|
+
theme?: InputTheme;
|
|
64
|
+
/**
|
|
65
|
+
* Change input behavior
|
|
66
|
+
*/
|
|
67
|
+
type?: InputType;
|
|
68
|
+
/**
|
|
69
|
+
* Set value to control state of the input. `onChange` callback is required.
|
|
70
|
+
*/
|
|
71
|
+
value?: string | number | string[];
|
|
72
|
+
/**
|
|
73
|
+
* Icon to place inside the input, supports only icons from `@rescui/icons` package or similar in structure
|
|
74
|
+
*/
|
|
75
|
+
icon?: React.ReactNode;
|
|
76
|
+
/**
|
|
77
|
+
* Left or right decorative icon or right action (clickable) icon or right action focusable (by tab) icon.
|
|
78
|
+
*/
|
|
79
|
+
iconType?: InputIconType;
|
|
80
|
+
label?: React.ReactNode;
|
|
81
|
+
note?: React.ReactNode;
|
|
82
|
+
name?: string;
|
|
83
|
+
/**
|
|
84
|
+
* Clear icon customization, supports only icons from `@rescui/icons` package
|
|
85
|
+
*/
|
|
86
|
+
clearIcon?: React.ReactNode;
|
|
87
|
+
suffix?: React.ReactNode;
|
|
88
|
+
/** Turns off system microelements in input. For example turns off arrows for input[type='number'] */
|
|
89
|
+
offSystemMicroelements?: boolean;
|
|
90
|
+
boldLabel?: boolean;
|
|
91
|
+
};
|
|
92
|
+
export type InputProps = InputExclusiveProps & Omit<React.HTMLProps<HTMLInputElement>, keyof InputExclusiveProps | 'ref'>;
|
|
93
|
+
export declare const Input: React.ForwardRefExoticComponent<InputExclusiveProps & Omit<React.HTMLProps<HTMLInputElement>, keyof InputExclusiveProps | "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
94
|
+
export default Input;
|
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
var styles = {
|
|
2
|
-
"light": "
|
|
3
|
-
"dark": "
|
|
4
|
-
"sizeS": "
|
|
5
|
-
"sizeM": "
|
|
6
|
-
"sizeL": "
|
|
7
|
-
"classic": "
|
|
8
|
-
"rock": "
|
|
9
|
-
"container": "
|
|
10
|
-
"wrapper": "
|
|
11
|
-
"error": "
|
|
12
|
-
"disabled": "
|
|
13
|
-
"enabled": "
|
|
14
|
-
"focused": "
|
|
15
|
-
"filled": "
|
|
16
|
-
"field": "
|
|
17
|
-
"inner": "
|
|
18
|
-
"offSystemMicroelements": "
|
|
19
|
-
"iconWrapper": "
|
|
20
|
-
"action": "
|
|
21
|
-
"right": "
|
|
22
|
-
"left": "
|
|
23
|
-
"icon": "
|
|
24
|
-
"divider": "
|
|
25
|
-
"suffix": "
|
|
26
|
-
"label": "
|
|
27
|
-
"footer": "
|
|
28
|
-
"errorMessage": "
|
|
29
|
-
"note": "
|
|
2
|
+
"light": "_light_1o3n6hz_7",
|
|
3
|
+
"dark": "_dark_1o3n6hz_10",
|
|
4
|
+
"sizeS": "_sizeS_1o3n6hz_14",
|
|
5
|
+
"sizeM": "_sizeM_1o3n6hz_17",
|
|
6
|
+
"sizeL": "_sizeL_1o3n6hz_20",
|
|
7
|
+
"classic": "_classic_1o3n6hz_24",
|
|
8
|
+
"rock": "_rock_1o3n6hz_27",
|
|
9
|
+
"container": "_container_1o3n6hz_31",
|
|
10
|
+
"wrapper": "_wrapper_1o3n6hz_39",
|
|
11
|
+
"error": "_error_1o3n6hz_55",
|
|
12
|
+
"disabled": "_disabled_1o3n6hz_61",
|
|
13
|
+
"enabled": "_enabled_1o3n6hz_67",
|
|
14
|
+
"focused": "_focused_1o3n6hz_67",
|
|
15
|
+
"filled": "_filled_1o3n6hz_73",
|
|
16
|
+
"field": "_field_1o3n6hz_91",
|
|
17
|
+
"inner": "_inner_1o3n6hz_101",
|
|
18
|
+
"offSystemMicroelements": "_offSystemMicroelements_1o3n6hz_202",
|
|
19
|
+
"iconWrapper": "_iconWrapper_1o3n6hz_212",
|
|
20
|
+
"action": "_action_1o3n6hz_223",
|
|
21
|
+
"right": "_right_1o3n6hz_261",
|
|
22
|
+
"left": "_left_1o3n6hz_265",
|
|
23
|
+
"icon": "_icon_1o3n6hz_212",
|
|
24
|
+
"divider": "_divider_1o3n6hz_299",
|
|
25
|
+
"suffix": "_suffix_1o3n6hz_315",
|
|
26
|
+
"label": "_label_1o3n6hz_329",
|
|
27
|
+
"footer": "_footer_1o3n6hz_340",
|
|
28
|
+
"errorMessage": "_errorMessage_1o3n6hz_347",
|
|
29
|
+
"note": "_note_1o3n6hz_356"
|
|
30
30
|
};
|
|
31
31
|
export { styles as default };
|
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
interface MouseInteractiveProps {
|
|
3
|
-
onClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
4
|
-
onContextMenu?: React.MouseEventHandler<HTMLButtonElement>;
|
|
5
|
-
onDoubleClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
6
|
-
onMouseDown?: React.MouseEventHandler<HTMLButtonElement>;
|
|
7
|
-
onMouseEnter?: React.MouseEventHandler<HTMLButtonElement>;
|
|
8
|
-
onMouseLeave?: React.MouseEventHandler<HTMLButtonElement>;
|
|
9
|
-
onMouseMove?: React.MouseEventHandler<HTMLButtonElement>;
|
|
10
|
-
onMouseOut?: React.MouseEventHandler<HTMLButtonElement>;
|
|
11
|
-
onMouseOver?: React.MouseEventHandler<HTMLButtonElement>;
|
|
12
|
-
onMouseUp?: React.MouseEventHandler<HTMLButtonElement>;
|
|
13
|
-
'aria-label'?: string;
|
|
14
|
-
}
|
|
15
|
-
export declare function transferInteractiveProps(iconProps: MouseInteractiveProps): {
|
|
16
|
-
button: MouseInteractiveProps;
|
|
17
|
-
icon: MouseInteractiveProps;
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
icon: React.ReactNode;
|
|
21
|
-
iconIsAction?: boolean;
|
|
22
|
-
iconIsFocusable?: boolean;
|
|
23
|
-
iconPosition?: 'left' | 'right';
|
|
24
|
-
};
|
|
25
|
-
export declare const CustomIcon: React.FC<CustomIconProps>;
|
|
26
|
-
export {};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
interface MouseInteractiveProps {
|
|
3
|
+
onClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
4
|
+
onContextMenu?: React.MouseEventHandler<HTMLButtonElement>;
|
|
5
|
+
onDoubleClick?: React.MouseEventHandler<HTMLButtonElement>;
|
|
6
|
+
onMouseDown?: React.MouseEventHandler<HTMLButtonElement>;
|
|
7
|
+
onMouseEnter?: React.MouseEventHandler<HTMLButtonElement>;
|
|
8
|
+
onMouseLeave?: React.MouseEventHandler<HTMLButtonElement>;
|
|
9
|
+
onMouseMove?: React.MouseEventHandler<HTMLButtonElement>;
|
|
10
|
+
onMouseOut?: React.MouseEventHandler<HTMLButtonElement>;
|
|
11
|
+
onMouseOver?: React.MouseEventHandler<HTMLButtonElement>;
|
|
12
|
+
onMouseUp?: React.MouseEventHandler<HTMLButtonElement>;
|
|
13
|
+
'aria-label'?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare function transferInteractiveProps(iconProps: MouseInteractiveProps): {
|
|
16
|
+
button: MouseInteractiveProps;
|
|
17
|
+
icon: MouseInteractiveProps;
|
|
18
|
+
};
|
|
19
|
+
type CustomIconProps = {
|
|
20
|
+
icon: React.ReactNode;
|
|
21
|
+
iconIsAction?: boolean;
|
|
22
|
+
iconIsFocusable?: boolean;
|
|
23
|
+
iconPosition?: 'left' | 'right';
|
|
24
|
+
};
|
|
25
|
+
export declare const CustomIcon: React.FC<CustomIconProps>;
|
|
26
|
+
export {};
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { InputSize } from '../input';
|
|
3
|
-
|
|
4
|
-
busy?: boolean;
|
|
5
|
-
onClear?: React.MouseEventHandler<HTMLButtonElement>;
|
|
6
|
-
size?: InputSize;
|
|
7
|
-
icon?: React.ReactNode;
|
|
8
|
-
iconIsAction?: boolean;
|
|
9
|
-
iconIsFocusable?: boolean;
|
|
10
|
-
clearIcon?: React.ReactNode;
|
|
11
|
-
empty: boolean;
|
|
12
|
-
};
|
|
13
|
-
export declare const RightIcons: React.FC<RightIconsProps>;
|
|
14
|
-
export {};
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { InputSize } from '../input';
|
|
3
|
+
type RightIconsProps = {
|
|
4
|
+
busy?: boolean;
|
|
5
|
+
onClear?: React.MouseEventHandler<HTMLButtonElement>;
|
|
6
|
+
size?: InputSize;
|
|
7
|
+
icon?: React.ReactNode;
|
|
8
|
+
iconIsAction?: boolean;
|
|
9
|
+
iconIsFocusable?: boolean;
|
|
10
|
+
clearIcon?: React.ReactNode;
|
|
11
|
+
empty: boolean;
|
|
12
|
+
};
|
|
13
|
+
export declare const RightIcons: React.FC<RightIconsProps>;
|
|
14
|
+
export {};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const useBackwardCompatibleId: {
|
|
2
|
-
(): string | number;
|
|
3
|
-
counter: number;
|
|
4
|
-
};
|
|
1
|
+
export declare const useBackwardCompatibleId: {
|
|
2
|
+
(): string | number;
|
|
3
|
+
counter: number;
|
|
4
|
+
};
|