Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
react-fidelity-ui
Advanced tools
High-fidelity UI pack for React.
Run npm install --save react-fidelity-ui
Breadcrumbs component. This component works with array of objects with schema:
[{
url: 'https://google.com', // string
name: 'Google', // string
isSelected: true // boolean
}, {
url: 'https://yahoo.com,
name: 'Yahoo',
isSelected: false
}]
import React, { Component } from 'react';
import { Dropdown, utils } from 'react-fidelity-ui';
const { changeMultiSelect } = utils;
class App extends Component {
state = {
items: [{
url: 'https://google.com', // string
name: 'Google', // string
isSelected: true // boolean
}, {
url: 'https://yahoo.com,
name: 'Yahoo',
isSelected: false
}]
};
render() {
const { items } = this.state;
return (
<div className="app">
<Breadcrumbs
isToggleableOnMobile={true}
isStackedOnMobile={false}
items={createItems(5)}
onChange={({ url, event }) => {
event.preventDefault();
console.log(url);
}}
/>
</div>
);
}
}
import React, { Component } from 'react';
import { Breadcrumbs } from 'react-fidelity-ui';
const BreadcrumbsComponent = ({ title, text, items }) => (
<Breadcrumbs
isToggleableOnMobile={true} // boolean, default = true
isStackedOnMobile={false} // boolean, default = true
items={createItems(5)} // array of objects
onChange={({ url, name, isSelected, event }) => {}} // function
/>
);
Multi-purpose dropdown component. This component supports single/multi select, items filtering, adding new items. This component works with array of objects with schema:
[{
name: 'Item A', // string
isSelected: true // boolean
}, {
name: 'Item B',
isSelected: false
}]
Timeline component. This component supports horizontal/vertical display, asc/desc sorting. This component works with any array of objects, containing a date field.
Notifications component. This component displays static messages to the DOM.
General-purpose panel component. It comes with a number of built-in themes. This component can be utilized within other components like Dropdown
and Timeline
.
Tag component. It can be utilized within other components like Dropdown
and Timeline
.
Loader component. This component displays a loading spinner.
Icon component. It displays svg icons from the fidelity-ui
icons pack.
FAQs
High fidelity UI pack for ReactJS
The npm package react-fidelity-ui receives a total of 3 weekly downloads. As such, react-fidelity-ui popularity was classified as not popular.
We found that react-fidelity-ui demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.