Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
129 changes: 0 additions & 129 deletions src/core/mixins/Projector.ts

This file was deleted.

8 changes: 3 additions & 5 deletions tests/core/benchmark/app/main.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import { ProjectorMixin } from '../../../../src/core/mixins/Projector';
import { renderer, w } from '../../../../src/core/vdom';

import App from './App';

const root = document.getElementById('main') || undefined;

const Projector = ProjectorMixin(App);
const projector = new Projector();

projector.append(root);
const r = renderer(() => w(App, {}));
r.mount({ domNode: root });
8 changes: 3 additions & 5 deletions tests/core/functional/meta/Drag.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { v } from '../../../../src/core/vdom';
import { v, w, renderer } from '../../../../src/core/vdom';
import WidgetBase from '../../../../src/core/WidgetBase';
import Projector from '../../../../src/core/mixins/Projector';
import Drag from '../../../../src/core/meta/Drag';

class DragExample extends WidgetBase {
Expand All @@ -24,6 +23,5 @@ class DragExample extends WidgetBase {
}
}

const projector = new (Projector(DragExample))();

projector.append();
const r = renderer(() => w(DragExample, {}));
r.mount();
98 changes: 0 additions & 98 deletions tests/core/unit/mixins/Projector.ts

This file was deleted.

1 change: 0 additions & 1 deletion tests/core/unit/mixins/all.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import './Focus';
import './Themed';
import './I18n';
import './Projector';