diff --git a/packages/vant/src/config-provider/ConfigProvider.tsx b/packages/vant/src/config-provider/ConfigProvider.tsx index a5ecfda1a..fb4e29bb9 100644 --- a/packages/vant/src/config-provider/ConfigProvider.tsx +++ b/packages/vant/src/config-provider/ConfigProvider.tsx @@ -50,10 +50,16 @@ export const configProviderProps = { export type ConfigProviderProps = ExtractPropTypes; +/** map `gray1` to `gray-1` */ +function insertDash(str: string) { + return str.replace(/([a-zA-Z])(\d)/g, '$1-$2'); +} + function mapThemeVarsToCSSVars(themeVars: Record) { const cssVars: Record = {}; Object.keys(themeVars).forEach((key) => { - cssVars[`--van-${kebabCase(key)}`] = themeVars[key]; + const formattedKey = insertDash(kebabCase(key)); + cssVars[`--van-${formattedKey}`] = themeVars[key]; }); return cssVars; } diff --git a/packages/vant/src/config-provider/test/index.spec.tsx b/packages/vant/src/config-provider/test/index.spec.tsx index b9ea7c93e..df1f5caba 100644 --- a/packages/vant/src/config-provider/test/index.spec.tsx +++ b/packages/vant/src/config-provider/test/index.spec.tsx @@ -1,8 +1,8 @@ import { ref } from 'vue'; -import { ConfigProvider } from '..'; +import { ConfigProvider, type ConfigProviderThemeVars } from '..'; import { Icon } from '../../icon'; +import { Popup } from '../../popup'; import { later, mount } from '../../../test'; -import Popup from '../../popup'; test('should render tag prop correctly', () => { const wrapper = mount(ConfigProvider, { @@ -60,6 +60,22 @@ test('should apply theme-vars-light in light mode', () => { ); }); +test('should apply basic theme vars correctly', () => { + const wrapper = mount({ + render() { + const themeVars: ConfigProviderThemeVars = { + gray1: '#111', + background2: 'red', + }; + return ; + }, + }); + + expect(wrapper.element.getAttribute('style')).toEqual( + '--van-gray-1: #111; --van-background-2: red;', + ); +}); + test('should apply theme-vars-dark in dark mode', () => { const wrapper = mount({ render() {