UNPKG

@progress/kendo-angular-dropdowns

Version:

A wide variety of native Angular dropdown components including AutoComplete, ComboBox, DropDownList, DropDownTree, MultiColumnComboBox, MultiSelect, and MultiSelectTree

24 lines (23 loc) 995 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { QueryList } from '@angular/core'; import { ComboBoxColumnComponent } from './combobox-column.component'; /** * @hidden * * Gets the default scrollbar width for the current environment. * * Returns the scrollbar width in pixels. */ export declare const scrollbarWidth: () => number; /** * @hidden * * Calculates the row width based on the columns' width configuration. * * Ignores hidden columns and columns that do not match the provided media query. * Returns `null` if any column does not have a valid width. */ export declare const getRowWidthFromColumnsMeta: (columns: QueryList<ComboBoxColumnComponent>) => number;