@splunk/react-ui 4.5.2 → 4.5.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.
- package/Accordion.js +3 -2
- package/CHANGELOG.md +5 -0
- package/package.json +1 -1
package/Accordion.js
CHANGED
|
@@ -199,11 +199,12 @@ function Panel(_ref) {
|
|
|
199
199
|
"data-test-panel-id": panelId,
|
|
200
200
|
style: {
|
|
201
201
|
flexShrink: 1
|
|
202
|
-
}
|
|
202
|
+
}
|
|
203
|
+
}, otherProps, {
|
|
203
204
|
onRequestClose: onRequestCloseContext,
|
|
204
205
|
onRequestOpen: onRequestOpenContext,
|
|
205
206
|
open: open
|
|
206
|
-
}
|
|
207
|
+
}));
|
|
207
208
|
}
|
|
208
209
|
|
|
209
210
|
Panel.propTypes = propTypes;
|
package/CHANGELOG.md
CHANGED