@tour-kit/hints 0.2.0 → 0.3.0
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 +24 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @tour-kit/hints
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ### @tour-kit/react
|
|
8
|
+
|
|
9
|
+
- Fix `Tour` component to properly render children content alongside tour steps
|
|
10
|
+
- Add `TourCard`, `TourOverlay`, and navigation components with Floating UI positioning
|
|
11
|
+
- Add primitive components: `TourPortal`, `TourArrow`
|
|
12
|
+
|
|
13
|
+
### @tour-kit/core
|
|
14
|
+
|
|
15
|
+
- Export hooks and utilities for tour state management
|
|
16
|
+
- Add focus trap, keyboard navigation, and spotlight hooks
|
|
17
|
+
|
|
18
|
+
### @tour-kit/hints
|
|
19
|
+
|
|
20
|
+
- Initial hints package setup
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @tour-kit/core@0.3.0
|
|
26
|
+
|
|
3
27
|
## 0.2.0
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tour-kit/hints",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Headless onboarding and product tour library for React - Hints package",
|
|
5
5
|
"author": "Tour Kit Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"registry": "https://registry.npmjs.org/"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@tour-kit/core": "0.
|
|
56
|
+
"@tour-kit/core": "0.3.0"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
59
|
"react": "^18.0.0 || >=19.2.0",
|