Split up v-form, add repeater (#557)

* Add translation strings

* Move type styles to mixins

* Add repeater interface

* Prevent stepper buttons when disabled

* Split up v-form

* Support disabled in repeater
This commit is contained in:
Rijk van Zanten
2020-05-12 12:00:16 -04:00
committed by GitHub
parent c4885d41f4
commit fb43a5dde9
16 changed files with 764 additions and 210 deletions

View File

@@ -18,6 +18,7 @@ import InterfaceOneToMany from './one-to-many';
import InterfaceHash from './hash';
import InterfaceSlug from './slug';
import InterfaceUser from './user';
import InterfaceRepeater from './repeater';
export const interfaces = [
InterfaceTextInput,
@@ -40,6 +41,7 @@ export const interfaces = [
InterfaceHash,
InterfaceSlug,
InterfaceUser,
InterfaceRepeater,
];
export default interfaces;