Skip to content

Commit

Permalink
chore(prepare-release): release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenVinke committed May 5, 2016
1 parent 549932a commit 2cfdb3b
Show file tree
Hide file tree
Showing 246 changed files with 3,887 additions and 6,257 deletions.
105 changes: 46 additions & 59 deletions dist/amd/aurelia-kendoui-bridge.d.ts

Large diffs are not rendered by default.

17 changes: 11 additions & 6 deletions dist/amd/autocomplete/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com
var _instanceInitializers = {};

_createDecoratedClass(AutoComplete, [{
key: 'kOptions',
key: 'kEnabled',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
initializer: null,
enumerable: true
}, {
key: 'kReadOnly',
decorators: [_aureliaTemplating.bindable],
initializer: null,
enumerable: true
}, {
key: 'templates',
Expand All @@ -29,12 +32,14 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com
function AutoComplete(element, widgetBase, viewResources) {
_classCallCheck(this, _AutoComplete);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);
_defineDecoratedPropertyDescriptor(this, 'kEnabled', _instanceInitializers);

_defineDecoratedPropertyDescriptor(this, 'kReadOnly', _instanceInitializers);

_defineDecoratedPropertyDescriptor(this, 'templates', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoAutoComplete').linkViewModel(this).useValueBinding().useViewResources(viewResources);
this.widgetBase = widgetBase.control('kendoAutoComplete').linkViewModel(this).useViewResources(viewResources).useValueBinding().bindToKendo('kEnabled', 'enable').bindToKendo('kReadOnly', 'readonly');
}

AutoComplete.prototype.bind = function bind(ctx) {
Expand Down
17 changes: 0 additions & 17 deletions dist/amd/barcode/barcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,12 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com

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 Barcode = (function () {
var _instanceInitializers = {};

_createDecoratedClass(Barcode, [{
key: 'kOptions',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
enumerable: true
}], null, _instanceInitializers);

function Barcode(element, widgetBase) {
_classCallCheck(this, _Barcode);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoBarcode').linkViewModel(this);
}
Expand Down
14 changes: 8 additions & 6 deletions dist/amd/button/button.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,19 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com
var _instanceInitializers = {};

_createDecoratedClass(Button, [{
key: 'kOptions',
key: 'kEnabled',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
initializer: null,
enumerable: true
}], null, _instanceInitializers);

function Button(element, widgetBase) {
_classCallCheck(this, _Button);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);
_defineDecoratedPropertyDescriptor(this, 'kEnabled', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoButton').linkViewModel(this);
this.widgetBase = widgetBase.control('kendoButton').bindToKendo('kEnabled', 'enable').linkViewModel(this);
}

Button.prototype.bind = function bind(ctx) {
Expand All @@ -45,6 +43,10 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com
});
};

Button.prototype.propertyChanged = function propertyChanged(property, newValue, oldValue) {
this.widgetBase.handlePropertyChanged(this.kWidget, property, newValue, oldValue);
};

Button.prototype.detached = function detached() {
this.widgetBase.destroy(this.kWidget);
};
Expand Down
14 changes: 8 additions & 6 deletions dist/amd/buttongroup/buttongroup.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,19 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com
var _instanceInitializers = {};

_createDecoratedClass(ButtonGroup, [{
key: 'kOptions',
key: 'kEnabled',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
initializer: null,
enumerable: true
}], null, _instanceInitializers);

function ButtonGroup(element, widgetBase) {
_classCallCheck(this, _ButtonGroup);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);
_defineDecoratedPropertyDescriptor(this, 'kEnabled', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoMobileButtonGroup').linkViewModel(this);
this.widgetBase = widgetBase.control('kendoMobileButtonGroup').bindToKendo('kEnabled', 'enable').linkViewModel(this);
}

ButtonGroup.prototype.bind = function bind(ctx) {
Expand All @@ -45,6 +43,10 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com
});
};

ButtonGroup.prototype.propertyChanged = function propertyChanged(property, newValue, oldValue) {
this.widgetBase.handlePropertyChanged(this.kWidget, property, newValue, oldValue);
};

ButtonGroup.prototype.detached = function detached() {
this.widgetBase.destroy(this.kWidget);
};
Expand Down
17 changes: 0 additions & 17 deletions dist/amd/calendar/calendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,12 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com

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 Calendar = (function () {
var _instanceInitializers = {};

_createDecoratedClass(Calendar, [{
key: 'kOptions',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
enumerable: true
}], null, _instanceInitializers);

function Calendar(element, widgetBase, viewResources) {
_classCallCheck(this, _Calendar);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoCalendar').linkViewModel(this).useValueBinding();
}
Expand Down
17 changes: 0 additions & 17 deletions dist/amd/chart/chart.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,12 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com

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 Chart = (function () {
var _instanceInitializers = {};

_createDecoratedClass(Chart, [{
key: 'kOptions',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
enumerable: true
}], null, _instanceInitializers);

function Chart(element, widgetBase) {
_classCallCheck(this, _Chart);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoChart').linkViewModel(this);
}
Expand Down
17 changes: 0 additions & 17 deletions dist/amd/chart/sparkline.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,12 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com

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 Sparkline = (function () {
var _instanceInitializers = {};

_createDecoratedClass(Sparkline, [{
key: 'kOptions',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
enumerable: true
}], null, _instanceInitializers);

function Sparkline(element, widgetBase) {
_classCallCheck(this, _Sparkline);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoSparkline').linkViewModel(this);
}
Expand Down
17 changes: 0 additions & 17 deletions dist/amd/chart/stock.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,12 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com

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 Stock = (function () {
var _instanceInitializers = {};

_createDecoratedClass(Stock, [{
key: 'kOptions',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
enumerable: true
}], null, _instanceInitializers);

function Stock(element, widgetBase) {
_classCallCheck(this, _Stock);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoStockChart').linkViewModel(this);
}
Expand Down
17 changes: 0 additions & 17 deletions dist/amd/chart/treemap.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,12 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-templating', '../com

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 TreeMap = (function () {
var _instanceInitializers = {};

_createDecoratedClass(TreeMap, [{
key: 'kOptions',
decorators: [_aureliaTemplating.bindable],
initializer: function initializer() {
return {};
},
enumerable: true
}], null, _instanceInitializers);

function TreeMap(element, widgetBase) {
_classCallCheck(this, _TreeMap);

_defineDecoratedPropertyDescriptor(this, 'kOptions', _instanceInitializers);

this.element = element;
this.widgetBase = widgetBase.control('kendoTreeMap').linkViewModel(this);
}
Expand Down
Loading

0 comments on commit 2cfdb3b

Please sign in to comment.