@pimcore/studio-ui-bundle 1.0.0-canary.20251218-110901-17b885a → 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.
- package/dist/build/types/src/core/components/search-input/search-input.d.ts +2 -1
- package/dist/build/types/src/core/modules/reports/dynamic-types/definitions/custom-report-definition-adapters/dynamic-type-custom-report-definition-abstract.d.ts +1 -0
- package/dist/build/types/src/core/modules/reports/dynamic-types/definitions/custom-report-definition-adapters/types/dynamic-type-custom-report-definition-sql-adapter.d.ts +1 -0
- package/dist/build/types/src/core/modules/reports/reports-view/components/report-toolbar/report-toolbar.d.ts +2 -1
- package/package.json +1 -1
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
*/
|
|
10
10
|
import React, { type CSSProperties } from 'react';
|
|
11
11
|
import { type SearchProps as AntSearchProps } from 'antd/es/input/Search';
|
|
12
|
+
import { type InputRef } from 'antd';
|
|
12
13
|
export interface ISearchInputProps extends AntSearchProps {
|
|
13
14
|
className?: string;
|
|
14
15
|
withoutAddon?: boolean;
|
|
@@ -17,4 +18,4 @@ export interface ISearchInputProps extends AntSearchProps {
|
|
|
17
18
|
maxWidth?: CSSProperties['maxWidth'];
|
|
18
19
|
searchButtonIcon?: string;
|
|
19
20
|
}
|
|
20
|
-
export declare const SearchInput:
|
|
21
|
+
export declare const SearchInput: React.ForwardRefExoticComponent<ISearchInputProps & React.RefAttributes<InputRef>>;
|
|
@@ -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 {};
|