sag_components 2.0.0-beta210 → 2.0.0-beta211
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 +3 -1
- package/dist/index.esm.js +227 -216
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +227 -216
- package/dist/index.js.map +1 -1
- package/dist/types/components/QuickFilter/QuickFilter.d.ts +3 -1
- package/dist/types/components/QuickFilter/QuickFilter.stories.d.ts +21 -0
- package/dist/types/components/QuickFilterDropdownMultiSelection/QuickFilterDropdownMultiSelection.d.ts +9 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled, error, errorMessage, label, labelColor, placeHolder, width, checkBoxColor, onChange, options, selectedValue, }: {
|
|
1
|
+
export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled, error, errorMessage, label, labelColor, placeHolder, width, height, checkBoxColor, dropdownHeight, onChange, options, selectedValue, }: {
|
|
2
2
|
hoverColor?: string;
|
|
3
3
|
multipleSelection?: boolean;
|
|
4
4
|
xIconShow?: boolean;
|
|
@@ -9,7 +9,9 @@ export function QuickFilter({ hoverColor, multipleSelection, xIconShow, disabled
|
|
|
9
9
|
labelColor?: string;
|
|
10
10
|
placeHolder?: string;
|
|
11
11
|
width?: string;
|
|
12
|
+
height?: string;
|
|
12
13
|
checkBoxColor?: string;
|
|
14
|
+
dropdownHeight?: string;
|
|
13
15
|
onChange?: (value: any) => void;
|
|
14
16
|
options?: any[];
|
|
15
17
|
selectedValue?: any[];
|
|
@@ -236,6 +236,27 @@ declare namespace _default {
|
|
|
236
236
|
}
|
|
237
237
|
export { control_11 as control };
|
|
238
238
|
}
|
|
239
|
+
namespace dropdownHeight {
|
|
240
|
+
const name_23: string;
|
|
241
|
+
export { name_23 as name };
|
|
242
|
+
export namespace type_21 {
|
|
243
|
+
const name_24: string;
|
|
244
|
+
export { name_24 as name };
|
|
245
|
+
}
|
|
246
|
+
export { type_21 as type };
|
|
247
|
+
const description_14: string;
|
|
248
|
+
export { description_14 as description };
|
|
249
|
+
export namespace defaultValue_9 {
|
|
250
|
+
const summary_9: string;
|
|
251
|
+
export { summary_9 as summary };
|
|
252
|
+
}
|
|
253
|
+
export { defaultValue_9 as defaultValue };
|
|
254
|
+
export namespace control_12 {
|
|
255
|
+
const type_22: string;
|
|
256
|
+
export { type_22 as type };
|
|
257
|
+
}
|
|
258
|
+
export { control_12 as control };
|
|
259
|
+
}
|
|
239
260
|
}
|
|
240
261
|
}
|
|
241
262
|
export default _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export function QuickFilterDropdownMultiSelection({ label, labelEmptyValue, options, selectedValue, placeHolder, onChange, required, disabled, width, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, }: {
|
|
1
|
+
export function QuickFilterDropdownMultiSelection({ label, labelEmptyValue, options, selectedValue, placeHolder, onChange, required, disabled, width, height, error, errorMessage, labelColor, xIconShow, checkBoxColor, showLabelOnTop, dropdownHeight, }: {
|
|
2
2
|
label: any;
|
|
3
3
|
labelEmptyValue: any;
|
|
4
4
|
options: any;
|
|
@@ -8,12 +8,14 @@ export function QuickFilterDropdownMultiSelection({ label, labelEmptyValue, opti
|
|
|
8
8
|
required: any;
|
|
9
9
|
disabled: any;
|
|
10
10
|
width: any;
|
|
11
|
+
height: any;
|
|
11
12
|
error: any;
|
|
12
13
|
errorMessage: any;
|
|
13
14
|
labelColor: any;
|
|
14
15
|
xIconShow: any;
|
|
15
16
|
checkBoxColor: any;
|
|
16
17
|
showLabelOnTop: any;
|
|
18
|
+
dropdownHeight: any;
|
|
17
19
|
}): import("react/jsx-runtime").JSX.Element;
|
|
18
20
|
export namespace QuickFilterDropdownMultiSelection {
|
|
19
21
|
namespace propTypes {
|
|
@@ -24,6 +26,8 @@ export namespace QuickFilterDropdownMultiSelection {
|
|
|
24
26
|
const checkBoxColor: PropTypes.Requireable<string>;
|
|
25
27
|
const required: PropTypes.Requireable<boolean>;
|
|
26
28
|
const width: PropTypes.Requireable<string>;
|
|
29
|
+
const height: PropTypes.Requireable<string>;
|
|
30
|
+
const dropdownHeight: PropTypes.Requireable<string>;
|
|
27
31
|
const disabled: PropTypes.Requireable<boolean>;
|
|
28
32
|
const error: PropTypes.Requireable<boolean>;
|
|
29
33
|
const errorMessage: string;
|
|
@@ -54,6 +58,10 @@ export namespace QuickFilterDropdownMultiSelection {
|
|
|
54
58
|
export { required_1 as required };
|
|
55
59
|
const width_1: string;
|
|
56
60
|
export { width_1 as width };
|
|
61
|
+
const height_1: string;
|
|
62
|
+
export { height_1 as height };
|
|
63
|
+
const dropdownHeight_1: string;
|
|
64
|
+
export { dropdownHeight_1 as dropdownHeight };
|
|
57
65
|
const disabled_1: boolean;
|
|
58
66
|
export { disabled_1 as disabled };
|
|
59
67
|
const error_1: boolean;
|