Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@ridi/cms-ui
Advanced tools
UI components for Ridibooks CMS SDK.
Install via npm:
npm install --save @ridi/cms-ui
Or use CDN:
<script src="https://cdn.jsdelivr.net/npm/@ridi/cms-ui@0.3/dist/cms-ui.var.js"></script>
import { Menu } from '@ridi/cms-ui';
const menuItems = ... // get menu data from cms-sdk via server-side rendering or custom API.
const Example = (props) => {
return (
<div>
<Menu items={menuItems} />
</div>
);
};
<html>
<head>
<!-- Load library in <head> to avoid flickering. -->
<script src="https://cdn.jsdelivr.net/npm/@ridi/cms-ui@0.3/dist/cms-ui.var.js"></script>
</head>
<body>
<div id="menu_container"></div>
<script>
(function renderMenu() {
var { createElement, render, Menu } = CmsUi;
// Get menu data from cms-sdk via server-side rendering or custom API.
var menuItems = ...
var menuElement = createElement(Menu, { items: menuItems });
var menuContainer = document.getElementById('menu_container');
// Make sure to container DOM element is loaded before call render function.
render(menuElement, menuContainer);
})();
</script>
</body>
</html>
Note: After cms-ui is loaded, following CSS is injected automatically for the layout. This is not configurable for now. If this causes any problem, please notify us.
body { margin: 3.5rem 0 0 0; } @media (min-width: 1200px) { body { margin: 0 0 0 17rem; } }
Install all dependencies:
make install
To compile and run example app, please run:
make start-umd
make start-var
To build cms-ui module, please run:
make build
The output file will be generated in dist
directory.
FAQs
UI components for Ridibooks CMS SDK
We found that @ridi/cms-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.