@odoo/owl 2.0.0-beta-7 → 2.0.0-beta-8
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 +1 -0
- package/dist/owl.cjs.js +2650 -2569
- package/dist/owl.es.js +2650 -2570
- package/dist/owl.iife.js +2650 -2569
- package/dist/owl.iife.min.js +1 -1
- package/dist/types/compiler/code_generator.d.ts +0 -8
- package/dist/types/compiler/index.d.ts +3 -2
- package/dist/types/index.d.ts +1 -27
- package/dist/types/{app → runtime}/app.d.ts +7 -5
- package/dist/types/{blockdom → runtime/blockdom}/attributes.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/block_compiler.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/config.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/event_catcher.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/events.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/html.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/index.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/list.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/multi.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/text.d.ts +0 -0
- package/dist/types/{blockdom → runtime/blockdom}/toggler.d.ts +0 -0
- package/dist/types/{component → runtime}/component.d.ts +5 -1
- package/dist/types/{component → runtime}/component_node.d.ts +9 -6
- package/dist/types/{component → runtime}/error_handling.d.ts +0 -0
- package/dist/types/{component/handler.d.ts → runtime/event_handling.d.ts} +0 -0
- package/dist/types/{component → runtime}/fibers.d.ts +1 -1
- package/dist/types/{hooks.d.ts → runtime/hooks.d.ts} +1 -1
- package/dist/types/runtime/index.d.ts +29 -0
- package/dist/types/{component → runtime}/lifecycle_hooks.d.ts +0 -0
- package/dist/types/{portal.d.ts → runtime/portal.d.ts} +5 -1
- package/dist/types/{reactivity.d.ts → runtime/reactivity.d.ts} +0 -0
- package/dist/types/{component → runtime}/scheduler.d.ts +0 -0
- package/dist/types/{component → runtime}/status.d.ts +0 -0
- package/dist/types/{app → runtime}/template_helpers.d.ts +11 -2
- package/dist/types/{app → runtime}/template_set.d.ts +13 -4
- package/dist/types/{utils.d.ts → runtime/utils.d.ts} +0 -7
- package/dist/types/runtime/validation.d.ts +30 -0
- package/package.json +5 -2
- package/dist/owl.cjs.min.js +0 -1
- package/dist/owl.es.min.js +0 -1
- package/dist/types/component/props_validation.d.ts +0 -14
package/README.md
CHANGED
|
@@ -93,6 +93,7 @@ Are you new to Owl? This is the place to start!
|
|
|
93
93
|
- [Loading Templates](doc/reference/app.md#loading-templates)
|
|
94
94
|
- [Mounting a component](doc/reference/app.md#mount-helper)
|
|
95
95
|
- [Portal](doc/reference/portal.md)
|
|
96
|
+
- [Precompiling templates](doc/reference/precompiling_templates.md)
|
|
96
97
|
- [Props](doc/reference/props.md)
|
|
97
98
|
- [Props Validation](doc/reference/props.md#props-validation)
|
|
98
99
|
- [Reactivity](doc/reference/reactivity.md)
|