Skip to content

Commit

Permalink
chore(all): prepare release 0.13.9
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jul 16, 2015
1 parent 121ca64 commit 9bff03e
Show file tree
Hide file tree
Showing 13 changed files with 99 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating",
"version": "0.13.8",
"version": "0.13.9",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
1 change: 1 addition & 0 deletions dist/amd/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ declare module 'aurelia-templating' {
import { bindingMode, ObserverLocator, BindingExpression, Binding, ValueConverterResource, EventManager } from 'aurelia-binding';
import { TaskQueue } from 'aurelia-task-queue';
import * as LogManager from 'aurelia-logging';
export function createTemplateFromMarkup(markup: any): any;
export const animationEvent: any;
export class Animator {
static configureDefault(container: any, animatorInstance: any): any;
Expand Down
17 changes: 17 additions & 0 deletions dist/amd/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade

var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();

exports.createTemplateFromMarkup = createTemplateFromMarkup;
exports.hyphenate = hyphenate;
exports.nextElementSibling = nextElementSibling;
exports.behavior = behavior;
Expand All @@ -31,6 +32,22 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loade

var _core = _interopRequireDefault(_coreJs);

var needsTemplateFixup = !('content' in document.createElement('template'));

function createTemplateFromMarkup(markup) {
var temp = document.createElement('template');
temp.innerHTML = markup;

if (needsTemplateFixup) {
temp.content = document.createDocumentFragment();
while (temp.firstChild) {
temp.content.appendChild(temp.firstChild);
}
}

return temp;
}

var animationEvent = {
enterBegin: 'animation:enter:begin',
enterActive: 'animation:enter:active',
Expand Down
1 change: 1 addition & 0 deletions dist/commonjs/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ declare module 'aurelia-templating' {
import { bindingMode, ObserverLocator, BindingExpression, Binding, ValueConverterResource, EventManager } from 'aurelia-binding';
import { TaskQueue } from 'aurelia-task-queue';
import * as LogManager from 'aurelia-logging';
export function createTemplateFromMarkup(markup: any): any;
export const animationEvent: any;
export class Animator {
static configureDefault(container: any, animatorInstance: any): any;
Expand Down
17 changes: 17 additions & 0 deletions dist/commonjs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ exports.__esModule = true;

var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();

exports.createTemplateFromMarkup = createTemplateFromMarkup;
exports.hyphenate = hyphenate;
exports.nextElementSibling = nextElementSibling;
exports.behavior = behavior;
Expand Down Expand Up @@ -50,6 +51,22 @@ var _aureliaLogging = require('aurelia-logging');

var LogManager = _interopRequireWildcard(_aureliaLogging);

var needsTemplateFixup = !('content' in document.createElement('template'));

function createTemplateFromMarkup(markup) {
var temp = document.createElement('template');
temp.innerHTML = markup;

if (needsTemplateFixup) {
temp.content = document.createDocumentFragment();
while (temp.firstChild) {
temp.content.appendChild(temp.firstChild);
}
}

return temp;
}

var animationEvent = {
enterBegin: 'animation:enter:begin',
enterActive: 'animation:enter:active',
Expand Down
1 change: 1 addition & 0 deletions dist/es6/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ declare module 'aurelia-templating' {
import { bindingMode, ObserverLocator, BindingExpression, Binding, ValueConverterResource, EventManager } from 'aurelia-binding';
import { TaskQueue } from 'aurelia-task-queue';
import * as LogManager from 'aurelia-logging';
export function createTemplateFromMarkup(markup: any): any;
export const animationEvent: any;
export class Animator {
static configureDefault(container: any, animatorInstance: any): any;
Expand Down
16 changes: 16 additions & 0 deletions dist/es6/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ import {Container} from 'aurelia-dependency-injection';
import {bindingMode,ObserverLocator,BindingExpression,Binding,ValueConverterResource,EventManager} from 'aurelia-binding';
import {TaskQueue} from 'aurelia-task-queue';

let needsTemplateFixup = !('content' in document.createElement('template'));

export function createTemplateFromMarkup(markup){
let temp = document.createElement('template');
temp.innerHTML = markup;

if(needsTemplateFixup){
temp.content = document.createDocumentFragment();
while(temp.firstChild){
temp.content.appendChild(temp.firstChild);
}
}

return temp;
}

export const animationEvent = {
enterBegin: 'animation:enter:begin',
enterActive: 'animation:enter:active',
Expand Down
1 change: 1 addition & 0 deletions dist/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ declare module 'aurelia-templating' {
import { bindingMode, ObserverLocator, BindingExpression, Binding, ValueConverterResource, EventManager } from 'aurelia-binding';
import { TaskQueue } from 'aurelia-task-queue';
import * as LogManager from 'aurelia-logging';
export function createTemplateFromMarkup(markup: any): any;
export const animationEvent: any;
export class Animator {
static configureDefault(container: any, animatorInstance: any): any;
Expand Down
16 changes: 16 additions & 0 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ import {Container} from 'aurelia-dependency-injection';
import {bindingMode,ObserverLocator,BindingExpression,Binding,ValueConverterResource,EventManager} from 'aurelia-binding';
import {TaskQueue} from 'aurelia-task-queue';

let needsTemplateFixup = !('content' in document.createElement('template'));

export function createTemplateFromMarkup(markup){
let temp = document.createElement('template');
temp.innerHTML = markup;

if(needsTemplateFixup){
temp.content = document.createDocumentFragment();
while(temp.firstChild){
temp.content.appendChild(temp.firstChild);
}
}

return temp;
}

export const animationEvent = {
enterBegin: 'animation:enter:begin',
enterActive: 'animation:enter:active',
Expand Down
1 change: 1 addition & 0 deletions dist/system/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ declare module 'aurelia-templating' {
import { bindingMode, ObserverLocator, BindingExpression, Binding, ValueConverterResource, EventManager } from 'aurelia-binding';
import { TaskQueue } from 'aurelia-task-queue';
import * as LogManager from 'aurelia-logging';
export function createTemplateFromMarkup(markup: any): any;
export const animationEvent: any;
export class Animator {
static configureDefault(container: any, animatorInstance: any): any;
Expand Down
19 changes: 18 additions & 1 deletion dist/system/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader', 'aurelia-dependency-injection', 'aurelia-binding', 'aurelia-task-queue', 'aurelia-logging'], function (_export) {
'use strict';

var core, Metadata, Origin, Decorators, relativeToFile, TemplateRegistryEntry, Loader, Container, bindingMode, ObserverLocator, BindingExpression, Binding, ValueConverterResource, EventManager, TaskQueue, LogManager, animationEvent, Animator, capitalMatcher, ViewStrategy, UseViewStrategy, ConventionalViewStrategy, NoViewStrategy, TemplateRegistryViewStrategy, InlineViewStrategy, BindingLanguage, ResourceRegistry, ViewResources, View, proto, placeholder, ContentSelector, ViewSlot, BoundViewFactory, defaultFactoryOptions, ViewFactory, nextInjectorId, defaultCompileOptions, hasShadowDOM, ViewCompiler, logger, ProxyViewFactory, ViewEngine, BehaviorInstance, BindableProperty, BehaviorPropertyObserver, defaultInstruction, contentSelectorFactoryOptions, hasShadowDOM, HtmlBehaviorResource, ResourceModule, ResourceDescription, ModuleAnalyzer, noMutations, ChildObserver, ChildObserverBinder, CompositionEngine, ElementConfigResource;
var core, Metadata, Origin, Decorators, relativeToFile, TemplateRegistryEntry, Loader, Container, bindingMode, ObserverLocator, BindingExpression, Binding, ValueConverterResource, EventManager, TaskQueue, LogManager, needsTemplateFixup, animationEvent, Animator, capitalMatcher, ViewStrategy, UseViewStrategy, ConventionalViewStrategy, NoViewStrategy, TemplateRegistryViewStrategy, InlineViewStrategy, BindingLanguage, ResourceRegistry, ViewResources, View, proto, placeholder, ContentSelector, ViewSlot, BoundViewFactory, defaultFactoryOptions, ViewFactory, nextInjectorId, defaultCompileOptions, hasShadowDOM, ViewCompiler, logger, ProxyViewFactory, ViewEngine, BehaviorInstance, BindableProperty, BehaviorPropertyObserver, defaultInstruction, contentSelectorFactoryOptions, hasShadowDOM, HtmlBehaviorResource, ResourceModule, ResourceDescription, ModuleAnalyzer, noMutations, ChildObserver, ChildObserverBinder, CompositionEngine, ElementConfigResource;

var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();

_export('createTemplateFromMarkup', createTemplateFromMarkup);

_export('hyphenate', hyphenate);

_export('nextElementSibling', nextElementSibling);
Expand Down Expand Up @@ -43,6 +45,20 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }

function createTemplateFromMarkup(markup) {
var temp = document.createElement('template');
temp.innerHTML = markup;

if (needsTemplateFixup) {
temp.content = document.createDocumentFragment();
while (temp.firstChild) {
temp.content.appendChild(temp.firstChild);
}
}

return temp;
}

function addHyphenAndLower(char) {
return '-' + char.toLowerCase();
}
Expand Down Expand Up @@ -539,6 +555,7 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-path', 'aurelia-loader'
LogManager = _aureliaLogging;
}],
execute: function () {
needsTemplateFixup = !('content' in document.createElement('template'));
animationEvent = {
enterBegin: 'animation:enter:begin',
enterActive: 'animation:enter:active',
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.13.9 (2015-07-16)


#### Bug Fixes

* **build:** missed adding new file ([121ca640](http://github.com/aurelia/templating/commit/121ca6406b3444d1d4bc33c90a70009cfe5e66ee))


### 0.13.8 (2015-07-16)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating",
"version": "0.13.8",
"version": "0.13.9",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 9bff03e

Please sign in to comment.