@ambuj.bhaskar/react-component-library 0.24.17-alpha → 0.24.19-alpha

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
@@ -837,6 +837,8 @@ export declare type DateRangePickerProps = {
837
837
  pickerBorderColor?: Color;
838
838
  disabledDate?: DateCompare;
839
839
  disableFutureDates?: boolean;
840
+ textColor?: Color;
841
+ textSize?: "xs" | "s" | "m" | "l" | "xl";
840
842
  };
841
843
 
842
844
  declare type DateTimeFormat = string;
@@ -1200,7 +1202,7 @@ export declare type MultiselectProps = {
1200
1202
  maxCount?: number;
1201
1203
  value?: Option_2["value"][];
1202
1204
  width?: CSSstring;
1203
- height?: string;
1205
+ height?: "s" | "m" | "l";
1204
1206
  className?: string;
1205
1207
  allowClear?: boolean;
1206
1208
  title?: string;
@@ -1211,6 +1213,7 @@ export declare type MultiselectProps = {
1211
1213
  menuHoverColor?: Color;
1212
1214
  borderColor?: Color;
1213
1215
  textColor?: Color;
1216
+ textSize?: "xs" | "s" | "m" | "l" | "xl";
1214
1217
  disabled?: boolean;
1215
1218
  id?: string;
1216
1219
  suffixIcon?: ReactNode | boolean;
@@ -1311,11 +1314,12 @@ export declare type SelectProps = {
1311
1314
  disabledColor?: Color;
1312
1315
  disabled?: boolean;
1313
1316
  width?: CSSstring;
1314
- height?: string;
1317
+ height?: "s" | "m" | "l";
1315
1318
  id?: string;
1316
1319
  suffixIcon?: ReactNode | boolean;
1317
1320
  title?: string;
1318
1321
  textColor?: Color;
1322
+ textSize?: "xs" | "s" | "m" | "l" | "xl";
1319
1323
  };
1320
1324
 
1321
1325
  declare function shiftPolygon(polygon: any): any;