- finished new flow builder UI;

- fixed reset pass functionality;
This commit is contained in:
Vitalii Kiiko
2025-01-10 12:18:53 +01:00
parent a418548e45
commit f2f844d388
6 changed files with 138 additions and 164 deletions

View File

@@ -16,6 +16,7 @@ import Wysiwyg from './components/Wysiwyg';
import Checkboxes from './components/Checkboxes';
import Fileupload from './components/Fileupload';
import Table from './components/Table';
import PasswordField from './components/PasswordField';
const FormField = (props) => {
const fields = {
@@ -31,7 +32,8 @@ const FormField = (props) => {
radio: Radio,
wysiwyg: Wysiwyg,
checkboxes: Checkboxes,
table: Table
table: Table,
password: PasswordField
}
const Comp = !isNil(fields[props.type]) ? fields[props.type] : null;