-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(prepare-release): release 0.7.0
- Loading branch information
1 parent
0987a56
commit f3b5d58
Showing
42 changed files
with
2,590 additions
and
1,931 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<template> | ||
<content></content> | ||
</template> |
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,42 @@ | ||
define(['exports', 'aurelia-templating', 'aurelia-dependency-injection', '../common/constants', '../common/decorators', '../common/template-gatherer'], function (exports, _aureliaTemplating, _aureliaDependencyInjection, _commonConstants, _commonDecorators, _commonTemplateGatherer) { | ||
'use strict'; | ||
|
||
exports.__esModule = true; | ||
|
||
var _createDecoratedClass = (function () { function defineProperties(target, descriptors, initializers) { for (var i = 0; i < descriptors.length; i++) { var descriptor = descriptors[i]; var decorators = descriptor.decorators; var key = descriptor.key; delete descriptor.key; delete descriptor.decorators; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor || descriptor.initializer) descriptor.writable = true; if (decorators) { for (var f = 0; f < decorators.length; f++) { var decorator = decorators[f]; if (typeof decorator === 'function') { descriptor = decorator(target, key, descriptor) || descriptor; } else { throw new TypeError('The decorator for method ' + descriptor.key + ' is of the invalid type ' + typeof decorator); } } if (descriptor.initializer !== undefined) { initializers[key] = descriptor; continue; } } Object.defineProperty(target, key, descriptor); } } return function (Constructor, protoProps, staticProps, protoInitializers, staticInitializers) { if (protoProps) defineProperties(Constructor.prototype, protoProps, protoInitializers); if (staticProps) defineProperties(Constructor, staticProps, staticInitializers); return Constructor; }; })(); | ||
|
||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } } | ||
|
||
function _defineDecoratedPropertyDescriptor(target, key, descriptors) { var _descriptor = descriptors[key]; if (!_descriptor) return; var descriptor = {}; for (var _key in _descriptor) descriptor[_key] = _descriptor[_key]; descriptor.value = descriptor.initializer ? descriptor.initializer.call(target) : undefined; Object.defineProperty(target, key, descriptor); } | ||
|
||
var GridToolbar = (function () { | ||
var _instanceInitializers = {}; | ||
|
||
_createDecoratedClass(GridToolbar, [{ | ||
key: 'templates', | ||
decorators: [_aureliaTemplating.children(_commonConstants.constants.elementPrefix + 'template')], | ||
initializer: null, | ||
enumerable: true | ||
}], null, _instanceInitializers); | ||
|
||
function GridToolbar(templateGatherer) { | ||
_classCallCheck(this, _GridToolbar); | ||
|
||
_defineDecoratedPropertyDescriptor(this, 'templates', _instanceInitializers); | ||
|
||
this.templateGatherer = templateGatherer; | ||
} | ||
|
||
GridToolbar.prototype.bind = function bind() { | ||
this.templateGatherer.useTemplates(this, 'GridToolbarItem', this.templates); | ||
}; | ||
|
||
var _GridToolbar = GridToolbar; | ||
GridToolbar = _aureliaDependencyInjection.inject(_commonTemplateGatherer.TemplateGatherer)(GridToolbar) || GridToolbar; | ||
GridToolbar = _commonDecorators.generateBindables('GridToolbarItem')(GridToolbar) || GridToolbar; | ||
GridToolbar = _aureliaTemplating.customElement(_commonConstants.constants.elementPrefix + 'grid-toolbar')(GridToolbar) || GridToolbar; | ||
return GridToolbar; | ||
})(); | ||
|
||
exports.GridToolbar = GridToolbar; | ||
}); |
Oops, something went wrong.