UNPKG

element-plus

Version:

A Component Library for Vue 3

29 lines (26 loc) 1.33 kB
import { ref, inject, computed, unref } from 'vue'; import { useGlobalSize } from '../../../../hooks/use-size/index.mjs'; import { useProp } from '../../../../hooks/use-prop/index.mjs'; import { formContextKey, formItemContextKey } from '../constants.mjs'; const useFormSize = (fallback, ignore = {}) => { const emptyRef = ref(void 0); const size = ignore.prop ? emptyRef : useProp("size"); const globalConfig = ignore.global ? emptyRef : useGlobalSize(); const form = ignore.form ? { size: void 0 } : inject(formContextKey, void 0); const formItem = ignore.formItem ? { size: void 0 } : inject(formItemContextKey, void 0); return computed( () => size.value || unref(fallback) || (formItem == null ? void 0 : formItem.size) || (form == null ? void 0 : form.size) || globalConfig.value || "" ); }; const useFormDisabled = (fallback) => { const disabled = useProp("disabled"); const form = inject(formContextKey, void 0); return computed(() => { var _a, _b, _c; return (_c = (_b = (_a = disabled.value) != null ? _a : unref(fallback)) != null ? _b : form == null ? void 0 : form.disabled) != null ? _c : false; }); }; const useSize = useFormSize; const useDisabled = useFormDisabled; export { useDisabled, useFormDisabled, useFormSize, useSize }; //# sourceMappingURL=use-form-common-props.mjs.map