rename classes added props configuration for custom fields Co-authored-by: Copilot <copilot@github.com>
16 lines
891 B
TypeScript
16 lines
891 B
TypeScript
import * as React from 'react';
|
|
import ElixFormsComponentAbstract from './ElixFormsComponentAbstract';
|
|
|
|
export default class ElixFormsComponent extends ElixFormsComponentAbstract {
|
|
// public override createCustomFormFields(): React.ReactElement {
|
|
// // const textTest = this.CreateTextInput("COL0018", "TEXT INPUT");
|
|
// // const checkTest = this.CreateCheckboxInput("COL0090", "CHECKBOX INPUT", new Map<number, string>([ [1, "Option 1"], [2, "Option 2"], [3, "Option 3"] ]));
|
|
// // const radioTest = this.CreateRadioInput("COL0091", "RADIO INPUT", new Map<number, string>([ [1, "Option 1"], [2, "Option 2"], [3, "Option 3"] ]));
|
|
// // const boolTest = this.CreateBooleanInput("COL0092", "BOOLEAN INPUT");
|
|
// // const textareaTest = this.CreateTextAreaInput("COL0093", "TEXTAREA INPUT");
|
|
|
|
// return (<></>);
|
|
// }
|
|
}
|
|
|
|
export { ElixFormsComponent as ElixFormsReact }; |