/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { FilterDescriptor, CompositeFilterDescriptor } from '@progress/kendo-data-query'; import { ColumnComponent } from "../../columns/column.component"; import { FilterService } from '../filter.service'; import { MenuTabbingService } from './menu-tabbing.service'; import { ContextService } from '../../common/provider.service'; import * as i0 from "@angular/core"; /** * @hidden */ export declare class NumericFilterMenuInputComponent { ctx: ContextService; operators: Array<{ text: string; value: string; }>; column: ColumnComponent; filter: CompositeFilterDescriptor; operator: string; currentFilter: FilterDescriptor; filterService: FilterService; filterDelay: number; isFirstDropDown: boolean; menuTabbingService: MenuTabbingService; /** * Specifies the value used to increment or decrement the component value. * @type {number} */ step: number; /** * Specifies the smallest value that is valid. * @type {number} */ min: number; /** * Specifies the greatest value that is valid. * @type {number} */ max: number; /** * Specifies whether the **Up** and **Down** spin buttons are rendered. * @type {boolean} */ spinners: boolean; /** * Specifies the number precision applied to the component value when focused. * If the user enters a number with greater precision than configured, the component value is rounded. * @type {number} */ decimals: number; /** * Specifies the number format used when the component is not focused. * By default, the `column.format` value is used if set. * @type {string} */ format: string; /** * The placeholder text for the filter input. * @type {string} */ placeholder: string; constructor(ctx: ContextService); messageFor(key: string): string; /** * @hidden */ get columnLabel(): string; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }