Releases: Changerawr/react
Releases · Changerawr/react
v0.1.0 - Initial Release of Changerawr React SDK
Changerawr React SDK v0.1.0
We're excited to release the first version of our headless React SDK for the Changerawr changelog management system!
Features
- 🔄 Full TypeScript support with comprehensive type definitions
- 🎣 React hooks for all Changerawr API endpoints
- 🎮 Complete control over UI implementation
- 🧩 Modular architecture - use only what you need
- 🚀 Optimized for performance and bundle size
Core Components
- API Client: Type-safe client for all Changerawr APIs
- React Context: Global configuration provider
- React Hooks: Complete set of hooks for all operations
- UI Components: Optional components for quick integration
- Utilities: Helper functions for common tasks
Installation
npm install @changerawr/reactDocumentation
See the [README](https://github.com/changerawr/react#readme) for detailed usage instructions.
Example
import { ChangerawrProvider, useChangelog } from '@changerawr/react';
function App() {
return (
<ChangerawrProvider
apiUrl="https://your-changerawr-instance.com/api"
projectId="your-project-id"
>
<ChangelogViewer />
</ChangerawrProvider>
);
}Feedback
We welcome your feedback and contributions! Please open issues for any bugs or feature requests.