sag_components 2.0.0-beta8 → 2.0.0-beta9
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/index.d.ts +1 -52
- package/dist/index.esm.js +56 -51
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +56 -51
- package/dist/index.js.map +1 -1
- package/dist/types/components/QuickFilter/QuickFilter.d.ts +0 -52
- package/package.json +1 -1
|
@@ -14,56 +14,4 @@ export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled
|
|
|
14
14
|
options: any;
|
|
15
15
|
selectedValue: any;
|
|
16
16
|
}): import("react/jsx-runtime").JSX.Element;
|
|
17
|
-
export namespace QuickFilter {
|
|
18
|
-
namespace propTypes {
|
|
19
|
-
const hoverColor: PropTypes.Requireable<string>;
|
|
20
|
-
const multipleSelection: PropTypes.Requireable<boolean>;
|
|
21
|
-
const disabled: PropTypes.Requireable<boolean>;
|
|
22
|
-
const error: PropTypes.Requireable<boolean>;
|
|
23
|
-
const errorMessage: string;
|
|
24
|
-
const label: PropTypes.Requireable<string>;
|
|
25
|
-
const labelColor: PropTypes.Requireable<string>;
|
|
26
|
-
const placeHolder: PropTypes.Requireable<string>;
|
|
27
|
-
const width: PropTypes.Requireable<string>;
|
|
28
|
-
const checkBoxColor: PropTypes.Requireable<string>;
|
|
29
|
-
const onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
30
|
-
const options: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
31
|
-
id: PropTypes.Requireable<string>;
|
|
32
|
-
label: PropTypes.Requireable<string>;
|
|
33
|
-
}> | null | undefined)[]>;
|
|
34
|
-
const selectedValue: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
35
|
-
id: PropTypes.Requireable<string>;
|
|
36
|
-
label: PropTypes.Requireable<string>;
|
|
37
|
-
}> | null | undefined)[]>;
|
|
38
|
-
}
|
|
39
|
-
namespace defaultProps {
|
|
40
|
-
const hoverColor_1: string;
|
|
41
|
-
export { hoverColor_1 as hoverColor };
|
|
42
|
-
const multipleSelection_1: boolean;
|
|
43
|
-
export { multipleSelection_1 as multipleSelection };
|
|
44
|
-
const disabled_1: boolean;
|
|
45
|
-
export { disabled_1 as disabled };
|
|
46
|
-
const error_1: boolean;
|
|
47
|
-
export { error_1 as error };
|
|
48
|
-
const errorMessage_1: string;
|
|
49
|
-
export { errorMessage_1 as errorMessage };
|
|
50
|
-
const label_1: string;
|
|
51
|
-
export { label_1 as label };
|
|
52
|
-
const labelColor_1: string;
|
|
53
|
-
export { labelColor_1 as labelColor };
|
|
54
|
-
const placeHolder_1: string;
|
|
55
|
-
export { placeHolder_1 as placeHolder };
|
|
56
|
-
const width_1: string;
|
|
57
|
-
export { width_1 as width };
|
|
58
|
-
const checkBoxColor_1: string;
|
|
59
|
-
export { checkBoxColor_1 as checkBoxColor };
|
|
60
|
-
export function onChange_1(): void;
|
|
61
|
-
export { onChange_1 as onChange };
|
|
62
|
-
const options_1: never[];
|
|
63
|
-
export { options_1 as options };
|
|
64
|
-
const selectedValue_1: never[];
|
|
65
|
-
export { selectedValue_1 as selectedValue };
|
|
66
|
-
}
|
|
67
|
-
}
|
|
68
17
|
export default QuickFilter;
|
|
69
|
-
import PropTypes from "prop-types";
|