@ark-ui/react 1.2.0 → 1.2.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 +6 -0
- package/package.json +7 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,12 @@ description: All notable changes to this project will be documented in this file
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.2.1] - 2023-12-13
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
|
|
13
|
+
- Resolved an issue where the `ark` factory type was not being exported correctly.
|
|
14
|
+
|
|
9
15
|
## [1.2.0] - 2023-12-13
|
|
10
16
|
|
|
11
17
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ark-ui/react",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"accordion",
|
|
@@ -301,10 +301,15 @@
|
|
|
301
301
|
"require": "./tooltip/index.cjs"
|
|
302
302
|
},
|
|
303
303
|
"./factory": {
|
|
304
|
-
"types": "./factory
|
|
304
|
+
"types": "./factory.d.ts",
|
|
305
305
|
"import": "./factory.mjs",
|
|
306
306
|
"require": "./factory.cjs"
|
|
307
307
|
},
|
|
308
|
+
"./portal": {
|
|
309
|
+
"types": "./portal.d.ts",
|
|
310
|
+
"import": "./portal.mjs",
|
|
311
|
+
"require": "./portal.cjs"
|
|
312
|
+
},
|
|
308
313
|
"./package.json": "./package.json"
|
|
309
314
|
}
|
|
310
315
|
}
|