@ambuj.bhaskar/react-component-library 0.28.20 → 0.29.1

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/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;
@@ -1237,7 +1248,7 @@ declare type Option_2 = {
1237
1248
 
1238
1249
  declare type OverridableAntdProps = Omit<TableProps_2<any>, "size" | "title" | "footer">;
1239
1250
 
1240
- export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, width, showPages, showArrows, className, }: PaginationProps) => JSX_2.Element;
1251
+ export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, width, inputWidth, showPages, showArrows, className, }: PaginationProps) => JSX_2.Element;
1241
1252
 
1242
1253
  export declare type PaginationProps = {
1243
1254
  totalPages: number;
@@ -1248,6 +1259,7 @@ export declare type PaginationProps = {
1248
1259
  color?: Color;
1249
1260
  size?: "s" | "m" | "l";
1250
1261
  width?: CSSstring;
1262
+ inputWidth?: CSSstring;
1251
1263
  showPages?: boolean;
1252
1264
  showArrows?: boolean;
1253
1265
  className?: string;