import { CreateElement, VNode } from 'vue'; import { PSSysCssService } from '@ibizstudio/api'; import { Vue } from 'vue-property-decorator'; import './style-preview-content.less'; export declare class StylePreviewContent extends Vue { context: IContext; data?: any; isInit?: boolean; service: PSSysCssService; /** * @description 自定义编辑器值 * @type {string} * @memberof StylePreviewContent */ customValue: string; /** * @description 样式表名称 * @type {string} * @memberof StylePreviewContent */ sysCssName: string; /** * @description 样式名称 * @type {string} * @memberof StylePreviewContent */ cssName: string; /** * @description 表单值 * @type {string} * @memberof StylePreviewContent */ formValue: string; /** * class类名 * * @author zhanghengfeng * @date 2023-11-24 17:11:15 * @type {string} */ className: string; /** * @description 合成样式值 * @readonly * @memberof StylePreviewContent */ get computedValue(): string; onDataChange(newData: any, oldData: any): void; created(): Promise; /** * @description 加载数据 * @param {*} data * @memberof StylePreviewContent */ load(data: any): Promise; /** * @description 将数据转换为style文本 * @param {*} entity * @return {*} {string} * @memberof StylePreviewContent */ formatConversion(entity: any): string; render(h: CreateElement): VNode; } //# sourceMappingURL=style-preview-content.d.ts.map