Skip to content

Commit 9c0f3c9

Browse files
committed
update bobril to 4.49.2
1 parent 0ea4d07 commit 9c0f3c9

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "./node_modules/typescript/lib"
3+
}
File renamed without changes.

bobril-v4.44.1/package.json renamed to bobril-v4.49.2/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
"url": "https://github.com/krausest/js-framework-benchmark.git"
2020
},
2121
"devDependencies": {
22-
"bobril-build": "0.47.0"
22+
"bobril-build": "0.50.1"
2323
},
2424
"dependencies": {
25-
"bobril": "4.44.1"
25+
"bobril": "4.49.2"
2626
},
2727
"bobril": {
2828
"title": "Bobril v4.44.1",

bobril-v4.44.1/src/app.ts renamed to bobril-v4.49.2/src/app.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ const Header = b.createComponent<IHeaderData>({
7272
const d = ctx.data;
7373
me.className = "jumbotron";
7474
me.children = divWithClass("row", [
75-
divWithClass("col-md-6", { tag: 'h1', children: "Bobril v4.44.1" }),
75+
divWithClass("col-md-6", { tag: 'h1', children: "Bobril v4.49.2" }),
7676
divWithClass("col-md-6", [
7777
divWithClass("col-sm-6 smallpad", Button({ id: "run", action: () => store.run() }, "Create 1,000 rows")),
7878
divWithClass("col-sm-6 smallpad", Button({ id: "runlots", action: () => store.runLots() }, "Create 10,000 rows")),
@@ -85,17 +85,17 @@ const Header = b.createComponent<IHeaderData>({
8585
}
8686
});
8787

88-
const ClickSelect = {
89-
onClick(ctx: { data: number }) {
88+
const ClickSelect : b.IBobrilComponent = {
89+
onClick(ctx: b.IBobrilCtx, event: b.IBobrilMouseEvent): boolean {
9090
startMeasure("select");
9191
store.select(ctx.data);
9292
b.invalidate();
9393
return true;
9494
}
9595
};
9696

97-
const ClickRemove = {
98-
onClick(ctx: { data: number }) {
97+
const ClickRemove : b.IBobrilComponent = {
98+
onClick(ctx: b.IBobrilCtx, event: b.IBobrilMouseEvent): boolean {
9999
startMeasure("delete");
100100
store.delete(ctx.data);
101101
b.invalidate();
File renamed without changes.
File renamed without changes.

webdriver-ts/src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export let frameworks = [
2828
f("angular-v1.5.8"),
2929
f("angular-v2.2.1"),
3030
f("aurelia-v1.0.7", "aurelia-v1.0.7/dist"),
31-
f("bobril-v4.44.1"),
31+
f("bobril-v4.49.2"),
3232
f("cyclejs-dom-v14.1.0"),
3333
f("dio-v2.1.0"),
3434
f("domvm-v1.2.10"),

0 commit comments

Comments
 (0)