Skip to content

Commit 0718b63

Browse files
chore(all): prepare release 2.0.0-rc.2
1 parent fb5e829 commit 0718b63

File tree

13 files changed

+22
-12
lines changed

13 files changed

+22
-12
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-dialog",
3-
"version": "2.0.0-rc.1",
3+
"version": "2.0.0-rc.2",
44
"description": "A dialog plugin for Aurelia.",
55
"keywords": [
66
"aurelia",

dist/amd/resources/attach-focus.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ComponentAttached } from 'aurelia-templating';
2-
export declare class AttachFocus implements ComponentAttached {
2+
export default class AttachFocus implements ComponentAttached {
33
private element;
44
value: boolean | string;
55
constructor(element: HTMLElement);

dist/amd/resources/attach-focus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ define(["require", "exports", "aurelia-binding", "aurelia-templating", "aurelia-
2727
], AttachFocus);
2828
return AttachFocus;
2929
}());
30-
exports.AttachFocus = AttachFocus;
30+
exports.default = AttachFocus;
3131
});

dist/commonjs/resources/attach-focus.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ComponentAttached } from 'aurelia-templating';
2-
export declare class AttachFocus implements ComponentAttached {
2+
export default class AttachFocus implements ComponentAttached {
33
private element;
44
value: boolean | string;
55
constructor(element: HTMLElement);

dist/commonjs/resources/attach-focus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ var AttachFocus = /** @class */ (function () {
2929
], AttachFocus);
3030
return AttachFocus;
3131
}());
32-
exports.AttachFocus = AttachFocus;
32+
exports.default = AttachFocus;

dist/es2015/resources/attach-focus.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ComponentAttached } from 'aurelia-templating';
2-
export declare class AttachFocus implements ComponentAttached {
2+
export default class AttachFocus implements ComponentAttached {
33
private element;
44
value: boolean | string;
55
constructor(element: HTMLElement);

dist/es2015/resources/attach-focus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ AttachFocus.inject = [DOM.Element];
2626
AttachFocus = __decorate([
2727
customAttribute('attach-focus', bindingMode.oneTime)
2828
], AttachFocus);
29-
export { AttachFocus };
29+
export default AttachFocus;

dist/native-modules/resources/attach-focus.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ComponentAttached } from 'aurelia-templating';
2-
export declare class AttachFocus implements ComponentAttached {
2+
export default class AttachFocus implements ComponentAttached {
33
private element;
44
value: boolean | string;
55
constructor(element: HTMLElement);

dist/native-modules/resources/attach-focus.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ var AttachFocus = /** @class */ (function () {
2727
], AttachFocus);
2828
return AttachFocus;
2929
}());
30-
export { AttachFocus };
30+
export default AttachFocus;

dist/system/resources/attach-focus.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ComponentAttached } from 'aurelia-templating';
2-
export declare class AttachFocus implements ComponentAttached {
2+
export default class AttachFocus implements ComponentAttached {
33
private element;
44
value: boolean | string;
55
constructor(element: HTMLElement);

0 commit comments

Comments
 (0)