UNPKG

@public-ui/components

Version:

Contains all web components that belong to KoliBri - The accessible HTML-Standard.

25 lines (21 loc) 634 B
/*! * KoliBri - The accessible HTML-Standard */ 'use strict'; var common = require('./common-DPb6NWR4.js'); const UNIQUE_LABELS = new Set(); function addNavLabel(ariaLabel) { if (UNIQUE_LABELS.has(ariaLabel)) { common.Log.warn(`There already is a nav element with the label "${ariaLabel}"`); } else { UNIQUE_LABELS.add(ariaLabel); } } function removeNavLabel(ariaLabel) { UNIQUE_LABELS.delete(ariaLabel); } exports.addNavLabel = addNavLabel; exports.removeNavLabel = removeNavLabel; //# sourceMappingURL=unique-nav-labels-DEtWDagf.js.map //# sourceMappingURL=unique-nav-labels-DEtWDagf.js.map