Skip to content

Commit eefadaa

Browse files
authored
Add container props on mastercard container (#548)
* Do not allow user selection for mastercard container * Add container props * v4.8.9
1 parent 3e395c9 commit eefadaa

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@netdata/netdata-ui",
3-
"version": "4.8.8",
3+
"version": "4.8.9",
44
"description": "netdata UI kit",
55
"main": "dist/index.js",
66
"module": "dist/es6/index.js",

src/components/pill/alertMastercard.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ const AlertMasterCard = forwardRef(
1515
pillLeft = {},
1616
pillRight = {},
1717
pillEnd,
18+
containerProps = {},
1819
round,
1920
size,
2021
...rest
2122
},
2223
ref
2324
) => {
24-
const commonProps = { height, round, size }
25+
const commonProps = { height, round, size, ...containerProps }
2526
const iconProps = {
2627
background: masterCardColorMap.alert,
2728
color: "text",

src/components/pill/styled.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,19 @@ import { getPillColor } from "./mixins/colors"
55
import getPillPadding from "./mixins/padding"
66

77
export const MasterCardContainer = styled(Flex).attrs(
8-
({ background, height, onClick, round = 999, size }) => ({
8+
({ background, height, onClick, round = 999, size, ...props }) => ({
99
background,
1010
...(onClick && { cursor: "pointer" }),
1111
position: "relative",
1212
round,
1313
size,
14+
...props,
1415
})
1516
)`
17+
-webkit-user-select: ${({ noUserSelection }) => (noUserSelection ? "none" : "auto")};
18+
-ms-user-select: ${({ noUserSelection }) => (noUserSelection ? "none" : "auto")};
19+
user-select: ${({ noUserSelection }) => (noUserSelection ? "none" : "auto")};
20+
1621
* {
1722
cursor: ${({ onClick }) => (onClick ? "pointer" : "inherit")};
1823
}

0 commit comments

Comments
 (0)