mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2026-07-23 01:59:50 +08:00
- 重命名 typeMatchRules.ts 为 type-match-rules.ts - 为 event-select、display-conds 等字段补充结构校验规则 - advancedTabConfig 的 code-select 字段增加 hookType 校验 - 修复 update 未携带 invalidInfo 时清除对应节点全部来源错误 - 将 code-select/display-conds 字段 typeMatch 触发时机调整为 change
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
/*
|
|
* Tencent is pleased to support the open source community by making TMagicEditor available.
|
|
*
|
|
* Copyright (C) 2025 Tencent. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
export * from './config';
|
|
export * from './props';
|
|
export * from './code-block';
|
|
export * from './logger';
|
|
export * from './editor';
|
|
export * from './operator';
|
|
export * from './data-source';
|
|
export * from './dep/idle-task';
|
|
export * from './scroll-viewer';
|
|
export * from './tree';
|
|
export * from './undo-redo';
|
|
export * from './indexed-db';
|
|
export * from './history';
|
|
export * from './const';
|
|
export * from './type-match-rules';
|
|
export * from './event';
|
|
export { default as loadMonaco } from './monaco-editor';
|