@muraldevkit/ui-toolkit 4.11.0-dev-ryRg.1 → 4.11.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.
@@ -2,6 +2,8 @@
2
2
  interface MrlPaginationTextProps {
3
3
  /** Additional class to add to the container element */
4
4
  className?: string;
5
+ /** Show total as estimate */
6
+ isEstimate?: boolean;
5
7
  /** The last visible item */
6
8
  rangeEnd: number;
7
9
  /** The first visible item */
@@ -17,5 +19,5 @@ interface MrlPaginationTextProps {
17
19
  * @param {MrlPaginationTextProps} props - the component props
18
20
  * @returns pagination text
19
21
  */
20
- export declare function MrlPaginationText({ className, rangeStart, rangeEnd, textClass, total }: MrlPaginationTextProps): JSX.Element;
22
+ export declare function MrlPaginationText({ className, isEstimate, rangeStart, rangeEnd, textClass, total }: MrlPaginationTextProps): JSX.Element;
21
23
  export {};