@ambuj.bhaskar/react-component-library 0.30.14 → 0.30.16
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 +86 -86
- package/dist/assets/index.css +1 -1
- package/dist/index.cjs +31 -31
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1053 -1047
- package/dist/index.umd.js +32 -32
- package/package.json +106 -106
package/dist/index.d.ts
CHANGED
|
@@ -1326,6 +1326,7 @@ export declare type MultiselectProps = {
|
|
|
1326
1326
|
id?: string;
|
|
1327
1327
|
suffixIcon?: ReactNode | boolean;
|
|
1328
1328
|
mode?: "multiple" | "tags";
|
|
1329
|
+
textOverflow?: "ellipsis" | "clip";
|
|
1329
1330
|
};
|
|
1330
1331
|
|
|
1331
1332
|
declare type Option_2 = {
|
|
@@ -1426,6 +1427,7 @@ export declare type SelectProps = {
|
|
|
1426
1427
|
title?: string;
|
|
1427
1428
|
textColor?: Color;
|
|
1428
1429
|
textSize?: "xs" | "s" | "m" | "l" | "xl";
|
|
1430
|
+
textOverflow?: "ellipsis" | "clip";
|
|
1429
1431
|
};
|
|
1430
1432
|
|
|
1431
1433
|
export declare type ShowAnnotationStatus = "approved" | "rejected" | "pending" | "corrected" | "all";
|