@useblu/ocean-react 1.62.0 → 1.62.1
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/CHANGELOG.md +4 -0
- package/index.es.js +1 -1
- package/index.es.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.62.1](https://github.com/ocean-ds/ocean-web/compare/v1.62.0...v1.62.1) (2024-06-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @useblu/ocean-react
|
|
9
|
+
|
|
6
10
|
# [1.62.0](https://github.com/ocean-ds/ocean-web/compare/v1.61.0...v1.62.0) (2024-06-14)
|
|
7
11
|
|
|
8
12
|
### Features
|
package/index.es.js
CHANGED
|
@@ -316,7 +316,7 @@ UnorderedListItem.displayName = 'UnorderedListItem';
|
|
|
316
316
|
|
|
317
317
|
var Accordion = function (_a) {
|
|
318
318
|
var title = _a.title, description = _a.description, className = _a.className;
|
|
319
|
-
var _b = useState(
|
|
319
|
+
var _b = useState(true), isCollapsed = _b[0], setIsCollapsed = _b[1];
|
|
320
320
|
var onHandleAccordion = function () {
|
|
321
321
|
setIsCollapsed(function (prevState) { return !prevState; });
|
|
322
322
|
};
|