master-components-react-ts 2.6.11 → 2.6.13

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.
@@ -4,4 +4,5 @@ interface IconCalendarProps {
4
4
  color?: string;
5
5
  }
6
6
  export declare const IconCalendar: ({ width, height, color }: IconCalendarProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const IconCalendarOnlyIcon: () => import("react/jsx-runtime").JSX.Element;
7
8
  export {};
@@ -1,6 +1,6 @@
1
1
  import { DatePickerProps } from './DatePicker.types';
2
2
  declare const DatePicker: {
3
- ({ defaultValue, valueFormat, onChange, onBlur, onFocus, customYears, fixedDropdown, disabledDatesFrom, disabledDatesTill, disabledDatesRange, datepickerStyle, datepickerLabelStyle, closeOnScroll, requiredStyle, datepickerHelperTextStyle, selectedStyle, endDateStyle, startDateStyle, inRangeStyle, otherMonthStyle, todayStyle, weekDayStyle, quickPickStyle, monthStyle, quickPick, mode, pickerType, disabled, ...rest }: DatePickerProps): import("react/jsx-runtime").JSX.Element;
3
+ ({ defaultValue, valueFormat, onChange, onBlur, onFocus, onlyIcon, iconSize, customYears, fixedDropdown, disabledDatesFrom, disabledDatesTill, disabledDatesRange, datepickerStyle, datepickerLabelStyle, closeOnScroll, requiredStyle, datepickerHelperTextStyle, selectedStyle, endDateStyle, startDateStyle, inRangeStyle, otherMonthStyle, todayStyle, weekDayStyle, quickPickStyle, monthStyle, quickPick, mode, pickerType, disabled, ...rest }: DatePickerProps): import("react/jsx-runtime").JSX.Element;
4
4
  propKeys: readonly ["defaultValue", "valueFormat", "onChange", "onBlur", "onFocus", "customYears", "fixedDropdown", "closeOnScroll", "disabledDatesFrom", "disabledDatesTill", "disabledDatesRange", "datepickerStyle", "datepickerLabelStyle", "requiredStyle", "datepickerHelperTextStyle", "selectedStyle", "endDateStyle", "startDateStyle", "inRangeStyle", "otherMonthStyle", "todayStyle", "weekDayStyle", "quickPickStyle", "monthStyle", "quickPick", "mode", "pickerType", "disabled"];
5
5
  displayName: string;
6
6
  description: string;
@@ -12,6 +12,8 @@ export type PickerValue = SingleValue | RangeValue | DateOrString[];
12
12
  export interface DatePickerProps extends FormInputProps {
13
13
  defaultValue?: PickerValue | [];
14
14
  valueFormat?: string;
15
+ onlyIcon?: boolean;
16
+ iconSize?: 'lg' | 'md' | 'sm';
15
17
  onChange?: (value: PickerValue) => void;
16
18
  onBlur?: () => void;
17
19
  onFocus?: () => void;