@navieo/react 1.0.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/README.md +62 -0
- package/dist/index.d.mts +178 -0
- package/dist/index.d.ts +178 -0
- package/dist/index.js +1356 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1326 -0
- package/dist/index.mjs.map +1 -0
- package/dist/next.d.mts +26 -0
- package/dist/next.d.ts +26 -0
- package/dist/next.js +51 -0
- package/dist/next.js.map +1 -0
- package/dist/next.mjs +27 -0
- package/dist/next.mjs.map +1 -0
- package/package.json +83 -0
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# @navieo/react
|
|
2
|
+
|
|
3
|
+
AI-powered contextual site guide SDK for React and Next.js.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @navieo/react
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Quick Start
|
|
12
|
+
|
|
13
|
+
### React
|
|
14
|
+
|
|
15
|
+
```tsx
|
|
16
|
+
import { NavieoProvider, ChatWidget } from "@navieo/react";
|
|
17
|
+
|
|
18
|
+
function App() {
|
|
19
|
+
return (
|
|
20
|
+
<NavieoProvider currentRoute={window.location.pathname}>
|
|
21
|
+
<ChatWidget />
|
|
22
|
+
{/* your app */}
|
|
23
|
+
</NavieoProvider>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Next.js
|
|
29
|
+
|
|
30
|
+
```tsx
|
|
31
|
+
import { NavieoNextProvider } from "@navieo/react/next";
|
|
32
|
+
|
|
33
|
+
export default function Layout({ children }) {
|
|
34
|
+
return (
|
|
35
|
+
<NavieoNextProvider>
|
|
36
|
+
{children}
|
|
37
|
+
</NavieoNextProvider>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
The Next.js provider automatically handles route detection and navigation.
|
|
43
|
+
|
|
44
|
+
## Exports
|
|
45
|
+
|
|
46
|
+
| Export | Description |
|
|
47
|
+
|--------|-------------|
|
|
48
|
+
| `NavieoProvider` | Context provider with tour and chat state management |
|
|
49
|
+
| `ChatWidget` | Built-in floating chat widget |
|
|
50
|
+
| `useNavieo` | Hook to access tour/chat state and actions |
|
|
51
|
+
| `useTourRenderer` | Hook for custom tour rendering with driver.js |
|
|
52
|
+
| `NavieoNextProvider` | Next.js wrapper (from `@navieo/react/next`) |
|
|
53
|
+
|
|
54
|
+
## Requirements
|
|
55
|
+
|
|
56
|
+
- React 18+ or 19+
|
|
57
|
+
- Next.js 14+ (optional, for `@navieo/react/next`)
|
|
58
|
+
- Node.js >= 18
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
|
|
62
|
+
MIT
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import * as _navieo_types from '@navieo/types';
|
|
4
|
+
import { TourStep } from '@navieo/types';
|
|
5
|
+
export { ElementSelector, GuideRequest, GuideResponse, SitemapDoc, SitemapElement, SitemapFlow, SitemapRoute, TourStep } from '@navieo/types';
|
|
6
|
+
|
|
7
|
+
/** Full sitemap structure with all fields required (React-specific). */
|
|
8
|
+
interface Sitemap {
|
|
9
|
+
appId: string;
|
|
10
|
+
framework: string;
|
|
11
|
+
generatedAt: string;
|
|
12
|
+
routes: _navieo_types.SitemapRoute[];
|
|
13
|
+
flows: _navieo_types.SitemapFlow[];
|
|
14
|
+
docs: _navieo_types.SitemapDoc[];
|
|
15
|
+
}
|
|
16
|
+
/** Current state of the guided tour lifecycle. */
|
|
17
|
+
type TourState = "idle" | "loading" | "active" | "error";
|
|
18
|
+
/** A single message in the chat history. */
|
|
19
|
+
interface ChatMessage {
|
|
20
|
+
/** Whether this message is from the user or the assistant. */
|
|
21
|
+
role: "user" | "assistant";
|
|
22
|
+
/** The text content of the message. */
|
|
23
|
+
content: string;
|
|
24
|
+
}
|
|
25
|
+
/** Value provided by {@link NavieoProvider} via React context. */
|
|
26
|
+
interface NavieoContextValue {
|
|
27
|
+
/** Whether the chat panel is currently visible. */
|
|
28
|
+
isChatOpen: boolean;
|
|
29
|
+
/** Open the chat panel. */
|
|
30
|
+
openChat: () => void;
|
|
31
|
+
/** Close the chat panel. */
|
|
32
|
+
closeChat: () => void;
|
|
33
|
+
/** Toggle the chat panel open/closed. */
|
|
34
|
+
toggleChat: () => void;
|
|
35
|
+
/** Current state of the tour lifecycle. */
|
|
36
|
+
tourState: TourState;
|
|
37
|
+
/** All steps in the current tour. Empty when no tour is active. */
|
|
38
|
+
steps: TourStep[];
|
|
39
|
+
/** Zero-based index of the currently highlighted step. */
|
|
40
|
+
currentStepIndex: number;
|
|
41
|
+
/** The currently highlighted step, or `null` when no tour is active. */
|
|
42
|
+
currentStep: TourStep | null;
|
|
43
|
+
/** Send a natural-language query to the guide API and start a tour. */
|
|
44
|
+
startTour: (query: string) => Promise<void>;
|
|
45
|
+
/** Advance to the next step in the active tour. */
|
|
46
|
+
nextStep: () => void;
|
|
47
|
+
/** Go back to the previous step in the active tour. */
|
|
48
|
+
prevStep: () => void;
|
|
49
|
+
/** Stop the active tour and reset all tour state. */
|
|
50
|
+
endTour: () => void;
|
|
51
|
+
/** Jump to a specific step by index. */
|
|
52
|
+
goToStep: (index: number) => void;
|
|
53
|
+
/** Full chat history (persisted to localStorage). */
|
|
54
|
+
chatHistory: ChatMessage[];
|
|
55
|
+
/** Clear all chat messages from history and localStorage. */
|
|
56
|
+
clearChatHistory: () => void;
|
|
57
|
+
/** The current route/pathname of the host application. */
|
|
58
|
+
currentRoute: string;
|
|
59
|
+
/** Suggestion chips shown in the empty chat state. */
|
|
60
|
+
suggestions?: Array<{
|
|
61
|
+
label: string;
|
|
62
|
+
tag?: string;
|
|
63
|
+
}>;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/** Props for the {@link NavieoProvider} context provider. */
|
|
67
|
+
interface NavieoProviderProps {
|
|
68
|
+
children: React.ReactNode;
|
|
69
|
+
/** Current pathname of the app (e.g., from usePathname, window.location.pathname, etc.) */
|
|
70
|
+
currentRoute: string;
|
|
71
|
+
/** Called when the tour needs to navigate to a different route */
|
|
72
|
+
onNavigate: (route: string) => void;
|
|
73
|
+
/** API endpoint for guide queries. Defaults to "/api/guide". */
|
|
74
|
+
apiEndpoint?: string;
|
|
75
|
+
/** Application identifier */
|
|
76
|
+
appId?: string;
|
|
77
|
+
/** Suggestion chips shown in empty chat state */
|
|
78
|
+
suggestions?: Array<{
|
|
79
|
+
label: string;
|
|
80
|
+
tag?: string;
|
|
81
|
+
}>;
|
|
82
|
+
/** Whether to render the built-in ChatWidget. Default: true */
|
|
83
|
+
renderChat?: boolean;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Root context provider for the Navieo SDK.
|
|
87
|
+
*
|
|
88
|
+
* Manages tour state, chat history, API communication, and cross-page
|
|
89
|
+
* navigation. Wrap your application (or a subtree) with this provider and
|
|
90
|
+
* access the tour/chat API via the {@link useNavieo} hook.
|
|
91
|
+
*
|
|
92
|
+
* @example
|
|
93
|
+
* ```tsx
|
|
94
|
+
* <NavieoProvider currentRoute={pathname} onNavigate={router.push}>
|
|
95
|
+
* <App />
|
|
96
|
+
* </NavieoProvider>
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
declare function NavieoProvider({ children, currentRoute, onNavigate, apiEndpoint, appId, suggestions, renderChat, }: NavieoProviderProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Access the Navieo tour and chat API from any component inside a
|
|
103
|
+
* {@link NavieoProvider}.
|
|
104
|
+
*
|
|
105
|
+
* @throws {Error} If called outside of a `<NavieoProvider>`.
|
|
106
|
+
*
|
|
107
|
+
* @example
|
|
108
|
+
* ```tsx
|
|
109
|
+
* const { startTour, tourState, chatHistory } = useNavieo();
|
|
110
|
+
* ```
|
|
111
|
+
*/
|
|
112
|
+
declare function useNavieo(): NavieoContextValue;
|
|
113
|
+
|
|
114
|
+
interface TourRendererOptions {
|
|
115
|
+
onStepChange?: (stepIndex: number) => void;
|
|
116
|
+
onComplete?: () => void;
|
|
117
|
+
onClose?: () => void;
|
|
118
|
+
/** Called when the tour needs to navigate to a different route. */
|
|
119
|
+
onNavigationNeeded?: (route: string) => void;
|
|
120
|
+
/** Called when the tour fails (e.g. elements not found after polling). */
|
|
121
|
+
onError?: (message: string) => void;
|
|
122
|
+
}
|
|
123
|
+
declare function useTourRenderer(options?: TourRendererOptions): {
|
|
124
|
+
startTour: (steps: TourStep[], currentRoute: string) => void;
|
|
125
|
+
restoreTour: (steps: TourStep[], currentRoute: string) => void;
|
|
126
|
+
stopTour: () => void;
|
|
127
|
+
nextStep: () => void;
|
|
128
|
+
prevStep: () => void;
|
|
129
|
+
goToStep: (index: number) => void;
|
|
130
|
+
continueAfterNavigation: (arrivedRouteOrPattern: string) => void;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Floating chat widget rendered by {@link NavieoProvider} (when `renderChat`
|
|
135
|
+
* is `true`). Provides a text input for guide queries, displays chat history,
|
|
136
|
+
* suggestion chips, and a stop-tour button during active tours.
|
|
137
|
+
*
|
|
138
|
+
* Rendered via `createPortal` into `document.body`.
|
|
139
|
+
*/
|
|
140
|
+
declare function ChatWidget(): React.ReactPortal | null;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Centralized logger for the Navieo SDK.
|
|
144
|
+
*
|
|
145
|
+
* Provides leveled logging (debug, info, warn, error) with a consistent
|
|
146
|
+
* "[Navieo]" prefix. Log level can be controlled at runtime via
|
|
147
|
+
* `Logger.setLevel()` or by setting `window.__NAVIEO_LOG_LEVEL__`.
|
|
148
|
+
*
|
|
149
|
+
* Levels (from most to least verbose):
|
|
150
|
+
* debug → info → warn → error → silent
|
|
151
|
+
*
|
|
152
|
+
* Default level: "info" in development, "warn" in production.
|
|
153
|
+
*/
|
|
154
|
+
type LogLevel = "debug" | "info" | "warn" | "error" | "silent";
|
|
155
|
+
declare class NavieoLogger {
|
|
156
|
+
private level;
|
|
157
|
+
/** Change the active log level at runtime. */
|
|
158
|
+
setLevel(level: LogLevel): void;
|
|
159
|
+
getLevel(): LogLevel;
|
|
160
|
+
private shouldLog;
|
|
161
|
+
/** Verbose diagnostic info — only shown at "debug" level. */
|
|
162
|
+
debug(message: string, ...args: unknown[]): void;
|
|
163
|
+
/** Standard operational info — shown at "info" level and above. */
|
|
164
|
+
info(message: string, ...args: unknown[]): void;
|
|
165
|
+
/** Warnings — shown at "warn" level and above. */
|
|
166
|
+
warn(message: string, ...args: unknown[]): void;
|
|
167
|
+
/** Errors — always shown unless "silent". */
|
|
168
|
+
error(message: string, ...args: unknown[]): void;
|
|
169
|
+
/**
|
|
170
|
+
* Log a structured diagnostic table for tour steps.
|
|
171
|
+
* Only shown at "debug" level.
|
|
172
|
+
*/
|
|
173
|
+
debugSteps(label: string, steps: Array<Record<string, unknown>>): void;
|
|
174
|
+
}
|
|
175
|
+
/** Singleton logger instance used throughout the SDK. */
|
|
176
|
+
declare const logger: NavieoLogger;
|
|
177
|
+
|
|
178
|
+
export { type ChatMessage, ChatWidget, type LogLevel, type NavieoContextValue, NavieoProvider, type NavieoProviderProps, type Sitemap, type TourRendererOptions, type TourState, logger, useNavieo, useTourRenderer };
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import * as _navieo_types from '@navieo/types';
|
|
4
|
+
import { TourStep } from '@navieo/types';
|
|
5
|
+
export { ElementSelector, GuideRequest, GuideResponse, SitemapDoc, SitemapElement, SitemapFlow, SitemapRoute, TourStep } from '@navieo/types';
|
|
6
|
+
|
|
7
|
+
/** Full sitemap structure with all fields required (React-specific). */
|
|
8
|
+
interface Sitemap {
|
|
9
|
+
appId: string;
|
|
10
|
+
framework: string;
|
|
11
|
+
generatedAt: string;
|
|
12
|
+
routes: _navieo_types.SitemapRoute[];
|
|
13
|
+
flows: _navieo_types.SitemapFlow[];
|
|
14
|
+
docs: _navieo_types.SitemapDoc[];
|
|
15
|
+
}
|
|
16
|
+
/** Current state of the guided tour lifecycle. */
|
|
17
|
+
type TourState = "idle" | "loading" | "active" | "error";
|
|
18
|
+
/** A single message in the chat history. */
|
|
19
|
+
interface ChatMessage {
|
|
20
|
+
/** Whether this message is from the user or the assistant. */
|
|
21
|
+
role: "user" | "assistant";
|
|
22
|
+
/** The text content of the message. */
|
|
23
|
+
content: string;
|
|
24
|
+
}
|
|
25
|
+
/** Value provided by {@link NavieoProvider} via React context. */
|
|
26
|
+
interface NavieoContextValue {
|
|
27
|
+
/** Whether the chat panel is currently visible. */
|
|
28
|
+
isChatOpen: boolean;
|
|
29
|
+
/** Open the chat panel. */
|
|
30
|
+
openChat: () => void;
|
|
31
|
+
/** Close the chat panel. */
|
|
32
|
+
closeChat: () => void;
|
|
33
|
+
/** Toggle the chat panel open/closed. */
|
|
34
|
+
toggleChat: () => void;
|
|
35
|
+
/** Current state of the tour lifecycle. */
|
|
36
|
+
tourState: TourState;
|
|
37
|
+
/** All steps in the current tour. Empty when no tour is active. */
|
|
38
|
+
steps: TourStep[];
|
|
39
|
+
/** Zero-based index of the currently highlighted step. */
|
|
40
|
+
currentStepIndex: number;
|
|
41
|
+
/** The currently highlighted step, or `null` when no tour is active. */
|
|
42
|
+
currentStep: TourStep | null;
|
|
43
|
+
/** Send a natural-language query to the guide API and start a tour. */
|
|
44
|
+
startTour: (query: string) => Promise<void>;
|
|
45
|
+
/** Advance to the next step in the active tour. */
|
|
46
|
+
nextStep: () => void;
|
|
47
|
+
/** Go back to the previous step in the active tour. */
|
|
48
|
+
prevStep: () => void;
|
|
49
|
+
/** Stop the active tour and reset all tour state. */
|
|
50
|
+
endTour: () => void;
|
|
51
|
+
/** Jump to a specific step by index. */
|
|
52
|
+
goToStep: (index: number) => void;
|
|
53
|
+
/** Full chat history (persisted to localStorage). */
|
|
54
|
+
chatHistory: ChatMessage[];
|
|
55
|
+
/** Clear all chat messages from history and localStorage. */
|
|
56
|
+
clearChatHistory: () => void;
|
|
57
|
+
/** The current route/pathname of the host application. */
|
|
58
|
+
currentRoute: string;
|
|
59
|
+
/** Suggestion chips shown in the empty chat state. */
|
|
60
|
+
suggestions?: Array<{
|
|
61
|
+
label: string;
|
|
62
|
+
tag?: string;
|
|
63
|
+
}>;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/** Props for the {@link NavieoProvider} context provider. */
|
|
67
|
+
interface NavieoProviderProps {
|
|
68
|
+
children: React.ReactNode;
|
|
69
|
+
/** Current pathname of the app (e.g., from usePathname, window.location.pathname, etc.) */
|
|
70
|
+
currentRoute: string;
|
|
71
|
+
/** Called when the tour needs to navigate to a different route */
|
|
72
|
+
onNavigate: (route: string) => void;
|
|
73
|
+
/** API endpoint for guide queries. Defaults to "/api/guide". */
|
|
74
|
+
apiEndpoint?: string;
|
|
75
|
+
/** Application identifier */
|
|
76
|
+
appId?: string;
|
|
77
|
+
/** Suggestion chips shown in empty chat state */
|
|
78
|
+
suggestions?: Array<{
|
|
79
|
+
label: string;
|
|
80
|
+
tag?: string;
|
|
81
|
+
}>;
|
|
82
|
+
/** Whether to render the built-in ChatWidget. Default: true */
|
|
83
|
+
renderChat?: boolean;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Root context provider for the Navieo SDK.
|
|
87
|
+
*
|
|
88
|
+
* Manages tour state, chat history, API communication, and cross-page
|
|
89
|
+
* navigation. Wrap your application (or a subtree) with this provider and
|
|
90
|
+
* access the tour/chat API via the {@link useNavieo} hook.
|
|
91
|
+
*
|
|
92
|
+
* @example
|
|
93
|
+
* ```tsx
|
|
94
|
+
* <NavieoProvider currentRoute={pathname} onNavigate={router.push}>
|
|
95
|
+
* <App />
|
|
96
|
+
* </NavieoProvider>
|
|
97
|
+
* ```
|
|
98
|
+
*/
|
|
99
|
+
declare function NavieoProvider({ children, currentRoute, onNavigate, apiEndpoint, appId, suggestions, renderChat, }: NavieoProviderProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Access the Navieo tour and chat API from any component inside a
|
|
103
|
+
* {@link NavieoProvider}.
|
|
104
|
+
*
|
|
105
|
+
* @throws {Error} If called outside of a `<NavieoProvider>`.
|
|
106
|
+
*
|
|
107
|
+
* @example
|
|
108
|
+
* ```tsx
|
|
109
|
+
* const { startTour, tourState, chatHistory } = useNavieo();
|
|
110
|
+
* ```
|
|
111
|
+
*/
|
|
112
|
+
declare function useNavieo(): NavieoContextValue;
|
|
113
|
+
|
|
114
|
+
interface TourRendererOptions {
|
|
115
|
+
onStepChange?: (stepIndex: number) => void;
|
|
116
|
+
onComplete?: () => void;
|
|
117
|
+
onClose?: () => void;
|
|
118
|
+
/** Called when the tour needs to navigate to a different route. */
|
|
119
|
+
onNavigationNeeded?: (route: string) => void;
|
|
120
|
+
/** Called when the tour fails (e.g. elements not found after polling). */
|
|
121
|
+
onError?: (message: string) => void;
|
|
122
|
+
}
|
|
123
|
+
declare function useTourRenderer(options?: TourRendererOptions): {
|
|
124
|
+
startTour: (steps: TourStep[], currentRoute: string) => void;
|
|
125
|
+
restoreTour: (steps: TourStep[], currentRoute: string) => void;
|
|
126
|
+
stopTour: () => void;
|
|
127
|
+
nextStep: () => void;
|
|
128
|
+
prevStep: () => void;
|
|
129
|
+
goToStep: (index: number) => void;
|
|
130
|
+
continueAfterNavigation: (arrivedRouteOrPattern: string) => void;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Floating chat widget rendered by {@link NavieoProvider} (when `renderChat`
|
|
135
|
+
* is `true`). Provides a text input for guide queries, displays chat history,
|
|
136
|
+
* suggestion chips, and a stop-tour button during active tours.
|
|
137
|
+
*
|
|
138
|
+
* Rendered via `createPortal` into `document.body`.
|
|
139
|
+
*/
|
|
140
|
+
declare function ChatWidget(): React.ReactPortal | null;
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Centralized logger for the Navieo SDK.
|
|
144
|
+
*
|
|
145
|
+
* Provides leveled logging (debug, info, warn, error) with a consistent
|
|
146
|
+
* "[Navieo]" prefix. Log level can be controlled at runtime via
|
|
147
|
+
* `Logger.setLevel()` or by setting `window.__NAVIEO_LOG_LEVEL__`.
|
|
148
|
+
*
|
|
149
|
+
* Levels (from most to least verbose):
|
|
150
|
+
* debug → info → warn → error → silent
|
|
151
|
+
*
|
|
152
|
+
* Default level: "info" in development, "warn" in production.
|
|
153
|
+
*/
|
|
154
|
+
type LogLevel = "debug" | "info" | "warn" | "error" | "silent";
|
|
155
|
+
declare class NavieoLogger {
|
|
156
|
+
private level;
|
|
157
|
+
/** Change the active log level at runtime. */
|
|
158
|
+
setLevel(level: LogLevel): void;
|
|
159
|
+
getLevel(): LogLevel;
|
|
160
|
+
private shouldLog;
|
|
161
|
+
/** Verbose diagnostic info — only shown at "debug" level. */
|
|
162
|
+
debug(message: string, ...args: unknown[]): void;
|
|
163
|
+
/** Standard operational info — shown at "info" level and above. */
|
|
164
|
+
info(message: string, ...args: unknown[]): void;
|
|
165
|
+
/** Warnings — shown at "warn" level and above. */
|
|
166
|
+
warn(message: string, ...args: unknown[]): void;
|
|
167
|
+
/** Errors — always shown unless "silent". */
|
|
168
|
+
error(message: string, ...args: unknown[]): void;
|
|
169
|
+
/**
|
|
170
|
+
* Log a structured diagnostic table for tour steps.
|
|
171
|
+
* Only shown at "debug" level.
|
|
172
|
+
*/
|
|
173
|
+
debugSteps(label: string, steps: Array<Record<string, unknown>>): void;
|
|
174
|
+
}
|
|
175
|
+
/** Singleton logger instance used throughout the SDK. */
|
|
176
|
+
declare const logger: NavieoLogger;
|
|
177
|
+
|
|
178
|
+
export { type ChatMessage, ChatWidget, type LogLevel, type NavieoContextValue, NavieoProvider, type NavieoProviderProps, type Sitemap, type TourRendererOptions, type TourState, logger, useNavieo, useTourRenderer };
|