- updateText 移除文本宽度硬编码下限 160,真正根据内容自适应 - showRefining/showThinking 简化为调用 updateText,复用自适应逻辑 - 面板最小宽度由 minPanelWidth(180pt) 兜底 - 打包 VoiceInput-20260425.dmg
16 lines
336 B
Python
16 lines
336 B
Python
"""
|
|
Validation modules for Word document processing.
|
|
"""
|
|
|
|
from .base import BaseSchemaValidator
|
|
from .docx import DOCXSchemaValidator
|
|
from .pptx import PPTXSchemaValidator
|
|
from .redlining import RedliningValidator
|
|
|
|
__all__ = [
|
|
"BaseSchemaValidator",
|
|
"DOCXSchemaValidator",
|
|
"PPTXSchemaValidator",
|
|
"RedliningValidator",
|
|
]
|