Merge pull request #504 from smartxworks/feat/arco-slider

feat(arco/Slider): add formatTooltip slot
This commit is contained in:
tanbowensg 2022-07-13 10:41:56 +08:00 committed by GitHub
commit 3f94a694e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,13 +37,19 @@ export const Slider = implementRuntimeComponent({
properties: SliderPropsSpec,
state: SliderStateSpec,
methods: {},
slots: {},
slots: {
tooltip: {
slotProps: Type.Object({
value: Type.Number(),
}),
},
},
styleSlots: ['content'],
events: ['onChange', 'onAfterChange'],
},
})(props => {
const { ...cProps } = getComponentProps(props);
const { customStyle, elementRef, callbackMap, mergeState } = props;
const { customStyle, slotsElements, elementRef, callbackMap, mergeState } = props;
return (
<BaseSlider
@ -56,6 +62,9 @@ export const Slider = implementRuntimeComponent({
mergeState({ value: val });
callbackMap?.onAfterChange?.();
}}
formatTooltip={val =>
slotsElements.tooltip ? slotsElements.tooltip({ value: val }) : <span>{val}</span>
}
className={css(customStyle?.content)}
{...cProps}
/>