@odoo/owl 2.0.0-alpha.1 → 2.0.0-beta.1
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 -1
- package/dist/owl.cjs.js +1109 -884
- package/dist/owl.cjs.min.js +1 -1
- package/dist/owl.es.js +1110 -884
- package/dist/owl.es.min.js +1 -1
- package/dist/owl.iife.js +1109 -884
- 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 +1 -1
- package/dist/types/app/template_set.d.ts +2 -9
- package/dist/types/blockdom/text.d.ts +4 -4
- package/dist/types/component/component.d.ts +1 -1
- package/dist/types/component/component_node.d.ts +16 -3
- package/dist/types/component/fibers.d.ts +1 -0
- package/dist/types/index.d.ts +3 -5
- package/dist/types/reactivity.d.ts +8 -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
|
@@ -110,6 +110,7 @@ Are you new to Owl? This is the place to start!
|
|
|
110
110
|
- [Comparison with React/Vue](doc/miscellaneous/comparison.md)
|
|
111
111
|
- [Why did Odoo build Owl?](doc/miscellaneous/why_owl.md)
|
|
112
112
|
- [Changelog (from owl 1.x to 2.x)](CHANGELOG.md)
|
|
113
|
+
- [Notes on compiled templates](doc/miscellaneous/compiled_template.md)
|
|
113
114
|
|
|
114
115
|
## Installing Owl
|
|
115
116
|
|
|
@@ -121,5 +122,5 @@ npm install @odoo/owl
|
|
|
121
122
|
|
|
122
123
|
If you want to use a simple `<script>` tag, the last release can be downloaded here:
|
|
123
124
|
|
|
124
|
-
- [owl-1.4.
|
|
125
|
+
- [owl-1.4.10](https://github.com/odoo/owl/releases/tag/v1.4.10)
|
|
125
126
|
|