vjcad 0.0.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/dist/types.d.ts +450 -8
- package/dist/vjcad-lib.umd.js +9 -9
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -28630,6 +28630,425 @@ declare class CadMapOverlay {
|
|
|
28630
28630
|
redraw(): void;
|
|
28631
28631
|
}
|
|
28632
28632
|
|
|
28633
|
+
/**
|
|
28634
|
+
* DialogBaseStyles - 对话框和面板的共享深色主题样式
|
|
28635
|
+
*
|
|
28636
|
+
* 提供统一的 CSS 样式常量,供模态对话框和非模态面板使用。
|
|
28637
|
+
* 基于现有的 InsertImageDialog、FindReplacePanel 等组件提取的通用样式。
|
|
28638
|
+
*/
|
|
28639
|
+
/**
|
|
28640
|
+
* 深色主题 CSS 变量字符串 - 用于覆盖 base-dialog 的默认主题
|
|
28641
|
+
* 注意:这是纯字符串,需要嵌入到选择器块中使用
|
|
28642
|
+
*/
|
|
28643
|
+
declare const darkThemeVarsStr = "\n --dialog-header-bg: #252d3a;\n --dialog-header-color: #e8eaed;\n --dialog-header-border: #3d4a5c;\n --dialog-contents-color: transparent;\n";
|
|
28644
|
+
/**
|
|
28645
|
+
* 深色主题 CSS 样式 - 用于 :host 选择器
|
|
28646
|
+
*/
|
|
28647
|
+
declare const darkThemeStyles: {
|
|
28648
|
+
readonly styleSheet: any;
|
|
28649
|
+
toString(): any;
|
|
28650
|
+
};
|
|
28651
|
+
/**
|
|
28652
|
+
* 基础容器样式 - 深色背景、圆角边框
|
|
28653
|
+
*/
|
|
28654
|
+
declare const containerStyles: {
|
|
28655
|
+
readonly styleSheet: any;
|
|
28656
|
+
toString(): any;
|
|
28657
|
+
};
|
|
28658
|
+
/**
|
|
28659
|
+
* 标题栏样式 - 用于非模态面板的标题栏
|
|
28660
|
+
*/
|
|
28661
|
+
declare const headerStyles: {
|
|
28662
|
+
readonly styleSheet: any;
|
|
28663
|
+
toString(): any;
|
|
28664
|
+
};
|
|
28665
|
+
/**
|
|
28666
|
+
* 面板标题样式 - 用于模态对话框内部的面板标题
|
|
28667
|
+
*/
|
|
28668
|
+
declare const panelTitleStyles: {
|
|
28669
|
+
readonly styleSheet: any;
|
|
28670
|
+
toString(): any;
|
|
28671
|
+
};
|
|
28672
|
+
/**
|
|
28673
|
+
* 输入框样式
|
|
28674
|
+
*/
|
|
28675
|
+
declare const inputStyles: {
|
|
28676
|
+
readonly styleSheet: any;
|
|
28677
|
+
toString(): any;
|
|
28678
|
+
};
|
|
28679
|
+
/**
|
|
28680
|
+
* 下拉选择框样式
|
|
28681
|
+
*/
|
|
28682
|
+
declare const selectStyles: {
|
|
28683
|
+
readonly styleSheet: any;
|
|
28684
|
+
toString(): any;
|
|
28685
|
+
};
|
|
28686
|
+
/**
|
|
28687
|
+
* 按钮样式
|
|
28688
|
+
*/
|
|
28689
|
+
declare const buttonStyles: {
|
|
28690
|
+
readonly styleSheet: any;
|
|
28691
|
+
toString(): any;
|
|
28692
|
+
};
|
|
28693
|
+
/**
|
|
28694
|
+
* 复选框样式
|
|
28695
|
+
*/
|
|
28696
|
+
declare const checkboxStyles: {
|
|
28697
|
+
readonly styleSheet: any;
|
|
28698
|
+
toString(): any;
|
|
28699
|
+
};
|
|
28700
|
+
/**
|
|
28701
|
+
* 单选框样式
|
|
28702
|
+
*/
|
|
28703
|
+
declare const radioStyles: {
|
|
28704
|
+
readonly styleSheet: any;
|
|
28705
|
+
toString(): any;
|
|
28706
|
+
};
|
|
28707
|
+
/**
|
|
28708
|
+
* 滑块样式
|
|
28709
|
+
*/
|
|
28710
|
+
declare const sliderStyles: {
|
|
28711
|
+
readonly styleSheet: any;
|
|
28712
|
+
toString(): any;
|
|
28713
|
+
};
|
|
28714
|
+
/**
|
|
28715
|
+
* 底部按钮栏样式
|
|
28716
|
+
*/
|
|
28717
|
+
declare const buttonBarStyles: {
|
|
28718
|
+
readonly styleSheet: any;
|
|
28719
|
+
toString(): any;
|
|
28720
|
+
};
|
|
28721
|
+
/**
|
|
28722
|
+
* 状态消息样式
|
|
28723
|
+
*/
|
|
28724
|
+
declare const statusStyles: {
|
|
28725
|
+
readonly styleSheet: any;
|
|
28726
|
+
toString(): any;
|
|
28727
|
+
};
|
|
28728
|
+
/**
|
|
28729
|
+
* 结果列表样式
|
|
28730
|
+
*/
|
|
28731
|
+
declare const resultsStyles: {
|
|
28732
|
+
readonly styleSheet: any;
|
|
28733
|
+
toString(): any;
|
|
28734
|
+
};
|
|
28735
|
+
/**
|
|
28736
|
+
* 加载状态样式
|
|
28737
|
+
*/
|
|
28738
|
+
declare const loadingStyles: {
|
|
28739
|
+
readonly styleSheet: any;
|
|
28740
|
+
toString(): any;
|
|
28741
|
+
};
|
|
28742
|
+
/**
|
|
28743
|
+
* 分节标题样式
|
|
28744
|
+
*/
|
|
28745
|
+
declare const sectionStyles: {
|
|
28746
|
+
readonly styleSheet: any;
|
|
28747
|
+
toString(): any;
|
|
28748
|
+
};
|
|
28749
|
+
/**
|
|
28750
|
+
* 表单行样式
|
|
28751
|
+
*/
|
|
28752
|
+
declare const formRowStyles: {
|
|
28753
|
+
readonly styleSheet: any;
|
|
28754
|
+
toString(): any;
|
|
28755
|
+
};
|
|
28756
|
+
/**
|
|
28757
|
+
* 组合所有基础样式 - 可在子类中直接使用
|
|
28758
|
+
*/
|
|
28759
|
+
declare const dialogBaseStyles: {
|
|
28760
|
+
readonly styleSheet: any;
|
|
28761
|
+
toString(): any;
|
|
28762
|
+
}[];
|
|
28763
|
+
/**
|
|
28764
|
+
* 颜色常量 - 供 JS 中使用
|
|
28765
|
+
*/
|
|
28766
|
+
declare const DialogColors: {
|
|
28767
|
+
readonly bgPrimary: "#1e2530";
|
|
28768
|
+
readonly bgSecondary: "#0d1117";
|
|
28769
|
+
readonly bgHeader: "#252d3a";
|
|
28770
|
+
readonly borderColor: "#3d4a5c";
|
|
28771
|
+
readonly textPrimary: "#e8eaed";
|
|
28772
|
+
readonly textSecondary: "#9ca3af";
|
|
28773
|
+
readonly textMuted: "#6b7280";
|
|
28774
|
+
readonly accentColor: "#58a6ff";
|
|
28775
|
+
readonly btnPrimary: "#1a56db";
|
|
28776
|
+
readonly btnPrimaryHover: "#1e40af";
|
|
28777
|
+
readonly errorColor: "#f87171";
|
|
28778
|
+
};
|
|
28779
|
+
|
|
28780
|
+
/**
|
|
28781
|
+
* 模态对话框配置选项
|
|
28782
|
+
*/
|
|
28783
|
+
interface ModalDialogOptions {
|
|
28784
|
+
/** 对话框标题 */
|
|
28785
|
+
title?: string;
|
|
28786
|
+
/** 对话框宽度 */
|
|
28787
|
+
width?: string;
|
|
28788
|
+
/** 对话框高度 */
|
|
28789
|
+
height?: string;
|
|
28790
|
+
}
|
|
28791
|
+
/**
|
|
28792
|
+
* 模态对话框基类
|
|
28793
|
+
* @template T 对话框返回结果的类型
|
|
28794
|
+
*/
|
|
28795
|
+
declare abstract class ModalDialogBase<T = void> extends LitElement {
|
|
28796
|
+
/** 对话框标题 - 子类可覆盖 */
|
|
28797
|
+
static dialogTitle: string;
|
|
28798
|
+
/** 对话框结果 */
|
|
28799
|
+
protected result: T | undefined;
|
|
28800
|
+
/** base-dialog 组件引用 */
|
|
28801
|
+
protected baseDialog: any;
|
|
28802
|
+
/**
|
|
28803
|
+
* 是否禁用 Shadow DOM
|
|
28804
|
+
* 子类可覆盖此属性以支持第三方库 CSS(如 x-spreadsheet)
|
|
28805
|
+
*
|
|
28806
|
+
* @example
|
|
28807
|
+
* ```typescript
|
|
28808
|
+
* class MyDialog extends ModalDialogBase<void> {
|
|
28809
|
+
* protected useShadowDOM = false; // 禁用 Shadow DOM
|
|
28810
|
+
* }
|
|
28811
|
+
* ```
|
|
28812
|
+
*/
|
|
28813
|
+
protected useShadowDOM: boolean;
|
|
28814
|
+
/**
|
|
28815
|
+
* 重写 createRenderRoot 以支持可选的 Shadow DOM
|
|
28816
|
+
*/
|
|
28817
|
+
createRenderRoot(): any;
|
|
28818
|
+
/**
|
|
28819
|
+
* 基础深色主题样式
|
|
28820
|
+
* 子类可通过 static styles 扩展
|
|
28821
|
+
*/
|
|
28822
|
+
static styles: {
|
|
28823
|
+
readonly styleSheet: any;
|
|
28824
|
+
toString(): any;
|
|
28825
|
+
}[];
|
|
28826
|
+
/**
|
|
28827
|
+
* 首次更新完成后获取 base-dialog 引用
|
|
28828
|
+
*/
|
|
28829
|
+
firstUpdated(): Promise<void>;
|
|
28830
|
+
/**
|
|
28831
|
+
* 启动对话框并等待结果
|
|
28832
|
+
* @param options 对话框配置选项
|
|
28833
|
+
* @returns 对话框结果,用户取消时返回 undefined
|
|
28834
|
+
*/
|
|
28835
|
+
startDialog(options?: ModalDialogOptions): Promise<T | undefined>;
|
|
28836
|
+
/**
|
|
28837
|
+
* 关闭对话框
|
|
28838
|
+
*/
|
|
28839
|
+
protected close(): void;
|
|
28840
|
+
/**
|
|
28841
|
+
* 确认并关闭对话框
|
|
28842
|
+
* 子类应在此方法中设置 this.result
|
|
28843
|
+
*/
|
|
28844
|
+
protected confirm(): void;
|
|
28845
|
+
/**
|
|
28846
|
+
* 取消并关闭对话框
|
|
28847
|
+
*/
|
|
28848
|
+
protected cancel(): void;
|
|
28849
|
+
/**
|
|
28850
|
+
* 暂停对话框 - 允许用户操作 CAD 界面(用于拾取点/实体)
|
|
28851
|
+
*
|
|
28852
|
+
* @example
|
|
28853
|
+
* ```typescript
|
|
28854
|
+
* async pickPoint() {
|
|
28855
|
+
* this.suspend();
|
|
28856
|
+
* try {
|
|
28857
|
+
* const result = await getPoint(options);
|
|
28858
|
+
* // 处理结果
|
|
28859
|
+
* } finally {
|
|
28860
|
+
* this.resume();
|
|
28861
|
+
* }
|
|
28862
|
+
* }
|
|
28863
|
+
* ```
|
|
28864
|
+
*/
|
|
28865
|
+
protected suspend(): void;
|
|
28866
|
+
/**
|
|
28867
|
+
* 恢复对话框
|
|
28868
|
+
*/
|
|
28869
|
+
protected resume(): void;
|
|
28870
|
+
/**
|
|
28871
|
+
* 检查对话框是否处于暂停状态
|
|
28872
|
+
*/
|
|
28873
|
+
protected get isSuspended(): boolean;
|
|
28874
|
+
/**
|
|
28875
|
+
* 渲染对话框内容 - 子类必须实现
|
|
28876
|
+
*/
|
|
28877
|
+
protected abstract renderContent(): TemplateResult;
|
|
28878
|
+
/**
|
|
28879
|
+
* 渲染对话框底部按钮 - 子类可覆盖
|
|
28880
|
+
* 默认提供取消和确定按钮
|
|
28881
|
+
*/
|
|
28882
|
+
protected renderFooter(): TemplateResult;
|
|
28883
|
+
/**
|
|
28884
|
+
* 渲染对话框
|
|
28885
|
+
*/
|
|
28886
|
+
render(): TemplateResult;
|
|
28887
|
+
}
|
|
28888
|
+
/**
|
|
28889
|
+
* 创建禁用 Shadow DOM 的模态对话框内联样式
|
|
28890
|
+
* 用于禁用 Shadow DOM 时在 render() 中插入样式
|
|
28891
|
+
*
|
|
28892
|
+
* @param tagName 自定义元素标签名
|
|
28893
|
+
* @param additionalStyles 额外的 CSS 样式字符串
|
|
28894
|
+
* @returns 完整的 style 标签内容
|
|
28895
|
+
*
|
|
28896
|
+
* @example
|
|
28897
|
+
* ```typescript
|
|
28898
|
+
* class MyDialog extends ModalDialogBase<void> {
|
|
28899
|
+
* protected useShadowDOM = false;
|
|
28900
|
+
*
|
|
28901
|
+
* render() {
|
|
28902
|
+
* return html`
|
|
28903
|
+
* <style>${createNoShadowStyles('my-dialog')}</style>
|
|
28904
|
+
* <base-dialog>...</base-dialog>
|
|
28905
|
+
* `;
|
|
28906
|
+
* }
|
|
28907
|
+
* }
|
|
28908
|
+
* ```
|
|
28909
|
+
*/
|
|
28910
|
+
declare function createNoShadowStyles(tagName: string, additionalStyles?: string): string;
|
|
28911
|
+
|
|
28912
|
+
/**
|
|
28913
|
+
* 面板初始位置配置
|
|
28914
|
+
*/
|
|
28915
|
+
interface PanelPosition {
|
|
28916
|
+
top?: string;
|
|
28917
|
+
right?: string;
|
|
28918
|
+
bottom?: string;
|
|
28919
|
+
left?: string;
|
|
28920
|
+
}
|
|
28921
|
+
/**
|
|
28922
|
+
* 非模态面板基类
|
|
28923
|
+
*/
|
|
28924
|
+
declare abstract class ModelessPanelBase extends LitElement {
|
|
28925
|
+
/** 面板标题 - 子类可覆盖 */
|
|
28926
|
+
static panelTitle: string;
|
|
28927
|
+
/** 面板宽度 - 子类可覆盖 */
|
|
28928
|
+
static panelWidth: string;
|
|
28929
|
+
/** 面板初始位置 - 子类可覆盖 */
|
|
28930
|
+
static initialPosition: PanelPosition;
|
|
28931
|
+
/** 面板最大高度 - 子类可覆盖 */
|
|
28932
|
+
static maxHeight: string;
|
|
28933
|
+
private isDragging;
|
|
28934
|
+
private dragStartX;
|
|
28935
|
+
private dragStartY;
|
|
28936
|
+
private panelStartLeft;
|
|
28937
|
+
private panelStartTop;
|
|
28938
|
+
private boundMouseMove;
|
|
28939
|
+
private boundMouseUp;
|
|
28940
|
+
constructor();
|
|
28941
|
+
/**
|
|
28942
|
+
* 基础样式
|
|
28943
|
+
*/
|
|
28944
|
+
static styles: {
|
|
28945
|
+
readonly styleSheet: any;
|
|
28946
|
+
toString(): any;
|
|
28947
|
+
}[];
|
|
28948
|
+
/**
|
|
28949
|
+
* 组件连接到 DOM 时添加全局事件监听
|
|
28950
|
+
*/
|
|
28951
|
+
connectedCallback(): void;
|
|
28952
|
+
/**
|
|
28953
|
+
* 组件从 DOM 移除时清理事件监听
|
|
28954
|
+
*/
|
|
28955
|
+
disconnectedCallback(): void;
|
|
28956
|
+
/**
|
|
28957
|
+
* 应用初始样式(位置和尺寸)
|
|
28958
|
+
*/
|
|
28959
|
+
private applyInitialStyles;
|
|
28960
|
+
/**
|
|
28961
|
+
* 标题栏鼠标按下 - 开始拖拽
|
|
28962
|
+
*/
|
|
28963
|
+
private handleHeaderMouseDown;
|
|
28964
|
+
/**
|
|
28965
|
+
* 鼠标移动 - 处理拖拽
|
|
28966
|
+
*/
|
|
28967
|
+
private handleMouseMove;
|
|
28968
|
+
/**
|
|
28969
|
+
* 鼠标释放 - 结束拖拽
|
|
28970
|
+
*/
|
|
28971
|
+
private handleMouseUp;
|
|
28972
|
+
/**
|
|
28973
|
+
* 显示面板
|
|
28974
|
+
*/
|
|
28975
|
+
show(): void;
|
|
28976
|
+
/**
|
|
28977
|
+
* 隐藏面板
|
|
28978
|
+
*/
|
|
28979
|
+
hide(): void;
|
|
28980
|
+
/**
|
|
28981
|
+
* 切换面板显示/隐藏
|
|
28982
|
+
*/
|
|
28983
|
+
toggle(): void;
|
|
28984
|
+
/**
|
|
28985
|
+
* 销毁面板
|
|
28986
|
+
*/
|
|
28987
|
+
destroy(): void;
|
|
28988
|
+
/**
|
|
28989
|
+
* 面板是否可见
|
|
28990
|
+
*/
|
|
28991
|
+
get isVisible(): boolean;
|
|
28992
|
+
/**
|
|
28993
|
+
* 显示时的回调 - 子类可覆盖
|
|
28994
|
+
*/
|
|
28995
|
+
protected onShow(): void;
|
|
28996
|
+
/**
|
|
28997
|
+
* 隐藏时的回调 - 子类可覆盖
|
|
28998
|
+
*/
|
|
28999
|
+
protected onHide(): void;
|
|
29000
|
+
/**
|
|
29001
|
+
* 销毁时的回调 - 子类可覆盖
|
|
29002
|
+
*/
|
|
29003
|
+
protected onDestroy(): void;
|
|
29004
|
+
/**
|
|
29005
|
+
* 获取面板标题 - 子类可覆盖以实现动态标题
|
|
29006
|
+
*/
|
|
29007
|
+
protected getPanelTitle(): string;
|
|
29008
|
+
/**
|
|
29009
|
+
* 渲染面板内容 - 子类必须实现
|
|
29010
|
+
*/
|
|
29011
|
+
protected abstract renderContent(): TemplateResult;
|
|
29012
|
+
/**
|
|
29013
|
+
* 渲染面板
|
|
29014
|
+
*/
|
|
29015
|
+
render(): TemplateResult;
|
|
29016
|
+
}
|
|
29017
|
+
/**
|
|
29018
|
+
* 面板管理器接口 - 用于工厂函数返回
|
|
29019
|
+
*/
|
|
29020
|
+
interface PanelManager {
|
|
29021
|
+
show(): void;
|
|
29022
|
+
hide(): void;
|
|
29023
|
+
toggle(): void;
|
|
29024
|
+
destroy(): void;
|
|
29025
|
+
readonly isVisible: boolean;
|
|
29026
|
+
}
|
|
29027
|
+
/**
|
|
29028
|
+
* 创建面板的工厂函数辅助
|
|
29029
|
+
*
|
|
29030
|
+
* @param PanelClass 面板类
|
|
29031
|
+
* @param tagName 自定义元素标签名(如果尚未注册)
|
|
29032
|
+
* @returns 面板管理器
|
|
29033
|
+
*
|
|
29034
|
+
* @example
|
|
29035
|
+
* ```typescript
|
|
29036
|
+
* class MyPanel extends ModelessPanelBase {
|
|
29037
|
+
* static panelTitle = "我的面板";
|
|
29038
|
+
* renderContent() { return html`...`; }
|
|
29039
|
+
* }
|
|
29040
|
+
*
|
|
29041
|
+
* if (!customElements.get('my-panel')) {
|
|
29042
|
+
* customElements.define('my-panel', MyPanel);
|
|
29043
|
+
* }
|
|
29044
|
+
*
|
|
29045
|
+
* export function createMyPanel(): PanelManager {
|
|
29046
|
+
* return createPanel(MyPanel, 'my-panel');
|
|
29047
|
+
* }
|
|
29048
|
+
* ```
|
|
29049
|
+
*/
|
|
29050
|
+
declare function createPanel<T extends ModelessPanelBase>(PanelClass: new () => T, tagName: string): PanelManager;
|
|
29051
|
+
|
|
28633
29052
|
/**
|
|
28634
29053
|
* 夹点管理器类
|
|
28635
29054
|
*
|
|
@@ -31126,7 +31545,7 @@ declare class CircleEnt extends EntityBase {
|
|
|
31126
31545
|
* const circle2 = new CircleEnt(new Point2D(50, 50), 25);
|
|
31127
31546
|
* ```
|
|
31128
31547
|
*/
|
|
31129
|
-
constructor(centerPoint
|
|
31548
|
+
constructor(centerPoint?: PointInput, radiusValue?: number, color?: number);
|
|
31130
31549
|
/**
|
|
31131
31550
|
* 获取象限点
|
|
31132
31551
|
*
|
|
@@ -31983,7 +32402,7 @@ declare class TextEnt extends EntityBase {
|
|
|
31983
32402
|
* const text2 = new TextEnt(new Point2D(100, 100), "Hello", 10, 0, TextAlignmentEnum.Left);
|
|
31984
32403
|
* ```
|
|
31985
32404
|
*/
|
|
31986
|
-
constructor(insertionPoint
|
|
32405
|
+
constructor(insertionPoint?: PointInput, textString?: string, height?: number, rotation?: number, textAlignment?: TextAlignmentEnum, font?: string, color?: number);
|
|
31987
32406
|
get font(): string;
|
|
31988
32407
|
set font(value: string);
|
|
31989
32408
|
get tag(): string | undefined;
|
|
@@ -32519,7 +32938,7 @@ declare class MTextEnt extends EntityBase {
|
|
|
32519
32938
|
* @param contents - MText格式化内容字符串,默认为空字符串
|
|
32520
32939
|
* @param maxWidth - 最大宽度,默认为0(无限制)
|
|
32521
32940
|
*/
|
|
32522
|
-
constructor(insertionPoint
|
|
32941
|
+
constructor(insertionPoint?: Point2D$1, textString?: string, height?: number, rotation?: number, textAttachment?: number, rowSpcFac?: number, font?: string, color?: number, contents?: string, maxWidth?: number);
|
|
32523
32942
|
get insertionPoint(): Point2D$1;
|
|
32524
32943
|
set insertionPoint(val: PointInput);
|
|
32525
32944
|
get font(): string;
|
|
@@ -34126,7 +34545,7 @@ declare class EllipseEnt extends EntityBase {
|
|
|
34126
34545
|
* const ellipse2 = new EllipseEnt(new Point2D(50, 50), 30, 20, 0);
|
|
34127
34546
|
* ```
|
|
34128
34547
|
*/
|
|
34129
|
-
constructor(centerPoint
|
|
34548
|
+
constructor(centerPoint?: PointInput, majorRadiusValue?: number, minorRadiusValue?: number, majorAxisAngle?: number, color?: number);
|
|
34130
34549
|
get center(): Point2D$1;
|
|
34131
34550
|
set center(value: PointInput);
|
|
34132
34551
|
get majorAxis(): number;
|
|
@@ -35218,7 +35637,7 @@ declare class DotEnt extends EntityBase {
|
|
|
35218
35637
|
* const dot2 = new DotEnt(new Point2D(100, 100), 2);
|
|
35219
35638
|
* ```
|
|
35220
35639
|
*/
|
|
35221
|
-
constructor(pointCoordinate
|
|
35640
|
+
constructor(pointCoordinate?: PointInput, pointSize?: number, color?: number);
|
|
35222
35641
|
/**
|
|
35223
35642
|
* 获取点的坐标
|
|
35224
35643
|
*/
|
|
@@ -35395,7 +35814,7 @@ declare class PixelPointEnt extends EntityBase {
|
|
|
35395
35814
|
* const pixel2 = new PixelPointEnt(new Point2D(100, 100));
|
|
35396
35815
|
* ```
|
|
35397
35816
|
*/
|
|
35398
|
-
constructor(pointCoordinate
|
|
35817
|
+
constructor(pointCoordinate?: PointInput, color?: number);
|
|
35399
35818
|
/**
|
|
35400
35819
|
* 检查所有点是否在指定边界框内
|
|
35401
35820
|
* 检查点的基础坐标是否在给定的边界框内
|
|
@@ -51893,8 +52312,8 @@ declare const palettePlotIcons: Record<string, string>;
|
|
|
51893
52312
|
|
|
51894
52313
|
//# sourceMappingURL=index.d.ts.map
|
|
51895
52314
|
|
|
51896
|
-
export { ANGLE_0, ANGLE_135, ANGLE_180, ANGLE_225, ANGLE_270, ANGLE_315, ANGLE_360, ANGLE_45, ANGLE_90, ANSI31_PATTERN, ANSI37_PATTERN, AboutCommand, ActiveButton, ActivityBar, ActivityBarElement, AddEntitiesUndoCommand, AdvancedEditMenu, AliasListPalette, AlignedDimensionEnt, AlignmentTextCommand, AngleBlockCommand, AngleDimensionEnt, AngleHatchCommand, AngleTextCommand, AntiAliasSetvar, AppDisableIconSvg, AppIconSvg, AppearanceMenu, ArcCircleProperties, ArcCommand, ArcDimensionEnt, ArcDrawer, ArcEnt, ArcModifyUndoCommand, ArcSymbolType, AreaCalculationCollection, AreaCalculationElement, ArrowRenderer, ArrowTypeEnum, AttributeTextProcessor, AutoComplete, AutoCompleteElement, AutoComplteRow, AutoComplteRowElement, BOOLEAN_OPERATORS, BSplineConstructor, BaseDialogComponent, BaseGraphicsProperties, BaseMessage, BasicEditMenu, BezierEnt, BlockAddUndoCommand, BlockCommand, BlockDefinition, BlockModifyUndoCommand, BlockNameDialog, BlockRedefineUndoCommand, BlockReference, BlockRemoveUndoCommand, BlockSortUndoCommand, Blocks, BlocksPalette, BottomBar, BoundingBox, BoundingBoxCommand, BoxCommand, BoxModifyUndoCommand, BranchCreateDialog, BranchMergeDialog, BucketEntityRenderer, BulgePoint, BulgePoints, BurstTextCommand, ButtonEle, CLayerSetvar, CadDocument, CadEventEmitter, CadEventManager, CadEvents, CadGraphics, CadMapOverlay, CadPatternDef, CanvasController, CeColorSetvar, CenterMarker, ChangeColorCommand, ChangeLTypeCommand, ChangeLTypeScaleCommand, ChangeLayerCommand, ChangeLineWeightCommand, ChangeLineWeightDialog, ChangeTranspCommand, CircleCommand, CircleDrawer, CircleEnt, CircleMarker, CircleModifyUndoCommand, ClipMode, ClipboardObj, CloseCommand, CloseXCommand, ColorConverter, ColorDialogOptions, ColorPanelDialog, CommandAlias, CommandAliasManager, CommandDefinition, CommandLine, CommandListPalette, CommandOptions, CommandRegistry, CommandResult, ConflictResolutionDialog, ContextMenu, ContextMenuAction, ContextMenuItem, ContinueDimensionCommand, ControlPoint, ControlPoints, CoordinateAxesDraw, CoordinateSystemIndicatorDraw, CoordinateSystemType, CoordinateTransform, CoordsBar, CoordsPalette, CopyBaseCommand, CopyClipCommand, CopyCommand, CornerInputHandler, CornerInputOptions, CornerSelectionHandler, CountBlockCommand, CountTextCommand, CreateAlignedDimensionCommand, CreateAngleDimensionCommand, CreateArcLengthDimensionCommand, CreateDiametricDimensionCommand, CreateLinearDimensionCommand, CreateMLeaderCommand, CreateMenu, CreateOrdinateDimensionCommand, CreateRadialDimensionCommand, CreateSymbolCommand, CrosshairCursorDraw, CtbPalette, CurrentLayerUndoCommand, CustomEntityBase, CustomEntityRegistry, CutBaseCommand, CutClipCommand, CutRecCommand, DLineCommand, DbArc, DbBackgroundConfig, DbBlock, DbBlockRef, DbBlocks, DbBox, DbBulgePoint, DbBulgePoints, DbCircle, DbControlPoints, DbDText, DbDimLinear, DbDimStyle, DbDimStyles, DbDoc, DbDocEnv, DbDotEntity, DbEdge, DbEllipse, DbEntity, DbHatch, DbImage, DbImageRef, DbImages, DbLayer, DbLayers, DbLayout, DbLayouts, DbLine, DbMText, DbPadding, DbPixelPoint, DbPline, DbPlotConfig, DbPoint, DbPoint2d, DbRay, DbSolid, DbSpline, DbSplineControlPoint, DbTextStyle, DbTextStyles, DbXline, DefaultDimensionStyle, DiametricDimensionEnt, DiamondMarker, DimMenu, DimScaleUndoCommand, DimStyleCommand, DimStyleDialog, DimStyleEditDialog, DimensionAngularFormat, DimensionArrowType, DimensionBase, DimensionFitMode, DimensionFormatter, DimensionStyle, DimensionStyles, DimensionTextAlignment, DimensionTextLayout, DimensionTextMovementMode, DimensionTextVerticalPosition, DimensionType, DimensionUnitFormat, DistCommand, DocDropDown, DocDropDownElement, DocEnv, DocumentTabItem, DocumentTabs, Documents, DonutCommand, DotCommand, DotEnt, DrawAdvancedMenu, DrawBezierCurve, DrawMenu, DrawOrderBackCommand, DrawOrderBackUndoCommand, DrawOrderFrontCommand, DrawOrderFrontUndoCommand, DrawSettingsPalette, DrawingBrowserDialog, DrawingBrowserDialogElement, DrawingManagerService, DropEffectComponent, DynamicMenuPanel, EHatchCommand, ENTITY_TYPE_OPTIONS, Edge, EdgeType, Edges, EditMenu, Editor, EllipseCommand, EllipseDrawer, EllipseEnt, EmptyCommandAlias, EndPointMarker, EndUndoCommand, Engine, EntityBase, EntityBoundsCalculator, EntityColorUndoCommand, EntityLayerUndoCommand, EntityLineTypeScaleUndoCommand, EntityLineTypeUndoCommand, EntityLineWeightUndoCommand, EntityModifyUndoCommand, EntityPickResult, EntityPicker, EntityReactorManager, EntityRenderer, EntitySelectionSplitter, EntitySelector, EntityStatsCommand, EntityTransparencyUndoCommand, EntityUndoCommand, EraseCommand, EraseEntitiesUndoCommand, ExecuteJsCommand, ExecuteStrCommand, ExplodeCommand, ExportDwgOptionsDialog, ExportToDwgCommand, ExtendCommand, ExtendedGraphicsProperties, FileMenuPanel, FilesPalette, FilletCommand, FindReplaceCommand, FindTextService, FitMapViewCommand, FontLoader, FuncButtons, GArc, GBulgePolyline, GCircle, GEllipse, GLine, GPolyline, GeoBounds, GeoPoint, GeoProjection, GeometryCalculator, GeometryUtils, GetInfoCommand, GraphicsBucket, GraphicsBucketManager, GraphicsInfoCommand, GridDisplayDraw, GridModeButton, GripCommand, GripEditor, GripManager, GripMarker, GripUtils, GroupCommand, GroupEnt, HATCH_PATTERN_NAMES, HandleFileDrop, HatchCommand, HatchEnt, HatchLoops, HatchMoveCommand, HatchPatternConfig, HelpMenu, HiddenLineDrawer, HistoryEle, IconCategory, IconRegistry, IdCommand, IdMapping, ImageAdjustCommand, ImageClipCommand, ImageCollection, ImageCommand, ImagePaletteAddCommand, ImagePaletteInsertCommand, ImageRef, ImageRefEnt, ImageRefModifyUndoCommand, ImageSource, ImageSourceAddUndoCommand, ImageSourceRemoveUndoCommand, ImagesPalette, ImportDwgOptionsDialog, ImportFromDwgCommand, Initializer, InputDialog, InputDialogElement, InputNumberDialog, InputResult, InputStatusEnum, InsertCommand, InsertEnt, InsertMenu, InsertSvgCommand, InsertSymbolCommand, InsertionMarker, IntegerInputHandler, IntegerInputOptions, IntegerResult, ItemCollection, JIS_LC_20_PATTERN, JIS_LC_8_PATTERN, JIS_RC_10_PATTERN, JIS_RC_15_PATTERN, JIS_RC_18_PATTERN, JIS_RC_30_PATTERN, JIS_WOOD_PATTERN, JustifyTextCommand, KeywordInputHandler, KeywordInputOptions, KeywordResult, LINE_WEIGHT_VALUES, LTScaleSetvar, LayAllOffCommand, LayAllOnCommand, LayCurCommand, LayDrawBackCommand, LayDrawFrontCommand, LayMCurCommand, LayPickOffCommand, LayPickOnCommand, LayRevCommand, LaySSOffCommand, LaySSOnCommand, LayTblColorCommand, Layer, LayerAddUndoCommand, LayerAlphaCell, LayerColorCell, LayerCommand, LayerCurrentCell, LayerFrozenCell, LayerLTScaleCell, LayerLinetypeCell, LayerLineweightCell, LayerLockedCell, LayerModifyUndoCommand, LayerNameCell, LayerNameDialog, LayerNameDialogElement, LayerOnCell, LayerPaletteCommand, LayerPlottableCell, LayerReference, LayerRemoveUndoCommand, LayerReverseUndoCommand, LayerSelectionDialog, LayerSortUndoCommand, LayerTransparencyDialog, LayerTransparencyDialogElement, Layers, Layout, Layouts, LeaderDirectionType, LeaderType, LineCommand, LineDrawer, LineEnt, LineModifyUndoCommand, LineTypeDialog, LineTypeDialogElement, LineTypeDialogOptions, LineTypeEnum, LineTypeScaleUndoCommand, LinearCopyCommand, LinearDimensionEnt, LinetypeDefinition, LinetypeEditorDialog, LinetypeElement, LinetypeElementType, LinetypeLoadCommand, LinetypeManager, LinetypeParser, LinetypeViewerDialog, LitElement, LocalDrawingBrowserDialog, LocalDrawingBrowserDialogElement, LocalStorageService, MLeaderContentType, MLeaderEnt, MTextAttachmentEnum, MTextColor, MTextCommand, MTextContext, MTextEditCommand, MTextEnt, MTextLineAlignment, MTextParagraphAlignment, MTextParser, MTextStroke, MTextToken, MagTextCommand, MainView, MainViewElement, MakeLayerCommand, ManageSymbolCommand, MapOpenWay, MatChPropCommand, MeasureAngleCommand, MeasureMenu, MenuBar, MenuConfig, MenuItem, MenuRegistry, Menus, MessageBoxComponent, MessageBoxConfig, MidGripMarker, MidPointMarker, MirrorCommand, MirrorEntitiesUndoCommand, MoveCommand, MoveEntitiesUndoCommand, NUMBER_OPERATORS, NearestMarker, NewCommand, NumberInputComponent, ObservablePoint2D, OffsetCommand, OffsetCurrentCommand, OffsetDefaultCommand, OffsetDeleteCommand, OpenCommand, OpenFromLocalCommand, OpenFromServerCommand, OperationTypeEnum, OrdinateDimensionEnt, OrthoModeButton, OrthoModeSetvar, OsModeSetvar, OsnapButton, OsnapCursor, OsnapMarkerContainer, OtherGraphicsProperties, Padding, PanUndoCommand, PanViewUndoCommand, PanelController, ParallelogramCommand, PasteClipCommand, PathCommandType, PatternEditorDialog, PatternLoadCommand, PatternManager, PatternPickerDialog, PatternViewerDialog, PerformanceMonitor, PerpendicularMarker, PickUtils, PixelPointCommand, PixelPointEnt, PlanCommand, PlanViewUndoCommand, PlineCommand, PlineJoinCommand, PlineWidSetvar, PlotAreaDraw, PlotColorStyle, PlotConfig, PlotStyle, PlotStyles, PluginCacheService, PluginContext, PluginError, PluginLoader, PluginManager, PluginManagerDialog, PluginMarketService, PluginOrigin, PluginSourceType, PluginState, PluginsCommand, Point2D$1 as Point2D, PointAndOsnapResult, PointInputOptions, PointInputResult, PointPrompt, PolarCopyCommand, PolarModeButton, PolarTracking, PolygonCommand, PolylineEnt, PolylineModifyUndoCommand, PreviewView, PromptEle, PropertiesCommand, PropertyMenu, PropertyPalette, PurgeBlocksCommand, PurgeCommand, PurgeImageCommand, PurgeLayerCommand, QBlockCommand, QSaveCommand, QuadrantMarker, QuickSelectCommand, QuickSelectService, RadialDimensionEnt, RayCommmand, RayDCommand, RayEnt, RayLCommand, RayModifyUndoCommand, RayRCommand, RayUCommand, ReactorEvent, ReactorEventBridge, ReactorNotifier, RealInputHandler, RealInputOptions, RealResult, RecentCommandsManager, RectangCommand, RedoCommand, RegenAllCommand, RegenCommand, RenameBlockCommand, RenderConfig, RenderOriginCommand, ReplaceBlockCommand, ResetImageClipCommand, RibbonBar, RibbonButton, RibbonConfigManager, RibbonGroup, RotateCommand, RotateEntitiesUndoCommand, RotationGripMarker, RubberBandLineDraw, SCOPE_OPTIONS, SELECTION_MODE_OPTIONS, SETTINGS_DEFINITIONS, STRING_OPERATORS, SaveAsCommand, SaveAsDialogComp, SaveDrawingDialog, SaveDrawingDialogElement, SaveToLocalCommand, SaveToServerCommand, ScaleBarDraw, ScaleCommand, ScaleEntitiesUndoCommand, ScriptExecutor, ScriptParser, SelectAllCommand, SelectionCycler, SelectionInputOptions, SelectionModeEnum, SelectionRectangleDraw, SelectionSetInputOptions, SelectionSetInputResult, ServerMapSelectorDialog, Service, SettingsCacheService, SettingsCommand, SettingsDialog, ShapeDefinition, ShapeLinetypeElement, ShapeManager, ShapeParser, ShapePath, ShapeRenderer, SideBarFrame, SideBarFrameElement, SidePalettes, SidebarStyBoth, SidebarStyLeft, SidebarStyNone, SidebarStyRight, SidebarStySetvar, SimpleLinetypeElement, SingleEntitySelector, SnapPoint, SolidCommand, SolidEnt, SpatialIndex, SpatialIndexManager, SplineCommand, SplineControlPoint, SplineControlPoints, SplineEnt, SplineFitPoint, SplineFitPoints, SplineKnots, SplitterController, SquareCursorDraw, SsAlignCommand, SsExtendCommand, SsSliceCommand, SsTrimCommand, StartUndoCommand, StatsCommand, StretchCommand, StretchEntitiesUndoCommand, StretchUndoCommand, StringInputHandler, StringInputOptions, StringResult, SwitchWorkspaceCommand, SystemConstants, SystemMessage, TOLERANCE, TangentMarker, TextAlignmentEnum$1 as TextAlignmentEnum, TextAttachmentType, TextCommand, TextCopyCommand, TextEditCommand, TextEnt, TextGripMarker, TextLinetypeElement, TextModifyUndoCommand, TextProperties, TextRotationMode, TextScanner, TextStyle, TextStyles, ThemeButton, ThreePointAngularDimensionEnt, TileAlphaSetvar, TileCache, TileCalculator, TileEditAreaCommand, TileEditLayerCommand, TileEditLayerDialog, TileMaskAlphaSetvar, TileScheduler, TokenType, ToolBar, ToolMenu, TransparencyManager$1 as TransparencyManager, TrimCommand, TwoLineAngularDimensionEnt, Txt2MTxtCommand, UCSAxesDraw, UcsCommand, UcsUndoCommand, UndoCommand, UndoCommandBase, UndoManager, UngroupCommand, ViewMenu, WblockCommand, WebCadCoreService, WheelZoomUndoCommand, WmsTileLayer, XLineEnt, XTextCommand, XlineCommand, XlineModifyUndoCommand, XxCommand, YesNoDialog, YesNoDialogConfig, YesNoDialogElement, YyCommand, ZeroSuppressionFlags, ZoomExtentsCommand, ZoomFactorSetvar, ZoomViewUndoCommand, actbarIcons, addTextReplacementRule, applyDecorators, applyTextReplacements, boundsIntersect, buildIndexedString, calcForceAngle, calculateBoundingBoxFromPoints, calculateDoubleLinePoints, calculateHatchPatternScale, calculateLineIntersections, calculatePerpendicularPoint, calculatePolygonArea, calculateStringWidth, calculateTextOffset, check3DBoundingBoxIntersection, checkGroupIntersection, checkHatchIntersection, checkPatternHatchIntersection, checkPolylineIntersection, checkTextBoundsIntersection, clearEntityDirtyFlags, clearTextReplacementRules, closeDoubleLineSegment, colorIndexToName, colorNameToIndex, commandsIcons, commoncss, compareArrays, convertArcToDeviceCoordinates, convertGArcToDeviceCoordinates, convertLineToDeviceCoordinates, convertToFloat64, convertToHexArray, createBSplineWithDomain, createBulgePointsFromEntities, createCancellableEventArgs, createDataTypeAccessor, createDimensionArrow, createDoubleButtCap, createDoubleLineSegment, createDoubleRoundCap, createDoubleSquareCap, createDynamicMenuPanel, createEventArgs, createIndexAccessor, css, customElementDecorator, decodeUnicodeString, decryptFromBase64, defaultContextMenuItems, defaultDocumentTabsConfig, defaultPropertyOptions, defaultRibbonConfig, degreesToRadians, delay, destroyFindReplacePanel, destroyQuickSelectPanel, detectDataType, distance, drawFilledRegion, drawPatternFill, drawPolyline, drawSolidFill, encryptToBase64, endUndoMark, entitiesToPolylineVertices, escapeDxfLineEndings, expandArc, extractDefaultExport, extractTables, filterHatchSegments, findIntersections, findLineArcIntersections, findLineCircleIntersections, findSubArray, formatAngleValue, formatDate, formatDimensionValue, formatNumber, formatNumberEx, funcButtonsIcons, generateHatchPatternLines, geoBounds, geoPoint, getAllArrowTypes, getAngleBetweenPoints, getArcBoundingBox, getArcCircleIntersections, getArcEntityIntersections, getArcExtExtendedEntityIntersections, getArcExtLineExtIntersections, getArcExtendedEntityIntersections, getArcLineExtIntersections, getArcLineIntersections, getArcLineIntersectionsAlt, getArcLineIntersectionsEx, getArcLineIntersectionsSimple, getArrowTypeName, getCadDialogContainer, getCadViewContainer, getCircleArcIntersectionsFiltered, getCircleCircleIntersections, getCircleEntityIntersections, getCircleEntityIntersectionsSimple, getCircleLineExtIntersections, getCircleLineExtIntersectionsEx, getCircleLineIntersections, getCircleLineIntersectionsAdvanced, getCircleLineIntersectionsSimple, getCirclePolylineIntersections, getComplexLineIntersection, getCorner, getDirPath, getDocumentStatusIndicator, getEntity, getEntityAlpha, getEntityBounds, getExtendedEntityPolylineIntersections, getFileExtension, getFileName, getFileNameBase, getFilePath, getFileTypeByExtension, getFonts, getInteger, getKeyword, getLineBoundingBox, getLineCircleIntersections, getLineEntityCollectionIntersections, getLineEntityIntersections, getLineExtArcExtIntersections, getLineExtArcIntersections, getLineExtEntityIntersections, getLineExtEntityIntersectionsEx, getLineExtExtendedEntityIntersections, getLineExtLineExt1Intersections, getLineExtLineExtIntersections, getLineExtLineIntersections, getLineExtendedEntityIntersections, getLineIntersection, getLineIntersections, getLineLineExt1Intersections, getLineLineExtIntersections, getLineLineIntersections, getLineSegmentIntersection, getLocalStorageService, getMidPoint, getObjectLineExtLineExt2Intersections, getObjectLineExtLineIntersections, getObjectLineLineExt2Intersections, getOsnapValueFromString, getParameterDomain, getPatternUnitSize, getPoint, getRawObject, getReal, getRecentCommandsManager, getSelections, getServiceHash, getSettingsCacheService, getString, getTableExtractLayers, getTextReplacementRules, getWebCadCoreService, globalShapeManager, hasAnyChildDirty, hasInlineFormattingCodes, hasInvalidChars, hitTestCircle, hitTestEllipse, hitTestGroup, hitTestPattern, hitTestPolyline, hitTestRect, hitTestSpline, html, httpHelper, initCadContainer, int2rgb, isAllElementsEqual, isArcType, isArrayOrArrayBufferView, isCircleType, isEllipseType, isEntityInArray, isEntityReactor, isEqual, isGArc, isGCircle, isGEllipse, isGLine, isGreater, isGreaterOrEqual, isHalfWidthChar, isLess, isLessOrEqual, isLineExists, isLineType, isNdArray, isNullOrUndefined, isPointEqual, isPointOnRay, isTextIntersectWithBox, isTypedArrayView, layerDialogIcons, lineWeightToString, menubarIcons, mergeBoundingBoxes, message, miscIcons, monitorExports, noChange, normalizeAngle, normalizeAngleAlt, normalizeAngleEx, normalizeDegrees, nothing, numberToString, offsetLine, openMapDarkStyle, openMapLightStyle, osnapIcons, paletteIcons, paletteLayerIcons, palettePlotIcons, parseConfigValue, parseMText, parseMTextToTextObjects, parseNumberToStr, parseTileKey, performanceMonitorInstance, pointInPolygon, polarToCartesian, propertyDecorator, propertyDecoratorFactory, querySelectorDecorator, radiansToDegrees, randInt, readUint16LittleEndian, refreshRemainModelEntities, regen, removeDuplicatePoints, removeTextReplacementRule, removeTimeStamp, resetToDefaultRules, rgb2int, rotatePointAroundCenter, rotatePointInPlace, roundToDecimalPlace, safeCustomElementRegistration, scalePointAlongVector, scalePointInPlace, showConfirm, showError, showExportDwgOptionsDialog, showImportDwgOptionsDialog, showInfo, showInputDialog, showPluginManagerDialog, showPrompt, showSelectDialog, showTileEditLayerDialog, showWarningConfirm, sortEdgeByArea, ssGetFirst, ssSetFirst, startUndoMark, tea, textAlignStringToEnum, tileKey, toPoint2D, transparencyToString, trimWhitespace, unsafeSVGHtml, updateTimeStamp, wrapTextToLines, writeMessage };
|
|
51897
|
-
export type { AlignedDimensionData, AngleDimensionData, AngularFormatConfig, ArcDimensionData, ArrowRenderConfig, ArrowRenderResult, ArrowType, BlockAddedEventArgs, BlockAddingEventArgs, BlockDeletedEventArgs, BlockDeletingEventArgs, BlockModifiedEventArgs, BooleanOperator, BranchCreatedEventArgs, BranchCreatingEventArgs, BranchDeletedEventArgs, BranchDeletingEventArgs, BranchInfo, BranchMergedEventArgs, BranchMergingEventArgs, BranchSwitchedEventArgs, BranchSwitchingEventArgs, CadBoundsLike, CadEventArgs, CadMapOverlayOptions, CancellableEventArgs, CommandCancelledEventArgs, CommandClass, CommandEndedEventArgs, CommandStartedEventArgs, CommandStartingEventArgs, Config, ConflictDetectedEventArgs, ConflictItem, ConflictResolution, ConflictResolvedEventArgs, ConflictResolvingEventArgs, ConflictSkippedEventArgs, ConflictType, ContextMenuItemClickedEventArgs, ContextMenuItemInfo, ContextMenuOpenedEventArgs, ContextMenuOpeningEventArgs, CurrentLayerChangedEventArgs, CustomEntityDbData, DiametricDimensionData, DimStyleDialogResult, DimStyleEditResult, DimensionBaseData, DimensionStyleData, DocumentCacheClearedEventArgs, DocumentCachedEventArgs, DocumentCachingEventArgs, DocumentClosedEventArgs, DocumentClosingEventArgs, DocumentCreatedEventArgs, DocumentCreatingEventArgs, DocumentDownloadedEventArgs, DocumentDownloadingEventArgs, DocumentModifiedEventArgs, DocumentOpenedEventArgs, DocumentOpeningEventArgs, DocumentRestoredEventArgs, DocumentRestoringEventArgs, DocumentSavedEventArgs, DocumentSavingEventArgs, DocumentStorageSource, DocumentSwitchedEventArgs, DocumentSyncStatusChangedEventArgs, DocumentTabsConfig, DocumentUploadedEventArgs, DocumentUploadingEventArgs, DoubleLinePoints, DoubleLineSegment, EntitiesAddedEventArgs, EntitiesAddingEventArgs, EntitiesErasedEventArgs, EntitiesErasingEventArgs, EntityAddedEventArgs, EntityAddingEventArgs, EntityErasedEventArgs, EntityErasingEventArgs, EntityModifiedEventArgs, EntityOperationOptions, EntityTypeFilter, EntityTypeOption, EventArgsMap, EventHandler, FillLoopBounds, FillLoopData, FilterCondition, FindOptions, FindResult, FitDecision, FontInfo, FormatConfig, GBulgePoint, GeoPointLike, GraphicsBucketManagerConfig, GraphicsPrimitiveStats, GripPointResult, GripPointType, IAdminEditPolicy, IAllDrawingsResponse, IBranchCreateDialogConfig, IBranchCreateDialogResult, IBranchInfo, IBranchMergeDialogConfig, IBranchMergeDialogResult, IBranchSourceInfo, IComposeNewMap, IConditionQueryFeatures, IConflictEntityInfo, IConflictItem, IConflictLayerInfo, IConflictResolutionConfig, IConflictResolutionResult, ICreateBranchParams, ICreateBranchResponse, ICreateEntitiesGeomData, ICreateSymbolParams, IDeleteBranchParams, IDeleteBranchResponse, IDeleteCache, IDeleteStyle, IDeleteWebcadDrawParams, IDeleteWebcadDrawResponse, IDrawingBrowserResult, IEditArea, IEditAreaBounds, IEditAreaRecord, IEntityReactor, IEntityResolution, IExportDwgOptions, IExportDwgOptionsResult, IExportLayout, IExportToDwgDialogConfig, IExportToDwgParams, IExportWebcadParams, IExportWebcadResponse, IExprQueryFeatures, IExtractTable, IGetWebcadDataParams, IGetWebcadDataResponse, IImportDwgOptions, IImportDwgOptionsResult, ILayerInfo, IListWebcadDrawsParams, IListWebcadDrawsResponse, ILoadEditAreaResult, ILoadEditAreasResult, ILoadEditLayersResult, ILocalDrawingBrowserResult, ILocalDrawingListItem, ILocalDrawingRecord, ILocalSymbolCategory, ILocalSymbolRecord, IMapDiff, IMapLayer, IMapStyleParam, IMatchObject, IMergeBranchParams, IMergeBranchResponse, IOpenDrawingParams, IOpenDrawingResult, IOpenMapBaseParam, IOpenMapParam, IOpenMapResponse, IPatchInfo, IPluginContext, IPointQueryFeatures, IQueryBaseFeatures, IRectQueryFeatures, IRequest, ISaveDrawingDialogConfig, ISaveDrawingDialogResult, ISaveDrawingParams, ISaveWebcadPatchParams, ISaveWebcadPatchResponse, IServerMapInfo, IServerMapSelectResult, IServerMapVersion, ISliceCacheZoom, ISliceLayer, ISplitChildMaps, ISymbol, ISymbolCategory, ISymbolConfig, ISymbolListQuery, ISymbolListResult, ISymbolMeta, ITileEditLayerDialogConfig, ITileEditLayerDialogResult, ITileUrlParam, IUpdateMapParam, IUpdateStyle, IUpdateSymbolParams, IUploadMapResult, IVcadEditArea, IVcadMeta, IWebcadDrawInfo, IWmsTileUrl, IWorkspace, IconInfo, IconRegistryOptions, InitializerOptions, InputDialogConfig, InputDialogResult$1 as InputDialogResult, LayerAddedEventArgs, LayerAddingEventArgs, LayerCreateOptions, LayerDeletedEventArgs, LayerDeletingEventArgs, LayerModifiedEventArgs, LeaderData, LeaderLineData, LineSegmentInfo, LineType, LinearDimensionData, MLeaderData, MainViewConfig, MarketplacePluginInfo, MenuConfig2, MenuItemConfig, MenuItemOptions, NumberOperator, OpenModeType, OpenWayType, OperationType, Operator, OperatorOption, OrdinateDimensionData, OrdinateDisplayMode, OsnapInfo, OwnerReference, ParsedLine, PatchAppliedEventArgs, PatchApplyingEventArgs, PatchCreatedEventArgs, PatchCreatingEventArgs, PatchInfo, PatchRevertedEventArgs, PatchRevertingEventArgs, PathCommand, Plugin, PluginActivatedEventArgs, PluginActivatingEventArgs, PluginCacheEntry, PluginConfig, PluginDeactivatedEventArgs, PluginDeactivatingEventArgs, PluginErrorEventArgs, PluginInfo, PluginInstance, PluginLoadOptions, PluginLoadResult, PluginLoadedEventArgs, PluginLoadingEventArgs, PluginManifest, PluginMarketResponse, PluginSource, PluginUnloadedEventArgs, PluginUnloadingEventArgs, PointInput, PreviewViewConfig, PropertyDefinition, PropertyInfo, PropertyType, QuickSelectResult, RadialDimensionData, ReactorEventArgs, ReactorRelationData, RecentCommand, Response, RibbonButtonConfig, RibbonButtonType, RibbonConfig, RibbonGroupConfig, RibbonGroupDisplayMode, RibbonTabConfig, ScopeOption, ScriptContext, SearchScope, SelectDialogConfig, SelectionChangedEventArgs, SelectionClearedEventArgs, SelectionMode, SelectionModeOption, SettingDefinition, SettingOption, SettingValueType, SettingsDialogResult, Point2D as ShapePoint2D, ShapeRenderOptions, SnapPointResult, SnapPointType, StringOperator, SubGeometry, SyncStatus, TabContextMenuItem, TableAttr, TableData, TableExtractInput, TableExtractOptions, TableExtractParams, TableExtractResult, TableItemData, TemplateResult, TextAlignment, TextLayoutResult, TextPositionConfig, ThreePointAngularDimensionData, TileCoord, TileDebugInfo, TileRequest, TileSchedulerEvents, TileSprite, TileState, TileUpdateParams, ToleranceConfig, TwoLineAngularDimensionData, View3DMode, ViewPannedEventArgs, ViewRegeneratedEventArgs, ViewZoomedEventArgs, WmsTileConfig, YesNoDialogResult, YesNoDialogType };
|
|
52315
|
+
export { ANGLE_0, ANGLE_135, ANGLE_180, ANGLE_225, ANGLE_270, ANGLE_315, ANGLE_360, ANGLE_45, ANGLE_90, ANSI31_PATTERN, ANSI37_PATTERN, AboutCommand, ActiveButton, ActivityBar, ActivityBarElement, AddEntitiesUndoCommand, AdvancedEditMenu, AliasListPalette, AlignedDimensionEnt, AlignmentTextCommand, AngleBlockCommand, AngleDimensionEnt, AngleHatchCommand, AngleTextCommand, AntiAliasSetvar, AppDisableIconSvg, AppIconSvg, AppearanceMenu, ArcCircleProperties, ArcCommand, ArcDimensionEnt, ArcDrawer, ArcEnt, ArcModifyUndoCommand, ArcSymbolType, AreaCalculationCollection, AreaCalculationElement, ArrowRenderer, ArrowTypeEnum, AttributeTextProcessor, AutoComplete, AutoCompleteElement, AutoComplteRow, AutoComplteRowElement, BOOLEAN_OPERATORS, BSplineConstructor, BaseDialogComponent, BaseGraphicsProperties, BaseMessage, BasicEditMenu, BezierEnt, BlockAddUndoCommand, BlockCommand, BlockDefinition, BlockModifyUndoCommand, BlockNameDialog, BlockRedefineUndoCommand, BlockReference, BlockRemoveUndoCommand, BlockSortUndoCommand, Blocks, BlocksPalette, BottomBar, BoundingBox, BoundingBoxCommand, BoxCommand, BoxModifyUndoCommand, BranchCreateDialog, BranchMergeDialog, BucketEntityRenderer, BulgePoint, BulgePoints, BurstTextCommand, ButtonEle, CLayerSetvar, CadDocument, CadEventEmitter, CadEventManager, CadEvents, CadGraphics, CadMapOverlay, CadPatternDef, CanvasController, CeColorSetvar, CenterMarker, ChangeColorCommand, ChangeLTypeCommand, ChangeLTypeScaleCommand, ChangeLayerCommand, ChangeLineWeightCommand, ChangeLineWeightDialog, ChangeTranspCommand, CircleCommand, CircleDrawer, CircleEnt, CircleMarker, CircleModifyUndoCommand, ClipMode, ClipboardObj, CloseCommand, CloseXCommand, ColorConverter, ColorDialogOptions, ColorPanelDialog, CommandAlias, CommandAliasManager, CommandDefinition, CommandLine, CommandListPalette, CommandOptions, CommandRegistry, CommandResult, ConflictResolutionDialog, ContextMenu, ContextMenuAction, ContextMenuItem, ContinueDimensionCommand, ControlPoint, ControlPoints, CoordinateAxesDraw, CoordinateSystemIndicatorDraw, CoordinateSystemType, CoordinateTransform, CoordsBar, CoordsPalette, CopyBaseCommand, CopyClipCommand, CopyCommand, CornerInputHandler, CornerInputOptions, CornerSelectionHandler, CountBlockCommand, CountTextCommand, CreateAlignedDimensionCommand, CreateAngleDimensionCommand, CreateArcLengthDimensionCommand, CreateDiametricDimensionCommand, CreateLinearDimensionCommand, CreateMLeaderCommand, CreateMenu, CreateOrdinateDimensionCommand, CreateRadialDimensionCommand, CreateSymbolCommand, CrosshairCursorDraw, CtbPalette, CurrentLayerUndoCommand, CustomEntityBase, CustomEntityRegistry, CutBaseCommand, CutClipCommand, CutRecCommand, DLineCommand, DbArc, DbBackgroundConfig, DbBlock, DbBlockRef, DbBlocks, DbBox, DbBulgePoint, DbBulgePoints, DbCircle, DbControlPoints, DbDText, DbDimLinear, DbDimStyle, DbDimStyles, DbDoc, DbDocEnv, DbDotEntity, DbEdge, DbEllipse, DbEntity, DbHatch, DbImage, DbImageRef, DbImages, DbLayer, DbLayers, DbLayout, DbLayouts, DbLine, DbMText, DbPadding, DbPixelPoint, DbPline, DbPlotConfig, DbPoint, DbPoint2d, DbRay, DbSolid, DbSpline, DbSplineControlPoint, DbTextStyle, DbTextStyles, DbXline, DefaultDimensionStyle, DialogColors, DiametricDimensionEnt, DiamondMarker, DimMenu, DimScaleUndoCommand, DimStyleCommand, DimStyleDialog, DimStyleEditDialog, DimensionAngularFormat, DimensionArrowType, DimensionBase, DimensionFitMode, DimensionFormatter, DimensionStyle, DimensionStyles, DimensionTextAlignment, DimensionTextLayout, DimensionTextMovementMode, DimensionTextVerticalPosition, DimensionType, DimensionUnitFormat, DistCommand, DocDropDown, DocDropDownElement, DocEnv, DocumentTabItem, DocumentTabs, Documents, DonutCommand, DotCommand, DotEnt, DrawAdvancedMenu, DrawBezierCurve, DrawMenu, DrawOrderBackCommand, DrawOrderBackUndoCommand, DrawOrderFrontCommand, DrawOrderFrontUndoCommand, DrawSettingsPalette, DrawingBrowserDialog, DrawingBrowserDialogElement, DrawingManagerService, DropEffectComponent, DynamicMenuPanel, EHatchCommand, ENTITY_TYPE_OPTIONS, Edge, EdgeType, Edges, EditMenu, Editor, EllipseCommand, EllipseDrawer, EllipseEnt, EmptyCommandAlias, EndPointMarker, EndUndoCommand, Engine, EntityBase, EntityBoundsCalculator, EntityColorUndoCommand, EntityLayerUndoCommand, EntityLineTypeScaleUndoCommand, EntityLineTypeUndoCommand, EntityLineWeightUndoCommand, EntityModifyUndoCommand, EntityPickResult, EntityPicker, EntityReactorManager, EntityRenderer, EntitySelectionSplitter, EntitySelector, EntityStatsCommand, EntityTransparencyUndoCommand, EntityUndoCommand, EraseCommand, EraseEntitiesUndoCommand, ExecuteJsCommand, ExecuteStrCommand, ExplodeCommand, ExportDwgOptionsDialog, ExportToDwgCommand, ExtendCommand, ExtendedGraphicsProperties, FileMenuPanel, FilesPalette, FilletCommand, FindReplaceCommand, FindTextService, FitMapViewCommand, FontLoader, FuncButtons, GArc, GBulgePolyline, GCircle, GEllipse, GLine, GPolyline, GeoBounds, GeoPoint, GeoProjection, GeometryCalculator, GeometryUtils, GetInfoCommand, GraphicsBucket, GraphicsBucketManager, GraphicsInfoCommand, GridDisplayDraw, GridModeButton, GripCommand, GripEditor, GripManager, GripMarker, GripUtils, GroupCommand, GroupEnt, HATCH_PATTERN_NAMES, HandleFileDrop, HatchCommand, HatchEnt, HatchLoops, HatchMoveCommand, HatchPatternConfig, HelpMenu, HiddenLineDrawer, HistoryEle, IconCategory, IconRegistry, IdCommand, IdMapping, ImageAdjustCommand, ImageClipCommand, ImageCollection, ImageCommand, ImagePaletteAddCommand, ImagePaletteInsertCommand, ImageRef, ImageRefEnt, ImageRefModifyUndoCommand, ImageSource, ImageSourceAddUndoCommand, ImageSourceRemoveUndoCommand, ImagesPalette, ImportDwgOptionsDialog, ImportFromDwgCommand, Initializer, InputDialog, InputDialogElement, InputNumberDialog, InputResult, InputStatusEnum, InsertCommand, InsertEnt, InsertMenu, InsertSvgCommand, InsertSymbolCommand, InsertionMarker, IntegerInputHandler, IntegerInputOptions, IntegerResult, ItemCollection, JIS_LC_20_PATTERN, JIS_LC_8_PATTERN, JIS_RC_10_PATTERN, JIS_RC_15_PATTERN, JIS_RC_18_PATTERN, JIS_RC_30_PATTERN, JIS_WOOD_PATTERN, JustifyTextCommand, KeywordInputHandler, KeywordInputOptions, KeywordResult, LINE_WEIGHT_VALUES, LTScaleSetvar, LayAllOffCommand, LayAllOnCommand, LayCurCommand, LayDrawBackCommand, LayDrawFrontCommand, LayMCurCommand, LayPickOffCommand, LayPickOnCommand, LayRevCommand, LaySSOffCommand, LaySSOnCommand, LayTblColorCommand, Layer, LayerAddUndoCommand, LayerAlphaCell, LayerColorCell, LayerCommand, LayerCurrentCell, LayerFrozenCell, LayerLTScaleCell, LayerLinetypeCell, LayerLineweightCell, LayerLockedCell, LayerModifyUndoCommand, LayerNameCell, LayerNameDialog, LayerNameDialogElement, LayerOnCell, LayerPaletteCommand, LayerPlottableCell, LayerReference, LayerRemoveUndoCommand, LayerReverseUndoCommand, LayerSelectionDialog, LayerSortUndoCommand, LayerTransparencyDialog, LayerTransparencyDialogElement, Layers, Layout, Layouts, LeaderDirectionType, LeaderType, LineCommand, LineDrawer, LineEnt, LineModifyUndoCommand, LineTypeDialog, LineTypeDialogElement, LineTypeDialogOptions, LineTypeEnum, LineTypeScaleUndoCommand, LinearCopyCommand, LinearDimensionEnt, LinetypeDefinition, LinetypeEditorDialog, LinetypeElement, LinetypeElementType, LinetypeLoadCommand, LinetypeManager, LinetypeParser, LinetypeViewerDialog, LitElement, LocalDrawingBrowserDialog, LocalDrawingBrowserDialogElement, LocalStorageService, MLeaderContentType, MLeaderEnt, MTextAttachmentEnum, MTextColor, MTextCommand, MTextContext, MTextEditCommand, MTextEnt, MTextLineAlignment, MTextParagraphAlignment, MTextParser, MTextStroke, MTextToken, MagTextCommand, MainView, MainViewElement, MakeLayerCommand, ManageSymbolCommand, MapOpenWay, MatChPropCommand, MeasureAngleCommand, MeasureMenu, MenuBar, MenuConfig, MenuItem, MenuRegistry, Menus, MessageBoxComponent, MessageBoxConfig, MidGripMarker, MidPointMarker, MirrorCommand, MirrorEntitiesUndoCommand, ModalDialogBase, ModelessPanelBase, MoveCommand, MoveEntitiesUndoCommand, NUMBER_OPERATORS, NearestMarker, NewCommand, NumberInputComponent, ObservablePoint2D, OffsetCommand, OffsetCurrentCommand, OffsetDefaultCommand, OffsetDeleteCommand, OpenCommand, OpenFromLocalCommand, OpenFromServerCommand, OperationTypeEnum, OrdinateDimensionEnt, OrthoModeButton, OrthoModeSetvar, OsModeSetvar, OsnapButton, OsnapCursor, OsnapMarkerContainer, OtherGraphicsProperties, Padding, PanUndoCommand, PanViewUndoCommand, PanelController, ParallelogramCommand, PasteClipCommand, PathCommandType, PatternEditorDialog, PatternLoadCommand, PatternManager, PatternPickerDialog, PatternViewerDialog, PerformanceMonitor, PerpendicularMarker, PickUtils, PixelPointCommand, PixelPointEnt, PlanCommand, PlanViewUndoCommand, PlineCommand, PlineJoinCommand, PlineWidSetvar, PlotAreaDraw, PlotColorStyle, PlotConfig, PlotStyle, PlotStyles, PluginCacheService, PluginContext, PluginError, PluginLoader, PluginManager, PluginManagerDialog, PluginMarketService, PluginOrigin, PluginSourceType, PluginState, PluginsCommand, Point2D$1 as Point2D, PointAndOsnapResult, PointInputOptions, PointInputResult, PointPrompt, PolarCopyCommand, PolarModeButton, PolarTracking, PolygonCommand, PolylineEnt, PolylineModifyUndoCommand, PreviewView, PromptEle, PropertiesCommand, PropertyMenu, PropertyPalette, PurgeBlocksCommand, PurgeCommand, PurgeImageCommand, PurgeLayerCommand, QBlockCommand, QSaveCommand, QuadrantMarker, QuickSelectCommand, QuickSelectService, RadialDimensionEnt, RayCommmand, RayDCommand, RayEnt, RayLCommand, RayModifyUndoCommand, RayRCommand, RayUCommand, ReactorEvent, ReactorEventBridge, ReactorNotifier, RealInputHandler, RealInputOptions, RealResult, RecentCommandsManager, RectangCommand, RedoCommand, RegenAllCommand, RegenCommand, RenameBlockCommand, RenderConfig, RenderOriginCommand, ReplaceBlockCommand, ResetImageClipCommand, RibbonBar, RibbonButton, RibbonConfigManager, RibbonGroup, RotateCommand, RotateEntitiesUndoCommand, RotationGripMarker, RubberBandLineDraw, SCOPE_OPTIONS, SELECTION_MODE_OPTIONS, SETTINGS_DEFINITIONS, STRING_OPERATORS, SaveAsCommand, SaveAsDialogComp, SaveDrawingDialog, SaveDrawingDialogElement, SaveToLocalCommand, SaveToServerCommand, ScaleBarDraw, ScaleCommand, ScaleEntitiesUndoCommand, ScriptExecutor, ScriptParser, SelectAllCommand, SelectionCycler, SelectionInputOptions, SelectionModeEnum, SelectionRectangleDraw, SelectionSetInputOptions, SelectionSetInputResult, ServerMapSelectorDialog, Service, SettingsCacheService, SettingsCommand, SettingsDialog, ShapeDefinition, ShapeLinetypeElement, ShapeManager, ShapeParser, ShapePath, ShapeRenderer, SideBarFrame, SideBarFrameElement, SidePalettes, SidebarStyBoth, SidebarStyLeft, SidebarStyNone, SidebarStyRight, SidebarStySetvar, SimpleLinetypeElement, SingleEntitySelector, SnapPoint, SolidCommand, SolidEnt, SpatialIndex, SpatialIndexManager, SplineCommand, SplineControlPoint, SplineControlPoints, SplineEnt, SplineFitPoint, SplineFitPoints, SplineKnots, SplitterController, SquareCursorDraw, SsAlignCommand, SsExtendCommand, SsSliceCommand, SsTrimCommand, StartUndoCommand, StatsCommand, StretchCommand, StretchEntitiesUndoCommand, StretchUndoCommand, StringInputHandler, StringInputOptions, StringResult, SwitchWorkspaceCommand, SystemConstants, SystemMessage, TOLERANCE, TangentMarker, TextAlignmentEnum$1 as TextAlignmentEnum, TextAttachmentType, TextCommand, TextCopyCommand, TextEditCommand, TextEnt, TextGripMarker, TextLinetypeElement, TextModifyUndoCommand, TextProperties, TextRotationMode, TextScanner, TextStyle, TextStyles, ThemeButton, ThreePointAngularDimensionEnt, TileAlphaSetvar, TileCache, TileCalculator, TileEditAreaCommand, TileEditLayerCommand, TileEditLayerDialog, TileMaskAlphaSetvar, TileScheduler, TokenType, ToolBar, ToolMenu, TransparencyManager$1 as TransparencyManager, TrimCommand, TwoLineAngularDimensionEnt, Txt2MTxtCommand, UCSAxesDraw, UcsCommand, UcsUndoCommand, UndoCommand, UndoCommandBase, UndoManager, UngroupCommand, ViewMenu, WblockCommand, WebCadCoreService, WheelZoomUndoCommand, WmsTileLayer, XLineEnt, XTextCommand, XlineCommand, XlineModifyUndoCommand, XxCommand, YesNoDialog, YesNoDialogConfig, YesNoDialogElement, YyCommand, ZeroSuppressionFlags, ZoomExtentsCommand, ZoomFactorSetvar, ZoomViewUndoCommand, actbarIcons, addTextReplacementRule, applyDecorators, applyTextReplacements, boundsIntersect, buildIndexedString, buttonBarStyles, buttonStyles, calcForceAngle, calculateBoundingBoxFromPoints, calculateDoubleLinePoints, calculateHatchPatternScale, calculateLineIntersections, calculatePerpendicularPoint, calculatePolygonArea, calculateStringWidth, calculateTextOffset, check3DBoundingBoxIntersection, checkGroupIntersection, checkHatchIntersection, checkPatternHatchIntersection, checkPolylineIntersection, checkTextBoundsIntersection, checkboxStyles, clearEntityDirtyFlags, clearTextReplacementRules, closeDoubleLineSegment, colorIndexToName, colorNameToIndex, commandsIcons, commoncss, compareArrays, containerStyles, convertArcToDeviceCoordinates, convertGArcToDeviceCoordinates, convertLineToDeviceCoordinates, convertToFloat64, convertToHexArray, createBSplineWithDomain, createBulgePointsFromEntities, createCancellableEventArgs, createDataTypeAccessor, createDimensionArrow, createDoubleButtCap, createDoubleLineSegment, createDoubleRoundCap, createDoubleSquareCap, createDynamicMenuPanel, createEventArgs, createIndexAccessor, createNoShadowStyles, createPanel, css, customElementDecorator, darkThemeStyles, darkThemeVarsStr, decodeUnicodeString, decryptFromBase64, defaultContextMenuItems, defaultDocumentTabsConfig, defaultPropertyOptions, defaultRibbonConfig, degreesToRadians, delay, destroyFindReplacePanel, destroyQuickSelectPanel, detectDataType, dialogBaseStyles, distance, drawFilledRegion, drawPatternFill, drawPolyline, drawSolidFill, encryptToBase64, endUndoMark, entitiesToPolylineVertices, escapeDxfLineEndings, expandArc, extractDefaultExport, extractTables, filterHatchSegments, findIntersections, findLineArcIntersections, findLineCircleIntersections, findSubArray, formRowStyles, formatAngleValue, formatDate, formatDimensionValue, formatNumber, formatNumberEx, funcButtonsIcons, generateHatchPatternLines, geoBounds, geoPoint, getAllArrowTypes, getAngleBetweenPoints, getArcBoundingBox, getArcCircleIntersections, getArcEntityIntersections, getArcExtExtendedEntityIntersections, getArcExtLineExtIntersections, getArcExtendedEntityIntersections, getArcLineExtIntersections, getArcLineIntersections, getArcLineIntersectionsAlt, getArcLineIntersectionsEx, getArcLineIntersectionsSimple, getArrowTypeName, getCadDialogContainer, getCadViewContainer, getCircleArcIntersectionsFiltered, getCircleCircleIntersections, getCircleEntityIntersections, getCircleEntityIntersectionsSimple, getCircleLineExtIntersections, getCircleLineExtIntersectionsEx, getCircleLineIntersections, getCircleLineIntersectionsAdvanced, getCircleLineIntersectionsSimple, getCirclePolylineIntersections, getComplexLineIntersection, getCorner, getDirPath, getDocumentStatusIndicator, getEntity, getEntityAlpha, getEntityBounds, getExtendedEntityPolylineIntersections, getFileExtension, getFileName, getFileNameBase, getFilePath, getFileTypeByExtension, getFonts, getInteger, getKeyword, getLineBoundingBox, getLineCircleIntersections, getLineEntityCollectionIntersections, getLineEntityIntersections, getLineExtArcExtIntersections, getLineExtArcIntersections, getLineExtEntityIntersections, getLineExtEntityIntersectionsEx, getLineExtExtendedEntityIntersections, getLineExtLineExt1Intersections, getLineExtLineExtIntersections, getLineExtLineIntersections, getLineExtendedEntityIntersections, getLineIntersection, getLineIntersections, getLineLineExt1Intersections, getLineLineExtIntersections, getLineLineIntersections, getLineSegmentIntersection, getLocalStorageService, getMidPoint, getObjectLineExtLineExt2Intersections, getObjectLineExtLineIntersections, getObjectLineLineExt2Intersections, getOsnapValueFromString, getParameterDomain, getPatternUnitSize, getPoint, getRawObject, getReal, getRecentCommandsManager, getSelections, getServiceHash, getSettingsCacheService, getString, getTableExtractLayers, getTextReplacementRules, getWebCadCoreService, globalShapeManager, hasAnyChildDirty, hasInlineFormattingCodes, hasInvalidChars, headerStyles, hitTestCircle, hitTestEllipse, hitTestGroup, hitTestPattern, hitTestPolyline, hitTestRect, hitTestSpline, html, httpHelper, initCadContainer, inputStyles, int2rgb, isAllElementsEqual, isArcType, isArrayOrArrayBufferView, isCircleType, isEllipseType, isEntityInArray, isEntityReactor, isEqual, isGArc, isGCircle, isGEllipse, isGLine, isGreater, isGreaterOrEqual, isHalfWidthChar, isLess, isLessOrEqual, isLineExists, isLineType, isNdArray, isNullOrUndefined, isPointEqual, isPointOnRay, isTextIntersectWithBox, isTypedArrayView, layerDialogIcons, lineWeightToString, loadingStyles, menubarIcons, mergeBoundingBoxes, message, miscIcons, monitorExports, noChange, normalizeAngle, normalizeAngleAlt, normalizeAngleEx, normalizeDegrees, nothing, numberToString, offsetLine, openMapDarkStyle, openMapLightStyle, osnapIcons, paletteIcons, paletteLayerIcons, palettePlotIcons, panelTitleStyles, parseConfigValue, parseMText, parseMTextToTextObjects, parseNumberToStr, parseTileKey, performanceMonitorInstance, pointInPolygon, polarToCartesian, propertyDecorator, propertyDecoratorFactory, querySelectorDecorator, radiansToDegrees, radioStyles, randInt, readUint16LittleEndian, refreshRemainModelEntities, regen, removeDuplicatePoints, removeTextReplacementRule, removeTimeStamp, resetToDefaultRules, resultsStyles, rgb2int, rotatePointAroundCenter, rotatePointInPlace, roundToDecimalPlace, safeCustomElementRegistration, scalePointAlongVector, scalePointInPlace, sectionStyles, selectStyles, showConfirm, showError, showExportDwgOptionsDialog, showImportDwgOptionsDialog, showInfo, showInputDialog, showPluginManagerDialog, showPrompt, showSelectDialog, showTileEditLayerDialog, showWarningConfirm, sliderStyles, sortEdgeByArea, ssGetFirst, ssSetFirst, startUndoMark, statusStyles, tea, textAlignStringToEnum, tileKey, toPoint2D, transparencyToString, trimWhitespace, unsafeSVGHtml, updateTimeStamp, wrapTextToLines, writeMessage };
|
|
52316
|
+
export type { AlignedDimensionData, AngleDimensionData, AngularFormatConfig, ArcDimensionData, ArrowRenderConfig, ArrowRenderResult, ArrowType, BlockAddedEventArgs, BlockAddingEventArgs, BlockDeletedEventArgs, BlockDeletingEventArgs, BlockModifiedEventArgs, BooleanOperator, BranchCreatedEventArgs, BranchCreatingEventArgs, BranchDeletedEventArgs, BranchDeletingEventArgs, BranchInfo, BranchMergedEventArgs, BranchMergingEventArgs, BranchSwitchedEventArgs, BranchSwitchingEventArgs, CadBoundsLike, CadEventArgs, CadMapOverlayOptions, CancellableEventArgs, CommandCancelledEventArgs, CommandClass, CommandEndedEventArgs, CommandStartedEventArgs, CommandStartingEventArgs, Config, ConflictDetectedEventArgs, ConflictItem, ConflictResolution, ConflictResolvedEventArgs, ConflictResolvingEventArgs, ConflictSkippedEventArgs, ConflictType, ContextMenuItemClickedEventArgs, ContextMenuItemInfo, ContextMenuOpenedEventArgs, ContextMenuOpeningEventArgs, CurrentLayerChangedEventArgs, CustomEntityDbData, DiametricDimensionData, DimStyleDialogResult, DimStyleEditResult, DimensionBaseData, DimensionStyleData, DocumentCacheClearedEventArgs, DocumentCachedEventArgs, DocumentCachingEventArgs, DocumentClosedEventArgs, DocumentClosingEventArgs, DocumentCreatedEventArgs, DocumentCreatingEventArgs, DocumentDownloadedEventArgs, DocumentDownloadingEventArgs, DocumentModifiedEventArgs, DocumentOpenedEventArgs, DocumentOpeningEventArgs, DocumentRestoredEventArgs, DocumentRestoringEventArgs, DocumentSavedEventArgs, DocumentSavingEventArgs, DocumentStorageSource, DocumentSwitchedEventArgs, DocumentSyncStatusChangedEventArgs, DocumentTabsConfig, DocumentUploadedEventArgs, DocumentUploadingEventArgs, DoubleLinePoints, DoubleLineSegment, EntitiesAddedEventArgs, EntitiesAddingEventArgs, EntitiesErasedEventArgs, EntitiesErasingEventArgs, EntityAddedEventArgs, EntityAddingEventArgs, EntityErasedEventArgs, EntityErasingEventArgs, EntityModifiedEventArgs, EntityOperationOptions, EntityTypeFilter, EntityTypeOption, EventArgsMap, EventHandler, FillLoopBounds, FillLoopData, FilterCondition, FindOptions, FindResult, FitDecision, FontInfo, FormatConfig, GBulgePoint, GeoPointLike, GraphicsBucketManagerConfig, GraphicsPrimitiveStats, GripPointResult, GripPointType, IAdminEditPolicy, IAllDrawingsResponse, IBranchCreateDialogConfig, IBranchCreateDialogResult, IBranchInfo, IBranchMergeDialogConfig, IBranchMergeDialogResult, IBranchSourceInfo, IComposeNewMap, IConditionQueryFeatures, IConflictEntityInfo, IConflictItem, IConflictLayerInfo, IConflictResolutionConfig, IConflictResolutionResult, ICreateBranchParams, ICreateBranchResponse, ICreateEntitiesGeomData, ICreateSymbolParams, IDeleteBranchParams, IDeleteBranchResponse, IDeleteCache, IDeleteStyle, IDeleteWebcadDrawParams, IDeleteWebcadDrawResponse, IDrawingBrowserResult, IEditArea, IEditAreaBounds, IEditAreaRecord, IEntityReactor, IEntityResolution, IExportDwgOptions, IExportDwgOptionsResult, IExportLayout, IExportToDwgDialogConfig, IExportToDwgParams, IExportWebcadParams, IExportWebcadResponse, IExprQueryFeatures, IExtractTable, IGetWebcadDataParams, IGetWebcadDataResponse, IImportDwgOptions, IImportDwgOptionsResult, ILayerInfo, IListWebcadDrawsParams, IListWebcadDrawsResponse, ILoadEditAreaResult, ILoadEditAreasResult, ILoadEditLayersResult, ILocalDrawingBrowserResult, ILocalDrawingListItem, ILocalDrawingRecord, ILocalSymbolCategory, ILocalSymbolRecord, IMapDiff, IMapLayer, IMapStyleParam, IMatchObject, IMergeBranchParams, IMergeBranchResponse, IOpenDrawingParams, IOpenDrawingResult, IOpenMapBaseParam, IOpenMapParam, IOpenMapResponse, IPatchInfo, IPluginContext, IPointQueryFeatures, IQueryBaseFeatures, IRectQueryFeatures, IRequest, ISaveDrawingDialogConfig, ISaveDrawingDialogResult, ISaveDrawingParams, ISaveWebcadPatchParams, ISaveWebcadPatchResponse, IServerMapInfo, IServerMapSelectResult, IServerMapVersion, ISliceCacheZoom, ISliceLayer, ISplitChildMaps, ISymbol, ISymbolCategory, ISymbolConfig, ISymbolListQuery, ISymbolListResult, ISymbolMeta, ITileEditLayerDialogConfig, ITileEditLayerDialogResult, ITileUrlParam, IUpdateMapParam, IUpdateStyle, IUpdateSymbolParams, IUploadMapResult, IVcadEditArea, IVcadMeta, IWebcadDrawInfo, IWmsTileUrl, IWorkspace, IconInfo, IconRegistryOptions, InitializerOptions, InputDialogConfig, InputDialogResult$1 as InputDialogResult, LayerAddedEventArgs, LayerAddingEventArgs, LayerCreateOptions, LayerDeletedEventArgs, LayerDeletingEventArgs, LayerModifiedEventArgs, LeaderData, LeaderLineData, LineSegmentInfo, LineType, LinearDimensionData, MLeaderData, MainViewConfig, MarketplacePluginInfo, MenuConfig2, MenuItemConfig, MenuItemOptions, ModalDialogOptions, NumberOperator, OpenModeType, OpenWayType, OperationType, Operator, OperatorOption, OrdinateDimensionData, OrdinateDisplayMode, OsnapInfo, OwnerReference, PanelManager, PanelPosition, ParsedLine, PatchAppliedEventArgs, PatchApplyingEventArgs, PatchCreatedEventArgs, PatchCreatingEventArgs, PatchInfo, PatchRevertedEventArgs, PatchRevertingEventArgs, PathCommand, Plugin, PluginActivatedEventArgs, PluginActivatingEventArgs, PluginCacheEntry, PluginConfig, PluginDeactivatedEventArgs, PluginDeactivatingEventArgs, PluginErrorEventArgs, PluginInfo, PluginInstance, PluginLoadOptions, PluginLoadResult, PluginLoadedEventArgs, PluginLoadingEventArgs, PluginManifest, PluginMarketResponse, PluginSource, PluginUnloadedEventArgs, PluginUnloadingEventArgs, PointInput, PreviewViewConfig, PropertyDefinition, PropertyInfo, PropertyType, QuickSelectResult, RadialDimensionData, ReactorEventArgs, ReactorRelationData, RecentCommand, Response, RibbonButtonConfig, RibbonButtonType, RibbonConfig, RibbonGroupConfig, RibbonGroupDisplayMode, RibbonTabConfig, ScopeOption, ScriptContext, SearchScope, SelectDialogConfig, SelectionChangedEventArgs, SelectionClearedEventArgs, SelectionMode, SelectionModeOption, SettingDefinition, SettingOption, SettingValueType, SettingsDialogResult, Point2D as ShapePoint2D, ShapeRenderOptions, SnapPointResult, SnapPointType, StringOperator, SubGeometry, SyncStatus, TabContextMenuItem, TableAttr, TableData, TableExtractInput, TableExtractOptions, TableExtractParams, TableExtractResult, TableItemData, TemplateResult, TextAlignment, TextLayoutResult, TextPositionConfig, ThreePointAngularDimensionData, TileCoord, TileDebugInfo, TileRequest, TileSchedulerEvents, TileSprite, TileState, TileUpdateParams, ToleranceConfig, TwoLineAngularDimensionData, View3DMode, ViewPannedEventArgs, ViewRegeneratedEventArgs, ViewZoomedEventArgs, WmsTileConfig, YesNoDialogResult, YesNoDialogType };
|
|
51898
52317
|
|
|
51899
52318
|
// ============================================
|
|
51900
52319
|
// UMD 全局命名空间声明
|
|
@@ -52105,6 +52524,7 @@ interface VjcadModule {
|
|
|
52105
52524
|
DbTextStyles: typeof DbTextStyles;
|
|
52106
52525
|
DbXline: typeof DbXline;
|
|
52107
52526
|
DefaultDimensionStyle: typeof DefaultDimensionStyle;
|
|
52527
|
+
DialogColors: typeof DialogColors;
|
|
52108
52528
|
DiametricDimensionEnt: typeof DiametricDimensionEnt;
|
|
52109
52529
|
DiamondMarker: typeof DiamondMarker;
|
|
52110
52530
|
DimMenu: typeof DimMenu;
|
|
@@ -52376,6 +52796,8 @@ interface VjcadModule {
|
|
|
52376
52796
|
MidPointMarker: typeof MidPointMarker;
|
|
52377
52797
|
MirrorCommand: typeof MirrorCommand;
|
|
52378
52798
|
MirrorEntitiesUndoCommand: typeof MirrorEntitiesUndoCommand;
|
|
52799
|
+
ModalDialogBase: typeof ModalDialogBase;
|
|
52800
|
+
ModelessPanelBase: typeof ModelessPanelBase;
|
|
52379
52801
|
MoveCommand: typeof MoveCommand;
|
|
52380
52802
|
MoveEntitiesUndoCommand: typeof MoveEntitiesUndoCommand;
|
|
52381
52803
|
NUMBER_OPERATORS: typeof NUMBER_OPERATORS;
|
|
@@ -52630,6 +53052,8 @@ interface VjcadModule {
|
|
|
52630
53052
|
applyTextReplacements: typeof applyTextReplacements;
|
|
52631
53053
|
boundsIntersect: typeof boundsIntersect;
|
|
52632
53054
|
buildIndexedString: typeof buildIndexedString;
|
|
53055
|
+
buttonBarStyles: typeof buttonBarStyles;
|
|
53056
|
+
buttonStyles: typeof buttonStyles;
|
|
52633
53057
|
calcForceAngle: typeof calcForceAngle;
|
|
52634
53058
|
calculateBoundingBoxFromPoints: typeof calculateBoundingBoxFromPoints;
|
|
52635
53059
|
calculateDoubleLinePoints: typeof calculateDoubleLinePoints;
|
|
@@ -52645,6 +53069,7 @@ interface VjcadModule {
|
|
|
52645
53069
|
checkPatternHatchIntersection: typeof checkPatternHatchIntersection;
|
|
52646
53070
|
checkPolylineIntersection: typeof checkPolylineIntersection;
|
|
52647
53071
|
checkTextBoundsIntersection: typeof checkTextBoundsIntersection;
|
|
53072
|
+
checkboxStyles: typeof checkboxStyles;
|
|
52648
53073
|
clearEntityDirtyFlags: typeof clearEntityDirtyFlags;
|
|
52649
53074
|
clearTextReplacementRules: typeof clearTextReplacementRules;
|
|
52650
53075
|
closeDoubleLineSegment: typeof closeDoubleLineSegment;
|
|
@@ -52653,6 +53078,7 @@ interface VjcadModule {
|
|
|
52653
53078
|
commandsIcons: typeof commandsIcons;
|
|
52654
53079
|
commoncss: typeof commoncss;
|
|
52655
53080
|
compareArrays: typeof compareArrays;
|
|
53081
|
+
containerStyles: typeof containerStyles;
|
|
52656
53082
|
convertArcToDeviceCoordinates: typeof convertArcToDeviceCoordinates;
|
|
52657
53083
|
convertGArcToDeviceCoordinates: typeof convertGArcToDeviceCoordinates;
|
|
52658
53084
|
convertLineToDeviceCoordinates: typeof convertLineToDeviceCoordinates;
|
|
@@ -52670,8 +53096,12 @@ interface VjcadModule {
|
|
|
52670
53096
|
createDynamicMenuPanel: typeof createDynamicMenuPanel;
|
|
52671
53097
|
createEventArgs: typeof createEventArgs;
|
|
52672
53098
|
createIndexAccessor: typeof createIndexAccessor;
|
|
53099
|
+
createNoShadowStyles: typeof createNoShadowStyles;
|
|
53100
|
+
createPanel: typeof createPanel;
|
|
52673
53101
|
css: typeof css;
|
|
52674
53102
|
customElementDecorator: typeof customElementDecorator;
|
|
53103
|
+
darkThemeStyles: typeof darkThemeStyles;
|
|
53104
|
+
darkThemeVarsStr: typeof darkThemeVarsStr;
|
|
52675
53105
|
decodeUnicodeString: typeof decodeUnicodeString;
|
|
52676
53106
|
decryptFromBase64: typeof decryptFromBase64;
|
|
52677
53107
|
defaultContextMenuItems: typeof defaultContextMenuItems;
|
|
@@ -52683,6 +53113,7 @@ interface VjcadModule {
|
|
|
52683
53113
|
destroyFindReplacePanel: typeof destroyFindReplacePanel;
|
|
52684
53114
|
destroyQuickSelectPanel: typeof destroyQuickSelectPanel;
|
|
52685
53115
|
detectDataType: typeof detectDataType;
|
|
53116
|
+
dialogBaseStyles: typeof dialogBaseStyles;
|
|
52686
53117
|
distance: typeof distance;
|
|
52687
53118
|
drawFilledRegion: typeof drawFilledRegion;
|
|
52688
53119
|
drawPatternFill: typeof drawPatternFill;
|
|
@@ -52700,6 +53131,7 @@ interface VjcadModule {
|
|
|
52700
53131
|
findLineArcIntersections: typeof findLineArcIntersections;
|
|
52701
53132
|
findLineCircleIntersections: typeof findLineCircleIntersections;
|
|
52702
53133
|
findSubArray: typeof findSubArray;
|
|
53134
|
+
formRowStyles: typeof formRowStyles;
|
|
52703
53135
|
formatAngleValue: typeof formatAngleValue;
|
|
52704
53136
|
formatDate: typeof formatDate;
|
|
52705
53137
|
formatDimensionValue: typeof formatDimensionValue;
|
|
@@ -52793,6 +53225,7 @@ interface VjcadModule {
|
|
|
52793
53225
|
hasAnyChildDirty: typeof hasAnyChildDirty;
|
|
52794
53226
|
hasInlineFormattingCodes: typeof hasInlineFormattingCodes;
|
|
52795
53227
|
hasInvalidChars: typeof hasInvalidChars;
|
|
53228
|
+
headerStyles: typeof headerStyles;
|
|
52796
53229
|
hitTestCircle: typeof hitTestCircle;
|
|
52797
53230
|
hitTestEllipse: typeof hitTestEllipse;
|
|
52798
53231
|
hitTestGroup: typeof hitTestGroup;
|
|
@@ -52803,6 +53236,7 @@ interface VjcadModule {
|
|
|
52803
53236
|
html: typeof html;
|
|
52804
53237
|
httpHelper: typeof httpHelper;
|
|
52805
53238
|
initCadContainer: typeof initCadContainer;
|
|
53239
|
+
inputStyles: typeof inputStyles;
|
|
52806
53240
|
int2rgb: typeof int2rgb;
|
|
52807
53241
|
isAllElementsEqual: typeof isAllElementsEqual;
|
|
52808
53242
|
isArcType: typeof isArcType;
|
|
@@ -52831,6 +53265,7 @@ interface VjcadModule {
|
|
|
52831
53265
|
isTypedArrayView: typeof isTypedArrayView;
|
|
52832
53266
|
layerDialogIcons: typeof layerDialogIcons;
|
|
52833
53267
|
lineWeightToString: typeof lineWeightToString;
|
|
53268
|
+
loadingStyles: typeof loadingStyles;
|
|
52834
53269
|
menubarIcons: typeof menubarIcons;
|
|
52835
53270
|
mergeBoundingBoxes: typeof mergeBoundingBoxes;
|
|
52836
53271
|
message: typeof message;
|
|
@@ -52850,6 +53285,7 @@ interface VjcadModule {
|
|
|
52850
53285
|
paletteIcons: typeof paletteIcons;
|
|
52851
53286
|
paletteLayerIcons: typeof paletteLayerIcons;
|
|
52852
53287
|
palettePlotIcons: typeof palettePlotIcons;
|
|
53288
|
+
panelTitleStyles: typeof panelTitleStyles;
|
|
52853
53289
|
parseConfigValue: typeof parseConfigValue;
|
|
52854
53290
|
parseMText: typeof parseMText;
|
|
52855
53291
|
parseMTextToTextObjects: typeof parseMTextToTextObjects;
|
|
@@ -52862,6 +53298,7 @@ interface VjcadModule {
|
|
|
52862
53298
|
propertyDecoratorFactory: typeof propertyDecoratorFactory;
|
|
52863
53299
|
querySelectorDecorator: typeof querySelectorDecorator;
|
|
52864
53300
|
radiansToDegrees: typeof radiansToDegrees;
|
|
53301
|
+
radioStyles: typeof radioStyles;
|
|
52865
53302
|
randInt: typeof randInt;
|
|
52866
53303
|
readUint16LittleEndian: typeof readUint16LittleEndian;
|
|
52867
53304
|
refreshRemainModelEntities: typeof refreshRemainModelEntities;
|
|
@@ -52870,6 +53307,7 @@ interface VjcadModule {
|
|
|
52870
53307
|
removeTextReplacementRule: typeof removeTextReplacementRule;
|
|
52871
53308
|
removeTimeStamp: typeof removeTimeStamp;
|
|
52872
53309
|
resetToDefaultRules: typeof resetToDefaultRules;
|
|
53310
|
+
resultsStyles: typeof resultsStyles;
|
|
52873
53311
|
rgb2int: typeof rgb2int;
|
|
52874
53312
|
rotatePointAroundCenter: typeof rotatePointAroundCenter;
|
|
52875
53313
|
rotatePointInPlace: typeof rotatePointInPlace;
|
|
@@ -52877,6 +53315,8 @@ interface VjcadModule {
|
|
|
52877
53315
|
safeCustomElementRegistration: typeof safeCustomElementRegistration;
|
|
52878
53316
|
scalePointAlongVector: typeof scalePointAlongVector;
|
|
52879
53317
|
scalePointInPlace: typeof scalePointInPlace;
|
|
53318
|
+
sectionStyles: typeof sectionStyles;
|
|
53319
|
+
selectStyles: typeof selectStyles;
|
|
52880
53320
|
showConfirm: typeof showConfirm;
|
|
52881
53321
|
showError: typeof showError;
|
|
52882
53322
|
showExportDwgOptionsDialog: typeof showExportDwgOptionsDialog;
|
|
@@ -52888,10 +53328,12 @@ interface VjcadModule {
|
|
|
52888
53328
|
showSelectDialog: typeof showSelectDialog;
|
|
52889
53329
|
showTileEditLayerDialog: typeof showTileEditLayerDialog;
|
|
52890
53330
|
showWarningConfirm: typeof showWarningConfirm;
|
|
53331
|
+
sliderStyles: typeof sliderStyles;
|
|
52891
53332
|
sortEdgeByArea: typeof sortEdgeByArea;
|
|
52892
53333
|
ssGetFirst: typeof ssGetFirst;
|
|
52893
53334
|
ssSetFirst: typeof ssSetFirst;
|
|
52894
53335
|
startUndoMark: typeof startUndoMark;
|
|
53336
|
+
statusStyles: typeof statusStyles;
|
|
52895
53337
|
tea: typeof tea;
|
|
52896
53338
|
textAlignStringToEnum: typeof textAlignStringToEnum;
|
|
52897
53339
|
tileKey: typeof tileKey;
|