Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
bloomer-extensions
Advanced tools
React components for bulma-extensions.
THIS IS A WORK-IN-PROGRESS
Remember that this is a work-in-progress and therefore future changes are impossible. We do follow Semantic Versioning, which allows you to identify whether a change is breaking or not. But bugs are also possible, therefore, using this library in production is not recommended, yet, and shall be done under your risk. PRs are always welcome.
npm i bloomer-extensions
As stated above, proper documentation is yet in the TO-DO list, and using this library in production is not recommended yet. But if you want to try it yourself or even help with PRs, here are a few examples:
import { Divider,
PageLoader,
ToolTip,
Badge,
CheckRadio,
Slider,
CheckSwitch,
QuickView, QuickViewHeader, QuickViewBody, QuickViewBlock, QuickViewFooter,
Steps, StepItem, StepMarker, StepDetails, StepTitle,
Timeline, TimelineHeader, TimelineItem, TimelineMarker, TimelineContent
} from 'bloomer-extensions'
<Divider />
<Divider isVertical />
<Divider content="HI" />
<PageLoader isActive>
Test
</PageLoader>
<ToolTip text="Hey">Test</ToolTip>
<Badge text="8">
<button class="button">Test</button>
</Badge>
<CheckRadio id="test" checked={this.state.checkradioChecked} onClick={() => this.setState({ checkradioChecked: !this.state.checkradioChecked })}>Click me</Checkradio>
<CheckRadio type="radio" name="myGroup" id="opt1" value="1" checked>Option 1</Checkradio>
<CheckRadio type="radio" name="myGroup" id="opt2" value="2">Option 2</Checkradio>
<Slider value={this.state.sliderValue} onChange={(e) => this.setState({ sliderValue: e.target.value })} />
<p>{ this.state.sliderValue || 50 }</p>
<CheckSwitch checked={this.state.checkswitchChecked} onClick={() => this.setState({ checkswitchChecked: !this.state.checkswitchChecked })}>
Check me
</CheckSwitch>
<QuickView isActive={this.state.quickview}>
<QuickViewHeader>
Title
<Delete onClick={() => this.setState({ quickview: false })} />
</QuickViewHeader>
<QuickViewBody>
<QuickViewBlock>
Hello, world
</QuickViewBlock>
</QuickViewBody>
<QuickViewFooter>
Footer
</QuickViewFooter>
</QuickView>
<Steps isSize='large'>
<StepItem isCompleted isColor='info'>
<StepMarker>
✓
</StepMarker>
<StepDetails>
<StepTitle>Step 1</StepTitle>
<p>Steps' first step</p>
</StepDetails>
</StepItem>
<StepItem isActive>
<StepMarker>
✓
</StepMarker>
<StepDetails>
<StepTitle>Step 2</StepTitle>
<p>Steps' second step</p>
</StepDetails>
</StepItem>
<StepItem>
<StepMarker>
✓
</StepMarker>
<StepDetails>
<StepTitle>Step 3</StepTitle>
<p>Steps' third step</p>
</StepDetails>
</StepItem>
<StepItem>
<StepMarker>
✓
</StepMarker>
<StepDetails>
<StepTitle>Step 4</StepTitle>
<p>Steps' final step</p>
</StepDetails>
</StepItem>
</Steps>
<Timeline>
<TimelineHeader>
<Tag isSize='medium' isColor='primary'>Start</Tag>
</TimelineHeader>
<TimelineItem>
<TimelineMarker />
<TimelineContent>
<p class="heading">January 2016</p>
<p>Timeline content</p>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelineMarker isColor='info' isSize='medium' />
<TimelineContent>
<p class="heading">January 2017</p>
<p>Timeline content</p>
</TimelineContent>
</TimelineItem>
<TimelineItem>
<TimelineMarker isColor='info' isSize='medium' isIcon>
✓
</TimelineMarker>
<TimelineContent>
<p class="heading">January 2017</p>
<p>Timeline content</p>
</TimelineContent>
</TimelineItem>
</Timeline>
MIT.
FAQs
React Bulma extensions
The npm package bloomer-extensions receives a total of 2 weekly downloads. As such, bloomer-extensions popularity was classified as not popular.
We found that bloomer-extensions 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
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.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.