Merge branch 'main' into chore/plugins

This commit is contained in:
Jin Mao
2026-03-25 15:19:21 +08:00
committed by GitHub
6 changed files with 18 additions and 11 deletions

View File

@@ -55,7 +55,7 @@
"lint": "vsh lint",
"postinstall": "pnpm -r run stub --if-present",
"preinstall": "npx only-allow pnpm",
"prepare": "pnpm exec lefthook install",
"prepare": "is-ci || pnpm exec lefthook install",
"preview": "turbo-run preview",
"publint": "vsh publint",
"reinstall": "pnpm clean --del-lock && pnpm install",

View File

@@ -177,15 +177,15 @@ const computedProps = computed(() => {
// 自定义帮助信息
const computedHelp = computed(() => {
return help ? onHelpFunc : undefined;
});
const onHelpFunc = () => {
if (!help) {
const helpContent = help;
if (!helpContent) {
return undefined;
}
return isFunction(help) ? help(values.value, formApi!) : help;
};
return () =>
isFunction(helpContent)
? helpContent(values.value, getFormApi())
: helpContent;
});
watch(
() => computedProps.value?.autofocus,

View File

@@ -12,7 +12,7 @@ import type {
import { computed, useAttrs } from 'vue';
// @ts-expect-error - vue-json-viewer does not expose compatible typings for this import path
import VueJsonViewer from 'vue-json-viewer';
import VueJsonViewerImport from 'vue-json-viewer';
import { $t } from '@vben/locales';
@@ -42,6 +42,11 @@ const emit = defineEmits<{
valueClick: [value: JsonViewerValue];
}>();
/** CJS/UMD 在 Vite 下解析为 { default: Component },需解包否则会出现 missing template or render */
const VueJsonViewer =
(VueJsonViewerImport as { default?: typeof VueJsonViewerImport }).default ??
VueJsonViewerImport;
const attrs: SetupContext['attrs'] = useAttrs();
function handleClick(event: MouseEvent) {

View File

@@ -287,7 +287,9 @@ const [BaseForm, baseFormApi] = useVbenForm({
component: 'DatePicker',
fieldName: 'datePicker',
help: (values) =>
[`这是一个可输出其他字段值的帮助信息${values?.rate}`].map((v) => h('p', v)),
[`这是一个可输出其他字段值的帮助信息${values?.rate}`].map((v) =>
h('p', v),
),
label: '日期选择框',
},
{

View File

@@ -187,4 +187,3 @@ catalog:
yaml-eslint-parser: ^2.0.0
zod: ^3.25.76
zod-defaults: 0.1.3

View File

@@ -5,6 +5,7 @@ ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
ENV NODE_OPTIONS=--max-old-space-size=8192
ENV TZ=Asia/Shanghai
ENV CI=true
RUN npm i -g corepack