Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 33 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /** |
||
12 | import UserInterface from 'o2system-venus-ui'; |
||
13 | import $ from 'jquery'; |
||
14 | import Input from './Components/Input'; |
||
15 | import Select from './Components/Select'; |
||
16 | import Validation from './Components/Validation'; |
||
17 | import Wizard from './Components/Wizard'; |
||
18 | import Upload from './Components/Upload'; |
||
19 | import Editor from './Components/Editor'; |
||
20 | import './Form.scss'; |
||
21 | |||
22 | /** |
||
23 | * Class Form |
||
24 | */ |
||
25 | export default class Form { |
||
26 | constructor() { |
||
27 | window.$ = window.jQuery = $; |
||
28 | |||
29 | /** |
||
30 | * Initiate component input |
||
31 | */ |
||
32 | this.input = new Input(); |
||
33 | |||
34 | this.select = new Select(); |
||
35 | |||
36 | this.validation = new Validation(); |
||
37 | |||
38 | this.wizard = new Wizard(); |
||
39 | |||
40 | this.upload = new Upload(); |
||
41 | |||
42 | this.editor = new Editor(); |
||
43 | } |
||
44 | } |