xertica-ui 2.0.2 → 2.0.4

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +1 -1
  3. package/bin/cli.ts +2 -1
  4. package/components/assistant/markdown-message/markdown-message.mdx +1 -1
  5. package/components/brand/language-selector/language-selector.mdx +1 -1
  6. package/components/brand/theme-toggle/theme-toggle.mdx +1 -1
  7. package/components/brand/xertica-logo/xertica-logo.mdx +1 -1
  8. package/components/brand/xertica-provider/xertica-provider.mdx +1 -1
  9. package/components/brand/xertica-xlogo/xertica-xlogo.mdx +1 -1
  10. package/components/index.ts +6 -0
  11. package/components/layout/header/header.mdx +1 -1
  12. package/components/layout/sidebar/sidebar.mdx +2 -1
  13. package/components/media/floating-media-wrapper.mdx +2 -2
  14. package/components/pages/forgot-password-page/ForgotPasswordPage.tsx +2 -4
  15. package/components/pages/home-content/HomeContent.tsx +1 -1
  16. package/components/pages/home-content/home-content.mdx +1 -1
  17. package/components/pages/home-page/HomePage.stories.tsx +39 -0
  18. package/components/pages/home-page/HomePage.tsx +2 -3
  19. package/components/pages/home-page/home-page.mdx +56 -0
  20. package/components/pages/login-page/LoginPage.tsx +2 -5
  21. package/components/pages/reset-password-page/reset-password-page.mdx +6 -2
  22. package/components/pages/template-page/TemplatePage.stories.tsx +39 -0
  23. package/components/pages/template-page/TemplatePage.tsx +3 -1
  24. package/components/pages/template-page/template-page.mdx +54 -0
  25. package/components/pages/verify-email-page/VerifyEmailPage.tsx +2 -4
  26. package/components/ui/accordion/accordion.stories.tsx +27 -1
  27. package/components/ui/alert-dialog/alert-dialog.stories.tsx +30 -0
  28. package/components/ui/button/button.stories.tsx +23 -0
  29. package/components/ui/checkbox/checkbox.stories.tsx +20 -1
  30. package/components/ui/dialog/dialog.stories.tsx +30 -0
  31. package/components/ui/google-maps-loader/google-maps-loader.mdx +1 -1
  32. package/components/ui/input/input.stories.tsx +24 -0
  33. package/components/ui/switch/switch.stories.tsx +20 -1
  34. package/components/ui/tabs/tabs.stories.tsx +26 -1
  35. package/components.json +1507 -530
  36. package/dist/cli.js +3 -2
  37. package/dist/components/index.d.ts +6 -0
  38. package/dist/index.cjs.js +1233 -484
  39. package/dist/index.es.js +778 -28
  40. package/dist/ui.cjs.js +178 -178
  41. package/dist/ui.es.js +1 -1
  42. package/dist/use-mobile-CaENcqm-.js +4508 -0
  43. package/dist/use-mobile-DMOvImGQ.cjs +4542 -0
  44. package/dist/xertica-ui.css +1 -1
  45. package/docs/decision-tree.md +287 -0
  46. package/guidelines/Guidelines.md +250 -657
  47. package/llms-compact.txt +327 -0
  48. package/llms.txt +160 -71
  49. package/package.json +193 -192
  50. package/templates/CLAUDE.md +160 -0
  51. package/templates/guidelines/Guidelines.md +245 -99
  52. package/templates/package.json +3 -3
package/components.json CHANGED
@@ -1,531 +1,1508 @@
1
- [
2
- {
3
- "name": "accordion",
4
- "docPath": "docs/components/accordion.md",
5
- "sourcePath": "components/ui/accordion/index.ts",
6
- "description": "A vertically stacked set of collapsible sections. Each section has a clickable trigger header that reveals or hides its content. Ideal for FAQs, configuration settings, and dense navigation trees where only one (or a few) section needs to be visible at a time."
7
- },
8
- {
9
- "name": "alert-dialog",
10
- "docPath": "docs/components/alert-dialog.md",
11
- "sourcePath": "components/ui/alert-dialog/index.ts",
12
- "description": "A specialized modal for **irreversible destructive actions** — delete, revoke, reset, permanently disable. Unlike `Dialog`, `AlertDialog` enforces that the user must explicitly confirm or cancel; clicking outside does not dismiss it."
13
- },
14
- {
15
- "name": "alert",
16
- "docPath": "docs/components/alert.md",
17
- "sourcePath": "components/ui/alert/index.ts",
18
- "description": "An inline message banner used to communicate status, feedback, or important contextual information directly within the page content — without interrupting the user flow. Unlike `Sonner` (toast notifications), alerts are persistent and visible at all times."
19
- },
20
- {
21
- "name": "aspect-ratio",
22
- "docPath": "docs/components/aspect-ratio.md",
23
- "sourcePath": "components/ui/aspect-ratio/index.ts",
24
- "description": "A container that maintains a fixed width-to-height ratio regardless of the available space. Prevents layout shifts when loading images, videos, or charts. Use when content must always fill a specific shape."
25
- },
26
- {
27
- "name": "assistant-chart",
28
- "docPath": "docs/components/assistant-chart.md",
29
- "sourcePath": "components/ui/assistant-chart/index.ts",
30
- "description": "A specialized data visualization component optimized for display within the AI Assistant panel. It provides a pre-configured responsive BarChart using the library's design system tokens."
31
- },
32
- {
33
- "name": "audio-player",
34
- "docPath": "docs/components/audio-player.md",
35
- "sourcePath": "components/media/audio-player/index.ts",
36
- "description": "A global, floating audio playback bar designed for process tracking and podcast consumption. It features a responsive layout that automatically adjusts to the state of the sidebar and AI assistant."
37
- },
38
- {
39
- "name": "avatar",
40
- "docPath": "docs/components/avatar.md",
41
- "sourcePath": "components/ui/avatar/index.ts",
42
- "description": "Displays a user's identity visually either as a profile photo or as an initials-based fallback. Used in headers, sidebars, comment threads, and table rows to represent people."
43
- },
44
- {
45
- "name": "badge",
46
- "docPath": "docs/components/badge.md",
47
- "sourcePath": "components/ui/badge/index.ts",
48
- "description": "A compact, inline label used to communicate status, category, or count. Badges are always non-interactive by default — they display information, not trigger actions."
49
- },
50
- {
51
- "name": "breadcrumb",
52
- "docPath": "docs/components/breadcrumb.md",
53
- "sourcePath": "components/ui/breadcrumb/index.ts",
54
- "description": "A hierarchical navigation trail showing the user's current position in the application's page structure. Rendered in the `Header` component via the `breadcrumbs` prop. Each item in the chain can optionally be a clickable link."
55
- },
56
- {
57
- "name": "button",
58
- "docPath": "docs/components/button.md",
59
- "sourcePath": "components/ui/button/index.ts",
60
- "description": "The primary interaction trigger. Use `Button` for any user-initiated action: form submission, navigation triggers, dialog openers, and destructive confirmations. It supports multiple visual variants, sizes, icon-only mode, and the `asChild` pattern for composing with router links."
61
- },
62
- {
63
- "name": "calendar",
64
- "docPath": "docs/components/calendar.md",
65
- "sourcePath": "components/ui/calendar/index.ts",
66
- "description": "A date picker calendar that renders a monthly grid of selectable days. Built on `react-day-picker`. Almost always used inside a `<Popover>` to provide an accessible, accessible date input. Supports single date selection, multiple dates, and date ranges."
67
- },
68
- {
69
- "name": "card",
70
- "docPath": "docs/components/card.md",
71
- "sourcePath": "components/ui/card/index.ts",
72
- "description": "The primary structural container for all content blocks in the application. `Card` provides elevation (via box shadow), background/border tokens, and a consistent internal padding system. It is the single correct way to create content panels — never recreate it with raw `<div>` utility classes."
73
- },
74
- {
75
- "name": "carousel",
76
- "docPath": "docs/components/carousel.md",
77
- "sourcePath": "components/ui/carousel/index.ts",
78
- "description": "A horizontal content slider that lets users navigate through a set of panels or cards one at a time. Built on `embla-carousel-react`. Provides Previous/Next navigation buttons and optional indicator dots."
79
- },
80
- {
81
- "name": "chart",
82
- "docPath": "docs/components/chart.md",
83
- "sourcePath": "components/ui/chart/index.ts",
84
- "description": "Xertica UI provides a `ChartContainer` wrapper and related components built on top of **Recharts** for theme-aware, token-driven chart rendering. The chart system uses a `ChartConfig` object to define series labels and colors via CSS variables, ensuring full dark-mode support without hard-coded hex values."
85
- },
86
- {
87
- "name": "checkbox",
88
- "docPath": "docs/components/checkbox.md",
89
- "sourcePath": "components/ui/checkbox/index.ts",
90
- "description": "A binary toggle that lets users select or deselect a single option, or mark multiple independent options in a list. Built on Radix UI with accessible keyboard behavior and ARIA roles."
91
- },
92
- {
93
- "name": "collapsible",
94
- "docPath": "docs/components/collapsible.md",
95
- "sourcePath": "components/ui/collapsible/index.ts",
96
- "description": "A single expandable/collapsible content section with a trigger header. Unlike `<Accordion>`, `Collapsible` is a standalone element — it has no sibling items and no managed \"only one open\" behavior."
97
- },
98
- {
99
- "name": "command",
100
- "docPath": "docs/components/command.md",
101
- "sourcePath": "components/ui/command/index.ts",
102
- "description": "A command palette for searching and executing actions via keyboard — triggered by `⌘K` / `Ctrl+K`. Provides a searchable, filterable list of commands, navigation items, and quick actions. Built on `cmdk`."
103
- },
104
- {
105
- "name": "context-menu",
106
- "docPath": "docs/components/context-menu.md",
107
- "sourcePath": "components/ui/context-menu/index.ts",
108
- "description": "A menu that appears when the user right-clicks (or long-presses on mobile) a trigger area. Provides a familiar OS-native contextual menu pattern for power-user interactions. Built on Radix UI."
109
- },
110
- {
111
- "name": "dialog",
112
- "docPath": "docs/components/dialog.md",
113
- "sourcePath": "components/ui/dialog/index.ts",
114
- "description": "A modal overlay that interrupts the page flow to capture user attention for critical confirmations, data entry, or detailed views. Built on Radix UI Dialog with managed focus trapping, keyboard escape, and backdrop click-to-dismiss."
115
- },
116
- {
117
- "name": "drawer",
118
- "docPath": "docs/components/drawer.md",
119
- "sourcePath": "components/ui/drawer/index.ts",
120
- "description": "A panel that slides in from the bottom edge of the screen — the mobile-optimized equivalent of `<Sheet>`. Drawers are the standard interaction pattern for panels on mobile, providing a more natural bottom-to-top gesture feel."
121
- },
122
- {
123
- "name": "dropdown-menu",
124
- "docPath": "docs/components/dropdown-menu.md",
125
- "sourcePath": "components/ui/dropdown-menu/index.ts",
126
- "description": "A triggered contextual menu that appears anchored below (or beside) a trigger element. Used for row actions in tables, secondary navigation options, and grouped control menus. Built on Radix UI with full keyboard navigation."
127
- },
128
- {
129
- "name": "empty",
130
- "docPath": "docs/components/empty.md",
131
- "sourcePath": "components/ui/empty/index.ts",
132
- "description": "A structured zero-state container rendered when a list, table, or search returns no results. Uses a composable primitive pattern (`Empty + EmptyIcon + EmptyTitle + EmptyDescription + EmptyAction`) to provide a flexible, consistent empty-state experience."
133
- },
134
- {
135
- "name": "file-upload",
136
- "docPath": "docs/components/file-upload.md",
137
- "sourcePath": "components/ui/file-upload/index.ts",
138
- "description": "A drag-and-drop file input component that accepts one or multiple files. Renders a dropzone area with visual feedback on drag, displays selected file names, and validates against allowed MIME types and file size limits."
139
- },
140
- {
141
- "name": "form",
142
- "docPath": "docs/components/form.md",
143
- "sourcePath": "components/ui/form/index.ts",
144
- "description": "`Form` is the integration layer between `react-hook-form` and Xertica UI components. It provides a context-aware set of wrappers (`FormField`, `FormItem`, `FormLabel`, `FormControl`, `FormMessage`, `FormDescription`) that automatically connect to form state, display validation errors, and manage ARIA attributes."
145
- },
146
- {
147
- "name": "google-maps-loader",
148
- "docPath": "docs/components/google-maps-loader.md",
149
- "sourcePath": "components/ui/google-maps-loader/index.ts",
150
- "description": "The utility provider and hook responsible for the lazy-loading and initialization of the Google Maps JavaScript API. It is automatically managed by the `XerticaProvider`."
151
- },
152
- {
153
- "name": "header",
154
- "docPath": "docs/components/header.md",
155
- "sourcePath": "components/layout/header/index.ts",
156
- "description": "The `Header` is the global application top bar — a fixed-height strip (`64px`) rendered at the top of the application shell. It provides a standardized navigation trail (breadcrumbs) and universal system controls."
157
- },
158
- {
159
- "name": "hover-card",
160
- "docPath": "docs/components/hover-card.md",
161
- "sourcePath": "components/ui/hover-card/index.ts",
162
- "description": "A floating content panel that appears when hovering over a trigger element — designed for previewing additional information without navigating away. Unlike `Tooltip` (short text hints), `HoverCard` can contain rich content: user profiles, link previews, image thumbnails."
163
- },
164
- {
165
- "name": "input-otp",
166
- "docPath": "docs/components/input-otp.md",
167
- "sourcePath": "components/ui/input-otp/index.ts",
168
- "description": "A one-time password / PIN code input that renders a segmented grid of individual character slots. Designed for MFA flows, email verification codes, and any numeric code entry."
169
- },
170
- {
171
- "name": "input",
172
- "docPath": "docs/components/input.md",
173
- "sourcePath": "components/ui/input/index.ts",
174
- "description": "The standard text field component. Use it for all single-line text inputs: names, emails, search queries, codes. Integrates seamlessly with `react-hook-form` via the `{...field}` spread pattern."
175
- },
176
- {
177
- "name": "label",
178
- "docPath": "docs/components/label.md",
179
- "sourcePath": "components/ui/label/index.ts",
180
- "description": "An accessible form field label that is always associated with a specific input via `htmlFor`. Automatically applies styling that visually communicates field relationships and disabled states. Used in every form — standalone or via `<FormLabel>` inside the `Form` system."
181
- },
182
- {
183
- "name": "language-selector",
184
- "docPath": "docs/components/language-selector.md",
185
- "sourcePath": "components/brand/language-selector/index.ts",
186
- "description": "A standalone dropdown component for switching the interface language. Manages its own local state and calls an optional `onLanguageChange` callback when the selection changes."
187
- },
188
- {
189
- "name": "map",
190
- "docPath": "docs/components/map.md",
191
- "sourcePath": "components/ui/map/index.ts",
192
- "description": "A Google Maps integration component that renders an interactive map with markers, polygons, and custom controls. Powered by the Google Maps JavaScript API via `@vis.gl/react-google-maps`."
193
- },
194
- {
195
- "name": "markdown-message",
196
- "docPath": "docs/components/markdown-message.md",
197
- "sourcePath": "components/assistant/markdown-message/index.ts",
198
- "description": "The primary renderer for AI-generated text content within the Xertica Assistant. It converts raw Markdown into themed React components with support for syntax highlighting, lists, and tables."
199
- },
200
- {
201
- "name": "menubar",
202
- "docPath": "docs/components/menubar.md",
203
- "sourcePath": "components/ui/menubar/index.ts",
204
- "description": "An application-style horizontal menu bar with multiple dropdown menus — similar to the menu bars in desktop applications (File, Edit, View…). Less common in web apps but useful for power-user tools and editors."
205
- },
206
- {
207
- "name": "navigation-menu",
208
- "docPath": "docs/components/navigation-menu.md",
209
- "sourcePath": "components/ui/navigation-menu/index.ts",
210
- "description": "A horizontal navigation bar designed for top-level application sections. Supports dropdown sub-menus with rich content panels. Use it as a secondary top navigation when the primary navigation is in the `<Sidebar>`. Built on Radix UI NavigationMenu."
211
- },
212
- {
213
- "name": "notification-badge",
214
- "docPath": "docs/components/notification-badge.md",
215
- "sourcePath": "components/ui/notification-badge/index.ts",
216
- "description": "A small overlay indicator that appears on top of another element (typically an icon button) to communicate an unread count or attention cue. Appears as a colored dot (attention) or a numbered badge (count)."
217
- },
218
- {
219
- "name": "page-header",
220
- "docPath": "docs/components/page-header.md",
221
- "sourcePath": "components/ui/page-header/index.ts",
222
- "description": "The `PageHeader` is a content-level component used to provide immediate context for a specific page or section. It focuses on the page title, subtitle, back navigation, and primary local actions (like \"Create\" or \"Edit\")."
223
- },
224
- {
225
- "name": "pagination",
226
- "docPath": "docs/components/pagination.md",
227
- "sourcePath": "components/ui/pagination/index.ts",
228
- "description": "A navigation control for moving through pages of a large dataset. Renders Previous/Next buttons, numbered page buttons, and ellipsis for large page counts. Use it below data tables to control which page of records is displayed."
229
- },
230
-
231
- {
232
- "name": "popover",
233
- "docPath": "docs/components/popover.md",
234
- "sourcePath": "components/ui/popover/index.ts",
235
- "description": "A floating panel anchored to a trigger element that presents additional information or controls without navigating away from the current context. Unlike `Tooltip`, Popover content can be interactive — forms, date pickers, settings panels, filter controls."
236
- },
237
- {
238
- "name": "progress",
239
- "docPath": "docs/components/progress.md",
240
- "sourcePath": "components/ui/progress/index.ts",
241
- "description": "A visual indicator of completion or percentage. Renders a horizontal bar filled to a given percentage. It is purely display-only — for interactive value selection, use `<Slider>`."
242
- },
243
- {
244
- "name": "radio-group",
245
- "docPath": "docs/components/radio-group.md",
246
- "sourcePath": "components/ui/radio-group/index.ts",
247
- "description": "A set of mutually exclusive options where selecting one automatically deselects all others. Built on Radix UI with full keyboard navigation (arrow keys cycle through options). Use when only one choice from a defined set is valid."
248
- },
249
- {
250
- "name": "rating",
251
- "docPath": "docs/components/rating.md",
252
- "sourcePath": "components/ui/rating/index.ts",
253
- "description": "A star-based rating input that allows users to rate items on a 1–5 (or custom range) scale. Supports both interactive rating input and read-only display modes."
254
- },
255
- {
256
- "name": "resizable",
257
- "docPath": "docs/components/resizable.md",
258
- "sourcePath": "components/ui/resizable/index.ts",
259
- "description": "A panel splitter that lets users resize adjacent panels by dragging a handle. Used in IDE-style layouts, split-view editors, and any interface where two panels need to share space dynamically."
260
- },
261
- {
262
- "name": "rich-text-editor",
263
- "docPath": "docs/components/rich-text-editor.md",
264
- "sourcePath": "components/ui/rich-text-editor/index.ts",
265
- "description": "A lightweight, native WYSIWYG (What You See Is What You Get) document text editor built into the Xertica UI framework. It utilizes the browser's native `contentEditable` architecture and `document.execCommand` under the hood to provide essential text formatting without the overhead of massive third-party rendering engines."
266
- },
267
- {
268
- "name": "route-map",
269
- "docPath": "docs/components/route-map.md",
270
- "sourcePath": "components/ui/route-map/index.ts",
271
- "description": "A specialized Google Maps component that calculates and renders a route between an origin and destination point, with support for intermediate waypoints and multiple travel modes. The route is drawn on the map using the Google Directions Service, and optionally returns the calculated distance and duration."
272
- },
273
- {
274
- "name": "scroll-area",
275
- "docPath": "docs/components/scroll-area.md",
276
- "sourcePath": "components/ui/scroll-area/index.ts",
277
- "description": "A cross-browser, themeable scrollable container with custom scrollbar styling. Use instead of native `overflow-y-auto` when the scrollbar needs to match the application's design system (instead of the OS default scrollbar)."
278
- },
279
- {
280
- "name": "search",
281
- "docPath": "docs/components/search.md",
282
- "sourcePath": "components/ui/search/index.ts",
283
- "description": "A pre-built search input with a built-in search icon and clear button. Supports `sm`, `md`, `lg` size variants matching the Input scale. Handles Escape-to-clear and exposes `onSearch` for simple string callbacks."
284
- },
285
- {
286
- "name": "select",
287
- "docPath": "docs/components/select.md",
288
- "sourcePath": "components/ui/select/index.ts",
289
- "description": "A styled dropdown for selecting a single option from a list. Built on Radix UI, it provides a fully accessible combobox with keyboard navigation, portaled content, and proper ARIA semantics. Always use `<Select>` from `xertica-ui` — never use native `<select>`."
290
- },
291
- {
292
- "name": "separator",
293
- "docPath": "docs/components/separator.md",
294
- "sourcePath": "components/ui/separator/index.ts",
295
- "description": "A thin horizontal (or vertical) line that visually divides sections of content. Primarily decorative but semantically meaningful as an `<hr>` element. Used to create visual breathing room between logically distinct sections."
296
- },
297
- {
298
- "name": "sheet",
299
- "docPath": "docs/components/sheet.md",
300
- "sourcePath": "components/ui/sheet/index.ts",
301
- "description": "An edge-anchored slide-in panel that overlays the current page from one side — top, right, bottom, or left. Like `Dialog` but more suitable for forms or detail views that benefit from more vertical space, or for secondary navigation and controls on mobile."
302
- },
303
- {
304
- "name": "sidebar",
305
- "docPath": "docs/components/sidebar.md",
306
- "sourcePath": "components/layout/sidebar/index.ts",
307
- "description": "The `Sidebar` is the primary vertical navigation panel of the application shell. It manages the app's hierarchy, supporting simple lists, grouped items, and an advanced \"Assistant\" mode for AI-driven or data-rich interfaces."
308
- },
309
- {
310
- "name": "simple-map",
311
- "docPath": "docs/components/simple-map.md",
312
- "sourcePath": "components/ui/simple-map/index.ts",
313
- "description": "A simplified wrapper for common map use cases where you only need a single marker and basic configuration."
314
- },
315
- {
316
- "name": "skeleton",
317
- "docPath": "docs/components/skeleton.md",
318
- "sourcePath": "components/ui/skeleton/index.ts",
319
- "description": "A loading placeholder that mimics the shape and dimensions of content while it's being fetched. Use it to provide visual continuity and reduce perceived load time — never leave blank white space while content is loading."
320
- },
321
- {
322
- "name": "slider",
323
- "docPath": "docs/components/slider.md",
324
- "sourcePath": "components/ui/slider/index.ts",
325
- "description": "A range input control that lets users select a numeric value by dragging a thumb along a track. Used for quantity selectors, volume controls, percentage settings, and any value within a continuous range."
326
- },
327
- {
328
- "name": "sonner",
329
- "docPath": "docs/components/sonner.md",
330
- "sourcePath": "components/ui/sonner/index.ts",
331
- "description": "Sonner is the toast notification system. It displays ephemeral feedback messages that appear at a fixed position on screen (top-right by default), auto-dismiss after a few seconds, and can be dismissed manually. `<Toaster>` is auto-injected by `<XerticaProvider>` — you never need to render it manually."
332
- },
333
- {
334
- "name": "stats-card",
335
- "docPath": "docs/components/stats-card.md",
336
- "sourcePath": "components/ui/stats-card/index.ts",
337
- "description": "A pre-built KPI (Key Performance Indicator) card for dashboard overview pages. Renders a metric title, a large value, an optional trend indicator with automatic up/down/neutral icon, and an optional icon."
338
- },
339
- {
340
- "name": "stepper",
341
- "docPath": "docs/components/stepper.md",
342
- "sourcePath": "components/ui/stepper/index.ts",
343
- "description": "A visual multi-step progress indicator that shows the user's current position within a sequential process. Uses a composable primitive pattern: `<Stepper>` wraps one or more `<Step>` children, automatically inferring the total number of steps."
344
- },
345
- {
346
- "name": "switch",
347
- "docPath": "docs/components/switch.md",
348
- "sourcePath": "components/ui/switch/index.ts",
349
- "description": "A binary toggle control that represents an on/off state — similar to a physical light switch. More prominent and visually expressive than a `<Checkbox>`. Used for feature toggles, notification settings, accessibility preferences, and any prominent boolean setting."
350
- },
351
- {
352
- "name": "table",
353
- "docPath": "docs/components/table.md",
354
- "sourcePath": "components/ui/table/index.ts",
355
- "description": "Structured tabular data display. Provides semantic HTML table elements wrapped in accessible, styled components. Used in CRUD list pages, reports, and any data-heavy view where rows represent records and columns represent attributes."
356
- },
357
- {
358
- "name": "tabs",
359
- "docPath": "docs/components/tabs.md",
360
- "sourcePath": "components/ui/tabs/index.ts",
361
- "description": "A content switcher that organizes related views under labelled tab triggers. One tab is active at a time. Used for multi-view dashboards, analytics pages, settings sections, and any context where content is segmented but logically related."
362
- },
363
- {
364
- "name": "textarea",
365
- "docPath": "docs/components/textarea.md",
366
- "sourcePath": "components/ui/textarea/index.ts",
367
- "description": "A multi-line text input for longer content: descriptions, notes, messages, and rich text fields. Automatically resizable or fixed, depending on the `resize` CSS class applied."
368
- },
369
- {
370
- "name": "theme-toggle",
371
- "docPath": "docs/components/theme-toggle.md",
372
- "sourcePath": "components/brand/theme-toggle/index.ts",
373
- "description": "A self-contained light/dark mode toggle button that operates directly on the `document.documentElement` class list."
374
- },
375
- {
376
- "name": "timeline",
377
- "docPath": "docs/components/timeline.md",
378
- "sourcePath": "components/ui/timeline/index.ts",
379
- "description": "A vertical sequence of events displayed chronologically, each with a timestamp, title, and optional description. Used in activity logs, audit trails, case histories, and notification feeds."
380
- },
381
- {
382
- "name": "toggle-group",
383
- "docPath": "docs/components/toggle-group.md",
384
- "sourcePath": "components/ui/toggle-group/index.ts",
385
- "description": "A set of related `<Toggle>` buttons that operate together — either allowing only one selection at a time (`type=\"single\"`) or multiple simultaneous selections (`type=\"multiple\"`). Used for mutually exclusive view modes, filter groups, and formatting toolbars."
386
- },
387
- {
388
- "name": "toggle",
389
- "docPath": "docs/components/toggle.md",
390
- "sourcePath": "components/ui/toggle/index.ts",
391
- "description": "A pressable button that maintains an on/off state visually, similar to a keyboard key that stays pressed. Used in toolbars for formatting, view switching, and feature activation."
392
- },
393
- {
394
- "name": "tooltip",
395
- "docPath": "docs/components/tooltip.md",
396
- "sourcePath": "components/ui/tooltip/index.ts",
397
- "description": "A small floating label that appears on hover (or focus) over a trigger element, providing a short contextual explanation — typically for icon-only buttons, abbreviated text, or any element where the visual label alone isn't sufficient."
398
- },
399
- {
400
- "name": "tree-view",
401
- "docPath": "docs/components/tree-view.md",
402
- "sourcePath": "components/ui/tree-view/index.ts",
403
- "description": "An interactive hierarchical tree component for displaying and navigating nested data structures — file systems, organizational charts, category trees, and recursive navigation menus."
404
- },
405
- {
406
- "name": "use-mobile",
407
- "docPath": "docs/components/use-mobile.md",
408
- "sourcePath": "components/shared/use-mobile.ts",
409
- "description": "Two hooks that detect whether the current viewport is a mobile-width screen. Useful for conditionally rendering mobile-specific layouts, swapping components (e.g., `Drawer` vs `Sheet`), or hiding/showing content based on screen size."
410
- },
411
- {
412
- "name": "xertica-logo",
413
- "docPath": "docs/components/xertica-logo.md",
414
- "sourcePath": "components/brand/xertica-logo/index.ts",
415
- "description": "The official full horizontal logotype for Xertica. It is a vector-based SVG component that ensures brand consistency across all application headers and splash screens."
416
- },
417
- {
418
- "name": "xertica-orbe",
419
- "docPath": "docs/components/xertica-orbe.md",
420
- "sourcePath": "components/brand/xertica-orbe/index.ts",
421
- "description": "An animated, decorative brand element representing the Xertica \"Orbe\". It features CSS-based pulse and rotation animations to provide a premium, dynamic feel to hero sections and loading screens."
422
- },
423
- {
424
- "name": "xertica-provider",
425
- "docPath": "docs/components/xertica-provider.md",
426
- "sourcePath": "components/brand/xertica-provider/index.ts",
427
- "description": "The mandatory root wrapper for all Xertica UI applications. It synchronizes global configurations and injects essential context providers for layout, tooltips, maps, and notifications."
428
- },
429
- {
430
- "name": "xertica-xlogo",
431
- "docPath": "docs/components/xertica-xlogo.md",
432
- "sourcePath": "components/brand/xertica-xlogo/index.ts",
433
- "description": "A compact, square variant of the Xertica logo featuring the stylized \"X\" mark. Ideal for favicons, collapsed sidebars, and small profile badges."
434
- },
435
- {
436
- "name": "video-player",
437
- "docPath": "docs/components/video-player.md",
438
- "sourcePath": "components/media/video-player/index.ts",
439
- "description": "A feature-rich video player with custom controls, progress bar, volume, and floating mode support. Built on HTML5 video with React state management."
440
- },
441
- {
442
- "name": "code-block",
443
- "docPath": "docs/components/assistant.md",
444
- "sourcePath": "components/assistant/code-block/index.ts",
445
- "description": "A syntax-highlighted code block component for the Xertica Assistant. It renders code snippets with language detection and copy-to-clipboard functionality."
446
- },
447
- {
448
- "name": "formatted-document",
449
- "docPath": "docs/components/assistant.md",
450
- "sourcePath": "components/assistant/formatted-document/index.ts",
451
- "description": "A structured document renderer for displaying AI-generated content with headings, paragraphs, lists, and rich formatting support."
452
- },
453
- {
454
- "name": "modern-chat-input",
455
- "docPath": "docs/components/assistant.md",
456
- "sourcePath": "components/assistant/modern-chat-input/index.ts",
457
- "description": "A chat input component for the AI Assistant with multi-line support, auto-resize, and keyboard shortcuts. Used as the primary input in the assistant interface."
458
- },
459
- {
460
- "name": "xertica-assistant",
461
- "docPath": "docs/components/assistant.md",
462
- "sourcePath": "components/assistant/xertica-assistant/index.ts",
463
- "description": "A conversational AI assistant panel that integrates with the application. Provides chat interface, message rendering, suggestions, and file attachments."
464
- },
465
- {
466
- "name": "login-page",
467
- "docPath": "docs/getting-started.md",
468
- "sourcePath": "components/pages/login-page/index.ts",
469
- "description": "A complete login page template with email/password fields, theme toggle, and language selector integration."
470
- },
471
- {
472
- "name": "forgot-password-page",
473
- "docPath": "docs/getting-started.md",
474
- "sourcePath": "components/pages/forgot-password-page/index.ts",
475
- "description": "A forgot password page template with email input and reset flow integration."
476
- },
477
- {
478
- "name": "reset-password-page",
479
- "docPath": "docs/getting-started.md",
480
- "sourcePath": "components/pages/reset-password-page/index.ts",
481
- "description": "A reset password page template with new password and confirmation fields."
482
- },
483
- {
484
- "name": "verify-email-page",
485
- "docPath": "docs/getting-started.md",
486
- "sourcePath": "components/pages/verify-email-page/index.ts",
487
- "description": "A verify email page template with OTP code input for email verification."
488
- },
489
- {
490
- "name": "home-page",
491
- "docPath": "docs/getting-started.md",
492
- "sourcePath": "components/pages/home-page/index.ts",
493
- "description": "A home page template with sidebar navigation, header, and content area. The base layout for application pages."
494
- },
495
- {
496
- "name": "home-content",
497
- "docPath": "docs/getting-started.md",
498
- "sourcePath": "components/pages/home-content/index.ts",
499
- "description": "The content area component for home pages, providing a flexible container for page-specific content."
500
- },
501
- {
502
- "name": "template-page",
503
- "docPath": "docs/getting-started.md",
504
- "sourcePath": "components/pages/template-page/index.ts",
505
- "description": "A flexible page template component that wraps the layout system with configurable header, sidebar, and content areas."
506
- },
507
- {
508
- "name": "template-content",
509
- "docPath": "docs/getting-started.md",
510
- "sourcePath": "components/pages/template-content/index.ts",
511
- "description": "A content wrapper component for template pages, providing consistent padding and layout behavior."
512
- },
513
- {
514
- "name": "map-layers",
515
- "docPath": "docs/components/map.md",
516
- "sourcePath": "components/ui/map-layers/index.ts",
517
- "description": "A utility for managing Google Maps layers including traffic, transit, bicycling, and weather layers with theme-aware styling."
518
- },
519
- {
520
- "name": "map-config",
521
- "docPath": "docs/components/map.md",
522
- "sourcePath": "components/ui/map-config/index.ts",
523
- "description": "Configuration utility for Google Maps shared settings and theme-based styling."
524
- },
525
- {
526
- "name": "floating-media-wrapper",
527
- "docPath": "docs/components/floating-media-wrapper.md",
528
- "sourcePath": "components/media/FloatingMediaWrapper.tsx",
529
- "description": "A higher-level wrapper for media players (audio/video) that manages floating state, positioning, and transitions."
530
- }
1
+ [
2
+ {
3
+ "name": "accordion",
4
+ "docPath": "docs/components/accordion.md",
5
+ "sourcePath": "components/ui/accordion/index.ts",
6
+ "description": "A vertically stacked set of collapsible sections. Each section has a clickable trigger header that reveals or hides its content. Ideal for FAQs, configuration settings, and dense navigation trees where only one (or a few) section needs to be visible at a time.",
7
+ "category": "ui",
8
+ "import": "xertica-ui/ui",
9
+ "keywords": [
10
+ "collapse",
11
+ "expand",
12
+ "faq",
13
+ "collapsible-list"
14
+ ],
15
+ "relatedComponents": [
16
+ "collapsible",
17
+ "tabs"
18
+ ]
19
+ },
20
+ {
21
+ "name": "alert-dialog",
22
+ "docPath": "docs/components/alert-dialog.md",
23
+ "sourcePath": "components/ui/alert-dialog/index.ts",
24
+ "description": "A specialized modal for **irreversible destructive actions** delete, revoke, reset, permanently disable. Unlike `Dialog`, `AlertDialog` enforces that the user must explicitly confirm or cancel; clicking outside does not dismiss it.",
25
+ "category": "ui",
26
+ "import": "xertica-ui/ui",
27
+ "keywords": [
28
+ "confirm",
29
+ "confirmation",
30
+ "destructive",
31
+ "delete-confirm"
32
+ ],
33
+ "relatedComponents": [
34
+ "dialog",
35
+ "button"
36
+ ]
37
+ },
38
+ {
39
+ "name": "alert",
40
+ "docPath": "docs/components/alert.md",
41
+ "sourcePath": "components/ui/alert/index.ts",
42
+ "description": "An inline message banner used to communicate status, feedback, or important contextual information directly within the page content — without interrupting the user flow. Unlike `Sonner` (toast notifications), alerts are persistent and visible at all times.",
43
+ "category": "ui",
44
+ "import": "xertica-ui/ui",
45
+ "keywords": [
46
+ "banner",
47
+ "info-banner",
48
+ "warning-banner",
49
+ "inline-message"
50
+ ],
51
+ "relatedComponents": [
52
+ "sonner",
53
+ "alert-dialog"
54
+ ]
55
+ },
56
+ {
57
+ "name": "aspect-ratio",
58
+ "docPath": "docs/components/aspect-ratio.md",
59
+ "sourcePath": "components/ui/aspect-ratio/index.ts",
60
+ "description": "A container that maintains a fixed width-to-height ratio regardless of the available space. Prevents layout shifts when loading images, videos, or charts. Use when content must always fill a specific shape.",
61
+ "category": "ui",
62
+ "import": "xertica-ui/ui",
63
+ "keywords": [
64
+ "ratio",
65
+ "media-ratio",
66
+ "image-container",
67
+ "16-9"
68
+ ],
69
+ "relatedComponents": [
70
+ "video-player",
71
+ "card"
72
+ ]
73
+ },
74
+ {
75
+ "name": "assistant-chart",
76
+ "docPath": "docs/components/assistant-chart.md",
77
+ "sourcePath": "components/ui/assistant-chart/index.ts",
78
+ "description": "A specialized data visualization component optimized for display within the AI Assistant panel. It provides a pre-configured responsive BarChart using the library's design system tokens.",
79
+ "category": "ui",
80
+ "import": "xertica-ui/ui",
81
+ "keywords": [
82
+ "ai-chart",
83
+ "assistant-visualization",
84
+ "chat-chart"
85
+ ],
86
+ "relatedComponents": [
87
+ "chart",
88
+ "xertica-assistant"
89
+ ]
90
+ },
91
+ {
92
+ "name": "audio-player",
93
+ "docPath": "docs/components/audio-player.md",
94
+ "sourcePath": "components/media/audio-player/index.ts",
95
+ "description": "A global, floating audio playback bar designed for process tracking and podcast consumption. It features a responsive layout that automatically adjusts to the state of the sidebar and AI assistant.",
96
+ "category": "media",
97
+ "import": "xertica-ui/media",
98
+ "keywords": [
99
+ "audio",
100
+ "podcast",
101
+ "music",
102
+ "sound",
103
+ "playback"
104
+ ],
105
+ "relatedComponents": [
106
+ "video-player",
107
+ "floating-media-wrapper"
108
+ ]
109
+ },
110
+ {
111
+ "name": "avatar",
112
+ "docPath": "docs/components/avatar.md",
113
+ "sourcePath": "components/ui/avatar/index.ts",
114
+ "description": "Displays a user's identity visually either as a profile photo or as an initials-based fallback. Used in headers, sidebars, comment threads, and table rows to represent people.",
115
+ "category": "ui",
116
+ "import": "xertica-ui/ui",
117
+ "keywords": [
118
+ "profile-picture",
119
+ "user-image",
120
+ "initials"
121
+ ],
122
+ "relatedComponents": [
123
+ "header",
124
+ "table"
125
+ ]
126
+ },
127
+ {
128
+ "name": "badge",
129
+ "docPath": "docs/components/badge.md",
130
+ "sourcePath": "components/ui/badge/index.ts",
131
+ "description": "A compact, inline label used to communicate status, category, or count. Badges are always non-interactive by default — they display information, not trigger actions.",
132
+ "category": "ui",
133
+ "import": "xertica-ui/ui",
134
+ "keywords": [
135
+ "tag",
136
+ "label",
137
+ "status",
138
+ "chip",
139
+ "pill"
140
+ ],
141
+ "relatedComponents": [
142
+ "notification-badge",
143
+ "table",
144
+ "card"
145
+ ]
146
+ },
147
+ {
148
+ "name": "breadcrumb",
149
+ "docPath": "docs/components/breadcrumb.md",
150
+ "sourcePath": "components/ui/breadcrumb/index.ts",
151
+ "description": "A hierarchical navigation trail showing the user's current position in the application's page structure. Rendered in the `Header` component via the `breadcrumbs` prop. Each item in the chain can optionally be a clickable link.",
152
+ "category": "ui",
153
+ "import": "xertica-ui/ui",
154
+ "keywords": [
155
+ "breadcrumbs",
156
+ "navigation-path",
157
+ "location-trail"
158
+ ],
159
+ "relatedComponents": [
160
+ "header",
161
+ "page-header"
162
+ ]
163
+ },
164
+ {
165
+ "name": "button",
166
+ "docPath": "docs/components/button.md",
167
+ "sourcePath": "components/ui/button/index.ts",
168
+ "description": "The primary interaction trigger. Use `Button` for any user-initiated action: form submission, navigation triggers, dialog openers, and destructive confirmations. It supports multiple visual variants, sizes, icon-only mode, and the `asChild` pattern for composing with router links.",
169
+ "category": "ui",
170
+ "import": "xertica-ui/ui",
171
+ "keywords": [
172
+ "btn",
173
+ "action",
174
+ "click",
175
+ "submit",
176
+ "trigger",
177
+ "cta"
178
+ ],
179
+ "relatedComponents": [
180
+ "alert-dialog",
181
+ "dialog",
182
+ "form",
183
+ "dropdown-menu"
184
+ ]
185
+ },
186
+ {
187
+ "name": "calendar",
188
+ "docPath": "docs/components/calendar.md",
189
+ "sourcePath": "components/ui/calendar/index.ts",
190
+ "description": "A date picker calendar that renders a monthly grid of selectable days. Built on `react-day-picker`. Almost always used inside a `<Popover>` to provide an accessible, accessible date input. Supports single date selection, multiple dates, and date ranges.",
191
+ "category": "ui",
192
+ "import": "xertica-ui/ui",
193
+ "keywords": [
194
+ "date-picker",
195
+ "datepicker",
196
+ "date-input"
197
+ ],
198
+ "relatedComponents": [
199
+ "popover",
200
+ "input"
201
+ ]
202
+ },
203
+ {
204
+ "name": "card",
205
+ "docPath": "docs/components/card.md",
206
+ "sourcePath": "components/ui/card/index.ts",
207
+ "description": "The primary structural container for all content blocks in the application. `Card` provides elevation (via box shadow), background/border tokens, and a consistent internal padding system. It is the single correct way to create content panels — never recreate it with raw `<div>` utility classes.",
208
+ "category": "ui",
209
+ "import": "xertica-ui/ui",
210
+ "keywords": [
211
+ "container",
212
+ "panel",
213
+ "surface",
214
+ "box"
215
+ ],
216
+ "relatedComponents": [
217
+ "stats-card",
218
+ "scroll-area",
219
+ "separator"
220
+ ]
221
+ },
222
+ {
223
+ "name": "carousel",
224
+ "docPath": "docs/components/carousel.md",
225
+ "sourcePath": "components/ui/carousel/index.ts",
226
+ "description": "A horizontal content slider that lets users navigate through a set of panels or cards one at a time. Built on `embla-carousel-react`. Provides Previous/Next navigation buttons and optional indicator dots.",
227
+ "category": "ui",
228
+ "import": "xertica-ui/ui",
229
+ "keywords": [
230
+ "slider",
231
+ "slides",
232
+ "horizontal-scroll",
233
+ "embla"
234
+ ],
235
+ "relatedComponents": [
236
+ "card"
237
+ ]
238
+ },
239
+ {
240
+ "name": "chart",
241
+ "docPath": "docs/components/chart.md",
242
+ "sourcePath": "components/ui/chart/index.ts",
243
+ "description": "Xertica UI provides a `ChartContainer` wrapper and related components built on top of **Recharts** for theme-aware, token-driven chart rendering. The chart system uses a `ChartConfig` object to define series labels and colors via CSS variables, ensuring full dark-mode support without hard-coded hex values.",
244
+ "category": "ui",
245
+ "import": "xertica-ui/ui",
246
+ "keywords": [
247
+ "graph",
248
+ "visualization",
249
+ "recharts",
250
+ "bar-chart",
251
+ "line-chart"
252
+ ],
253
+ "relatedComponents": [
254
+ "card",
255
+ "stats-card"
256
+ ]
257
+ },
258
+ {
259
+ "name": "checkbox",
260
+ "docPath": "docs/components/checkbox.md",
261
+ "sourcePath": "components/ui/checkbox/index.ts",
262
+ "description": "A binary toggle that lets users select or deselect a single option, or mark multiple independent options in a list. Built on Radix UI with accessible keyboard behavior and ARIA roles.",
263
+ "category": "ui",
264
+ "import": "xertica-ui/ui",
265
+ "keywords": [
266
+ "check",
267
+ "boolean",
268
+ "tick",
269
+ "multi-select"
270
+ ],
271
+ "relatedComponents": [
272
+ "switch",
273
+ "radio-group",
274
+ "toggle"
275
+ ]
276
+ },
277
+ {
278
+ "name": "collapsible",
279
+ "docPath": "docs/components/collapsible.md",
280
+ "sourcePath": "components/ui/collapsible/index.ts",
281
+ "description": "A single expandable/collapsible content section with a trigger header. Unlike `<Accordion>`, `Collapsible` is a standalone element — it has no sibling items and no managed \"only one open\" behavior.",
282
+ "category": "ui",
283
+ "import": "xertica-ui/ui",
284
+ "keywords": [
285
+ "expand",
286
+ "collapse",
287
+ "toggle-section"
288
+ ],
289
+ "relatedComponents": [
290
+ "accordion"
291
+ ]
292
+ },
293
+ {
294
+ "name": "command",
295
+ "docPath": "docs/components/command.md",
296
+ "sourcePath": "components/ui/command/index.ts",
297
+ "description": "A command palette for searching and executing actions via keyboard — triggered by `⌘K` / `Ctrl+K`. Provides a searchable, filterable list of commands, navigation items, and quick actions. Built on `cmdk`.",
298
+ "category": "ui",
299
+ "import": "xertica-ui/ui",
300
+ "keywords": [
301
+ "command-palette",
302
+ "cmd-k",
303
+ "spotlight",
304
+ "keyboard-shortcut"
305
+ ],
306
+ "relatedComponents": [
307
+ "search",
308
+ "dialog"
309
+ ]
310
+ },
311
+ {
312
+ "name": "context-menu",
313
+ "docPath": "docs/components/context-menu.md",
314
+ "sourcePath": "components/ui/context-menu/index.ts",
315
+ "description": "A menu that appears when the user right-clicks (or long-presses on mobile) a trigger area. Provides a familiar OS-native contextual menu pattern for power-user interactions. Built on Radix UI.",
316
+ "category": "ui",
317
+ "import": "xertica-ui/ui",
318
+ "keywords": [
319
+ "right-click",
320
+ "contextmenu",
321
+ "right-click-menu"
322
+ ],
323
+ "relatedComponents": [
324
+ "dropdown-menu",
325
+ "menubar"
326
+ ]
327
+ },
328
+ {
329
+ "name": "dialog",
330
+ "docPath": "docs/components/dialog.md",
331
+ "sourcePath": "components/ui/dialog/index.ts",
332
+ "description": "A modal overlay that interrupts the page flow to capture user attention for critical confirmations, data entry, or detailed views. Built on Radix UI Dialog with managed focus trapping, keyboard escape, and backdrop click-to-dismiss.",
333
+ "category": "ui",
334
+ "import": "xertica-ui/ui",
335
+ "keywords": [
336
+ "modal",
337
+ "popup",
338
+ "overlay",
339
+ "lightbox"
340
+ ],
341
+ "relatedComponents": [
342
+ "alert-dialog",
343
+ "sheet",
344
+ "drawer",
345
+ "popover"
346
+ ]
347
+ },
348
+ {
349
+ "name": "drawer",
350
+ "docPath": "docs/components/drawer.md",
351
+ "sourcePath": "components/ui/drawer/index.ts",
352
+ "description": "A panel that slides in from the bottom edge of the screen — the mobile-optimized equivalent of `<Sheet>`. Drawers are the standard interaction pattern for panels on mobile, providing a more natural bottom-to-top gesture feel.",
353
+ "category": "ui",
354
+ "import": "xertica-ui/ui",
355
+ "keywords": [
356
+ "bottom-sheet",
357
+ "mobile-panel",
358
+ "slide-up"
359
+ ],
360
+ "relatedComponents": [
361
+ "sheet",
362
+ "dialog"
363
+ ]
364
+ },
365
+ {
366
+ "name": "dropdown-menu",
367
+ "docPath": "docs/components/dropdown-menu.md",
368
+ "sourcePath": "components/ui/dropdown-menu/index.ts",
369
+ "description": "A triggered contextual menu that appears anchored below (or beside) a trigger element. Used for row actions in tables, secondary navigation options, and grouped control menus. Built on Radix UI with full keyboard navigation.",
370
+ "category": "ui",
371
+ "import": "xertica-ui/ui",
372
+ "keywords": [
373
+ "action-menu",
374
+ "options-menu",
375
+ "kebab-menu"
376
+ ],
377
+ "relatedComponents": [
378
+ "context-menu",
379
+ "button",
380
+ "table"
381
+ ]
382
+ },
383
+ {
384
+ "name": "empty",
385
+ "docPath": "docs/components/empty.md",
386
+ "sourcePath": "components/ui/empty/index.ts",
387
+ "description": "A structured zero-state container rendered when a list, table, or search returns no results. Uses a composable primitive pattern (`Empty + EmptyIcon + EmptyTitle + EmptyDescription + EmptyAction`) to provide a flexible, consistent empty-state experience.",
388
+ "category": "ui",
389
+ "import": "xertica-ui/ui",
390
+ "keywords": [
391
+ "empty-state",
392
+ "zero-state",
393
+ "no-results",
394
+ "no-data"
395
+ ],
396
+ "relatedComponents": [
397
+ "skeleton",
398
+ "table"
399
+ ]
400
+ },
401
+ {
402
+ "name": "file-upload",
403
+ "docPath": "docs/components/file-upload.md",
404
+ "sourcePath": "components/ui/file-upload/index.ts",
405
+ "description": "A drag-and-drop file input component that accepts one or multiple files. Renders a dropzone area with visual feedback on drag, displays selected file names, and validates against allowed MIME types and file size limits.",
406
+ "category": "ui",
407
+ "import": "xertica-ui/ui",
408
+ "keywords": [
409
+ "drop-zone",
410
+ "file-input",
411
+ "drag-drop",
412
+ "upload"
413
+ ],
414
+ "relatedComponents": [
415
+ "input",
416
+ "form",
417
+ "button"
418
+ ]
419
+ },
420
+ {
421
+ "name": "form",
422
+ "docPath": "docs/components/form.md",
423
+ "sourcePath": "components/ui/form/index.ts",
424
+ "description": "`Form` is the integration layer between `react-hook-form` and Xertica UI components. It provides a context-aware set of wrappers (`FormField`, `FormItem`, `FormLabel`, `FormControl`, `FormMessage`, `FormDescription`) that automatically connect to form state, display validation errors, and manage ARIA attributes.",
425
+ "category": "ui",
426
+ "import": "xertica-ui/ui",
427
+ "keywords": [
428
+ "react-hook-form",
429
+ "form-validation",
430
+ "zod",
431
+ "form-fields"
432
+ ],
433
+ "relatedComponents": [
434
+ "input",
435
+ "select",
436
+ "checkbox",
437
+ "button",
438
+ "label"
439
+ ]
440
+ },
441
+ {
442
+ "name": "google-maps-loader",
443
+ "docPath": "docs/components/google-maps-loader.md",
444
+ "sourcePath": "components/ui/google-maps-loader/index.ts",
445
+ "description": "The utility provider and hook responsible for the lazy-loading and initialization of the Google Maps JavaScript API. It is automatically managed by the `XerticaProvider`.",
446
+ "category": "ui",
447
+ "import": "xertica-ui/ui",
448
+ "keywords": [
449
+ "maps-api",
450
+ "google-maps-api",
451
+ "maps-provider"
452
+ ],
453
+ "relatedComponents": [
454
+ "map",
455
+ "xertica-provider"
456
+ ]
457
+ },
458
+ {
459
+ "name": "header",
460
+ "docPath": "docs/components/header.md",
461
+ "sourcePath": "components/layout/header/index.ts",
462
+ "description": "The `Header` is the global application top bar — a fixed-height strip (`64px`) rendered at the top of the application shell. It provides a standardized navigation trail (breadcrumbs) and universal system controls.",
463
+ "category": "layout",
464
+ "import": "xertica-ui/layout",
465
+ "keywords": [
466
+ "top-bar",
467
+ "app-bar",
468
+ "navbar",
469
+ "topnav"
470
+ ],
471
+ "relatedComponents": [
472
+ "sidebar",
473
+ "breadcrumb",
474
+ "page-header"
475
+ ]
476
+ },
477
+ {
478
+ "name": "hover-card",
479
+ "docPath": "docs/components/hover-card.md",
480
+ "sourcePath": "components/ui/hover-card/index.ts",
481
+ "description": "A floating content panel that appears when hovering over a trigger element — designed for previewing additional information without navigating away. Unlike `Tooltip` (short text hints), `HoverCard` can contain rich content: user profiles, link previews, image thumbnails.",
482
+ "category": "ui",
483
+ "import": "xertica-ui/ui",
484
+ "keywords": [
485
+ "preview-card",
486
+ "rich-hover",
487
+ "link-preview"
488
+ ],
489
+ "relatedComponents": [
490
+ "tooltip",
491
+ "popover"
492
+ ]
493
+ },
494
+ {
495
+ "name": "input-otp",
496
+ "docPath": "docs/components/input-otp.md",
497
+ "sourcePath": "components/ui/input-otp/index.ts",
498
+ "description": "A one-time password / PIN code input that renders a segmented grid of individual character slots. Designed for MFA flows, email verification codes, and any numeric code entry.",
499
+ "category": "ui",
500
+ "import": "xertica-ui/ui",
501
+ "keywords": [
502
+ "otp",
503
+ "pin",
504
+ "mfa",
505
+ "verification-code"
506
+ ],
507
+ "relatedComponents": [
508
+ "input",
509
+ "form"
510
+ ]
511
+ },
512
+ {
513
+ "name": "input",
514
+ "docPath": "docs/components/input.md",
515
+ "sourcePath": "components/ui/input/index.ts",
516
+ "description": "The standard text field component. Use it for all single-line text inputs: names, emails, search queries, codes. Integrates seamlessly with `react-hook-form` via the `{...field}` spread pattern.",
517
+ "category": "ui",
518
+ "import": "xertica-ui/ui",
519
+ "keywords": [
520
+ "text-field",
521
+ "form-field",
522
+ "text-input"
523
+ ],
524
+ "relatedComponents": [
525
+ "label",
526
+ "form",
527
+ "search",
528
+ "textarea"
529
+ ]
530
+ },
531
+ {
532
+ "name": "label",
533
+ "docPath": "docs/components/label.md",
534
+ "sourcePath": "components/ui/label/index.ts",
535
+ "description": "An accessible form field label that is always associated with a specific input via `htmlFor`. Automatically applies styling that visually communicates field relationships and disabled states. Used in every form — standalone or via `<FormLabel>` inside the `Form` system.",
536
+ "category": "ui",
537
+ "import": "xertica-ui/ui",
538
+ "keywords": [
539
+ "form-label",
540
+ "field-label",
541
+ "input-label"
542
+ ],
543
+ "relatedComponents": [
544
+ "input",
545
+ "form",
546
+ "checkbox"
547
+ ]
548
+ },
549
+ {
550
+ "name": "language-selector",
551
+ "docPath": "docs/components/language-selector.md",
552
+ "sourcePath": "components/brand/language-selector/index.ts",
553
+ "description": "A standalone dropdown component for switching the interface language. Manages its own local state and calls an optional `onLanguageChange` callback when the selection changes.",
554
+ "category": "brand",
555
+ "import": "xertica-ui/brand",
556
+ "keywords": [
557
+ "i18n",
558
+ "locale",
559
+ "language",
560
+ "internationalization"
561
+ ],
562
+ "relatedComponents": [
563
+ "header",
564
+ "theme-toggle"
565
+ ]
566
+ },
567
+ {
568
+ "name": "map",
569
+ "docPath": "docs/components/map.md",
570
+ "sourcePath": "components/ui/map/index.ts",
571
+ "description": "A Google Maps integration component that renders an interactive map with markers, polygons, and custom controls. Powered by the Google Maps JavaScript API via `@vis.gl/react-google-maps`.",
572
+ "category": "ui",
573
+ "import": "xertica-ui/ui",
574
+ "keywords": [
575
+ "google-maps",
576
+ "map-view",
577
+ "geolocation",
578
+ "markers"
579
+ ],
580
+ "relatedComponents": [
581
+ "route-map",
582
+ "simple-map"
583
+ ]
584
+ },
585
+ {
586
+ "name": "markdown-message",
587
+ "docPath": "docs/components/markdown-message.md",
588
+ "sourcePath": "components/assistant/markdown-message/index.ts",
589
+ "description": "The primary renderer for AI-generated text content within the Xertica Assistant. It converts raw Markdown into themed React components with support for syntax highlighting, lists, and tables.",
590
+ "category": "assistant",
591
+ "import": "xertica-ui/assistant",
592
+ "keywords": [
593
+ "markdown",
594
+ "md-renderer",
595
+ "ai-message",
596
+ "chat-message"
597
+ ],
598
+ "relatedComponents": [
599
+ "xertica-assistant",
600
+ "code-block"
601
+ ]
602
+ },
603
+ {
604
+ "name": "menubar",
605
+ "docPath": "docs/components/menubar.md",
606
+ "sourcePath": "components/ui/menubar/index.ts",
607
+ "description": "An application-style horizontal menu bar with multiple dropdown menus — similar to the menu bars in desktop applications (File, Edit, View…). Less common in web apps but useful for power-user tools and editors.",
608
+ "category": "ui",
609
+ "import": "xertica-ui/ui",
610
+ "keywords": [
611
+ "application-menu",
612
+ "horizontal-menu",
613
+ "file-edit-view"
614
+ ],
615
+ "relatedComponents": [
616
+ "navigation-menu",
617
+ "dropdown-menu"
618
+ ]
619
+ },
620
+ {
621
+ "name": "navigation-menu",
622
+ "docPath": "docs/components/navigation-menu.md",
623
+ "sourcePath": "components/ui/navigation-menu/index.ts",
624
+ "description": "A horizontal navigation bar designed for top-level application sections. Supports dropdown sub-menus with rich content panels. Use it as a secondary top navigation when the primary navigation is in the `<Sidebar>`. Built on Radix UI NavigationMenu.",
625
+ "category": "ui",
626
+ "import": "xertica-ui/ui",
627
+ "keywords": [
628
+ "top-nav",
629
+ "horizontal-nav",
630
+ "mega-menu"
631
+ ],
632
+ "relatedComponents": [
633
+ "sidebar",
634
+ "tabs",
635
+ "breadcrumb"
636
+ ]
637
+ },
638
+ {
639
+ "name": "notification-badge",
640
+ "docPath": "docs/components/notification-badge.md",
641
+ "sourcePath": "components/ui/notification-badge/index.ts",
642
+ "description": "A small overlay indicator that appears on top of another element (typically an icon button) to communicate an unread count or attention cue. Appears as a colored dot (attention) or a numbered badge (count).",
643
+ "category": "ui",
644
+ "import": "xertica-ui/ui",
645
+ "keywords": [
646
+ "dot",
647
+ "counter",
648
+ "unread",
649
+ "overlay-badge"
650
+ ],
651
+ "relatedComponents": [
652
+ "badge",
653
+ "button"
654
+ ]
655
+ },
656
+ {
657
+ "name": "page-header",
658
+ "docPath": "docs/components/page-header.md",
659
+ "sourcePath": "components/ui/page-header/index.ts",
660
+ "description": "The `PageHeader` is a content-level component used to provide immediate context for a specific page or section. It focuses on the page title, subtitle, back navigation, and primary local actions (like \"Create\" or \"Edit\").",
661
+ "category": "ui",
662
+ "import": "xertica-ui/ui",
663
+ "keywords": [
664
+ "page-title",
665
+ "heading",
666
+ "section-header"
667
+ ],
668
+ "relatedComponents": [
669
+ "breadcrumb",
670
+ "header",
671
+ "button"
672
+ ]
673
+ },
674
+ {
675
+ "name": "pagination",
676
+ "docPath": "docs/components/pagination.md",
677
+ "sourcePath": "components/ui/pagination/index.ts",
678
+ "description": "A navigation control for moving through pages of a large dataset. Renders Previous/Next buttons, numbered page buttons, and ellipsis for large page counts. Use it below data tables to control which page of records is displayed.",
679
+ "category": "ui",
680
+ "import": "xertica-ui/ui",
681
+ "keywords": [
682
+ "pages",
683
+ "paging",
684
+ "page-navigation",
685
+ "next-prev"
686
+ ],
687
+ "relatedComponents": [
688
+ "table"
689
+ ]
690
+ },
691
+ {
692
+ "name": "popover",
693
+ "docPath": "docs/components/popover.md",
694
+ "sourcePath": "components/ui/popover/index.ts",
695
+ "description": "A floating panel anchored to a trigger element that presents additional information or controls without navigating away from the current context. Unlike `Tooltip`, Popover content can be interactive — forms, date pickers, settings panels, filter controls.",
696
+ "category": "ui",
697
+ "import": "xertica-ui/ui",
698
+ "keywords": [
699
+ "floating-panel",
700
+ "anchored-panel",
701
+ "overlay-panel"
702
+ ],
703
+ "relatedComponents": [
704
+ "tooltip",
705
+ "hover-card",
706
+ "sheet",
707
+ "dialog"
708
+ ]
709
+ },
710
+ {
711
+ "name": "progress",
712
+ "docPath": "docs/components/progress.md",
713
+ "sourcePath": "components/ui/progress/index.ts",
714
+ "description": "A visual indicator of completion or percentage. Renders a horizontal bar filled to a given percentage. It is purely display-only — for interactive value selection, use `<Slider>`.",
715
+ "category": "ui",
716
+ "import": "xertica-ui/ui",
717
+ "keywords": [
718
+ "loading-bar",
719
+ "completion",
720
+ "percentage"
721
+ ],
722
+ "relatedComponents": [
723
+ "skeleton",
724
+ "slider"
725
+ ]
726
+ },
727
+ {
728
+ "name": "radio-group",
729
+ "docPath": "docs/components/radio-group.md",
730
+ "sourcePath": "components/ui/radio-group/index.ts",
731
+ "description": "A set of mutually exclusive options where selecting one automatically deselects all others. Built on Radix UI with full keyboard navigation (arrow keys cycle through options). Use when only one choice from a defined set is valid.",
732
+ "category": "ui",
733
+ "import": "xertica-ui/ui",
734
+ "keywords": [
735
+ "radio",
736
+ "single-select",
737
+ "exclusive-choice"
738
+ ],
739
+ "relatedComponents": [
740
+ "select",
741
+ "checkbox"
742
+ ]
743
+ },
744
+ {
745
+ "name": "rating",
746
+ "docPath": "docs/components/rating.md",
747
+ "sourcePath": "components/ui/rating/index.ts",
748
+ "description": "A star-based rating input that allows users to rate items on a 1–5 (or custom range) scale. Supports both interactive rating input and read-only display modes.",
749
+ "category": "ui",
750
+ "import": "xertica-ui/ui",
751
+ "keywords": [
752
+ "stars",
753
+ "star-rating",
754
+ "review-score"
755
+ ],
756
+ "relatedComponents": [
757
+ "input"
758
+ ]
759
+ },
760
+ {
761
+ "name": "resizable",
762
+ "docPath": "docs/components/resizable.md",
763
+ "sourcePath": "components/ui/resizable/index.ts",
764
+ "description": "A panel splitter that lets users resize adjacent panels by dragging a handle. Used in IDE-style layouts, split-view editors, and any interface where two panels need to share space dynamically.",
765
+ "category": "ui",
766
+ "import": "xertica-ui/ui",
767
+ "keywords": [
768
+ "split-panel",
769
+ "resize",
770
+ "drag-handle",
771
+ "panel-splitter"
772
+ ],
773
+ "relatedComponents": [
774
+ "sidebar"
775
+ ]
776
+ },
777
+ {
778
+ "name": "rich-text-editor",
779
+ "docPath": "docs/components/rich-text-editor.md",
780
+ "sourcePath": "components/ui/rich-text-editor/index.ts",
781
+ "description": "A lightweight, native WYSIWYG (What You See Is What You Get) document text editor built into the Xertica UI framework. It utilizes the browser's native `contentEditable` architecture and `document.execCommand` under the hood to provide essential text formatting without the overhead of massive third-party rendering engines.",
782
+ "category": "ui",
783
+ "import": "xertica-ui/ui",
784
+ "keywords": [
785
+ "wysiwyg",
786
+ "editor",
787
+ "text-editor"
788
+ ],
789
+ "relatedComponents": [
790
+ "textarea",
791
+ "form"
792
+ ]
793
+ },
794
+ {
795
+ "name": "route-map",
796
+ "docPath": "docs/components/route-map.md",
797
+ "sourcePath": "components/ui/route-map/index.ts",
798
+ "description": "A specialized Google Maps component that calculates and renders a route between an origin and destination point, with support for intermediate waypoints and multiple travel modes. The route is drawn on the map using the Google Directions Service, and optionally returns the calculated distance and duration.",
799
+ "category": "ui",
800
+ "import": "xertica-ui/ui",
801
+ "keywords": [
802
+ "directions",
803
+ "route",
804
+ "navigation-map",
805
+ "waypoints"
806
+ ],
807
+ "relatedComponents": [
808
+ "map",
809
+ "simple-map"
810
+ ]
811
+ },
812
+ {
813
+ "name": "scroll-area",
814
+ "docPath": "docs/components/scroll-area.md",
815
+ "sourcePath": "components/ui/scroll-area/index.ts",
816
+ "description": "A cross-browser, themeable scrollable container with custom scrollbar styling. Use instead of native `overflow-y-auto` when the scrollbar needs to match the application's design system (instead of the OS default scrollbar).",
817
+ "category": "ui",
818
+ "import": "xertica-ui/ui",
819
+ "keywords": [
820
+ "scrollbar",
821
+ "overflow",
822
+ "custom-scroll"
823
+ ],
824
+ "relatedComponents": [
825
+ "card",
826
+ "sidebar"
827
+ ]
828
+ },
829
+ {
830
+ "name": "search",
831
+ "docPath": "docs/components/search.md",
832
+ "sourcePath": "components/ui/search/index.ts",
833
+ "description": "A pre-built search input with a built-in search icon and clear button. Supports `sm`, `md`, `lg` size variants matching the Input scale. Handles Escape-to-clear and exposes `onSearch` for simple string callbacks.",
834
+ "category": "ui",
835
+ "import": "xertica-ui/ui",
836
+ "keywords": [
837
+ "search-input",
838
+ "filter",
839
+ "query",
840
+ "find"
841
+ ],
842
+ "relatedComponents": [
843
+ "input",
844
+ "command",
845
+ "table"
846
+ ]
847
+ },
848
+ {
849
+ "name": "select",
850
+ "docPath": "docs/components/select.md",
851
+ "sourcePath": "components/ui/select/index.ts",
852
+ "description": "A styled dropdown for selecting a single option from a list. Built on Radix UI, it provides a fully accessible combobox with keyboard navigation, portaled content, and proper ARIA semantics. Always use `<Select>` from `xertica-ui` — never use native `<select>`.",
853
+ "category": "ui",
854
+ "import": "xertica-ui/ui",
855
+ "keywords": [
856
+ "dropdown",
857
+ "combobox",
858
+ "picker",
859
+ "chooser"
860
+ ],
861
+ "relatedComponents": [
862
+ "radio-group",
863
+ "command",
864
+ "input"
865
+ ]
866
+ },
867
+ {
868
+ "name": "separator",
869
+ "docPath": "docs/components/separator.md",
870
+ "sourcePath": "components/ui/separator/index.ts",
871
+ "description": "A thin horizontal (or vertical) line that visually divides sections of content. Primarily decorative but semantically meaningful as an `<hr>` element. Used to create visual breathing room between logically distinct sections.",
872
+ "category": "ui",
873
+ "import": "xertica-ui/ui",
874
+ "keywords": [
875
+ "divider",
876
+ "hr",
877
+ "horizontal-rule",
878
+ "line"
879
+ ],
880
+ "relatedComponents": [
881
+ "card"
882
+ ]
883
+ },
884
+ {
885
+ "name": "sheet",
886
+ "docPath": "docs/components/sheet.md",
887
+ "sourcePath": "components/ui/sheet/index.ts",
888
+ "description": "An edge-anchored slide-in panel that overlays the current page from one side — top, right, bottom, or left. Like `Dialog` but more suitable for forms or detail views that benefit from more vertical space, or for secondary navigation and controls on mobile.",
889
+ "category": "ui",
890
+ "import": "xertica-ui/ui",
891
+ "keywords": [
892
+ "side-panel",
893
+ "slide-in",
894
+ "panel"
895
+ ],
896
+ "relatedComponents": [
897
+ "dialog",
898
+ "drawer",
899
+ "popover"
900
+ ]
901
+ },
902
+ {
903
+ "name": "sidebar",
904
+ "docPath": "docs/components/sidebar.md",
905
+ "sourcePath": "components/layout/sidebar/index.ts",
906
+ "description": "The `Sidebar` is the primary vertical navigation panel of the application shell. It manages the app's hierarchy, supporting simple lists, grouped items, and an advanced \"Assistant\" mode for AI-driven or data-rich interfaces.",
907
+ "category": "layout",
908
+ "import": "xertica-ui/layout",
909
+ "keywords": [
910
+ "nav",
911
+ "navigation",
912
+ "menu",
913
+ "side-nav",
914
+ "vertical-nav"
915
+ ],
916
+ "relatedComponents": [
917
+ "header",
918
+ "navigation-menu"
919
+ ]
920
+ },
921
+ {
922
+ "name": "simple-map",
923
+ "docPath": "docs/components/simple-map.md",
924
+ "sourcePath": "components/ui/simple-map/index.ts",
925
+ "description": "A simplified wrapper for common map use cases where you only need a single marker and basic configuration.",
926
+ "category": "ui",
927
+ "import": "xertica-ui/ui",
928
+ "keywords": [
929
+ "basic-map",
930
+ "single-marker",
931
+ "map-pin"
932
+ ],
933
+ "relatedComponents": [
934
+ "map",
935
+ "route-map"
936
+ ]
937
+ },
938
+ {
939
+ "name": "skeleton",
940
+ "docPath": "docs/components/skeleton.md",
941
+ "sourcePath": "components/ui/skeleton/index.ts",
942
+ "description": "A loading placeholder that mimics the shape and dimensions of content while it's being fetched. Use it to provide visual continuity and reduce perceived load time — never leave blank white space while content is loading.",
943
+ "category": "ui",
944
+ "import": "xertica-ui/ui",
945
+ "keywords": [
946
+ "loading-placeholder",
947
+ "shimmer",
948
+ "placeholder"
949
+ ],
950
+ "relatedComponents": [
951
+ "progress",
952
+ "empty"
953
+ ]
954
+ },
955
+ {
956
+ "name": "slider",
957
+ "docPath": "docs/components/slider.md",
958
+ "sourcePath": "components/ui/slider/index.ts",
959
+ "description": "A range input control that lets users select a numeric value by dragging a thumb along a track. Used for quantity selectors, volume controls, percentage settings, and any value within a continuous range.",
960
+ "category": "ui",
961
+ "import": "xertica-ui/ui",
962
+ "keywords": [
963
+ "range",
964
+ "range-input",
965
+ "volume",
966
+ "scrubber"
967
+ ],
968
+ "relatedComponents": [
969
+ "progress",
970
+ "input"
971
+ ]
972
+ },
973
+ {
974
+ "name": "sonner",
975
+ "docPath": "docs/components/sonner.md",
976
+ "sourcePath": "components/ui/sonner/index.ts",
977
+ "description": "Sonner is the toast notification system. It displays ephemeral feedback messages that appear at a fixed position on screen (top-right by default), auto-dismiss after a few seconds, and can be dismissed manually. `<Toaster>` is auto-injected by `<XerticaProvider>` — you never need to render it manually.",
978
+ "category": "ui",
979
+ "import": "xertica-ui/ui",
980
+ "keywords": [
981
+ "toast",
982
+ "notification",
983
+ "snackbar",
984
+ "alert-message"
985
+ ],
986
+ "relatedComponents": [
987
+ "alert",
988
+ "dialog"
989
+ ]
990
+ },
991
+ {
992
+ "name": "stats-card",
993
+ "docPath": "docs/components/stats-card.md",
994
+ "sourcePath": "components/ui/stats-card/index.ts",
995
+ "description": "A pre-built KPI (Key Performance Indicator) card for dashboard overview pages. Renders a metric title, a large value, an optional trend indicator with automatic up/down/neutral icon, and an optional icon.",
996
+ "category": "ui",
997
+ "import": "xertica-ui/ui",
998
+ "keywords": [
999
+ "kpi",
1000
+ "metric",
1001
+ "counter",
1002
+ "dashboard-card"
1003
+ ],
1004
+ "relatedComponents": [
1005
+ "card",
1006
+ "chart"
1007
+ ]
1008
+ },
1009
+ {
1010
+ "name": "stepper",
1011
+ "docPath": "docs/components/stepper.md",
1012
+ "sourcePath": "components/ui/stepper/index.ts",
1013
+ "description": "A visual multi-step progress indicator that shows the user's current position within a sequential process. Uses a composable primitive pattern: `<Stepper>` wraps one or more `<Step>` children, automatically inferring the total number of steps.",
1014
+ "category": "ui",
1015
+ "import": "xertica-ui/ui",
1016
+ "keywords": [
1017
+ "wizard",
1018
+ "multi-step",
1019
+ "progress-steps",
1020
+ "onboarding"
1021
+ ],
1022
+ "relatedComponents": [
1023
+ "progress",
1024
+ "tabs"
1025
+ ]
1026
+ },
1027
+ {
1028
+ "name": "switch",
1029
+ "docPath": "docs/components/switch.md",
1030
+ "sourcePath": "components/ui/switch/index.ts",
1031
+ "description": "A binary toggle control that represents an on/off state — similar to a physical light switch. More prominent and visually expressive than a `<Checkbox>`. Used for feature toggles, notification settings, accessibility preferences, and any prominent boolean setting.",
1032
+ "category": "ui",
1033
+ "import": "xertica-ui/ui",
1034
+ "keywords": [
1035
+ "toggle",
1036
+ "on-off",
1037
+ "boolean",
1038
+ "feature-flag"
1039
+ ],
1040
+ "relatedComponents": [
1041
+ "checkbox",
1042
+ "toggle"
1043
+ ]
1044
+ },
1045
+ {
1046
+ "name": "table",
1047
+ "docPath": "docs/components/table.md",
1048
+ "sourcePath": "components/ui/table/index.ts",
1049
+ "description": "Structured tabular data display. Provides semantic HTML table elements wrapped in accessible, styled components. Used in CRUD list pages, reports, and any data-heavy view where rows represent records and columns represent attributes.",
1050
+ "category": "ui",
1051
+ "import": "xertica-ui/ui",
1052
+ "keywords": [
1053
+ "data-table",
1054
+ "grid",
1055
+ "list",
1056
+ "rows",
1057
+ "columns",
1058
+ "crud"
1059
+ ],
1060
+ "relatedComponents": [
1061
+ "pagination",
1062
+ "badge",
1063
+ "dropdown-menu",
1064
+ "empty"
1065
+ ]
1066
+ },
1067
+ {
1068
+ "name": "tabs",
1069
+ "docPath": "docs/components/tabs.md",
1070
+ "sourcePath": "components/ui/tabs/index.ts",
1071
+ "description": "A content switcher that organizes related views under labelled tab triggers. One tab is active at a time. Used for multi-view dashboards, analytics pages, settings sections, and any context where content is segmented but logically related.",
1072
+ "category": "ui",
1073
+ "import": "xertica-ui/ui",
1074
+ "keywords": [
1075
+ "tab-bar",
1076
+ "tab-panel",
1077
+ "switcher",
1078
+ "tabbed-content"
1079
+ ],
1080
+ "relatedComponents": [
1081
+ "navigation-menu",
1082
+ "accordion"
1083
+ ]
1084
+ },
1085
+ {
1086
+ "name": "textarea",
1087
+ "docPath": "docs/components/textarea.md",
1088
+ "sourcePath": "components/ui/textarea/index.ts",
1089
+ "description": "A multi-line text input for longer content: descriptions, notes, messages, and rich text fields. Automatically resizable or fixed, depending on the `resize` CSS class applied.",
1090
+ "category": "ui",
1091
+ "import": "xertica-ui/ui",
1092
+ "keywords": [
1093
+ "multi-line",
1094
+ "text-area",
1095
+ "description-field",
1096
+ "notes"
1097
+ ],
1098
+ "relatedComponents": [
1099
+ "input",
1100
+ "form",
1101
+ "rich-text-editor"
1102
+ ]
1103
+ },
1104
+ {
1105
+ "name": "theme-toggle",
1106
+ "docPath": "docs/components/theme-toggle.md",
1107
+ "sourcePath": "components/brand/theme-toggle/index.ts",
1108
+ "description": "A self-contained light/dark mode toggle button that operates directly on the `document.documentElement` class list.",
1109
+ "category": "brand",
1110
+ "import": "xertica-ui/brand",
1111
+ "keywords": [
1112
+ "dark-mode",
1113
+ "light-mode",
1114
+ "color-scheme"
1115
+ ],
1116
+ "relatedComponents": [
1117
+ "header",
1118
+ "sidebar"
1119
+ ]
1120
+ },
1121
+ {
1122
+ "name": "timeline",
1123
+ "docPath": "docs/components/timeline.md",
1124
+ "sourcePath": "components/ui/timeline/index.ts",
1125
+ "description": "A vertical sequence of events displayed chronologically, each with a timestamp, title, and optional description. Used in activity logs, audit trails, case histories, and notification feeds.",
1126
+ "category": "ui",
1127
+ "import": "xertica-ui/ui",
1128
+ "keywords": [
1129
+ "activity-log",
1130
+ "history",
1131
+ "event-log",
1132
+ "audit-trail"
1133
+ ],
1134
+ "relatedComponents": [
1135
+ "table",
1136
+ "card"
1137
+ ]
1138
+ },
1139
+ {
1140
+ "name": "toggle-group",
1141
+ "docPath": "docs/components/toggle-group.md",
1142
+ "sourcePath": "components/ui/toggle-group/index.ts",
1143
+ "description": "A set of related `<Toggle>` buttons that operate together — either allowing only one selection at a time (`type=\"single\"`) or multiple simultaneous selections (`type=\"multiple\"`). Used for mutually exclusive view modes, filter groups, and formatting toolbars.",
1144
+ "category": "ui",
1145
+ "import": "xertica-ui/ui",
1146
+ "keywords": [
1147
+ "segmented-control",
1148
+ "exclusive-toggle",
1149
+ "multi-toggle"
1150
+ ],
1151
+ "relatedComponents": [
1152
+ "toggle",
1153
+ "tabs"
1154
+ ]
1155
+ },
1156
+ {
1157
+ "name": "toggle",
1158
+ "docPath": "docs/components/toggle.md",
1159
+ "sourcePath": "components/ui/toggle/index.ts",
1160
+ "description": "A pressable button that maintains an on/off state visually, similar to a keyboard key that stays pressed. Used in toolbars for formatting, view switching, and feature activation.",
1161
+ "category": "ui",
1162
+ "import": "xertica-ui/ui",
1163
+ "keywords": [
1164
+ "pressable",
1165
+ "pressed-state",
1166
+ "toolbar-toggle"
1167
+ ],
1168
+ "relatedComponents": [
1169
+ "switch",
1170
+ "checkbox",
1171
+ "toggle-group"
1172
+ ]
1173
+ },
1174
+ {
1175
+ "name": "tooltip",
1176
+ "docPath": "docs/components/tooltip.md",
1177
+ "sourcePath": "components/ui/tooltip/index.ts",
1178
+ "description": "A small floating label that appears on hover (or focus) over a trigger element, providing a short contextual explanation — typically for icon-only buttons, abbreviated text, or any element where the visual label alone isn't sufficient.",
1179
+ "category": "ui",
1180
+ "import": "xertica-ui/ui",
1181
+ "keywords": [
1182
+ "hint",
1183
+ "title",
1184
+ "help-text",
1185
+ "hover-text"
1186
+ ],
1187
+ "relatedComponents": [
1188
+ "hover-card",
1189
+ "popover"
1190
+ ]
1191
+ },
1192
+ {
1193
+ "name": "tree-view",
1194
+ "docPath": "docs/components/tree-view.md",
1195
+ "sourcePath": "components/ui/tree-view/index.ts",
1196
+ "description": "An interactive hierarchical tree component for displaying and navigating nested data structures — file systems, organizational charts, category trees, and recursive navigation menus.",
1197
+ "category": "ui",
1198
+ "import": "xertica-ui/ui",
1199
+ "keywords": [
1200
+ "tree",
1201
+ "hierarchy",
1202
+ "nested-list",
1203
+ "file-tree"
1204
+ ],
1205
+ "relatedComponents": [
1206
+ "accordion",
1207
+ "sidebar"
1208
+ ]
1209
+ },
1210
+ {
1211
+ "name": "use-mobile",
1212
+ "docPath": "docs/components/use-mobile.md",
1213
+ "sourcePath": "components/shared/use-mobile.ts",
1214
+ "description": "Two hooks that detect whether the current viewport is a mobile-width screen. Useful for conditionally rendering mobile-specific layouts, swapping components (e.g., `Drawer` vs `Sheet`), or hiding/showing content based on screen size.",
1215
+ "category": "hooks",
1216
+ "import": "xertica-ui/hooks",
1217
+ "keywords": [
1218
+ "responsive",
1219
+ "mobile-detection",
1220
+ "breakpoint",
1221
+ "isMobile"
1222
+ ],
1223
+ "relatedComponents": []
1224
+ },
1225
+ {
1226
+ "name": "xertica-logo",
1227
+ "docPath": "docs/components/xertica-logo.md",
1228
+ "sourcePath": "components/brand/xertica-logo/index.ts",
1229
+ "description": "The official full horizontal logotype for Xertica. It is a vector-based SVG component that ensures brand consistency across all application headers and splash screens.",
1230
+ "category": "brand",
1231
+ "import": "xertica-ui/brand",
1232
+ "keywords": [
1233
+ "logo",
1234
+ "brand",
1235
+ "logotype"
1236
+ ],
1237
+ "relatedComponents": [
1238
+ "xertica-xlogo",
1239
+ "xertica-orbe"
1240
+ ]
1241
+ },
1242
+ {
1243
+ "name": "xertica-orbe",
1244
+ "docPath": "docs/components/xertica-orbe.md",
1245
+ "sourcePath": "components/brand/xertica-orbe/index.ts",
1246
+ "description": "An animated, decorative brand element representing the Xertica \"Orbe\". It features CSS-based pulse and rotation animations to provide a premium, dynamic feel to hero sections and loading screens.",
1247
+ "category": "brand",
1248
+ "import": "xertica-ui/brand",
1249
+ "keywords": [
1250
+ "orb",
1251
+ "animated-logo",
1252
+ "brand-animation"
1253
+ ],
1254
+ "relatedComponents": [
1255
+ "xertica-logo"
1256
+ ]
1257
+ },
1258
+ {
1259
+ "name": "xertica-provider",
1260
+ "docPath": "docs/components/xertica-provider.md",
1261
+ "sourcePath": "components/brand/xertica-provider/index.ts",
1262
+ "description": "The mandatory root wrapper for all Xertica UI applications. It synchronizes global configurations and injects essential context providers for layout, tooltips, maps, and notifications.",
1263
+ "category": "brand",
1264
+ "import": "xertica-ui/brand",
1265
+ "keywords": [
1266
+ "provider",
1267
+ "root",
1268
+ "context",
1269
+ "app-wrapper"
1270
+ ],
1271
+ "relatedComponents": []
1272
+ },
1273
+ {
1274
+ "name": "xertica-xlogo",
1275
+ "docPath": "docs/components/xertica-xlogo.md",
1276
+ "sourcePath": "components/brand/xertica-xlogo/index.ts",
1277
+ "description": "A compact, square variant of the Xertica logo featuring the stylized \"X\" mark. Ideal for favicons, collapsed sidebars, and small profile badges.",
1278
+ "category": "brand",
1279
+ "import": "xertica-ui/brand",
1280
+ "keywords": [
1281
+ "x-logo",
1282
+ "compact-logo",
1283
+ "icon-logo",
1284
+ "favicon"
1285
+ ],
1286
+ "relatedComponents": [
1287
+ "xertica-logo",
1288
+ "sidebar"
1289
+ ]
1290
+ },
1291
+ {
1292
+ "name": "video-player",
1293
+ "docPath": "docs/components/video-player.md",
1294
+ "sourcePath": "components/media/video-player/index.ts",
1295
+ "description": "A feature-rich video player with custom controls, progress bar, volume, and floating mode support. Built on HTML5 video with React state management.",
1296
+ "category": "media",
1297
+ "import": "xertica-ui/media",
1298
+ "keywords": [
1299
+ "video",
1300
+ "player",
1301
+ "media",
1302
+ "playback"
1303
+ ],
1304
+ "relatedComponents": [
1305
+ "audio-player",
1306
+ "floating-media-wrapper"
1307
+ ]
1308
+ },
1309
+ {
1310
+ "name": "code-block",
1311
+ "docPath": "docs/components/assistant.md",
1312
+ "sourcePath": "components/assistant/code-block/index.ts",
1313
+ "description": "A syntax-highlighted code block component for the Xertica Assistant. It renders code snippets with language detection and copy-to-clipboard functionality.",
1314
+ "category": "assistant",
1315
+ "import": "xertica-ui/assistant",
1316
+ "keywords": [
1317
+ "syntax-highlight",
1318
+ "code",
1319
+ "snippet",
1320
+ "copy-code"
1321
+ ],
1322
+ "relatedComponents": [
1323
+ "markdown-message",
1324
+ "xertica-assistant"
1325
+ ]
1326
+ },
1327
+ {
1328
+ "name": "formatted-document",
1329
+ "docPath": "docs/components/assistant.md",
1330
+ "sourcePath": "components/assistant/formatted-document/index.ts",
1331
+ "description": "A structured document renderer for displaying AI-generated content with headings, paragraphs, lists, and rich formatting support.",
1332
+ "category": "assistant",
1333
+ "import": "xertica-ui/assistant",
1334
+ "keywords": [
1335
+ "formatted document"
1336
+ ],
1337
+ "relatedComponents": []
1338
+ },
1339
+ {
1340
+ "name": "modern-chat-input",
1341
+ "docPath": "docs/components/assistant.md",
1342
+ "sourcePath": "components/assistant/modern-chat-input/index.ts",
1343
+ "description": "A chat input component for the AI Assistant with multi-line support, auto-resize, and keyboard shortcuts. Used as the primary input in the assistant interface.",
1344
+ "category": "assistant",
1345
+ "import": "xertica-ui/assistant",
1346
+ "keywords": [
1347
+ "modern chat input"
1348
+ ],
1349
+ "relatedComponents": []
1350
+ },
1351
+ {
1352
+ "name": "xertica-assistant",
1353
+ "docPath": "docs/components/assistant.md",
1354
+ "sourcePath": "components/assistant/xertica-assistant/index.ts",
1355
+ "description": "A conversational AI assistant panel that integrates with the application. Provides chat interface, message rendering, suggestions, and file attachments.",
1356
+ "category": "assistant",
1357
+ "import": "xertica-ui/assistant",
1358
+ "keywords": [
1359
+ "ai-chat",
1360
+ "chatbot",
1361
+ "ai-panel",
1362
+ "assistant",
1363
+ "llm-chat"
1364
+ ],
1365
+ "relatedComponents": [
1366
+ "markdown-message",
1367
+ "code-block"
1368
+ ]
1369
+ },
1370
+ {
1371
+ "name": "login-page",
1372
+ "docPath": "docs/getting-started.md",
1373
+ "sourcePath": "components/pages/login-page/index.ts",
1374
+ "description": "A complete login page template with email/password fields, theme toggle, and language selector integration.",
1375
+ "category": "pages",
1376
+ "import": "xertica-ui",
1377
+ "keywords": [
1378
+ "login page"
1379
+ ],
1380
+ "relatedComponents": []
1381
+ },
1382
+ {
1383
+ "name": "forgot-password-page",
1384
+ "docPath": "docs/getting-started.md",
1385
+ "sourcePath": "components/pages/forgot-password-page/index.ts",
1386
+ "description": "A forgot password page template with email input and reset flow integration.",
1387
+ "category": "pages",
1388
+ "import": "xertica-ui",
1389
+ "keywords": [
1390
+ "forgot password page"
1391
+ ],
1392
+ "relatedComponents": []
1393
+ },
1394
+ {
1395
+ "name": "reset-password-page",
1396
+ "docPath": "docs/getting-started.md",
1397
+ "sourcePath": "components/pages/reset-password-page/index.ts",
1398
+ "description": "A reset password page template with new password and confirmation fields.",
1399
+ "category": "pages",
1400
+ "import": "xertica-ui",
1401
+ "keywords": [
1402
+ "reset password page"
1403
+ ],
1404
+ "relatedComponents": []
1405
+ },
1406
+ {
1407
+ "name": "verify-email-page",
1408
+ "docPath": "docs/getting-started.md",
1409
+ "sourcePath": "components/pages/verify-email-page/index.ts",
1410
+ "description": "A verify email page template with OTP code input for email verification.",
1411
+ "category": "pages",
1412
+ "import": "xertica-ui",
1413
+ "keywords": [
1414
+ "verify email page"
1415
+ ],
1416
+ "relatedComponents": []
1417
+ },
1418
+ {
1419
+ "name": "home-page",
1420
+ "docPath": "docs/getting-started.md",
1421
+ "sourcePath": "components/pages/home-page/index.ts",
1422
+ "description": "A home page template with sidebar navigation, header, and content area. The base layout for application pages.",
1423
+ "category": "pages",
1424
+ "import": "xertica-ui",
1425
+ "keywords": [
1426
+ "home page"
1427
+ ],
1428
+ "relatedComponents": []
1429
+ },
1430
+ {
1431
+ "name": "home-content",
1432
+ "docPath": "docs/getting-started.md",
1433
+ "sourcePath": "components/pages/home-content/index.ts",
1434
+ "description": "The content area component for home pages, providing a flexible container for page-specific content.",
1435
+ "category": "pages",
1436
+ "import": "xertica-ui",
1437
+ "keywords": [
1438
+ "home content"
1439
+ ],
1440
+ "relatedComponents": []
1441
+ },
1442
+ {
1443
+ "name": "template-page",
1444
+ "docPath": "docs/getting-started.md",
1445
+ "sourcePath": "components/pages/template-page/index.ts",
1446
+ "description": "A flexible page template component that wraps the layout system with configurable header, sidebar, and content areas.",
1447
+ "category": "pages",
1448
+ "import": "xertica-ui",
1449
+ "keywords": [
1450
+ "template page"
1451
+ ],
1452
+ "relatedComponents": []
1453
+ },
1454
+ {
1455
+ "name": "template-content",
1456
+ "docPath": "docs/getting-started.md",
1457
+ "sourcePath": "components/pages/template-content/index.ts",
1458
+ "description": "A content wrapper component for template pages, providing consistent padding and layout behavior.",
1459
+ "category": "pages",
1460
+ "import": "xertica-ui",
1461
+ "keywords": [
1462
+ "template content"
1463
+ ],
1464
+ "relatedComponents": []
1465
+ },
1466
+ {
1467
+ "name": "map-layers",
1468
+ "docPath": "docs/components/map.md",
1469
+ "sourcePath": "components/ui/map-layers/index.ts",
1470
+ "description": "A utility for managing Google Maps layers including traffic, transit, bicycling, and weather layers with theme-aware styling.",
1471
+ "category": "ui",
1472
+ "import": "xertica-ui/ui",
1473
+ "keywords": [
1474
+ "map layers"
1475
+ ],
1476
+ "relatedComponents": []
1477
+ },
1478
+ {
1479
+ "name": "map-config",
1480
+ "docPath": "docs/components/map.md",
1481
+ "sourcePath": "components/ui/map-config/index.ts",
1482
+ "description": "Configuration utility for Google Maps shared settings and theme-based styling.",
1483
+ "category": "ui",
1484
+ "import": "xertica-ui/ui",
1485
+ "keywords": [
1486
+ "map config"
1487
+ ],
1488
+ "relatedComponents": []
1489
+ },
1490
+ {
1491
+ "name": "floating-media-wrapper",
1492
+ "docPath": "docs/components/floating-media-wrapper.md",
1493
+ "sourcePath": "components/media/FloatingMediaWrapper.tsx",
1494
+ "description": "A higher-level wrapper for media players (audio/video) that manages floating state, positioning, and transitions.",
1495
+ "category": "media",
1496
+ "import": "xertica-ui/media",
1497
+ "keywords": [
1498
+ "floating",
1499
+ "draggable",
1500
+ "portal",
1501
+ "picture-in-picture"
1502
+ ],
1503
+ "relatedComponents": [
1504
+ "video-player",
1505
+ "audio-player"
1506
+ ]
1507
+ }
531
1508
  ]