@lvce-editor/explorer-view 7.12.0 → 7.13.0
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.
|
@@ -7070,6 +7070,7 @@ const getExplorerItemVirtualDom = (item, editingSessionId = 0) => {
|
|
|
7070
7070
|
name,
|
|
7071
7071
|
path,
|
|
7072
7072
|
posInSet,
|
|
7073
|
+
selected,
|
|
7073
7074
|
setSize
|
|
7074
7075
|
} = item;
|
|
7075
7076
|
const chevronDom = getChevronVirtualDom(chevron);
|
|
@@ -7078,6 +7079,7 @@ const getExplorerItemVirtualDom = (item, editingSessionId = 0) => {
|
|
|
7078
7079
|
ariaLabel: name,
|
|
7079
7080
|
ariaLevel: depth,
|
|
7080
7081
|
ariaPosInSet: posInSet,
|
|
7082
|
+
ariaSelected: selected ? 'true' : undefined,
|
|
7081
7083
|
ariaSetSize: setSize,
|
|
7082
7084
|
childCount: 2 + chevronDom.length,
|
|
7083
7085
|
className,
|