sag_components 2.0.0-beta20 → 2.0.0-beta23
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 +19 -13
- package/dist/index.esm.js +643 -649
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +643 -649
- package/dist/index.js.map +1 -1
- package/dist/types/components/QuickFilter/QuickFilter.d.ts +20 -13
- package/package.json +1 -1
- package/dist/types/icons/Duplicate.d.ts +0 -7
- package/dist/types/icons/HannafordNewIcon.d.ts +0 -5
- package/dist/types/icons/Sort.d.ts +0 -1
|
@@ -16,19 +16,25 @@ export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled
|
|
|
16
16
|
}): import("react/jsx-runtime").JSX.Element;
|
|
17
17
|
export namespace QuickFilter {
|
|
18
18
|
namespace propTypes {
|
|
19
|
-
const hoverColor:
|
|
20
|
-
const multipleSelection:
|
|
21
|
-
const disabled:
|
|
22
|
-
const error:
|
|
23
|
-
const errorMessage:
|
|
24
|
-
const label:
|
|
25
|
-
const labelColor:
|
|
26
|
-
const placeHolder:
|
|
27
|
-
const width:
|
|
28
|
-
const checkBoxColor:
|
|
29
|
-
const onChange: any
|
|
30
|
-
const options:
|
|
31
|
-
|
|
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: PropTypes.Requireable<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)[]>;
|
|
32
38
|
}
|
|
33
39
|
namespace defaultProps {
|
|
34
40
|
const hoverColor_1: string;
|
|
@@ -60,3 +66,4 @@ export namespace QuickFilter {
|
|
|
60
66
|
}
|
|
61
67
|
}
|
|
62
68
|
export default QuickFilter;
|
|
69
|
+
import PropTypes from "prop-types";
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|