playbook_ui 5.0.2 → 5.0.3
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.
- checksums.yaml +4 -4
- data/app/pb_kits/playbook/pb_popover/_popover.jsx +3 -3
- data/lib/playbook/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1e174bca788162531e012abe7965a6f55f22946fc401fa48ac9af5149aae68f
|
|
4
|
+
data.tar.gz: 501657b6d54c78b37f73353f9724b4f53c713b03ea46b9dbb7ccddfbbd243aa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2868dbd54dd490a5571ced71dbdc06c97ce4271d94c93dae72c3214be7eed92386e01fda2d98ece9eafdb231bfb77525a50f47e0e37460ef820a31c24717df2
|
|
7
|
+
data.tar.gz: b5632f20a05071da8e2d14b480508c1013ca090fbf37caeb2e90e6baf7c2fc6246e60c5d477b3f58f24ab6dcb8a8e1bf0164f1c3abbc2c443673741ae8152bbe
|
|
@@ -90,12 +90,12 @@ const Popover = (props: PbPopoverProps) => {
|
|
|
90
90
|
>
|
|
91
91
|
<div
|
|
92
92
|
className={classnames(
|
|
93
|
-
`${buildCss('
|
|
93
|
+
`${buildCss('pb_popover_tooltip')} show`
|
|
94
94
|
)}
|
|
95
95
|
>
|
|
96
96
|
<div
|
|
97
97
|
className={classnames(
|
|
98
|
-
'
|
|
98
|
+
'pb_popover_body',
|
|
99
99
|
popoverSpacing
|
|
100
100
|
)}
|
|
101
101
|
style={widthHeightStyles()}
|
|
@@ -128,7 +128,7 @@ export default class PbReactPopover extends React.Component
|
|
|
128
128
|
|
|
129
129
|
document.body.addEventListener('click', ({ target }) => {
|
|
130
130
|
const targetIsPopover =
|
|
131
|
-
target.closest('[class^=
|
|
131
|
+
target.closest('[class^=pb_popover_tooltip]') !== null
|
|
132
132
|
const targetIsReference =
|
|
133
133
|
target.closest('.pb_popover_reference_wrapper') !== null
|
|
134
134
|
|
data/lib/playbook/version.rb
CHANGED