-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
42 lines (38 loc) · 1.08 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* * This is an opensource project that aims to provide
* * useful code wrappers for ExtJS functionalities.
*
* * Feel free to contribute to this repo.
*
* ! ExtJS 6.2.0 GPL
*
* * Sample Usage:
* * const Kony = require('konyvtar-js');
*/
const component = require('./lib/component');
const store = require('./lib/store');
const grid = require('./lib/grid');
const combobox = require('./lib/combobox');
const form = require('./lib/form');
const button = require('./lib/button');
const render = require('./lib/render');
const ajax = require('./lib/ajax');
const url = require('./lib/url');
const task = require('./lib/task');
const window = require('./lib/window');
const message = require('./lib/message');
const stringifyObject = require('stringify-object');
let Kony = { supportedVersion: '6.2.0' };
Kony.component = component;
Kony.store = store;
Kony.grid = grid;
Kony.combobox = combobox;
Kony.form = form;
Kony.button = button;
Kony.render = render;
Kony.ajax = ajax;
Kony.url = url;
Kony.task = task;
Kony.window = window;
Kony.message = message;
module.exports = stringifyObject(Kony);