37 lines
1.1 KiB
TypeScript
Raw Normal View History

2024-01-29 09:26:07 +08:00
import type { ThemeCommonVars } from '../../_styles/common';
2024-08-02 18:19:39 +08:00
import type { Theme } from '../../_mixins';
declare function self(vars: ThemeCommonVars): {
2024-01-29 09:26:07 +08:00
fontSize: string;
markFontSize: string;
railColor: string;
railColorHover: string;
fillColor: string;
fillColorHover: string;
opacityDisabled: string;
handleColor: string;
dotColor: string;
dotColorModal: string;
dotColorPopover: string;
handleBoxShadow: string;
handleBoxShadowHover: string;
handleBoxShadowActive: string;
handleBoxShadowFocus: string;
indicatorColor: string;
indicatorBoxShadow: string;
indicatorTextColor: string;
indicatorBorderRadius: string;
dotBorder: string;
dotBorderActive: string;
dotBoxShadow: string;
railHeight: string;
railWidthVertical: string;
handleSize: string;
dotHeight: string;
dotWidth: string;
dotBorderRadius: string;
};
export type SliderThemeVars = ReturnType<typeof self>;
declare const sliderLight: Theme<'Slider', SliderThemeVars>;
export default sliderLight;
export type SliderTheme = typeof sliderLight;