
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@camunda/c4-notifications
Advanced tools
Camunda C4 Notifications is a React component library for displaying notifications in Camunda Cloud applications.
A flexible and customizable notification library for React applications.
Explore the components and their extensive features in our Storybook deployment — discover all the notification types, customization options, and interactive examples!
To install the library, use npm:
npm install @camunda/c4-notifications
To display notifications, first you need to add the Notifications
component to your application's root.
import { Notifications } from '@camunda/c4-notifications';
function App() {
return (
<div>
{/* Other components */}
<Notifications />
</div>
);
}
Then, you can trigger notifications from anywhere in your application using the notify
object.
import { notify } from '@camunda/c4-notifications';
// Success notification
notify.success({
title: 'Success',
subtitle: 'The operation was successful.',
});
// Error notification
notify.error({
title: 'Error',
subtitle: 'Something went wrong.',
});
You can also create notifications with actions by providing an action
object in the options.
import { notify } from '@camunda/c4-notifications';
notify.info({
title: 'Update Available',
subtitle: 'A new version of the application is available.',
options: {
action: {
label: 'Update',
onClick: () => {
console.log('Updating...');
},
},
},
});
This library relies on the Carbon Design System for its styling. To ensure that the components are rendered correctly, you must have the Carbon theme and other necessary styles imported into your application.
For example, you can import the styles in your main SCSS file:
@use '@carbon/react';
Or in your main JavaScript/TypeScript file:
import '@carbon/react/scss/index.scss';
Please refer to the Carbon Design System documentation
for more information on how to set up the styles in your project. You can also see an example of how to set up the
styles in the index.scss
file in this repository.
You can customize the top offset of the notifications by providing a topOffset
property in the Notifications
component, or the z-index by providing a zIndex
property.
import { Notifications } from '@camunda/c4-notifications';
function App() {
return (
<div>
{/* Other components */}
<Notifications topOffset={100} zIndex={1000} />
</div>
);
}
To get started with development, follow these steps:
# Install dependencies
npm install
# Start the Storybook server
npm run storybook
# Run unit tests
npm run test:unit
# Build the library
npm run build
Contributions are welcome! Please refer to the project's contribution guidelines for more information.
FAQs
Camunda C4 Notifications is a React component library for displaying notifications in Camunda Cloud applications.
The npm package @camunda/c4-notifications receives a total of 722 weekly downloads. As such, @camunda/c4-notifications popularity was classified as not popular.
We found that @camunda/c4-notifications demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 16 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.