From 9588e971aec770120dd22f3b49d9ebc27dd4a9eb Mon Sep 17 00:00:00 2001 From: John Kapantzakis Date: Mon, 26 Jan 2026 11:35:56 +0200 Subject: [PATCH 1/2] Add containerProps to ModalFooter --- src/components/modal/index.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/modal/index.js b/src/components/modal/index.js index fe65a08f5..b8dbcaf6a 100644 --- a/src/components/modal/index.js +++ b/src/components/modal/index.js @@ -29,8 +29,15 @@ export const ModalBody = ({ children, testId, ...rest }) => ( ) -export const ModalFooter = ({ children, hasBorder = true, parentPadding, testId, ...rest }) => ( - +export const ModalFooter = ({ + children, + hasBorder = true, + parentPadding, + testId, + containerProps = {}, + ...rest +}) => ( + Date: Mon, 26 Jan 2026 11:37:23 +0200 Subject: [PATCH 2/2] v5.1.16 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1b5edb210..3b97a5909 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@netdata/netdata-ui", - "version": "5.1.15", + "version": "5.1.16", "description": "netdata UI kit", "main": "dist/index.js", "module": "dist/es6/index.js",