@ambuj.bhaskar/react-component-library 0.21.4-alpha → 0.22.1-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 +23 -0
- package/dist/index.js +18625 -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,26 @@ 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
|
+
showText?: boolean;
|
|
1227
|
+
};
|
|
1228
|
+
|
|
1207
1229
|
export declare const Select: React.FC<SelectProps>;
|
|
1208
1230
|
|
|
1209
1231
|
export declare type SelectProps = {
|
|
@@ -1225,6 +1247,7 @@ export declare type SelectProps = {
|
|
|
1225
1247
|
height?: string;
|
|
1226
1248
|
id?: string;
|
|
1227
1249
|
suffixIcon?: ReactNode | boolean;
|
|
1250
|
+
title?: string;
|
|
1228
1251
|
};
|
|
1229
1252
|
|
|
1230
1253
|
declare function shiftPolygon(polygon: any): any;
|