@rocketui/vue 0.2.0 → 0.2.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.
@@ -1429,7 +1429,8 @@ declare interface PaginationProps {
1429
1429
  totalItems: number;
1430
1430
  perPageOptions?: number[];
1431
1431
  itemsPerPageText?: string;
1432
- position?: 'left' | 'center' | 'right';
1432
+ position?: 'left' | 'center' | 'right' | string;
1433
+ infoText?: string;
1433
1434
  }
1434
1435
 
1435
1436
  declare enum Placement {
@@ -2408,9 +2409,11 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
2408
2409
  perPageOptions: () => number[];
2409
2410
  itemsPerPageText: string;
2410
2411
  position: string;
2412
+ infoText: string;
2411
2413
  }>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2412
2414
  "update:page": (...args: any[]) => void;
2413
2415
  "update:perPage": (...args: any[]) => void;
2416
+ "update:info": (...args: any[]) => void;
2414
2417
  }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<__VLS_WithDefaults_20<__VLS_TypePropsToRuntimeProps_21<PaginationProps>, {
2415
2418
  page: number;
2416
2419
  perPage: number;
@@ -2418,16 +2421,19 @@ export declare const RPagination: __VLS_WithTemplateSlots_16<DefineComponent<__V
2418
2421
  perPageOptions: () => number[];
2419
2422
  itemsPerPageText: string;
2420
2423
  position: string;
2424
+ infoText: string;
2421
2425
  }>>> & {
2422
2426
  "onUpdate:page"?: ((...args: any[]) => any) | undefined;
2423
2427
  "onUpdate:perPage"?: ((...args: any[]) => any) | undefined;
2428
+ "onUpdate:info"?: ((...args: any[]) => any) | undefined;
2424
2429
  }, {
2425
2430
  page: number;
2426
2431
  perPage: number;
2427
2432
  totalItems: number;
2428
2433
  perPageOptions: number[];
2429
2434
  itemsPerPageText: string;
2430
- position: "left" | "right" | "center";
2435
+ position: string;
2436
+ infoText: string;
2431
2437
  }, {}>, {
2432
2438
  first?(_: {}): any;
2433
2439
  prev?(_: {}): any;