@speakeasy-api/moonshine 1.14.0-alpha.6 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/README.md +4 -160
  2. package/dist/components/Breadcrumb/index.d.ts +16 -0
  3. package/dist/components/Command/index.d.ts +1 -1
  4. package/dist/components/Icon/names.d.ts +1 -1
  5. package/dist/components/__beta__/OperationGrouper/index.d.ts +18 -0
  6. package/dist/components/__beta__/SelectionBox/index.d.ts +9 -0
  7. package/dist/components/__beta__/Timeline/index.d.ts +21 -0
  8. package/dist/context/ConfigContext.d.ts +6 -6
  9. package/dist/{createCustomLucideIcon-B0fwYsHC.mjs → createCustomLucideIcon-Dte9LNeV.mjs} +3 -3
  10. package/dist/{createCustomLucideIcon-B0fwYsHC.mjs.map → createCustomLucideIcon-Dte9LNeV.mjs.map} +1 -1
  11. package/dist/{gems-Da5Ikn37.mjs → gems-CjtLG_8k.mjs} +2 -2
  12. package/dist/{gems-Da5Ikn37.mjs.map → gems-CjtLG_8k.mjs.map} +1 -1
  13. package/dist/{go-CCUcj0nC.mjs → go-CwiCakFH.mjs} +2 -2
  14. package/dist/{go-CCUcj0nC.mjs.map → go-CwiCakFH.mjs.map} +1 -1
  15. package/dist/hooks/useTheme.d.ts +3 -2
  16. package/dist/{index-DBDZVjd5.mjs → index-CbOQnHJX.mjs} +9275 -9307
  17. package/dist/index-CbOQnHJX.mjs.map +1 -0
  18. package/dist/index.d.ts +8 -2
  19. package/dist/{lucide-icons-BDw0imyx.mjs → lucide-icons-BcEn3U68.mjs} +1535 -1537
  20. package/dist/{lucide-icons-BDw0imyx.mjs.map → lucide-icons-BcEn3U68.mjs.map} +1 -1
  21. package/dist/{maven-Dyqv5ox3.mjs → maven-BEoiz-Cq.mjs} +2 -2
  22. package/dist/{maven-Dyqv5ox3.mjs.map → maven-BEoiz-Cq.mjs.map} +1 -1
  23. package/dist/moonshine.es.js +90 -91
  24. package/dist/{npm-BZ2LMxi0.mjs → npm-Dx1ctlLU.mjs} +2 -2
  25. package/dist/{npm-BZ2LMxi0.mjs.map → npm-Dx1ctlLU.mjs.map} +1 -1
  26. package/dist/{nuget-D7cIkGc4.mjs → nuget-CQ_PPKdT.mjs} +2 -2
  27. package/dist/{nuget-D7cIkGc4.mjs.map → nuget-CQ_PPKdT.mjs.map} +1 -1
  28. package/dist/{packagist-BEPnDpFh.mjs → packagist-Qi5fd7pr.mjs} +2 -2
  29. package/dist/{packagist-BEPnDpFh.mjs.map → packagist-Qi5fd7pr.mjs.map} +1 -1
  30. package/dist/{pypi-b7UDvQ8R.mjs → pypi-BB3raR_x.mjs} +2 -2
  31. package/dist/{pypi-b7UDvQ8R.mjs.map → pypi-BB3raR_x.mjs.map} +1 -1
  32. package/dist/style.css +1 -1
  33. package/package.json +3 -13
  34. package/dist/components/ThemeSwitcher/index.d.ts +0 -5
  35. package/dist/context/theme.d.ts +0 -1
  36. package/dist/hooks/useIsMounted.d.ts +0 -1
  37. package/dist/index-DBDZVjd5.mjs.map +0 -1
  38. package/src/base.css +0 -940
  39. package/src/global.css +0 -67
  40. package/src/utilities.css +0 -1114
  41. package/types/utilities.d.ts +0 -429
package/dist/index.d.ts CHANGED
@@ -20,6 +20,7 @@ export { Combobox, type ComboboxProps } from './components/Combobox';
20
20
  export { TargetLanguageIcon, type TargetLanguageIconProps, } from './components/TargetLanguageIcon';
21
21
  export { UserAvatar, type UserAvatarProps } from './components/UserAvatar';
22
22
  export { Subnav, type SubnavItem, type SubnavProps } from './components/Subnav';
23
+ export { Breadcrumb, type BreadcrumbProps } from './components/Breadcrumb';
23
24
  export { CodeSnippet, type CodeSnippetProps } from './components/CodeSnippet';
24
25
  export { LoggedInUserMenu, type LoggedInUserProps, } from './components/LoggedInUserMenu';
25
26
  export { PromptInput, type PromptInputProps, type Suggestion, type Attachment, } from './components/PromptInput';
@@ -63,10 +64,15 @@ export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMe
63
64
  export { ContextDropdown } from './components/ContextDropdown';
64
65
  export { ContextDropdownProvider as ContextDropdownProvider } from './components/ContextDropdown/provider';
65
66
  export { useModal as useContextDropdown } from './components/ContextDropdown/useModal';
66
- export { ThemeSwitcher, type ThemeSwitcherProps, } from './components/ThemeSwitcher';
67
- export { cn } from './lib/utils';
68
67
  export declare const beta: {
69
68
  CLIWizard: typeof CLIWizard;
69
+ Timeline: import('react').FC<import('./components/__beta__/Timeline').RootProps> & {
70
+ Item: import('react').FC<import('./components/__beta__/Timeline').ItemProps>;
71
+ Content: {
72
+ ({ children }: import('react').PropsWithChildren): import("react/jsx-runtime").JSX.Element;
73
+ displayName: string;
74
+ };
75
+ };
70
76
  };
71
77
  export { AIChatContainer, AIChatMessage, AIChatMessageComposer, } from './components/AIChat';
72
78
  export { useToolCallApproval } from './components/AIChat/toolCallApproval';