From 6ebbd0f08fed8623037e8bca0dfed7ae8e263618 Mon Sep 17 00:00:00 2001 From: Mikhail Chechnev Date: Tue, 22 Apr 2025 22:56:54 +0300 Subject: [PATCH] =?UTF-8?q?WEBAPP:=20P8PDataGrid=20-=20=D0=B2=D0=BE=D0=B7?= =?UTF-8?q?=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE=D1=81=D1=82=D1=8C=20=D1=83=D0=BF?= =?UTF-8?q?=D1=80=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=81=D1=82?= =?UTF-8?q?=D0=B8=D0=BB=D0=B5=D0=BC=20=D0=BA=D0=BE=D1=80=D0=BD=D0=B5=D0=B2?= =?UTF-8?q?=D0=BE=D0=B3=D0=BE=20=D0=BA=D0=BE=D0=BD=D1=82=D0=B5=D0=B9=D0=BD?= =?UTF-8?q?=D0=B5=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/components/p8p_data_grid.js | 3 +++ app/components/p8p_table.js | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/components/p8p_data_grid.js b/app/components/p8p_data_grid.js index 3107f2e..547370b 100644 --- a/app/components/p8p_data_grid.js +++ b/app/components/p8p_data_grid.js @@ -36,6 +36,7 @@ const P8P_DATA_GRID_FILTERS_HEIGHT = P8P_TABLE_FILTERS_HEIGHT; //Таблица данных const P8PDataGrid = ({ + style = {}, columnsDef = [], filtersInitial, groups = [], @@ -114,6 +115,7 @@ const P8PDataGrid = ({ //Генерация содержимого return ( +
{displayHintColumn ? ( ) : null} @@ -898,6 +899,7 @@ const P8PTable = ({ //Контроль свойств - Таблица P8PTable.propTypes = { + style: PropTypes.object, columnsDef: PropTypes.arrayOf( PropTypes.shape({ name: PropTypes.string.isRequired,