diff --git a/reports/2022.html b/reports/2022.html
index 7b029e0..27ad6a5 100644
--- a/reports/2022.html
+++ b/reports/2022.html
@@ -544,19 +544,33 @@
Links
Previous WCCG Report(s)
2021
GitHub issues:
- ---
+ WICG/webcomponents#716
Browser positions:
- ---
+
+
+
Description
- ---
+ Scoped element registries allow custom element definitions to be scoped to one or more shadow roots. This allows the same tag name to be used with different implementations in different parts of the page, greatly reducing tag name collisions.
Status
- - ---
+ - Chromium: prototyping
+ - WebKit: ?
+ - Mozilla: ?
@@ -565,18 +579,24 @@ Initial API Summary/Quick API Proposal
Key Scenarios
- ---
+
+ - Building an app npm lbiraries that define elements. npm may duplicate packages and therefore custom element definitions.
+ - Complex multi-team applications. Sub-teams often develop and deploy subsystems separately and may include multiple copies of libraries that define custom elements.
+ - Complex elements with other custom elements as internal implementation detail. These elements may not want to take up names in the global registry for their sub-components.
+ - Distributing elements via npm and CDNs. If both distribution methods are used on a page, one will error. npm usage can be directed to use scoped registries to avoid collisions.
+ - Plug in systems. Plug-ins might bring their own custom element definitions which should not collide with the application or other plugins.
+
Concerns
- - ---
+ - Interaction with declarative shadow DOM (addressed)
@@ -588,7 +608,9 @@ Related Specs