-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(all): prepare release 1.0.0-beta.1.2.0
- Loading branch information
1 parent
5ad6cab
commit a81cf65
Showing
150 changed files
with
6,338 additions
and
5,462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,28 +46,25 @@ System.config({ | |
"util": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-metadata": "npm:[email protected].3", | ||
"aurelia-metadata": "npm:[email protected].6", | ||
"aurelia-pal": "npm:[email protected]", | ||
"aurelia-task-queue": "npm:[email protected]", | ||
"core-js": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-logging": "npm:[email protected]", | ||
"aurelia-metadata": "npm:[email protected].3", | ||
"aurelia-metadata": "npm:[email protected].6", | ||
"aurelia-pal": "npm:[email protected]", | ||
"core-js": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-metadata": "npm:[email protected].3", | ||
"aurelia-metadata": "npm:[email protected].6", | ||
"aurelia-path": "npm:[email protected]" | ||
}, | ||
"npm:[email protected].3": { | ||
"npm:[email protected].6": { | ||
"aurelia-pal": "npm:[email protected]", | ||
"core-js": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-pal": "npm:[email protected]" | ||
}, | ||
"npm:[email protected]": { | ||
"aurelia-pal": "npm:[email protected]", | ||
"core-js": "npm:[email protected]" | ||
|
@@ -88,7 +85,7 @@ System.config({ | |
"aurelia-dependency-injection": "npm:[email protected]", | ||
"aurelia-loader": "npm:[email protected]", | ||
"aurelia-logging": "npm:[email protected]", | ||
"aurelia-metadata": "npm:[email protected].3", | ||
"aurelia-metadata": "npm:[email protected].6", | ||
"aurelia-pal": "npm:[email protected]", | ||
"aurelia-path": "npm:[email protected]", | ||
"aurelia-task-queue": "npm:[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
define(['exports'], function (exports) { | ||
'use strict'; | ||
|
||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
|
||
function _classCallCheck(instance, Constructor) { | ||
if (!(instance instanceof Constructor)) { | ||
throw new TypeError("Cannot call a class as a function"); | ||
} | ||
} | ||
|
||
var AbstractRepeater = exports.AbstractRepeater = function () { | ||
function AbstractRepeater(options) { | ||
_classCallCheck(this, AbstractRepeater); | ||
|
||
Object.assign(this, { | ||
local: 'items', | ||
viewsRequireLifecycle: true | ||
}, options); | ||
} | ||
|
||
AbstractRepeater.prototype.viewCount = function viewCount() { | ||
throw new Error('subclass must implement `viewCount`'); | ||
}; | ||
|
||
AbstractRepeater.prototype.views = function views() { | ||
throw new Error('subclass must implement `views`'); | ||
}; | ||
|
||
AbstractRepeater.prototype.view = function view(index) { | ||
throw new Error('subclass must implement `view`'); | ||
}; | ||
|
||
AbstractRepeater.prototype.addView = function addView(bindingContext, overrideContext) { | ||
throw new Error('subclass must implement `addView`'); | ||
}; | ||
|
||
AbstractRepeater.prototype.insertView = function insertView(index, bindingContext, overrideContext) { | ||
throw new Error('subclass must implement `insertView`'); | ||
}; | ||
|
||
AbstractRepeater.prototype.removeAllViews = function removeAllViews(returnToCache, skipAnimation) { | ||
throw new Error('subclass must implement `removeAllViews`'); | ||
}; | ||
|
||
AbstractRepeater.prototype.removeView = function removeView(index, returnToCache, skipAnimation) { | ||
throw new Error('subclass must implement `removeView`'); | ||
}; | ||
|
||
AbstractRepeater.prototype.updateBindings = function updateBindings(view) { | ||
throw new Error('subclass must implement `updateBindings`'); | ||
}; | ||
|
||
return AbstractRepeater; | ||
}(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.