##// END OF EJS Templates
added type parameter to Evented<T>, T is the event map...
added type parameter to Evented<T>, T is the event map _WidgetBase emit() and on() are now more strict, they accept only valid event names, or explicit `any` added _setValueAttr method to _FormMixin

File last commit:

r2:1e22cac2aaf4 v1.0.0-rc1 default
r10:641c326d4bb4 v1.0.2 default
Show More
StoreTests.ts
26 lines | 531 B | video/mp2t | TypeScriptLexer
cin
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase
r2 import * as Memory from "dojo/store/Memory";
import * as Observable from "dojo/store/Observable";
cin
Initial commit, project structure.
r0
interface Schedule {
cin
updated _WidgetBase typings, added support for the generic type parameter to the constructor
r1 id?: string;
cin
Initial commit, project structure.
r0
title: string;
duration: number;
}
declare const store: dojo.store.api.Store<Schedule>;
const observable = new Observable(store);
cin
updated _WidgetBase typings, added support for the generic type parameter to the constructor
r1 const mem = new Memory<Schedule>();
cin
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase
r2 observable.query().observe(() => { });
store.query().forEach(() => { });
const total = await store.query().total;
const result = await store.query();
cin
updated _WidgetBase typings, added support for the generic type parameter to the constructor
r1
cin
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase
r2 mem.query();
cin
updated _WidgetBase typings, added support for the generic type parameter to the constructor
r1
cin
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase
r2 mem.add({ duration: 10, title: "Test event" });