@nulogy/components 8.1.0 → 8.1.1
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/dist/src/Select/Select.d.ts +34 -33
- package/package.json +1 -1
|
@@ -1,36 +1,4 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export declare const SelectDefaultProps: {
|
|
3
|
-
autocomplete: boolean;
|
|
4
|
-
disabled: any;
|
|
5
|
-
defaultValue: any;
|
|
6
|
-
error: any;
|
|
7
|
-
errorMessage: any;
|
|
8
|
-
errorList: any;
|
|
9
|
-
labelText: any;
|
|
10
|
-
helpText: any;
|
|
11
|
-
noOptionsMessage: any;
|
|
12
|
-
requirementText: any;
|
|
13
|
-
id: any;
|
|
14
|
-
initialIsOpen: any;
|
|
15
|
-
maxHeight: string;
|
|
16
|
-
menuPosition: string;
|
|
17
|
-
multiselect: boolean;
|
|
18
|
-
name: any;
|
|
19
|
-
onBlur: any;
|
|
20
|
-
onChange: any;
|
|
21
|
-
placeholder: any;
|
|
22
|
-
required: boolean;
|
|
23
|
-
value: any;
|
|
24
|
-
className: any;
|
|
25
|
-
classNamePrefix: string;
|
|
26
|
-
menuIsOpen: any;
|
|
27
|
-
onMenuOpen: any;
|
|
28
|
-
onMenuClose: any;
|
|
29
|
-
onInputChange: any;
|
|
30
|
-
components: any;
|
|
31
|
-
closeMenuOnSelect: boolean;
|
|
32
|
-
};
|
|
33
|
-
export declare const getOption: (options: any, value: any) => any;
|
|
34
2
|
export declare type SelectProps = {
|
|
35
3
|
options?: any[];
|
|
36
4
|
windowThreshold?: number;
|
|
@@ -65,6 +33,39 @@ export declare type SelectProps = {
|
|
|
65
33
|
components?: any;
|
|
66
34
|
closeMenuOnSelect?: boolean;
|
|
67
35
|
"aria-label"?: string;
|
|
36
|
+
[key: string]: any;
|
|
68
37
|
};
|
|
69
|
-
declare const
|
|
38
|
+
export declare const SelectDefaultProps: {
|
|
39
|
+
autocomplete: boolean;
|
|
40
|
+
disabled: any;
|
|
41
|
+
defaultValue: any;
|
|
42
|
+
error: any;
|
|
43
|
+
errorMessage: any;
|
|
44
|
+
errorList: any;
|
|
45
|
+
labelText: any;
|
|
46
|
+
helpText: any;
|
|
47
|
+
noOptionsMessage: any;
|
|
48
|
+
requirementText: any;
|
|
49
|
+
id: any;
|
|
50
|
+
initialIsOpen: any;
|
|
51
|
+
maxHeight: string;
|
|
52
|
+
menuPosition: string;
|
|
53
|
+
multiselect: boolean;
|
|
54
|
+
name: any;
|
|
55
|
+
onBlur: any;
|
|
56
|
+
onChange: any;
|
|
57
|
+
placeholder: any;
|
|
58
|
+
required: boolean;
|
|
59
|
+
value: any;
|
|
60
|
+
className: any;
|
|
61
|
+
classNamePrefix: string;
|
|
62
|
+
menuIsOpen: any;
|
|
63
|
+
onMenuOpen: any;
|
|
64
|
+
onMenuClose: any;
|
|
65
|
+
onInputChange: any;
|
|
66
|
+
components: any;
|
|
67
|
+
closeMenuOnSelect: boolean;
|
|
68
|
+
};
|
|
69
|
+
export declare const getOption: (options: any, value: any) => any;
|
|
70
|
+
declare const ReactSelect: React.ForwardRefExoticComponent<Pick<SelectProps, React.ReactText> & React.RefAttributes<unknown>>;
|
|
70
71
|
export default ReactSelect;
|