@sciol/xyzen 0.3.5 → 0.3.6

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 (39) hide show
  1. package/dist/app/App.d.ts +1 -1
  2. package/dist/app/AppSide.d.ts +6 -0
  3. package/dist/components/animate-ui/components/buttons/button.d.ts +9 -0
  4. package/dist/components/animate-ui/primitives/animate/slot.d.ts +17 -0
  5. package/dist/components/animate-ui/primitives/buttons/button.d.ts +8 -0
  6. package/dist/components/animate-ui/primitives/buttons/liquid.d.ts +10 -0
  7. package/dist/components/animate-ui/primitives/effects/auto-height.d.ts +11 -0
  8. package/dist/components/animate-ui/primitives/effects/highlight.d.ts +92 -0
  9. package/dist/components/animate-ui/primitives/headless/dialog.d.ts +42 -0
  10. package/dist/components/{base/Modal.d.ts → animate-ui/primitives/headless/modal.d.ts} +1 -1
  11. package/dist/components/animate-ui/primitives/radix/tabs.d.ts +32 -0
  12. package/dist/components/charts/index.d.ts +2 -2
  13. package/dist/components/layouts/ActivityBar.d.ts +8 -0
  14. package/dist/components/layouts/AgentExplorer.d.ts +1 -0
  15. package/dist/components/layouts/Explorer.d.ts +1 -0
  16. package/dist/components/layouts/McpListModal.d.ts +1 -0
  17. package/dist/components/layouts/Workshop.d.ts +1 -0
  18. package/dist/components/layouts/WorkshopChat.d.ts +1 -0
  19. package/dist/components/layouts/XyzenAgent.d.ts +7 -3
  20. package/dist/components/shared/JsonDisplay.d.ts +1 -1
  21. package/dist/configs/chatThemes.d.ts +9 -0
  22. package/dist/hooks/use-auto-height.d.ts +10 -0
  23. package/dist/hooks/use-controlled-state.d.ts +8 -0
  24. package/dist/hooks/useWorkShopChat.d.ts +69 -0
  25. package/dist/hooks/useXyzenChat.d.ts +69 -0
  26. package/dist/lib/get-strict-context.d.ts +9 -0
  27. package/dist/lib/utils.d.ts +2 -0
  28. package/dist/store/slices/agentSlice.d.ts +7 -1
  29. package/dist/store/slices/uiSlice.d.ts +9 -0
  30. package/dist/types/chartTypes.d.ts +7 -7
  31. package/dist/utils/chartDetection.d.ts +1 -1
  32. package/dist/utils/chartThemes.d.ts +4 -4
  33. package/dist/xyzen.css +1 -1
  34. package/dist/xyzen.es.js +99837 -89933
  35. package/dist/xyzen.umd.js +138 -128
  36. package/package.json +14 -5
  37. package/dist/app/LlmProviders.d.ts +0 -1
  38. package/dist/app/Mcp.d.ts +0 -1
  39. package/dist/test-charts.d.ts +0 -6
@@ -3,16 +3,16 @@ import { EChartsOption } from 'echarts';
3
3
  /**
4
4
  * Chart themes matching the application's design system
5
5
  */
6
- export declare const chartThemes: Record<'light' | 'dark', ChartTheme>;
6
+ export declare const chartThemes: Record<"light" | "dark", ChartTheme>;
7
7
  /**
8
8
  * Generate ECharts theme configuration
9
9
  */
10
- export declare function createEChartsTheme(theme: 'light' | 'dark'): Partial<EChartsOption>;
10
+ export declare function createEChartsTheme(theme: "light" | "dark"): Partial<EChartsOption>;
11
11
  /**
12
12
  * Hook to detect system theme preference
13
13
  */
14
- export declare function useSystemTheme(): 'light' | 'dark';
14
+ export declare function useSystemTheme(): "light" | "dark";
15
15
  /**
16
16
  * Detect theme from DOM classes (common pattern in Tailwind apps)
17
17
  */
18
- export declare function detectThemeFromDOM(): 'light' | 'dark';
18
+ export declare function detectThemeFromDOM(): "light" | "dark";