@ambuj.bhaskar/react-component-library 0.28.19-alpha → 0.29.0
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 +4 -4
- package/dist/index.d.ts +11 -0
- package/dist/index.js +2275 -2250
- package/dist/index.umd.js +8 -8
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1055,6 +1055,17 @@ declare type JustifyContent = "center" | "start" | "end" | "flex-start" | "flex-
|
|
|
1055
1055
|
|
|
1056
1056
|
declare type LineVariant = "fill" | "line";
|
|
1057
1057
|
|
|
1058
|
+
export declare const LiveDot: React.FC<LiveDotProps>;
|
|
1059
|
+
|
|
1060
|
+
export declare type LiveDotProps = {
|
|
1061
|
+
color?: Color;
|
|
1062
|
+
size?: LiveDotSize;
|
|
1063
|
+
showText?: boolean;
|
|
1064
|
+
liveText?: string;
|
|
1065
|
+
};
|
|
1066
|
+
|
|
1067
|
+
declare type LiveDotSize = "s" | "m" | "l";
|
|
1068
|
+
|
|
1058
1069
|
export declare interface LoggedInUser {
|
|
1059
1070
|
awi_email: string;
|
|
1060
1071
|
awi_id: number;
|