Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@captn/joy
Advanced tools
[![Discord](https://img.shields.io/discord/1091306623819059300?color=7289da&label=Discord&logo=discord&logoColor=fff&style=for-the-badge)](https://discord.com/invite/m3TBB9XEkb)
The @captn/joy
package provides a suite of UI components and utilities that facilitate building attractive and consistent interfaces for applications within the Captain framework. Built on top of the MUI Joy library, it extends and customizes its components to fit the specific needs of Captain applications, ensuring seamless integration and enhanced user experiences.
To add the @captn/joy
package to your project, run the following command:
npm install @captn/joy
Or with Yarn:
yarn add @captn/joy
@captn/joy
extends MUI Joy's theme with additional colors and utility functions for more dynamic theming capabilities.
import { ThemeProvider } from '@captn/joy';
function MyApp() {
return (
<ThemeProvider>
{/* Your component tree */}
</ThemeProvider>
);
}
Embed your application within an AppFrame
and include a TitleBar
to handle window controls seamlessly and display your app title.
import { AppFrame, TitleBar } from '@captn/joy';
import Typography from "@mui/joy/Typography"
function MyApplication() {
return (
<AppFrame titleBar={<TitleBar><Typography>My Custom App</Typography></TitleBar>}>
{/* Content of your application */}
</AppFrame>
);
}
Use the CustomScrollbars
component to apply consistent scrollbars throughout your application.
import { CustomScrollbars } from '@captn/joy';
function MyScrollableComponent() {
return (
<CustomScrollbars>
{/* Scrollable content here */}
</CustomScrollbars>
);
}
We use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the AGPL 3.0 License - see the LICENSE file for details.
0.17.2 (2024-04-17)
Note: Version bump only for package captn
FAQs
This is a placeholder README. For complete documentation, please visit [Captain SDK Documentation for @captn/joy](https://get-captain.com/captain-sdk/joy).
The npm package @captn/joy receives a total of 0 weekly downloads. As such, @captn/joy popularity was classified as not popular.
We found that @captn/joy demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.