@pimcore/studio-ui-bundle 1.0.0-canary.20251222-100500-ca9930c → 1.0.0-canary.20251222-144417-3144bc4

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.
@@ -13,5 +13,6 @@ import { type IReportConfigurationSectionProps } from '../../../../../modules/re
13
13
  export declare abstract class DynamicTypeCustomReportDefinitionAbstract implements DynamicTypeAbstract {
14
14
  abstract readonly id: string;
15
15
  abstract getLabel(): ReactElement;
16
+ abstract getPagination(): boolean;
16
17
  abstract getCustomReportData({ currentData, updateFormData, form }: IReportConfigurationSectionProps): ReactElement;
17
18
  }
@@ -12,5 +12,6 @@ import { DynamicTypeCustomReportDefinitionAbstract } from '../../../../../../mod
12
12
  export declare class DynamicTypeCustomReportDefinitionSqlAdapter extends DynamicTypeCustomReportDefinitionAbstract {
13
13
  id: string;
14
14
  getLabel(): ReactElement;
15
+ getPagination(): boolean;
15
16
  getCustomReportData(props: any): ReactElement;
16
17
  }
@@ -10,11 +10,12 @@
10
10
  import React from 'react';
11
11
  interface IReportToolbarProps {
12
12
  currentReport: string | null;
13
+ showPagination: boolean;
13
14
  page: number;
14
15
  setPage: (page: number) => void;
15
16
  pageSize: number;
16
17
  setPageSize: (pageSize: number) => void;
17
18
  totalItems: number;
18
19
  }
19
- export declare const ReportToolbar: ({ currentReport, page, setPage, pageSize, setPageSize, totalItems }: IReportToolbarProps) => React.JSX.Element | null;
20
+ export declare const ReportToolbar: ({ currentReport, showPagination, page, setPage, pageSize, setPageSize, totalItems }: IReportToolbarProps) => React.JSX.Element | null;
20
21
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pimcore/studio-ui-bundle",
3
- "version": "1.0.0-canary.20251222-100500-ca9930c",
3
+ "version": "1.0.0-canary.20251222-144417-3144bc4",
4
4
  "keywords": [
5
5
  "pimcore",
6
6
  "pimcore-studio-ui"