Skip to content

Commit

Permalink
chore(all): prepare release 2.0.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Aug 22, 2018
1 parent fb5e829 commit 0718b63
Show file tree
Hide file tree
Showing 13 changed files with 22 additions and 12 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-dialog",
"version": "2.0.0-rc.1",
"version": "2.0.0-rc.2",
"description": "A dialog plugin for Aurelia.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/resources/attach-focus.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ComponentAttached } from 'aurelia-templating';
export declare class AttachFocus implements ComponentAttached {
export default class AttachFocus implements ComponentAttached {
private element;
value: boolean | string;
constructor(element: HTMLElement);
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/resources/attach-focus.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ define(["require", "exports", "aurelia-binding", "aurelia-templating", "aurelia-
], AttachFocus);
return AttachFocus;
}());
exports.AttachFocus = AttachFocus;
exports.default = AttachFocus;
});
2 changes: 1 addition & 1 deletion dist/commonjs/resources/attach-focus.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ComponentAttached } from 'aurelia-templating';
export declare class AttachFocus implements ComponentAttached {
export default class AttachFocus implements ComponentAttached {
private element;
value: boolean | string;
constructor(element: HTMLElement);
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/resources/attach-focus.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ var AttachFocus = /** @class */ (function () {
], AttachFocus);
return AttachFocus;
}());
exports.AttachFocus = AttachFocus;
exports.default = AttachFocus;
2 changes: 1 addition & 1 deletion dist/es2015/resources/attach-focus.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ComponentAttached } from 'aurelia-templating';
export declare class AttachFocus implements ComponentAttached {
export default class AttachFocus implements ComponentAttached {
private element;
value: boolean | string;
constructor(element: HTMLElement);
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/resources/attach-focus.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ AttachFocus.inject = [DOM.Element];
AttachFocus = __decorate([
customAttribute('attach-focus', bindingMode.oneTime)
], AttachFocus);
export { AttachFocus };
export default AttachFocus;
2 changes: 1 addition & 1 deletion dist/native-modules/resources/attach-focus.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ComponentAttached } from 'aurelia-templating';
export declare class AttachFocus implements ComponentAttached {
export default class AttachFocus implements ComponentAttached {
private element;
value: boolean | string;
constructor(element: HTMLElement);
Expand Down
2 changes: 1 addition & 1 deletion dist/native-modules/resources/attach-focus.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ var AttachFocus = /** @class */ (function () {
], AttachFocus);
return AttachFocus;
}());
export { AttachFocus };
export default AttachFocus;
2 changes: 1 addition & 1 deletion dist/system/resources/attach-focus.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ComponentAttached } from 'aurelia-templating';
export declare class AttachFocus implements ComponentAttached {
export default class AttachFocus implements ComponentAttached {
private element;
value: boolean | string;
constructor(element: HTMLElement);
Expand Down
2 changes: 1 addition & 1 deletion dist/system/resources/attach-focus.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ System.register(["aurelia-binding", "aurelia-templating", "aurelia-pal"], functi
], AttachFocus);
return AttachFocus;
}());
exports_1("AttachFocus", AttachFocus);
exports_1("default", AttachFocus);
}
};
});
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="2.0.0-rc.2"></a>
# [2.0.0-rc.2](https://github.com/aurelia/dialog/compare/2.0.0-rc.1...2.0.0-rc.2) (2018-08-22)


### Bug Fixes

* **attach-focus:** AttachFocus must be the default export fix [#358](https://github.com/aurelia/dialog/issues/358) ([fb5e829](https://github.com/aurelia/dialog/commit/fb5e829))



<a name="2.0.0-rc.1"></a>
# [2.0.0-rc.1](https://github.com/aurelia/dialog/compare/1.0.0...2.0.0-rc.1) (2018-08-21)

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-dialog",
"version": "2.0.0-rc.1",
"version": "2.0.0-rc.2",
"description": "A dialog plugin for Aurelia.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 0718b63

Please sign in to comment.