From fa5fe5ecc8c0749ad31fef528b6aadfe2ed5f4cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20H=E1=BA=A3i=20=C4=90=C4=83ng?= Date: Mon, 30 Oct 2023 23:39:56 +0700 Subject: [PATCH] fix(Datatable): Missing rowEditorSaveButton and rowEditorSaveIcon on ColumnPassThroughOptions (#5197) Co-authored-by: dangnhdev --- components/lib/column/column.d.ts | 8 ++++++++ package-lock.json | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/components/lib/column/column.d.ts b/components/lib/column/column.d.ts index 3451bd8f05..ae54faca6f 100644 --- a/components/lib/column/column.d.ts +++ b/components/lib/column/column.d.ts @@ -328,6 +328,14 @@ export interface ColumnPassThroughOptions { * Uses to pass attributes to the row editor edit icon's DOM element. */ rowEditorEditIcon?: ColumnPassThroughType | React.HTMLAttributes>; + /** + * Uses to pass attributes to the row editor save button's DOM element. + */ + rowEditorSaveButton?: ColumnPassThroughType>; + /** + * Uses to pass attributes to the row editor save icon's DOM element. + */ + rowEditorSaveIcon?: ColumnPassThroughType | React.HTMLAttributes>; /** * Uses to pass attributes to the row editor cancel button's DOM element. */ diff --git a/package-lock.json b/package-lock.json index 031bfaa3e3..e3fc717911 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "primereact", - "version": "10.0.7", + "version": "10.0.8-SNAPSHOT", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "primereact", - "version": "10.0.7", + "version": "10.0.8-SNAPSHOT", "dependencies": { "@docsearch/react": "3.5.2", "chart.js": "4.3.0",