@spark-ui/collapsible 5.3.0 → 5.3.2
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 +10 -0
- package/dist/index.d.ts +2 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
## [5.3.2](https://github.com/adevinta/spark/compare/v5.3.1...v5.3.2) (2024-09-11)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- compound export pattern f\*\* with fwd refs at root level ([c315c0c](https://github.com/adevinta/spark/commit/c315c0c93df34dffca3adf4f279392ff1463c702))
|
|
11
|
+
|
|
12
|
+
## [5.3.1](https://github.com/adevinta/spark/compare/v5.3.0...v5.3.1) (2024-09-10)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @spark-ui/collapsible
|
|
15
|
+
|
|
6
16
|
# [5.3.0](https://github.com/adevinta/spark/compare/v5.2.7...v5.3.0) (2024-09-04)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @spark-ui/collapsible
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { type CollapsibleProps } from './Collapsible';
|
|
1
|
+
import { Collapsible as Root } from './Collapsible';
|
|
3
2
|
import { Content } from './CollapsibleContent';
|
|
4
3
|
import { Trigger } from './CollapsibleTrigger';
|
|
5
|
-
export declare const Collapsible:
|
|
4
|
+
export declare const Collapsible: typeof Root & {
|
|
6
5
|
Trigger: typeof Trigger;
|
|
7
6
|
Content: typeof Content;
|
|
8
7
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spark-ui/collapsible",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.2",
|
|
4
4
|
"description": "An interactive component which expands/collapses a panel.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"homepage": "https://sparkui.vercel.app",
|
|
46
46
|
"license": "MIT",
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@spark-ui/slot": "^5.3.
|
|
48
|
+
"@spark-ui/slot": "^5.3.2",
|
|
49
49
|
"@zag-js/collapsible": "^0.65.0",
|
|
50
50
|
"@zag-js/react": "^0.65.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "d28d0af9c8ab788e2bca6857d8347e9d438935c9"
|
|
53
53
|
}
|