Skip to content

Commit

Permalink
fix(all): import from root of dependencies
Browse files Browse the repository at this point in the history
[This](aurelia/templating-resources#221) needs
to be release before this can go out.

Fixes #48
  • Loading branch information
martingust committed May 8, 2016
1 parent b35135d commit 6c41804
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions src/array-virtual-repeat-strategy.js
@@ -1,5 +1,4 @@
import {ArrayRepeatStrategy} from 'aurelia-templating-resources/array-repeat-strategy';
import {createFullOverrideContext} from 'aurelia-templating-resources/repeat-utilities';
import {ArrayRepeatStrategy, createFullOverrideContext} from 'aurelia-templating-resources';
import {updateVirtualOverrideContexts, rebindAndMoveView, getElementDistanceToBottomViewPort} from './utilities';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/utilities.js
@@ -1,4 +1,4 @@
import {updateOverrideContext} from 'aurelia-templating-resources/repeat-utilities';
import {updateOverrideContext} from 'aurelia-templating-resources';

export function calcOuterHeight(element: Element): number {
let height;
Expand Down
2 changes: 1 addition & 1 deletion src/virtual-repeat-strategy-locator.js
@@ -1,4 +1,4 @@
import {RepeatStrategyLocator} from 'aurelia-templating-resources/repeat-strategy-locator';
import {RepeatStrategyLocator} from 'aurelia-templating-resources';
import {ArrayVirtualRepeatStrategy} from './array-virtual-repeat-strategy';

export class VirtualRepeatStrategyLocator extends RepeatStrategyLocator {
Expand Down
8 changes: 4 additions & 4 deletions src/virtual-repeat.js
Expand Up @@ -9,14 +9,14 @@ import {
bindable,
templateController
} from 'aurelia-templating';
import {AbstractRepeater} from 'aurelia-templating-resources';
import {
AbstractRepeater,
getItemsSourceExpression,
isOneTime,
unwrapExpression,
updateOneTimeBinding
} from 'aurelia-templating-resources/repeat-utilities';
import {viewsRequireLifecycle} from 'aurelia-templating-resources/analyze-view-factory';
updateOneTimeBinding,
viewsRequireLifecycle
} from 'aurelia-templating-resources';
import {DOM} from 'aurelia-pal';
import {
getStyleValue,
Expand Down

0 comments on commit 6c41804

Please sign in to comment.