Checkboxes (#468)

* Allow custom value option

* Add checkboxes interface

* Style custom value checkbox better

* Fix tests
This commit is contained in:
Rijk van Zanten
2020-04-24 13:06:00 -04:00
committed by GitHub
parent 16c3804b0a
commit a7e938ae8d
8 changed files with 489 additions and 7 deletions

View File

@@ -8,6 +8,7 @@ import InterfaceWYSIWYG from './wysiwyg/';
import InterfaceDropdown from './dropdown/';
import InterfaceDropdownMultiselect from './dropdown-multiselect/';
import InterfaceRadioButtons from './radio-buttons';
import InterfaceCheckboxes from './checkboxes';
export const interfaces = [
InterfaceTextInput,
@@ -20,6 +21,7 @@ export const interfaces = [
InterfaceDropdown,
InterfaceDropdownMultiselect,
InterfaceRadioButtons,
InterfaceCheckboxes,
];
export default interfaces;