UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

42 lines (41 loc) 1.54 kB
import type { Theme } from '../../_mixins'; import type { ThemeCommonVars } from '../../_styles/common'; export declare function self(vars: ThemeCommonVars): { stepHeaderFontWeight: string; indicatorTextColorProcess: string; indicatorTextColorWait: string; indicatorTextColorFinish: string; indicatorTextColorError: string; indicatorBorderColorProcess: string; indicatorBorderColorWait: string; indicatorBorderColorFinish: string; indicatorBorderColorError: string; indicatorColorProcess: string; indicatorColorWait: string; indicatorColorFinish: string; indicatorColorError: string; splitorColorProcess: string; splitorColorWait: string; splitorColorFinish: string; splitorColorError: string; headerTextColorProcess: string; headerTextColorWait: string; headerTextColorFinish: string; headerTextColorError: string; descriptionTextColorProcess: string; descriptionTextColorWait: string; descriptionTextColorFinish: string; descriptionTextColorError: string; stepHeaderFontSizeSmall: string; stepHeaderFontSizeMedium: string; indicatorIndexFontSizeSmall: string; indicatorIndexFontSizeMedium: string; indicatorSizeSmall: string; indicatorSizeMedium: string; indicatorIconSizeSmall: string; indicatorIconSizeMedium: string; }; export type StepsThemeVars = ReturnType<typeof self>; declare const stepsLight: Theme<'Steps', StepsThemeVars>; export default stepsLight; export type StepsTheme = typeof stepsLight;