lion/packages/field
CircleCI a5afaaeb27 chore: release new versions
- @lion/checkbox-group@0.7.0
 - @lion/checkbox@0.3.13
 - @lion/choice-input@0.7.0
 - @lion/field@0.10.0
 - @lion/fieldset@0.8.0
 - @lion/form-system@0.5.0
 - @lion/form@0.4.13
 - @lion/input-amount@0.5.13
 - @lion/input-date@0.5.13
 - @lion/input-datepicker@0.8.17
 - @lion/input-email@0.5.13
 - @lion/input-iban@0.5.14
 - @lion/input-range@0.2.13
 - @lion/input@0.5.13
 - @lion/option@0.5.3
 - @lion/radio-group@0.7.0
 - @lion/radio@0.4.3
 - @lion/select-rich@0.11.0
 - @lion/select@0.5.13
 - @lion/switch@0.5.15
 - @lion/textarea@0.5.14
2020-02-20 15:26:32 +00:00
..
docs fix: removed FieldCustomMixin 2020-02-20 16:14:26 +01:00
src fix(field): interaction states initialized after registration ready 2020-02-20 16:14:26 +01:00
test fix: removed FieldCustomMixin 2020-02-20 16:14:26 +01:00
test-suites fix(field): interaction states initialized after registration ready 2020-02-20 16:14:26 +01:00
CHANGELOG.md chore: release new versions 2020-02-20 15:26:32 +00:00
index.js fix: removed FieldCustomMixin 2020-02-20 16:14:26 +01:00
lion-field.js feat: release inital public lion version 2019-04-26 10:37:57 +02:00
package.json chore: release new versions 2020-02-20 15:26:32 +00:00
README.md chore: todo cleanup 2020-02-19 21:51:48 +01:00

Form Fundaments

Form controls are the most fundamental building block of the Forms. They are the basis of both fields and fieldsets, and the form itself.

Fields

Fields are the actual form controls the end user interacts with. They extend the Field class, which on its turn uses the FormControlMixin. Fields provide a normalized, predictable API for platform components and custom made form controls. On top of this, they feature:

  • data synchronization with models
  • formatting of view values
  • advanced validation possibilities
  • creation of advanced user interaction scenarios via interaction states
  • provision of labels and help texts in an easy, declarative manner
  • better focus management
  • accessibility out of the box
  • advanced styling possibilities: map your own Design System to the internal HTML structure

Platform fields (wrappers)

Custom fields (wrappers)

Whenever a native form control doesn't exist or is not sufficient, a custom form field should be created. One could think of components like:

  • slider
  • combobox
  • autocomplete
  • etc...

Fieldsets

Fieldsets are groups of fields. They can be considered fields on their own as well, since they partly share the normalized api via FormControlMixin. Fieldsets are the basis for:

Other Resources