2018-04-02 19:01:53 +00:00
|
|
|
import CustomElementFactory from './CustomElementFactory';
|
|
|
|
import CustomRenderer from './CustomRenderer';
|
|
|
|
import CustomRules from './CustomRules';
|
|
|
|
import CustomUpdater from './CustomUpdater';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
__init__: [
|
|
|
|
'customRenderer',
|
|
|
|
'customRules',
|
|
|
|
'customUpdater'
|
|
|
|
],
|
|
|
|
elementFactory: [ 'type', CustomElementFactory ],
|
|
|
|
customRenderer: [ 'type', CustomRenderer ],
|
|
|
|
customRules: [ 'type', CustomRules ],
|
|
|
|
customUpdater: [ 'type', CustomUpdater ]
|
2015-09-08 12:38:50 +00:00
|
|
|
};
|