Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@justeat/f-form-field

Package Overview
Dependencies
Maintainers
29
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@justeat/f-form-field

Fozzie Form Field - Fozzie Form Field Component

  • 6.6.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
69
increased by1625%
Maintainers
29
Weekly downloads
 
Created
Source

f-form-field

Fozzie Bear

Fozzie Form Field Component.


npm version CircleCI Coverage Status Known Vulnerabilities


Usage

Installation

Install the module using npm or Yarn:

yarn add @justeat/f-form-field
npm install @justeat/f-form-field

Vue Applications

You can import it in your Vue SFC like this (please note that styles have to be imported separately):

import FormField from '@justeat/f-form-field';
import '@justeat/f-form-field/dist/f-form-field.css';

export default {
    components: {
        FormField
    }
}

If you are using Webpack, you can import the component dynamically to separate the f-form-field bundle from the main bundle.client.js:

import '@justeat/f-form-field/dist/f-form-field.css';

export default {
    components: {
        // …
        FormField: () => import(/* webpackChunkName: "form-field" */ '@justeat/f-form-field')
    }
}

Configuration

Props

There may be props that allow you to customise its functionality.

The props that can be defined are as follows (if any):

PropTypeDefaultDescription
assistiveTextString''Text to assist the user that will display underneath the input field.
dropdownOptionsArraynullThe options to be displayed in the dropdown. Each option can contain the following properties:
text (required) - The text to be displayed.
value (required) - The underlying value for the option.
disabled (optional) - Can be used to prevent an option from being selected.
selected (optional) - This will be ignored by v-model (see Vue docs on Form Input Bindings), but it may be used together with disabled to create a placeholder.
fieldSizeStringmediumThe size of the form field.
Options: small, medium, large
hasErrorBooleanfalseWhen true border colour changes to red.
inputTypeStringtextThe type of input needed.
Options: text, email, password, radio, checkbox, dropdown, number, tel, textarea
isGroupedBooleanfalseWhen true will remove margin between all grouped form fields.
labelDescriptionString''Extra text that will display underneath the label text.
labelDetailsString''Details for the label that will display on the right of label text.
labelTextString''The text that will be displayed in the form field label.
localeString''Sets locale for I18n.
maxNumberNumber or undefinedundefinedSets the value of the max property when inputType is number
minNumberNumber or undefinedundefinedSets the value of the min property when inputType is number
prefixString''Prefix will display on the left of the input field.
shouldShowLabelTextBooleantrueHides the label if set to false
suffixString''Suffix will display on the right of the input field.
valueString or Number''The value of the form field.
isVisuallyRequiredBooleantrueAdds a visual indicator (e.g., an asterisk) to the form field label when the field also has the attribute required=required. When false, a field can still be required but there will be no visual indicator.
requiredBooleann/a This is an optional attribute, not a prop.This attribute will be passed to the native field elements (e.g., input, select, textarea) and should be passed to fields that are required for the form to be valid. Fields are now not required by default.

Slots

Available slots that can be used.

Slot NameTypeDescription
icon-leadingIconWill display an icon inside the input field on the left hand side.
icon-trailingIconWill display an icon inside the input field on the right hand side.

Events

The events that can be subscribed to are as follows (if any):

EventDescription
inputFired when a user changes the value of the form field, args contain details of the change and its context.

Development

Start by cloning the repository and installing the required dependencies:

$ git clone git@github.com:justeat/fozzie-components.git
$ cd fozzie-components
$ yarn

Change directory to the f-form-field package:

$ cd packages/components/molecules/f-form-field

Testing

Unit, Integration and Contract

To test all components, run from root directory. To test only f-form-field, run from the ./fozzie-components/packages/f-form-field directory.

yarn test

Component Tests

# Run Component tests for all components
# Note: Ensure Storybook is not running when running the following commands
cd ./fozzie-components

yarn storybook:build
yarn storybook:serve-static
yarn test-component:chrome

OR

# Run Component tests for f-form-field
# Note: Ensure Storybook is not running when running the following commands
cd ./fozzie-components/packages/f-form-field
yarn test-component:chrome

Documentation to be completed once module is in stable state.

Keywords

FAQs

Package last updated on 30 Apr 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc