@hortiview/shared-components 1.1.2 → 1.2.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.
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [1.2.0](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/compare/v1.1.2...v1.2.0) (2025-04-02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* new props to handle default pagination strings added, changelog added to storybook ([491978e](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/commit/491978e20c27183de69f18072b135bf4b438aa02))
|
|
7
|
+
|
|
1
8
|
## [1.1.2](https://dev.azure.com/sdundc/HV%20Platform/_git/HortiView-Frontend-Shared/compare/v1.1.1...v1.1.2) (2025-03-31)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -54,6 +54,9 @@ import { TableLayoutProps } from '../../types/GenericTable';
|
|
|
54
54
|
* @param title title of the table
|
|
55
55
|
* @param cardTitleColumn column to be used as the title in the card layout
|
|
56
56
|
* @param cardSubTitleColumn column to be used as the subtitle in the card layout
|
|
57
|
+
* @param pageTranslation translation for the pagination text 'Page'
|
|
58
|
+
* @param pageOfTranslation translation for the pagination text 'of'
|
|
59
|
+
* @param rowsPerPageTranslation translation for the pagination text 'Rows per page'
|
|
57
60
|
* @returns a table based on a given type and data
|
|
58
61
|
*/
|
|
59
|
-
export declare const GenericTable: <T>({ data, hiddenColumns, order, cellTemplates, tableActions, noContentText, headerTranslation, pagination, getRowActions, customColumnWidth, title, cardTitleColumn, cardSubTitleColumn, }: TableLayoutProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
62
|
+
export declare const GenericTable: <T>({ data, hiddenColumns, order, cellTemplates, tableActions, noContentText, headerTranslation, pagination, getRowActions, customColumnWidth, title, cardTitleColumn, cardSubTitleColumn, pageTranslation, pageOfTranslation, rowsPerPageTranslation, }: TableLayoutProps<T>) => import("react/jsx-runtime").JSX.Element;
|