![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.