/* * Copyright 2026 Hypergiant Galactic Systems Inc. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { ButtonProps } from "../button/types.js"; import { IconProps } from "../icon/types.js"; import { RefAttributes } from "react"; import { InputProps, SearchFieldProps as SearchFieldProps$1 } from "react-aria-components/SearchField"; //#region src/components/search-field/types.d.ts /** * Props for SearchField component. * * Extends AriaSearchFieldProps with custom classNames, variant, and loading support. * - `classNames.field` - CSS class for the field container. * - `classNames.input` - CSS class for the input element. * - `classNames.clear` - CSS class for the clear button. * - `classNames.loading` - CSS class for the loading spinner. * - `classNames.search` - CSS class for the search icon. * - `inputProps` - Additional props passed to the Input element. * - `variant` - Visual style ('filled' or 'outline'). * - `isLoading` - Displays a loading spinner when true. */ interface SearchFieldProps extends Omit, RefAttributes { classNames?: { field?: SearchFieldProps$1['className']; input?: InputProps['className']; clear?: ButtonProps['className']; loading?: IconProps['className']; search?: IconProps['className']; }; inputProps?: Omit; variant?: 'filled' | 'outline'; /** Displays a loading spinner. */ isLoading?: boolean; } //#endregion export { SearchFieldProps }; //# sourceMappingURL=types.d.ts.map