UNPKG

@mikezimm/fps-library-v2

Version:

Library of reusable typescript/javascript functions, interfaces and constants

37 lines (35 loc) 1.42 kB
/** * CodeAnalizerComment: Updated 1 imports on 2024-09-22 14:49:52 * Update:: import { IAnySourceItem } to '@mikezimm/fps-core-v7/lib/components/molecules/AnyContent/IAnyContent;' */ /** * CodeAnalizerComment: Updated 1 imports on 2024-09-21 23:07:24 * Update:: import { IAnySourceItem } to '@mikezimm/fps-core-v7/lib/components/molecules/AnyContent/IAnyContent;' */ import * as React from 'react'; export type ISourceSearchLayout = 'grid' | 'flex' | 'block'; export interface ISourceSearchAgeHookProps { searchText: string; searchTime: number; /** * https://github.com/fps-solutions/HubCon/issues/115 * Added way to disable the search box but still show it... * Can be used when the result.ok === false */ disabled?: boolean; layout?: ISourceSearchLayout; _onSearchChange(event?: React.ChangeEvent<HTMLInputElement>, NewSearch?: string): void; _updateFirstLastVisible(firstVisible: number, lastVisible: number): void; preArrowsEle?: JSX.Element; postArrowsEle?: JSX.Element; resetArrows: any; itemsPerPage: number; debugMode: boolean; itemCount: number; ageElement?: JSX.Element; farLeftEle?: JSX.Element; farRightEle?: JSX.Element; } declare const SourceSearchAgeHook: React.FC<ISourceSearchAgeHookProps>; export default SourceSearchAgeHook; //# sourceMappingURL=SearchBoxRowAge.d.ts.map