@ambuj.bhaskar/react-component-library 0.21.4-alpha → 0.22.0-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/assets/index.css +1 -1
- package/dist/index.cjs +131 -131
- package/dist/index.d.ts +22 -0
- package/dist/index.js +18624 -17740
- package/dist/index.umd.js +133 -133
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1133,11 +1133,13 @@ export declare type MultiselectProps = {
|
|
|
1133
1133
|
placeholder?: string;
|
|
1134
1134
|
searchable?: boolean;
|
|
1135
1135
|
maxTagCount?: "responsive" | number;
|
|
1136
|
+
maxCount?: number;
|
|
1136
1137
|
value?: Option_2["value"][];
|
|
1137
1138
|
width?: CSSstring;
|
|
1138
1139
|
height?: string;
|
|
1139
1140
|
className?: string;
|
|
1140
1141
|
allowClear?: boolean;
|
|
1142
|
+
title?: string;
|
|
1141
1143
|
triggerBackgroundColor?: Color;
|
|
1142
1144
|
triggerHighlightColor?: Color;
|
|
1143
1145
|
menuBackgroundColor?: Color;
|
|
@@ -1204,6 +1206,25 @@ export declare type PostRequestPromptBody = {
|
|
|
1204
1206
|
modelMaxResults: number;
|
|
1205
1207
|
};
|
|
1206
1208
|
|
|
1209
|
+
export declare const Refresh: default_2.FC<RefreshProps>;
|
|
1210
|
+
|
|
1211
|
+
export declare type RefreshIntervalOption = {
|
|
1212
|
+
label: string;
|
|
1213
|
+
value: number;
|
|
1214
|
+
};
|
|
1215
|
+
|
|
1216
|
+
export declare type RefreshProps = {
|
|
1217
|
+
intervals?: RefreshIntervalOption[];
|
|
1218
|
+
onRefresh: () => void;
|
|
1219
|
+
backgroundColor?: Color;
|
|
1220
|
+
borderColor?: Color;
|
|
1221
|
+
size?: "s" | "m" | "l";
|
|
1222
|
+
selectWidth?: CSSstring;
|
|
1223
|
+
buttonWidth?: CSSstring;
|
|
1224
|
+
loading?: boolean;
|
|
1225
|
+
disabled?: boolean;
|
|
1226
|
+
};
|
|
1227
|
+
|
|
1207
1228
|
export declare const Select: React.FC<SelectProps>;
|
|
1208
1229
|
|
|
1209
1230
|
export declare type SelectProps = {
|
|
@@ -1225,6 +1246,7 @@ export declare type SelectProps = {
|
|
|
1225
1246
|
height?: string;
|
|
1226
1247
|
id?: string;
|
|
1227
1248
|
suffixIcon?: ReactNode | boolean;
|
|
1249
|
+
title?: string;
|
|
1228
1250
|
};
|
|
1229
1251
|
|
|
1230
1252
|
declare function shiftPolygon(polygon: any): any;
|