@grafana/ui
Version:
Grafana Components Library
16 lines (14 loc) • 491 B
JavaScript
;
function logOptions(amount, recommendedAmount, id, ariaLabelledBy) {
if (amount > recommendedAmount) {
const msg = `[Combobox] Items exceed the recommended amount ${recommendedAmount}.`;
console.warn(msg, {
itemsCount: "" + amount,
recommendedAmount: "" + recommendedAmount,
"aria-labelledby": ariaLabelledBy != null ? ariaLabelledBy : "",
id: id != null ? id : ""
});
}
}
export { logOptions };
//# sourceMappingURL=logOptions.mjs.map