diff --git a/packages/vant/src/barrage/index.ts b/packages/vant/src/barrage/index.ts index 9aa44c149..4e6226ea4 100644 --- a/packages/vant/src/barrage/index.ts +++ b/packages/vant/src/barrage/index.ts @@ -6,7 +6,7 @@ export default Barrage; export { barrageProps } from './Barrage'; export type { BarrageProps, BarrageItem } from './Barrage'; -export type { BarrageInstance } from './types'; +export type { BarrageInstance, BarrageThemeVars } from './types'; declare module 'vue' { export interface GlobalComponents { diff --git a/packages/vant/src/barrage/types.ts b/packages/vant/src/barrage/types.ts index 79d9efec3..583a2d877 100644 --- a/packages/vant/src/barrage/types.ts +++ b/packages/vant/src/barrage/types.ts @@ -10,3 +10,10 @@ export type BarrageInstance = ComponentPublicInstance< BarrageProps, BarrageExpose >; + +export type BarrageThemeVars = { + barrageFontSize?: string; + barrageSpace?: string; + barrageFont?: string; + barrageColor?: string; +}; diff --git a/packages/vant/src/config-provider/types.ts b/packages/vant/src/config-provider/types.ts index 6ebc720de..44b2ab4e7 100644 --- a/packages/vant/src/config-provider/types.ts +++ b/packages/vant/src/config-provider/types.ts @@ -6,6 +6,7 @@ export type ConfigProviderThemeVars = import('../address-edit').AddressEditThemeVars & import('../address-list').AddressListThemeVars & import('../badge').BadgeThemeVars & + import('../barrage').BarrageThemeVars & import('../button').ButtonThemeVars & import('../calendar').CalendarThemeVars & import('../card').CardThemeVars & @@ -28,6 +29,8 @@ export type ConfigProviderThemeVars = import('../dropdown-menu').DropdownMenuThemeVars & import('../empty').EmptyThemeVars & import('../field').FieldThemeVars & + import('../floating-bubble').FloatingBubbleThemeVars & + import('../floating-panel').FloatingPanelThemeVars & import('../grid-item').GridItemThemeVars & import('../image').ImageThemeVars & import('../image-preview').ImagePreviewThemeVars & @@ -50,10 +53,12 @@ export type ConfigProviderThemeVars = import('../pull-refresh').PullRefreshThemeVars & import('../radio').RadioThemeVars & import('../rate').RateThemeVars & + import('../rolling-text').RollingTextThemeVars & import('../search').SearchThemeVars & import('../share-sheet').ShareSheetThemeVars & import('../sidebar').SidebarThemeVars & import('../sidebar-item').SidebarItemThemeVars & + import('../signature').SignatureThemeVars & import('../skeleton').SkeletonThemeVars & import('../slider').SliderThemeVars & import('../step').StepThemeVars & @@ -69,4 +74,5 @@ export type ConfigProviderThemeVars = import('../tag').TagThemeVars & import('../toast').ToastThemeVars & import('../tree-select').TreeSelectThemeVars & - import('../uploader').UploaderThemeVars; + import('../uploader').UploaderThemeVars & + import('../watermark').WatermarkThemeVars; diff --git a/packages/vant/src/floating-bubble/index.ts b/packages/vant/src/floating-bubble/index.ts index 7463f4c03..e93f2d691 100644 --- a/packages/vant/src/floating-bubble/index.ts +++ b/packages/vant/src/floating-bubble/index.ts @@ -11,6 +11,7 @@ export type { FloatingBubbleMagnetic, FloatingBubbleOffset, } from './FloatingBubble'; +export type { FloatingBubbleThemeVars } from './types'; declare module 'vue' { export interface GlobalComponents { diff --git a/packages/vant/src/floating-bubble/types.ts b/packages/vant/src/floating-bubble/types.ts new file mode 100644 index 000000000..6790de03e --- /dev/null +++ b/packages/vant/src/floating-bubble/types.ts @@ -0,0 +1,8 @@ +export type FloatingBubbleThemeVars = { + floatingBubbleSize?: string; + floatingBubbleInitialGap?: string; + floatingBubbleIconSize?: string; + floatingBubbleBackground: string; + floatingBubbleColor?: string; + floatingBubbleZIndex?: number | string; +}; diff --git a/packages/vant/src/floating-panel/index.ts b/packages/vant/src/floating-panel/index.ts index 02d1e9901..2f248debc 100644 --- a/packages/vant/src/floating-panel/index.ts +++ b/packages/vant/src/floating-panel/index.ts @@ -5,6 +5,7 @@ export const FloatingPanel = withInstall(_FloatingPanel); export default FloatingPanel; export { floatingPanelProps } from './FloatingPanel'; export type { FloatingPanelProps } from './FloatingPanel'; +export type { FloatingPanelThemeVars } from './types'; declare module 'vue' { export interface GlobalComponents { diff --git a/packages/vant/src/floating-panel/types.ts b/packages/vant/src/floating-panel/types.ts new file mode 100644 index 000000000..aeb01abf7 --- /dev/null +++ b/packages/vant/src/floating-panel/types.ts @@ -0,0 +1,9 @@ +export type FloatingPanelThemeVars = { + floatingPanelBorderRadius?: string; + floatingPanelHeaderHeight?: string; + floatingPanelZIndex?: number | string; + floatingPanelBackground?: string; + floatingPanelBarWidth?: string; + floatingPanelBarHeight?: string; + floatingPanelBarColor?: string; +}; diff --git a/packages/vant/src/rolling-text/index.ts b/packages/vant/src/rolling-text/index.ts index 0723b3d5a..056c097ae 100644 --- a/packages/vant/src/rolling-text/index.ts +++ b/packages/vant/src/rolling-text/index.ts @@ -9,6 +9,7 @@ export type { RollingTextDirection, RollingTextInstance, RollingTextStopOrder, + RollingTextThemeVars, } from './types'; declare module 'vue' { diff --git a/packages/vant/src/rolling-text/types.ts b/packages/vant/src/rolling-text/types.ts index bee3c012c..fd060f4e8 100644 --- a/packages/vant/src/rolling-text/types.ts +++ b/packages/vant/src/rolling-text/types.ts @@ -13,3 +13,12 @@ export type RollingTextInstance = ComponentPublicInstance< RollingTextProps, RollingTextExpose >; + +export type RollingTextThemeVars = { + rollingTextBackground?: string; + rollingTextColor?: string; + rollingTextFontSize?: string; + rollingTextGap?: string; + rollingTextItemWidth?: string; + rollingTextItemBorderRadius?: string; +}; diff --git a/packages/vant/src/signature/index.ts b/packages/vant/src/signature/index.ts index 743ef0787..f9c72fbc0 100644 --- a/packages/vant/src/signature/index.ts +++ b/packages/vant/src/signature/index.ts @@ -4,6 +4,7 @@ import _Signature from './Signature'; export const Signature = withInstall(_Signature); export default Signature; export type { SignatureProps } from './Signature'; +export type { SignatureThemeVars } from './types'; declare module 'vue' { export interface GlobalComponents { diff --git a/packages/vant/src/signature/types.ts b/packages/vant/src/signature/types.ts new file mode 100644 index 000000000..f7a047fdc --- /dev/null +++ b/packages/vant/src/signature/types.ts @@ -0,0 +1,6 @@ +export type SignatureThemeVars = { + signaturePadding?: string; + signatureContentHeight?: string; + signatureContentBackground?: string; + signatureContentBorder?: string; +}; diff --git a/packages/vant/src/watermark/index.ts b/packages/vant/src/watermark/index.ts index 54927ed2e..a39712e64 100644 --- a/packages/vant/src/watermark/index.ts +++ b/packages/vant/src/watermark/index.ts @@ -5,6 +5,7 @@ export const Watermark = withInstall(_Watermark); export default Watermark; export { watermarkProps } from './Watermark'; export type { WatermarkProps } from './Watermark'; +export type { WatermarkThemeVars } from './types'; declare module 'vue' { export interface GlobalComponents { diff --git a/packages/vant/src/watermark/types.ts b/packages/vant/src/watermark/types.ts new file mode 100644 index 000000000..1cb1f94e9 --- /dev/null +++ b/packages/vant/src/watermark/types.ts @@ -0,0 +1,3 @@ +export type WatermarkThemeVars = { + watermarkZIndex?: number | string; +};