##// 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:

r8:b71d8639b457 v1.0.1 default
r10:641c326d4bb4 v1.0.2 default
Show More
tsconfig.json
23 lines | 495 B | application/json | JsonLexer
cin
Initial commit, project structure.
r0 {
"extends": "../tsconfig",
"compilerOptions": {
"baseUrl": ".",
"rootDir": "ts",
"rootDirs": [
"ts",
cin
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase
r2 "typings",
cin
Initial commit, project structure.
r0 "../main/ts"
],
"types": [
"requirejs",
cin
Maintenance release...
r8 "../main/typings",
"../main/typings/dojo/NodeList-fx"
cin
Initial commit, project structure.
r0 ],
cin
Added events map support to _WidgetBase, corrected attributes map support in _WidgetBase
r2 "module": "ESNext",
"target": "ESNext"
cin
Initial commit, project structure.
r0 },
"include": [
"typings/**/*.ts",
"ts/**/*.ts",
"ts/**/*.tsx"
]
}