sag_components 2.0.0-beta115 → 2.0.0-beta117
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 +2 -1
- package/dist/index.esm.js +19 -18
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +19 -18
- package/dist/index.js.map +1 -1
- package/dist/types/components/OverlayDropdown/OverlayDropdown.d.ts +2 -1
- package/dist/types/components/OverlayDropdown/OverlayDropdown.stories.d.ts +17 -4
- package/package.json +1 -1
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
export default OverlayDropdown;
|
|
2
|
-
declare function OverlayDropdown({ data, value, onSelectClick, disabled, required, selectedColor, hoverColor, dropdownMaxHeight, width, ...props }: {
|
|
2
|
+
declare function OverlayDropdown({ data, value, onSelectClick, disabled, isDarkerBackground, required, selectedColor, hoverColor, dropdownMaxHeight, width, ...props }: {
|
|
3
3
|
[x: string]: any;
|
|
4
4
|
data?: any[];
|
|
5
5
|
value: any;
|
|
6
6
|
onSelectClick: any;
|
|
7
7
|
disabled?: boolean;
|
|
8
|
+
isDarkerBackground?: boolean;
|
|
8
9
|
required?: boolean;
|
|
9
10
|
selectedColor?: string;
|
|
10
11
|
hoverColor?: string;
|
|
@@ -40,7 +40,7 @@ declare namespace _default {
|
|
|
40
40
|
const description_3: string;
|
|
41
41
|
export { description_3 as description };
|
|
42
42
|
}
|
|
43
|
-
namespace
|
|
43
|
+
namespace isDarkerBackground {
|
|
44
44
|
const name_4: string;
|
|
45
45
|
export { name_4 as name };
|
|
46
46
|
export namespace control_3 {
|
|
@@ -51,7 +51,7 @@ declare namespace _default {
|
|
|
51
51
|
const description_4: string;
|
|
52
52
|
export { description_4 as description };
|
|
53
53
|
}
|
|
54
|
-
namespace
|
|
54
|
+
namespace required {
|
|
55
55
|
const name_5: string;
|
|
56
56
|
export { name_5 as name };
|
|
57
57
|
export namespace control_4 {
|
|
@@ -62,7 +62,7 @@ declare namespace _default {
|
|
|
62
62
|
const description_5: string;
|
|
63
63
|
export { description_5 as description };
|
|
64
64
|
}
|
|
65
|
-
namespace
|
|
65
|
+
namespace selectedColor {
|
|
66
66
|
const name_6: string;
|
|
67
67
|
export { name_6 as name };
|
|
68
68
|
export namespace control_5 {
|
|
@@ -73,7 +73,7 @@ declare namespace _default {
|
|
|
73
73
|
const description_6: string;
|
|
74
74
|
export { description_6 as description };
|
|
75
75
|
}
|
|
76
|
-
namespace
|
|
76
|
+
namespace hoverColor {
|
|
77
77
|
const name_7: string;
|
|
78
78
|
export { name_7 as name };
|
|
79
79
|
export namespace control_6 {
|
|
@@ -84,6 +84,17 @@ declare namespace _default {
|
|
|
84
84
|
const description_7: string;
|
|
85
85
|
export { description_7 as description };
|
|
86
86
|
}
|
|
87
|
+
namespace dropdownMaxHeight {
|
|
88
|
+
const name_8: string;
|
|
89
|
+
export { name_8 as name };
|
|
90
|
+
export namespace control_7 {
|
|
91
|
+
const type_7: string;
|
|
92
|
+
export { type_7 as type };
|
|
93
|
+
}
|
|
94
|
+
export { control_7 as control };
|
|
95
|
+
const description_8: string;
|
|
96
|
+
export { description_8 as description };
|
|
97
|
+
}
|
|
87
98
|
}
|
|
88
99
|
}
|
|
89
100
|
export default _default;
|
|
@@ -96,6 +107,8 @@ export namespace Default {
|
|
|
96
107
|
export { required_1 as required };
|
|
97
108
|
const disabled_1: boolean;
|
|
98
109
|
export { disabled_1 as disabled };
|
|
110
|
+
const isDarkerBackground_1: boolean;
|
|
111
|
+
export { isDarkerBackground_1 as isDarkerBackground };
|
|
99
112
|
const selectedColor_1: string;
|
|
100
113
|
export { selectedColor_1 as selectedColor };
|
|
101
114
|
const hoverColor_1: string;
|