@ambuj.bhaskar/react-component-library 0.24.18-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/README.md +34 -34
- package/bin/cli.js +87 -87
- package/dist/assets/index.css +1 -1
- package/dist/index.cjs +44 -44
- package/dist/index.d.ts +5 -2
- package/dist/index.js +2093 -2076
- package/dist/index.umd.js +62 -62
- package/package.json +102 -102
package/dist/index.d.ts
CHANGED
|
@@ -838,6 +838,7 @@ export declare type DateRangePickerProps = {
|
|
|
838
838
|
disabledDate?: DateCompare;
|
|
839
839
|
disableFutureDates?: boolean;
|
|
840
840
|
textColor?: Color;
|
|
841
|
+
textSize?: "xs" | "s" | "m" | "l" | "xl";
|
|
841
842
|
};
|
|
842
843
|
|
|
843
844
|
declare type DateTimeFormat = string;
|
|
@@ -1201,7 +1202,7 @@ export declare type MultiselectProps = {
|
|
|
1201
1202
|
maxCount?: number;
|
|
1202
1203
|
value?: Option_2["value"][];
|
|
1203
1204
|
width?: CSSstring;
|
|
1204
|
-
height?:
|
|
1205
|
+
height?: "s" | "m" | "l";
|
|
1205
1206
|
className?: string;
|
|
1206
1207
|
allowClear?: boolean;
|
|
1207
1208
|
title?: string;
|
|
@@ -1212,6 +1213,7 @@ export declare type MultiselectProps = {
|
|
|
1212
1213
|
menuHoverColor?: Color;
|
|
1213
1214
|
borderColor?: Color;
|
|
1214
1215
|
textColor?: Color;
|
|
1216
|
+
textSize?: "xs" | "s" | "m" | "l" | "xl";
|
|
1215
1217
|
disabled?: boolean;
|
|
1216
1218
|
id?: string;
|
|
1217
1219
|
suffixIcon?: ReactNode | boolean;
|
|
@@ -1312,11 +1314,12 @@ export declare type SelectProps = {
|
|
|
1312
1314
|
disabledColor?: Color;
|
|
1313
1315
|
disabled?: boolean;
|
|
1314
1316
|
width?: CSSstring;
|
|
1315
|
-
height?:
|
|
1317
|
+
height?: "s" | "m" | "l";
|
|
1316
1318
|
id?: string;
|
|
1317
1319
|
suffixIcon?: ReactNode | boolean;
|
|
1318
1320
|
title?: string;
|
|
1319
1321
|
textColor?: Color;
|
|
1322
|
+
textSize?: "xs" | "s" | "m" | "l" | "xl";
|
|
1320
1323
|
};
|
|
1321
1324
|
|
|
1322
1325
|
declare function shiftPolygon(polygon: any): any;
|