Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@hishprorg/hic-eligendi
Advanced tools
[![@hishprorg/hic-eligendi](https://cloud.githubusercontent.com/assets/399776/13906899/1de62f0c-ee9f-11e5-95c0-c515fee8e918.png)](https://@hishprorg/hic-eligendi.github.io)
Stateless React Components for Bootstrap 5.
If you're using Bootstrap 4, you'll need to use Reactstrap v8
Follow the create-react-app instructions to get started and then follow the @hishprorg/hic-eligendi version of adding bootstrap.
npx create-react-app my-app
cd my-app/
npm start
or, if npx (Node >= 6 and npm >= 5.2 ) not available
npm install -g create-react-app
create-react-app my-app
cd my-app/
npm start
Then open http://localhost:3000/ to see your app. The initial structure of your app is setup. Next, let's add @hishprorg/hic-eligendi and bootstrap.
Install @hishprorg/hic-eligendi and Bootstrap from NPM. Reactstrap does not include Bootstrap CSS so this needs to be installed as well:
npm i bootstrap
npm i @hishprorg/hic-eligendi react react-dom
Import Bootstrap CSS in the src/index.js
file:
import 'bootstrap/dist/css/bootstrap.css';
Import required @hishprorg/hic-eligendi components within src/App.js
file or your custom component files:
import { Button } from '@hishprorg/hic-eligendi';
Now you are ready to use the imported @hishprorg/hic-eligendi components within your component hierarchy defined in the render
method. Here is an example App.js
redone
using @hishprorg/hic-eligendi.
These libraries are not bundled with Reactstrap and required at runtime:
This library contains React Bootstrap components that favor composition and control. The library does not depend on jQuery or Bootstrap javascript. However, Poppers.js via react-popper is relied upon for advanced positioning of content like Tooltips, Popovers, and auto-flipping Dropdowns.
There are a few core concepts to understand in order to make the most out of this library.
Your content is expected to be composed via props.children rather than using named props to pass in Components.
// Content passed in via props
const Example = (props) => {
return (
<p>This is a tooltip <TooltipTrigger tooltip={TooltipContent}>example</TooltipTrigger>!</p>
);
}
// Content passed in as children (Preferred)
const PreferredExample = (props) => {
return (
<p>
This is a <a href="#" id="TooltipExample">tooltip</a> example.
<Tooltip target="TooltipExample">
<TooltipContent/>
</Tooltip>
</p>
);
}
Attributes in this library are used to pass in state, conveniently apply modifier classes, enable advanced functionality (like tether), or automatically include non-content based elements.
Examples:
isOpen
- current state for items like dropdown, popover, tooltiptoggle
- callback for toggling isOpen
in the controlling componentcolor
- applies color classes, ex: <Button color="danger"/>
size
- for controlling size classes. ex: <Button size="sm"/>
tag
- customize component output by passing in an element name or Componentvisually-hidden
contenthttps://@hishprorg/hic-eligendi.github.io
Documentation search is powered by Algolia's DocSearch.
Here are some ready-to-go examples for CodeSandbox that you can experiment with.
https://github.com/@hishprorg/hic-eligendi/code-sandbox-examples
Install dependencies:
yarn install
Run examples at http://localhost:8080/ with webpack dev server:
yarn start
Run tests & coverage report:
yarn cover
Watch tests:
yarn test
Release branches/versioning/notes will be automatically created and maintained by the release-please github action. When you're ready to publish the release, just merge the release branch. The release will be created, the new package will be published, and the updated docs will be deployed to https://@hishprorg/hic-eligendi.github.io/.
Organizations and projects using @hishprorg/hic-eligendi
@hishprorg/hic-eligendi
with paging, sorting, filtering, grouping, selection, editing and virtual scrolling features.@hishprorg/hic-eligendi
that visualizes data using a variety of series types, including bar, line, area, scatter, pie, and more.@hishprorg/hic-eligendi
input component integrate seamlessly using Formik
Submit a PR to add to this list!
Looking to build, document and publish reusable components built on top of @hishprorg/hic-eligendi
? Consider forking https://github.com/@hishprorg/hic-eligendi/component-template to kickstart your project!
FAQs
security holding package
The npm package @hishprorg/hic-eligendi receives a total of 0 weekly downloads. As such, @hishprorg/hic-eligendi popularity was classified as not popular.
We found that @hishprorg/hic-eligendi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.