sag_components 2.0.0-beta332 → 2.0.0-beta334

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.
@@ -1,5 +1,5 @@
1
1
  export default DatePicker;
2
- declare function DatePicker({ isOpen, onChangeDate, value, setValue, startDateValue, endDateValue, selectedColor, hoverColor, inRangeColor, clearButtonColor, }: {
2
+ declare function DatePicker({ isOpen, onChangeDate, value, setValue, startDateValue, endDateValue, selectedColor, hoverColor, inRangeColor, clearButtonColor, showClearButton, }: {
3
3
  isOpen: any;
4
4
  onChangeDate: any;
5
5
  value: any;
@@ -10,4 +10,5 @@ declare function DatePicker({ isOpen, onChangeDate, value, setValue, startDateVa
10
10
  hoverColor: any;
11
11
  inRangeColor: any;
12
12
  clearButtonColor: any;
13
+ showClearButton: any;
13
14
  }): any;
@@ -1,5 +1,5 @@
1
1
  export default RangePicker;
2
- declare function RangePicker({ label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, selectedColor, hoverColor, inRangeColor, clearButtonColor, }: {
2
+ declare function RangePicker({ label, onChange, borderRadius, required, width, height, placeholder, disabled, borderColor, borderColorFocus, textColor, selectedValue, selectedColor, hoverColor, inRangeColor, clearButtonColor, calendarIconColor, showClearButton, showOpenIcon, }: {
3
3
  label: any;
4
4
  onChange: any;
5
5
  borderRadius: any;
@@ -16,6 +16,9 @@ declare function RangePicker({ label, onChange, borderRadius, required, width, h
16
16
  hoverColor: any;
17
17
  inRangeColor: any;
18
18
  clearButtonColor: any;
19
+ calendarIconColor: any;
20
+ showClearButton: any;
21
+ showOpenIcon: any;
19
22
  }): any;
20
23
  declare namespace RangePicker {
21
24
  namespace propTypes {
@@ -35,6 +38,9 @@ declare namespace RangePicker {
35
38
  const hoverColor: any;
36
39
  const inRangeColor: any;
37
40
  const clearButtonColor: any;
41
+ const calendarIconColor: any;
42
+ const showClearButton: any;
43
+ const showOpenIcon: any;
38
44
  }
39
45
  namespace defaultProps {
40
46
  const required_1: boolean;
@@ -63,5 +69,11 @@ declare namespace RangePicker {
63
69
  export { inRangeColor_1 as inRangeColor };
64
70
  const clearButtonColor_1: string;
65
71
  export { clearButtonColor_1 as clearButtonColor };
72
+ const calendarIconColor_1: string;
73
+ export { calendarIconColor_1 as calendarIconColor };
74
+ const showClearButton_1: boolean;
75
+ export { showClearButton_1 as showClearButton };
76
+ const showOpenIcon_1: boolean;
77
+ export { showOpenIcon_1 as showOpenIcon };
66
78
  }
67
79
  }
@@ -192,6 +192,41 @@ declare namespace _default {
192
192
  }
193
193
  export { control_11 as control };
194
194
  }
195
+ namespace calendarIconColor {
196
+ const name_17: string;
197
+ export { name_17 as name };
198
+ const description_12: string;
199
+ export { description_12 as description };
200
+ export namespace control_12 {
201
+ const type_17: string;
202
+ export { type_17 as type };
203
+ const presetColors_7: string[];
204
+ export { presetColors_7 as presetColors };
205
+ }
206
+ export { control_12 as control };
207
+ }
208
+ namespace showClearButton {
209
+ const name_18: string;
210
+ export { name_18 as name };
211
+ const description_13: string;
212
+ export { description_13 as description };
213
+ export namespace control_13 {
214
+ const type_18: string;
215
+ export { type_18 as type };
216
+ }
217
+ export { control_13 as control };
218
+ }
219
+ namespace showOpenIcon {
220
+ const name_19: string;
221
+ export { name_19 as name };
222
+ const description_14: string;
223
+ export { description_14 as description };
224
+ export namespace control_14 {
225
+ const type_19: string;
226
+ export { type_19 as type };
227
+ }
228
+ export { control_14 as control };
229
+ }
195
230
  }
196
231
  }
197
232
  export default _default;
@@ -1,2 +1,4 @@
1
- export function Calendar(): any;
1
+ export function Calendar({ fill }: {
2
+ fill?: string;
3
+ }): any;
2
4
  export default Calendar;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sag_components",
3
- "version": "2.0.0-beta332",
3
+ "version": "2.0.0-beta334",
4
4
  "description": "",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",