You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.5 KiB
51 lines
1.5 KiB
import type { PropType } from 'vue';
|
|
import { computed, defineComponent } from 'vue';
|
|
import type { SizeType } from '../config-provider';
|
|
import { FormItemInputContext } from '../form/FormItemContext';
|
|
import useConfigInject from '../config-provider/hooks/useConfigInject';
|
|
import classNames from '../_util/classNames';
|
|
|
|
// CSSINJS
|
|
import useStyle from './style';
|
|
|
|
export default defineComponent({
|
|
compatConfig: { MODE: 3 },
|
|
name: 'AInputGroup',
|
|
inheritAttrs: false,
|
|
props: {
|
|
prefixCls: String,
|
|
size: { type: String as PropType<SizeType> },
|
|
compact: { type: Boolean, default: undefined },
|
|
},
|
|
setup(props, { slots, attrs }) {
|
|
const { prefixCls, direction, getPrefixCls } = useConfigInject('input-group', props);
|
|
const formItemInputContext = FormItemInputContext.useInject();
|
|
FormItemInputContext.useProvide(formItemInputContext, {
|
|
isFormItemInput: false,
|
|
});
|
|
|
|
// style
|
|
const inputPrefixCls = computed(() => getPrefixCls('input'));
|
|
const [wrapSSR, hashId] = useStyle(inputPrefixCls);
|
|
|
|
const cls = computed(() => {
|
|
const pre = prefixCls.value;
|
|
return {
|
|
[`${pre}`]: true,
|
|
[hashId.value]: true,
|
|
[`${pre}-lg`]: props.size === 'large',
|
|
[`${pre}-sm`]: props.size === 'small',
|
|
[`${pre}-compact`]: props.compact,
|
|
[`${pre}-rtl`]: direction.value === 'rtl',
|
|
};
|
|
});
|
|
return () => {
|
|
return wrapSSR(
|
|
<span {...attrs} class={classNames(cls.value, attrs.class)}>
|
|
{slots.default?.()}
|
|
</span>,
|
|
);
|
|
};
|
|
},
|
|
});
|