UNPKG

@nocobase/plugin-block-template

Version:

Create and manage block templates for reuse on pages.

66 lines (65 loc) 2.17 kB
/** * This file is part of the NocoBase (R) project. * Copyright (c) 2020-2024 NocoBase Co., Ltd. * Authors: NocoBase Team. * * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License. * For more information, please refer to: https://www.nocobase.com/agreement. */ export declare const editActionSchema: { type: string; title: string; 'x-component': string; 'x-component-props': { openMode: string; }; properties: { drawer: { type: string; title: string; 'x-component': string; 'x-decorator': string; 'x-use-decorator-props': string; properties: { form: { type: string; properties: { title: { type: string; 'x-decorator': string; 'x-component': string; }; key: { type: string; 'x-decorator': string; 'x-component': string; 'x-disabled': boolean; }; type: { type: string; 'x-decorator': string; 'x-component': string; 'x-disabled': boolean; }; description: { type: string; 'x-decorator': string; 'x-component': string; }; }; }; footer: { type: string; 'x-component': string; properties: { submit: { title: string; 'x-component': string; 'x-use-component-props': string; }; }; }; }; }; }; };