@club-employes/utopia 4.224.0 → 4.226.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.
@@ -14,5 +14,6 @@ declare const _default: DefineComponent<PageNavigationProps, {}, {}, {}, {}, Com
14
14
  sizeOptions: number[];
15
15
  showGoToPage: boolean;
16
16
  goToPageLabel: string;
17
+ goToPageDropdownMaxPages: number;
17
18
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
18
19
  export default _default;
@@ -8,4 +8,6 @@ export interface PageNavigationProps {
8
8
  sizeOptions?: number[];
9
9
  showGoToPage?: boolean;
10
10
  goToPageLabel?: string;
11
+ /** Nombre max de pages pour lesquelles le menu déroulant reste utilisé ; au-delà, saisie numérique (évite des centaines de milliers d’options). */
12
+ goToPageDropdownMaxPages?: number;
11
13
  }
@@ -379,6 +379,7 @@ export interface TableProps<T = Record<string, any>> {
379
379
  loading?: boolean;
380
380
  showPaginator?: boolean;
381
381
  rowsPerPageOptions?: number[];
382
+ goToPageDropdownMaxPages?: number;
382
383
  /**
383
384
  * Active la pagination côté serveur (lazy loading).
384
385
  * Quand `true`, les données passées en props doivent déjà être les données de la page actuelle.