@conduction/docusaurus-preset 3.41.0 → 3.41.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/package.json
CHANGED
|
@@ -188,7 +188,8 @@ export default function LockPick({className}) {
|
|
|
188
188
|
role="progressbar"
|
|
189
189
|
aria-valuemin={0}
|
|
190
190
|
aria-valuemax={100}
|
|
191
|
-
aria-valuenow={game ? game.durability : 100}
|
|
191
|
+
aria-valuenow={game ? game.durability : 100}
|
|
192
|
+
aria-label={translate({id: 'preset.lockPick.wearLabel', message: 'How much of this pick is left', description: 'Accessible name of the bar showing the current pick condition'})}>
|
|
192
193
|
<span
|
|
193
194
|
className={[styles.wearFill, game && game.durability <= 35 && styles.wearLow].filter(Boolean).join(' ')}
|
|
194
195
|
style={{width: `${game ? game.durability : 100}%`}}
|