Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@react-formilicious/bulma

PatrickSachs5MIT2.1.1

react-formilicious for the Bulma CSS framework. 🎨

readme

@react-formilicious/bulma npm

Fields for react-formilicious, using the Bulma CSS framework. 🎨

See the storybook for documentation and all available components here: https://patricksachs.github.io/react-formilicious/bulma/

Quick Start

Install @react-formilicious/bulma:

$ npm i @react-formilicious/bulma

Import in your code:

// Make sure to use the Form provided by this library instead of the one by core!
import Form from "@react-formilicious/bulma";
import TagList from "@react-formilicious/bulma/TagList";

<Form
  data={{}}
  elements={[
    {
      key: 'tagList',
      name: 'TagList',
      type: TagList
    }
  ]}
  onSubmit={() => { /* ... */ }}
/>

License

This library is licensed under the MIT License. See the LICENSE file at the root of this source tree for more information.

changelog

Changelog @react-formilicious/fields-bulma

All notable changes to this library will be documented in this file.

The format is based on Keep a Changelog and this library adheres to Semantic Versioning.

2.1.0

  • TextAreas and TextFields now directly pass all of their options to the native elements @PatrickSachs.

2.0.1

  • TextFields in number mode now return parsed floats if possible @PatrickSachs.
  • Removed core inputs, use normal ones instead @PatrickSachs.

2.0.0

  • Updated core to version 2 @PatrickSachs.

1.0.2

  • TagLists have a new prop limit that determines the maximum amount of tags that can be added @PatrickSachs.
  • Changed coloring of unselected tags in TagLists to be dark. A light color now indicates that the tag is disabled @PatrickSachs.

1.0.1

  • TagLists can now be fully translated @PatrickSachs.

1.0.0