@odoo/owl 2.0.0-alpha.2 → 2.0.0-beta-5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/owl.cjs.js +1538 -1065
- package/dist/owl.cjs.min.js +1 -1
- package/dist/owl.es.js +1539 -1065
- package/dist/owl.es.min.js +1 -1
- package/dist/owl.iife.js +1538 -1065
- package/dist/owl.iife.min.js +1 -1
- package/dist/types/app/app.d.ts +3 -3
- package/dist/types/app/template_helpers.d.ts +3 -2
- package/dist/types/app/template_set.d.ts +2 -9
- package/dist/types/blockdom/event_catcher.d.ts +7 -0
- package/dist/types/blockdom/events.d.ts +1 -0
- package/dist/types/blockdom/index.d.ts +1 -0
- package/dist/types/compiler/code_generator.d.ts +9 -6
- package/dist/types/compiler/parser.d.ts +25 -23
- package/dist/types/component/component.d.ts +1 -1
- package/dist/types/component/component_node.d.ts +22 -7
- package/dist/types/component/fibers.d.ts +5 -0
- package/dist/types/component/scheduler.d.ts +3 -4
- package/dist/types/index.d.ts +3 -5
- package/dist/types/reactivity.d.ts +12 -13
- package/dist/types/utils.d.ts +7 -0
- package/package.json +1 -1
- package/dist/types/memo.d.ts +0 -6
package/README.md
CHANGED
|
@@ -82,6 +82,7 @@ Are you new to Owl? This is the place to start!
|
|
|
82
82
|
- [Component](doc/reference/component.md)
|
|
83
83
|
- [Component Lifecycle](doc/reference/component.md#lifecycle)
|
|
84
84
|
- [Concurrency Model](doc/reference/concurrency_model.md)
|
|
85
|
+
- [Dev mode](doc/reference/app.md#dev-mode)
|
|
85
86
|
- [Dynamic sub components](doc/reference/component.md#dynamic-sub-components)
|
|
86
87
|
- [Environment](doc/reference/environment.md)
|
|
87
88
|
- [Error Handling](doc/reference/error_handling.md)
|
|
@@ -110,6 +111,7 @@ Are you new to Owl? This is the place to start!
|
|
|
110
111
|
- [Comparison with React/Vue](doc/miscellaneous/comparison.md)
|
|
111
112
|
- [Why did Odoo build Owl?](doc/miscellaneous/why_owl.md)
|
|
112
113
|
- [Changelog (from owl 1.x to 2.x)](CHANGELOG.md)
|
|
114
|
+
- [Notes on compiled templates](doc/miscellaneous/compiled_template.md)
|
|
113
115
|
|
|
114
116
|
## Installing Owl
|
|
115
117
|
|