mirror of https://github.com/artf/grapesjs.git
4 changed files with 10 additions and 10 deletions
@ -1,4 +0,0 @@ |
|||
import ComponentView from '../../../dom_components/view/ComponentView'; |
|||
import ComponentDataCollection from './ComponentDataCollection'; |
|||
|
|||
export default class ComponentDataCollectionView extends ComponentView<ComponentDataCollection> {} |
|||
@ -1,6 +1,6 @@ |
|||
import ComponentView from '../../../dom_components/view/ComponentView'; |
|||
import DynamicVariableListenerManager from '../DataVariableListenerManager'; |
|||
import ComponentDataCollectionVariable from './ComponentDataCollectionVariable'; |
|||
import ComponentView from '../../dom_components/view/ComponentView'; |
|||
import DynamicVariableListenerManager from '../model/DataVariableListenerManager'; |
|||
import ComponentDataCollectionVariable from '../model/data_collection/ComponentDataCollectionVariable'; |
|||
|
|||
export default class ComponentDataCollectionVariableView extends ComponentView<ComponentDataCollectionVariable> { |
|||
collectionVariableListener?: DynamicVariableListenerManager; |
|||
@ -0,0 +1,4 @@ |
|||
import ComponentView from '../../dom_components/view/ComponentView'; |
|||
import ComponentDataCollection from '../model/data_collection/ComponentDataCollection'; |
|||
|
|||
export default class ComponentDataCollectionView extends ComponentView<ComponentDataCollection> {} |
|||
Loading…
Reference in new issue