@webqit/oohtml 3.1.18 → 3.1.19
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 +4 -4
- package/dist/main.js +18 -14
- package/dist/main.js.map +2 -2
- package/dist/main.lite.js +15 -11
- package/dist/main.lite.js.map +2 -2
- package/dist/namespaced-html.js +1 -1
- package/dist/namespaced-html.js.map +2 -2
- package/dist/scoped-css.js +5 -1
- package/dist/scoped-css.js.map +2 -2
- package/package.json +1 -1
- package/src/namespaced-html/index.js +100 -100
- package/src/scoped-css/index.js +3 -3
package/README.md
CHANGED
|
@@ -1665,8 +1665,8 @@ The following is a Listbox component lifted directly from the [ARIA Authoring Pr
|
|
|
1665
1665
|
<div id="ss_elem_list"
|
|
1666
1666
|
tabindex="0"
|
|
1667
1667
|
role="listbox"
|
|
1668
|
-
aria-labelledby="ss_elem">
|
|
1669
|
-
<ul role="group" aria-labelledby="cat"
|
|
1668
|
+
aria-labelledby="~ss_elem">
|
|
1669
|
+
<ul role="group" namespace aria-labelledby="~cat">
|
|
1670
1670
|
<li role="presentation" id="cat">
|
|
1671
1671
|
Land
|
|
1672
1672
|
</li>
|
|
@@ -1686,7 +1686,7 @@ The following is a Listbox component lifted directly from the [ARIA Authoring Pr
|
|
|
1686
1686
|
Raccoon
|
|
1687
1687
|
</li>
|
|
1688
1688
|
</ul>
|
|
1689
|
-
<ul role="group" aria-labelledby="cat"
|
|
1689
|
+
<ul role="group" namespace aria-labelledby="~cat">
|
|
1690
1690
|
<li role="presentation" id="cat">
|
|
1691
1691
|
Water
|
|
1692
1692
|
</li>
|
|
@@ -1700,7 +1700,7 @@ The following is a Listbox component lifted directly from the [ARIA Authoring Pr
|
|
|
1700
1700
|
Eel
|
|
1701
1701
|
</li>
|
|
1702
1702
|
</ul>
|
|
1703
|
-
<ul role="group" aria-labelledby="cat"
|
|
1703
|
+
<ul role="group" namespace aria-labelledby="~cat">
|
|
1704
1704
|
<li role="presentation" id="cat">
|
|
1705
1705
|
Air
|
|
1706
1706
|
</li>
|