@kingsimba/nc-ui 0.1.15 → 0.1.17

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 CHANGED
@@ -665,7 +665,7 @@ export declare interface ListGroupProps {
665
665
  style?: default_2.CSSProperties;
666
666
  }
667
667
 
668
- export declare function MonthRangePicker({ startMonth, endMonth, onChange, label, className, disabled, }: MonthRangePickerProps): JSX_2.Element;
668
+ export declare function MonthRangePicker({ startMonth, endMonth, onChange, label, className, disabled, size, }: MonthRangePickerProps): JSX_2.Element;
669
669
 
670
670
  export declare interface MonthRangePickerProps {
671
671
  /** Start month value in YY-M, YY-MM, YYYY-M, or YYYY-MM format */
@@ -680,6 +680,8 @@ export declare interface MonthRangePickerProps {
680
680
  className?: string;
681
681
  /** Whether the picker is disabled */
682
682
  disabled?: boolean;
683
+ /** The scale/size of the component */
684
+ size?: 'small' | 'default';
683
685
  }
684
686
 
685
687
  export declare function MultiSelect({ values, onChange, options, placeholder, label }: MultiSelectProps): JSX_2.Element;