UNPKG

@workday/canvas-kit-labs-react

Version:

Canvas Kit Labs is an incubator for new and experimental components. Since we have a rather rigorous process for getting components in at a production level, it can be valuable to make them available earlier while we continuously iterate on the API/functi

33 lines 1.17 kB
/** * @deprecated ⚠️ `SearchTheme` is deprecated and will be removed in a future major version. Please our CSS tokens to theme components. */ export declare enum SearchTheme { Light = "light", Dark = "dark", Transparent = "transparent" } /** * @deprecated ⚠️ `SearchThemeAttributes` is deprecated and will be removed in a future major version. Please our CSS tokens to theme components. */ export interface SearchThemeAttributes { background?: string; backgroundFocus?: string; backgroundHover?: string; color?: string; colorFocus?: string; placeholderColor?: string; placeholderColorFocus?: string; boxShadow?: string; boxShadowFocus?: string; } /** * @deprecated ⚠️ `SearchThemes` is deprecated and will be removed in a future major version. Please our CSS tokens to theme components. */ export interface SearchThemes { [key: string]: SearchThemeAttributes; } /** * @deprecated ⚠️ `searchThemes` is deprecated and will be removed in a future major version. Please our CSS tokens to theme components. */ export declare const searchThemes: SearchThemes; //# sourceMappingURL=themes.d.ts.map