@cagatayfdn/flora-components 0.0.14 → 0.0.15

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
@@ -391,6 +391,17 @@ declare interface OptionProps extends OptionItem {
391
391
  name?: string;
392
392
  }
393
393
 
394
+ export declare const Pager: (props: PagerProps) => JSX.Element;
395
+
396
+ declare type PagerProps = {
397
+ totalCount: number;
398
+ currentPage?: number;
399
+ pageSize?: number;
400
+ className?: string;
401
+ onChange?: (pageIndex: number) => void;
402
+ appearance?: ThemeAppearance;
403
+ };
404
+
394
405
  declare interface Permissions_2 {
395
406
  default: boolean
396
407
  depends_on: PermissionsType[] | null