initial commit

This commit is contained in:
2026-04-24 16:06:17 +02:00
commit 567c2f8da4
27 changed files with 4806 additions and 0 deletions
@@ -0,0 +1,16 @@
import * as React from 'react';
import ElixFormsReactAbstract from './ElixFormsReactAbstract';
export default class ElixFormsReact extends ElixFormsReactAbstract {
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 { ElixFormsReact };