初始化版本库,可用
This commit is contained in:
commit
d2573c0b1c
67
.gitignore
vendored
Normal file
67
.gitignore
vendored
Normal file
@ -0,0 +1,67 @@
|
|||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
.history
|
||||||
|
|
||||||
|
# Runtime data
|
||||||
|
pids
|
||||||
|
*.pid
|
||||||
|
*.seed
|
||||||
|
*.pid.lock
|
||||||
|
|
||||||
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
||||||
|
lib-cov
|
||||||
|
|
||||||
|
# Coverage directory used by tools like istanbul
|
||||||
|
coverage
|
||||||
|
|
||||||
|
# nyc test coverage
|
||||||
|
.nyc_output
|
||||||
|
|
||||||
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||||
|
.grunt
|
||||||
|
|
||||||
|
# Bower dependency directory (https://bower.io/)
|
||||||
|
bower_components
|
||||||
|
|
||||||
|
# node-waf configuration
|
||||||
|
.lock-wscript
|
||||||
|
|
||||||
|
# Compiled binary addons (http://nodejs.org/api/addons.html)
|
||||||
|
build/Release
|
||||||
|
|
||||||
|
# Dependency directories
|
||||||
|
node_modules/
|
||||||
|
jspm_packages/
|
||||||
|
|
||||||
|
# Typescript v1 declaration files
|
||||||
|
typings/
|
||||||
|
|
||||||
|
# Optional npm cache directory
|
||||||
|
.npm
|
||||||
|
|
||||||
|
# Optional eslint cache
|
||||||
|
.eslintcache
|
||||||
|
|
||||||
|
# Optional REPL history
|
||||||
|
.node_repl_history
|
||||||
|
|
||||||
|
# Output of 'npm pack'
|
||||||
|
*.tgz
|
||||||
|
|
||||||
|
# Yarn Integrity file
|
||||||
|
.yarn-integrity
|
||||||
|
|
||||||
|
# dotenv environment variables file
|
||||||
|
.env
|
||||||
|
|
||||||
|
#custom
|
||||||
|
/dist*
|
||||||
|
/package-lock.json
|
||||||
|
yarn.lock
|
||||||
|
|
||||||
|
#导出的WebCADApi
|
||||||
|
api
|
20324
api.esm.js
Normal file
20324
api.esm.js
Normal file
File diff suppressed because it is too large
Load Diff
1
api.esm.js.map
Normal file
1
api.esm.js.map
Normal file
File diff suppressed because one or more lines are too long
11
package.json
Normal file
11
package.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"name": "webcad_ue4_api",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "",
|
||||||
|
"main": "api.esm.js",
|
||||||
|
"module": "api.esm.js",
|
||||||
|
"types": "types/ueapi.d.ts",
|
||||||
|
"private": true,
|
||||||
|
"author": "cx",
|
||||||
|
"license": "ISC"
|
||||||
|
}
|
5
types/Add-on/999.d.ts
vendored
Normal file
5
types/Add-on/999.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_999 implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=999.d.ts.map
|
1
types/Add-on/999.d.ts.map
Normal file
1
types/Add-on/999.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"999.d.ts","sourceRoot":"","sources":["../../../src/Add-on/999.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,WAAY,YAAW,OAAO;IAEjC,IAAI;CAmCb"}
|
5
types/Add-on/ActivityLayerBoard.d.ts
vendored
Normal file
5
types/Add-on/ActivityLayerBoard.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class ActicityLayerBoard implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=ActivityLayerBoard.d.ts.map
|
1
types/Add-on/ActivityLayerBoard.d.ts.map
Normal file
1
types/Add-on/ActivityLayerBoard.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"ActivityLayerBoard.d.ts","sourceRoot":"","sources":["../../../src/Add-on/ActivityLayerBoard.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AASnD,qBAAa,kBAAmB,YAAW,OAAO;IAExC,IAAI;CA2Eb"}
|
19
types/Add-on/AddPtOnBoard.d.ts
vendored
Normal file
19
types/Add-on/AddPtOnBoard.d.ts
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
import { PromptPointResult } from "../Editor/PromptResult";
|
||||||
|
import { Board } from "../DatabaseServices/Entity/Board";
|
||||||
|
import { Polyline } from "../DatabaseServices/Entity/Polyline";
|
||||||
|
declare abstract class PtOnBoard implements Command {
|
||||||
|
prompt: string;
|
||||||
|
exec(): Promise<void>;
|
||||||
|
abstract operation(br: Board, ptRes: PromptPointResult): Polyline;
|
||||||
|
}
|
||||||
|
export declare class AddPtOnBoard extends PtOnBoard {
|
||||||
|
prompt: string;
|
||||||
|
operation(br: Board, ptRes: PromptPointResult): Polyline;
|
||||||
|
}
|
||||||
|
export declare class DeletePtOnBoard extends PtOnBoard {
|
||||||
|
prompt: string;
|
||||||
|
operation(br: Board, ptRes: PromptPointResult): Polyline;
|
||||||
|
}
|
||||||
|
export {};
|
||||||
|
//# sourceMappingURL=AddPtOnBoard.d.ts.map
|
1
types/Add-on/AddPtOnBoard.d.ts.map
Normal file
1
types/Add-on/AddPtOnBoard.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"AddPtOnBoard.d.ts","sourceRoot":"","sources":["../../../src/Add-on/AddPtOnBoard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAEnD,OAAO,EAAgB,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,KAAK,EAAE,MAAM,kCAAkC,CAAC;AACzD,OAAO,EAAE,QAAQ,EAAE,MAAM,qCAAqC,CAAC;AAG/D,uBAAe,SAAU,YAAW,OAAO;IAEvC,MAAM,EAAE,MAAM,CAAC;IACT,IAAI;IAkCV,QAAQ,CAAC,SAAS,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,iBAAiB,GAAG,QAAQ;CACpE;AAED,qBAAa,YAAa,SAAQ,SAAS;IAEvC,MAAM,SAAQ;IAEd,SAAS,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,iBAAiB;CAqBhD;AAED,qBAAa,eAAgB,SAAQ,SAAS;IAE1C,MAAM,SAAQ;IAEd,SAAS,CAAC,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,iBAAiB;CAgChD"}
|
6
types/Add-on/Align.d.ts
vendored
Normal file
6
types/Add-on/Align.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Align implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
private getPoint;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Align.d.ts.map
|
1
types/Add-on/Align.d.ts.map
Normal file
1
types/Add-on/Align.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Align.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Align.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAMnD,qBAAa,KAAM,YAAW,OAAO;IAE3B,IAAI;YAyFI,QAAQ;CAWzB"}
|
5
types/Add-on/Area.d.ts
vendored
Normal file
5
types/Add-on/Area.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_Area implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Area.d.ts.map
|
1
types/Add-on/Area.d.ts.map
Normal file
1
types/Add-on/Area.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Area.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Area.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,YAAa,YAAW,OAAO;IAElC,IAAI;CA2Bb"}
|
50
types/Add-on/Array.d.ts
vendored
Normal file
50
types/Add-on/Array.d.ts
vendored
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
import { Singleton } from '../Common/Singleton';
|
||||||
|
import { Command } from '../Editor/CommandMachine';
|
||||||
|
import { IBaseOption, IUiOption } from '../UI/Store/BoardInterface';
|
||||||
|
export declare enum ArrayType {
|
||||||
|
Rectangle = "R",
|
||||||
|
Circle = "C"
|
||||||
|
}
|
||||||
|
export declare enum CirArrMethod {
|
||||||
|
itemsAndAngle = 0,
|
||||||
|
itemsAndBeAngle = 1,
|
||||||
|
fillAngleAndBeAngle = 2
|
||||||
|
}
|
||||||
|
export declare enum Pick {
|
||||||
|
centerPoint = 0,
|
||||||
|
rowOffset = 2,
|
||||||
|
colOffset = 3,
|
||||||
|
rowAndColOffset = 7,
|
||||||
|
arrayAngle = 4,
|
||||||
|
fillAngle = 5,
|
||||||
|
betweenAngle = 6
|
||||||
|
}
|
||||||
|
export interface ArrayOptioins extends IBaseOption {
|
||||||
|
row: number;
|
||||||
|
col: number;
|
||||||
|
type: ArrayType;
|
||||||
|
rowOffset: number;
|
||||||
|
colOffset: number;
|
||||||
|
arrayAngle: number;
|
||||||
|
x: number;
|
||||||
|
y: number;
|
||||||
|
itemTotal: number;
|
||||||
|
fillAngle: number;
|
||||||
|
betweenAngle: number;
|
||||||
|
method: CirArrMethod;
|
||||||
|
isCorrect: boolean;
|
||||||
|
}
|
||||||
|
export declare class ArrayStore extends Singleton {
|
||||||
|
protected m_UiOption: IUiOption<ArrayOptioins>;
|
||||||
|
m_Option: ArrayOptioins;
|
||||||
|
get UIOption(): IUiOption<ArrayOptioins>;
|
||||||
|
HasInvailValue(): "" | "存在无效数值,请修正" | "项目间的角度不能超过填充角度" | "项目总数不能为1";
|
||||||
|
Cancel(): void;
|
||||||
|
OnOk(): void;
|
||||||
|
_Return(state: number): void;
|
||||||
|
}
|
||||||
|
export declare class Command_Array implements Command {
|
||||||
|
arrayStore: ArrayStore;
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Array.d.ts.map
|
1
types/Add-on/Array.d.ts.map
Normal file
1
types/Add-on/Array.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Array.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Array.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAGhD,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAQnD,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAIpE,oBAAY,SAAS;IAEjB,SAAS,MAAM;IACf,MAAM,MAAM;CACf;AAED,oBAAY,YAAY;IAEpB,aAAa,IAAI;IACjB,eAAe,IAAI;IACnB,mBAAmB,IAAI;CAC1B;AACD,oBAAY,IAAI;IAEZ,WAAW,IAAI;IACf,SAAS,IAAI;IACb,SAAS,IAAI;IACb,eAAe,IAAI;IACnB,UAAU,IAAI;IACd,SAAS,IAAI;IACb,YAAY,IAAI;CACnB;AACD,MAAM,WAAW,aAAc,SAAQ,WAAW;IAE9C,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,SAAS,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,YAAY,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;CACtB;AACD,qBAAa,UAAW,SAAQ,SAAS;IAErC,SAAS,CAAC,UAAU,EAAE,SAAS,CAAC,aAAa,CAAC,CAAC;IACnC,QAAQ,EAAE,aAAa,CAgBjC;IACF,IAAI,QAAQ,6BAKX;IACD,cAAc;IAYd,MAAM;IAIN,IAAI;IAIJ,OAAO,CAAC,KAAK,EAAE,MAAM;CAKxB;AACD,qBAAa,aAAc,YAAW,OAAO;IAEzC,UAAU,EAAE,UAAU,CAA4B;IAE5C,IAAI;CA4Pb"}
|
5
types/Add-on/AutoHoleFaceSetting.d.ts
vendored
Normal file
5
types/Add-on/AutoHoleFaceSetting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class AutoHoleFaceSetting implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=AutoHoleFaceSetting.d.ts.map
|
1
types/Add-on/AutoHoleFaceSetting.d.ts.map
Normal file
1
types/Add-on/AutoHoleFaceSetting.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"AutoHoleFaceSetting.d.ts","sourceRoot":"","sources":["../../../src/Add-on/AutoHoleFaceSetting.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAOnD,qBAAa,mBAAoB,YAAW,OAAO;IAEzC,IAAI;CA2Bb"}
|
5
types/Add-on/Batch/BatchModifySealOrDrill.d.ts
vendored
Normal file
5
types/Add-on/Batch/BatchModifySealOrDrill.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
export declare class BatchModify implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=BatchModifySealOrDrill.d.ts.map
|
1
types/Add-on/Batch/BatchModifySealOrDrill.d.ts.map
Normal file
1
types/Add-on/Batch/BatchModifySealOrDrill.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"BatchModifySealOrDrill.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Batch/BatchModifySealOrDrill.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAUtD,qBAAa,WAAY,YAAW,OAAO;IAEjC,IAAI;CAiDb"}
|
5
types/Add-on/Batch/FindModeingKnifes.d.ts
vendored
Normal file
5
types/Add-on/Batch/FindModeingKnifes.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
export declare class FindModeingKnifeRadius implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=FindModeingKnifes.d.ts.map
|
1
types/Add-on/Batch/FindModeingKnifes.d.ts.map
Normal file
1
types/Add-on/Batch/FindModeingKnifes.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"FindModeingKnifes.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/Batch/FindModeingKnifes.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAMtD,qBAAa,sBAAuB,YAAW,OAAO;IAE5C,IAAI;CAgCb"}
|
5
types/Add-on/BoardBatchCurtail.d.ts
vendored
Normal file
5
types/Add-on/BoardBatchCurtail.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class BoardBatchCurtail implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=BoardBatchCurtail.d.ts.map
|
1
types/Add-on/BoardBatchCurtail.d.ts.map
Normal file
1
types/Add-on/BoardBatchCurtail.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"BoardBatchCurtail.d.ts","sourceRoot":"","sources":["../../../src/Add-on/BoardBatchCurtail.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AA0BnD,qBAAa,iBAAkB,YAAW,OAAO;IAEvC,IAAI;CAsJb"}
|
10
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts
vendored
Normal file
10
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||||
|
export declare class AutoCuttingReactor {
|
||||||
|
constructor();
|
||||||
|
StartReactor(ents: Board[]): Promise<void>;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* 对绘制出来的板件自动切割其周围的板件
|
||||||
|
*/
|
||||||
|
export declare function AutoCutting(isRelevance: boolean): Promise<void>;
|
||||||
|
//# sourceMappingURL=AutoCuttingReactor.d.ts.map
|
1
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts.map
Normal file
1
types/Add-on/BoardCutting/AutoCuttingReactor.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"AutoCuttingReactor.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/AutoCuttingReactor.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAK5D,qBAAa,kBAAkB;;IAwBrB,YAAY,CAAC,IAAI,EAAE,KAAK,EAAE;CAWnC;AAED;;GAEG;AACH,wBAAsB,WAAW,CAAC,WAAW,EAAE,OAAO,iBAUrD"}
|
9
types/Add-on/BoardCutting/CuttingByFace.d.ts
vendored
Normal file
9
types/Add-on/BoardCutting/CuttingByFace.d.ts
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import { Vector3 } from "three";
|
||||||
|
import { ExtrudeSolid } from "../../DatabaseServices/Entity/Extrude";
|
||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
export declare class CuttingByFace implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
setHeight(en: ExtrudeSolid, dist: number, oldPosition: Vector3): void;
|
||||||
|
private GetKnifeRadius;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=CuttingByFace.d.ts.map
|
1
types/Add-on/BoardCutting/CuttingByFace.d.ts.map
Normal file
1
types/Add-on/BoardCutting/CuttingByFace.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CuttingByFace.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/CuttingByFace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAW,OAAO,EAAE,MAAM,OAAO,CAAC;AAIzC,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AACrE,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAOtD,qBAAa,aAAc,YAAW,OAAO;IAEnC,IAAI;IAkJV,SAAS,CAAC,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,OAAO;YAShD,cAAc;CAiB/B"}
|
3
types/Add-on/BoardCutting/CuttingUtils.d.ts
vendored
Normal file
3
types/Add-on/BoardCutting/CuttingUtils.d.ts
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
import { ExtrudeSolid } from "../../DatabaseServices/Entity/Extrude";
|
||||||
|
export declare function CuttingBoard(orgBoard: ExtrudeSolid, knifBoards: ExtrudeSolid[]): ExtrudeSolid[];
|
||||||
|
//# sourceMappingURL=CuttingUtils.d.ts.map
|
1
types/Add-on/BoardCutting/CuttingUtils.d.ts.map
Normal file
1
types/Add-on/BoardCutting/CuttingUtils.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CuttingUtils.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/CuttingUtils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AAErE,wBAAgB,YAAY,CAAC,QAAQ,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,EAAE,GAAG,YAAY,EAAE,CAK/F"}
|
5
types/Add-on/BoardCutting/CuttingUtils2.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/CuttingUtils2.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||||
|
import { HardwareCompositeEntity } from "../../DatabaseServices/Hardware/HardwareCompositeEntity";
|
||||||
|
export declare function CuttingBoardByBoard(meats: Board[], knifs: Board[], isRelevance?: boolean): void;
|
||||||
|
export declare function CuttingBoardByHardware(meats: Board[], hardwares: HardwareCompositeEntity[]): Promise<void>;
|
||||||
|
//# sourceMappingURL=CuttingUtils2.d.ts.map
|
1
types/Add-on/BoardCutting/CuttingUtils2.d.ts.map
Normal file
1
types/Add-on/BoardCutting/CuttingUtils2.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CuttingUtils2.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/CuttingUtils2.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAE5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,yDAAyD,CAAC;AAGlG,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE,EAAE,WAAW,UAAO,QA0DrF;AAED,wBAAsB,sBAAsB,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE,SAAS,EAAE,uBAAuB,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAuEhH"}
|
5
types/Add-on/BoardCutting/DeleteRelevance.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/DeleteRelevance.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
export declare class DeleteRelevance implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=DeleteRelevance.d.ts.map
|
1
types/Add-on/BoardCutting/DeleteRelevance.d.ts.map
Normal file
1
types/Add-on/BoardCutting/DeleteRelevance.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"DeleteRelevance.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/DeleteRelevance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAKtD,qBAAa,eAAgB,YAAW,OAAO;IAErC,IAAI;CA8Cb"}
|
8
types/Add-on/BoardCutting/HardwareCuttingReactor.d.ts
vendored
Normal file
8
types/Add-on/BoardCutting/HardwareCuttingReactor.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||||
|
import { HardwareCompositeEntity } from "../../DatabaseServices/Hardware/HardwareCompositeEntity";
|
||||||
|
export declare class HardwareCuttingReactor {
|
||||||
|
EnableHardware: boolean;
|
||||||
|
constructor();
|
||||||
|
StartReactor(hardwares: HardwareCompositeEntity[], ents: Board[]): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=HardwareCuttingReactor.d.ts.map
|
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"HardwareCuttingReactor.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/HardwareCuttingReactor.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAC5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,yDAAyD,CAAC;AAIlG,qBAAa,sBAAsB;IAE/B,cAAc,UAAQ;;IA2BhB,YAAY,CAAC,SAAS,EAAE,uBAAuB,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE;CAUzE"}
|
5
types/Add-on/BoardCutting/LinearCutting.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/LinearCutting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
export declare class LinearCutting implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=LinearCutting.d.ts.map
|
1
types/Add-on/BoardCutting/LinearCutting.d.ts.map
Normal file
1
types/Add-on/BoardCutting/LinearCutting.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"LinearCutting.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/LinearCutting.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAStD,qBAAa,aAAc,YAAW,OAAO;IAEnC,IAAI;CAqLb"}
|
5
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
export declare class NonAssociativeCutting implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=NonAssociativeCutting.d.ts.map
|
1
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts.map
Normal file
1
types/Add-on/BoardCutting/NonAssociativeCutting.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"NonAssociativeCutting.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/NonAssociativeCutting.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAStD,qBAAa,qBAAsB,YAAW,OAAO;IAE3C,IAAI;CAuGb"}
|
5
types/Add-on/BoardCutting/ReferenceCutting.d.ts
vendored
Normal file
5
types/Add-on/BoardCutting/ReferenceCutting.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
export declare class ReferenceCutting implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=ReferenceCutting.d.ts.map
|
1
types/Add-on/BoardCutting/ReferenceCutting.d.ts.map
Normal file
1
types/Add-on/BoardCutting/ReferenceCutting.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"ReferenceCutting.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/ReferenceCutting.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAStD,qBAAa,gBAAiB,YAAW,OAAO;IAEtC,IAAI;CA2Jb"}
|
36
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts
vendored
Normal file
36
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts
vendored
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
import React = require("react");
|
||||||
|
import { Singleton } from "../../Common/Singleton";
|
||||||
|
import { IBaseOption, BoardType } from "../../UI/Store/BoardInterface";
|
||||||
|
export declare enum CuttingOffset {
|
||||||
|
Front = "front",
|
||||||
|
Middle = "middle",
|
||||||
|
Back = "back"
|
||||||
|
}
|
||||||
|
export interface ReferenceCuttingOptioins extends IBaseOption {
|
||||||
|
boardType: BoardType;
|
||||||
|
offset: number;
|
||||||
|
halfThickness: number;
|
||||||
|
CuttingPosSelected: CuttingOffset;
|
||||||
|
}
|
||||||
|
export declare class ReferenceCuttingStore extends Singleton {
|
||||||
|
protected m_UiOption: any;
|
||||||
|
m_Option: ReferenceCuttingOptioins;
|
||||||
|
get UIOption(): import("../../UI/Store/BoardInterface").IUiOption<ReferenceCuttingOptioins>;
|
||||||
|
Cancel(): void;
|
||||||
|
OnOk(): void;
|
||||||
|
_Return(state: number): void;
|
||||||
|
HasInvailValue(): boolean;
|
||||||
|
}
|
||||||
|
export declare class ReferenceCuttingModal extends React.Component<{
|
||||||
|
store: ReferenceCuttingStore;
|
||||||
|
}, {}> {
|
||||||
|
private uiOption;
|
||||||
|
private handleChangeOffsetDir;
|
||||||
|
private getOffsetKeyWord;
|
||||||
|
private event;
|
||||||
|
registerEvent(): void;
|
||||||
|
UNSAFE_componentWillMount(): void;
|
||||||
|
componentWillUnmount(): void;
|
||||||
|
render(): JSX.Element;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=ReferenceCuttingModal.d.ts.map
|
1
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts.map
Normal file
1
types/Add-on/BoardCutting/ReferenceCuttingModal.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"ReferenceCuttingModal.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardCutting/ReferenceCuttingModal.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,GAAG,QAAQ,OAAO,CAAC,CAAC;AAUhC,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAGnD,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAC;AAGvE,oBAAY,aAAa;IAErB,KAAK,UAAU;IACf,MAAM,WAAW;IACjB,IAAI,SAAS;CAChB;AAMD,MAAM,WAAW,wBAAyB,SAAQ,WAAW;IAEzD,SAAS,EAAE,SAAS,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,aAAa,EAAE,MAAM,CAAC;IACtB,kBAAkB,EAAE,aAAa,CAAC;CACrC;AACD,qBAAa,qBAAsB,SAAQ,SAAS;IAEhD,SAAS,CAAC,UAAU,MAAC;IACT,QAAQ,EAAE,wBAAwB,CAK5C;IACF,IAAI,QAAQ,gFAGX;IACD,MAAM;IAIN,IAAI;IAIJ,OAAO,CAAC,KAAK,EAAE,MAAM;IAKrB,cAAc;CAIjB;AAED,qBAEa,qBAAsB,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,KAAK,EAAE,qBAAqB,CAAC;CAAE,EAAE,EAAE,CAAC;IAC7F,OAAO,CAAC,QAAQ,CAAC;IACjB,OAAO,CAAC,qBAAqB,CAc3B;IACF,OAAO,CAAC,gBAAgB,CAWtB;IACF,OAAO,CAAC,KAAK,CAAW;IACxB,aAAa;IAsBb,yBAAyB;IAKzB,oBAAoB;IAKpB,MAAM;CAmET"}
|
7
types/Add-on/BoardEditor/Board2Regions.d.ts
vendored
Normal file
7
types/Add-on/BoardEditor/Board2Regions.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||||
|
import { Region } from "../../DatabaseServices/Entity/Region";
|
||||||
|
/**
|
||||||
|
* 把板件炸开成面域,0,1为正反面,其余的为边面(没有圆弧面)
|
||||||
|
*/
|
||||||
|
export declare function Board2Regions(br: Board): Region[];
|
||||||
|
//# sourceMappingURL=Board2Regions.d.ts.map
|
1
types/Add-on/BoardEditor/Board2Regions.d.ts.map
Normal file
1
types/Add-on/BoardEditor/Board2Regions.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Board2Regions.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardEditor/Board2Regions.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAI5D,OAAO,EAAE,MAAM,EAAE,MAAM,sCAAsC,CAAC;AAE9D;;GAEG;AACH,wBAAgB,aAAa,CAAC,EAAE,EAAE,KAAK,GAAG,MAAM,EAAE,CAwCjD"}
|
11
types/Add-on/BoardEditor/SerializeBoardData.d.ts
vendored
Normal file
11
types/Add-on/BoardEditor/SerializeBoardData.d.ts
vendored
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
import { BoardProcessOption } from "../../UI/Store/BoardInterface";
|
||||||
|
import { CADFiler } from "../../DatabaseServices/CADFiler";
|
||||||
|
import { I2DModeling, I3DModeling } from "../../DatabaseServices/Entity/Board";
|
||||||
|
/**序列化板件数据 */
|
||||||
|
export declare function serializeBoardData(file: CADFiler, processData: BoardProcessOption): void;
|
||||||
|
export declare function deserializationBoardData(file: CADFiler, processData: BoardProcessOption, ver: number): void;
|
||||||
|
export declare function SerializeBoard2DModeingData(file: CADFiler, modelList: I2DModeling[]): void;
|
||||||
|
export declare function SerializeBoard3DModeingData(file: CADFiler, modelList: I3DModeling[]): void;
|
||||||
|
export declare function DeserializationBoard2DModeingData(file: CADFiler, data: I2DModeling[], ver: number): void;
|
||||||
|
export declare function DeserializationBoard3DModeingData(file: CADFiler, data: I3DModeling[], ver: number): void;
|
||||||
|
//# sourceMappingURL=SerializeBoardData.d.ts.map
|
1
types/Add-on/BoardEditor/SerializeBoardData.d.ts.map
Normal file
1
types/Add-on/BoardEditor/SerializeBoardData.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"SerializeBoardData.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardEditor/SerializeBoardData.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC;AAEnE,OAAO,EAAE,QAAQ,EAAE,MAAM,iCAAiC,CAAC;AAC3D,OAAO,EAAE,WAAW,EAAE,WAAW,EAAa,MAAM,qCAAqC,CAAC;AAI1F,aAAa;AACb,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,QAoCjF;AAGD,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,kBAAkB,EAAE,GAAG,EAAE,MAAM,QAkDpG;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,WAAW,EAAE,QAkBnF;AACD,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,QAAQ,EAAE,SAAS,EAAE,WAAW,EAAE,QAiBnF;AAGD,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,GAAG,EAAE,MAAM,QA8BjG;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,WAAW,EAAE,EAAE,GAAG,EAAE,MAAM,QAwBjG"}
|
8
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts
vendored
Normal file
8
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import { Command } from "../../Editor/CommandMachine";
|
||||||
|
import { Board } from "../../DatabaseServices/Entity/Board";
|
||||||
|
import { IUpdateBoardInfosOption } from "../../UI/Components/Board/UpdateBoardInfointerface";
|
||||||
|
export declare class UpdateBoardInfos implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
static ModifyBr(br: Board, option: IUpdateBoardInfosOption): void;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=UpdateBoardInfos.d.ts.map
|
1
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts.map
Normal file
1
types/Add-on/BoardEditor/UpdateBoardInfos.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"UpdateBoardInfos.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/BoardEditor/UpdateBoardInfos.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAItD,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAE5D,OAAO,EAAE,uBAAuB,EAAE,MAAM,oDAAoD,CAAC;AAM7F,qBAAa,gBAAiB,YAAW,OAAO;IAEtC,IAAI;IAmCV,MAAM,CAAC,QAAQ,CAAC,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,uBAAuB;CA4G7D"}
|
21
types/Add-on/BoardFindModify.d.ts
vendored
Normal file
21
types/Add-on/BoardFindModify.d.ts
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class BoardFindModify implements Command {
|
||||||
|
private isModifyHwMatrial;
|
||||||
|
exec(): Promise<void>;
|
||||||
|
private GetBoards;
|
||||||
|
private PutSelectList;
|
||||||
|
private FindBrs;
|
||||||
|
private FilterBr;
|
||||||
|
private FilterBrSize;
|
||||||
|
private CompareIsEqual;
|
||||||
|
private ModifyBrs;
|
||||||
|
private ModifyBr;
|
||||||
|
private FindMaxSizeBrs;
|
||||||
|
private FindMinSizeBrs;
|
||||||
|
private FindHaveSpiteSize;
|
||||||
|
private GetBoardOption;
|
||||||
|
private RemoveBoardModelingOrSpecialShape;
|
||||||
|
private ModifyHardware;
|
||||||
|
private FilterHardware;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=BoardFindModify.d.ts.map
|
1
types/Add-on/BoardFindModify.d.ts.map
Normal file
1
types/Add-on/BoardFindModify.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"BoardFindModify.d.ts","sourceRoot":"","sources":["../../../src/Add-on/BoardFindModify.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAWnD,qBAAa,eAAgB,YAAW,OAAO;IAE3C,OAAO,CAAC,iBAAiB,CAAS;IAC5B,IAAI;YAqCI,SAAS;IAmBvB,OAAO,CAAC,aAAa;YAQP,OAAO;IA4CrB,OAAO,CAAC,QAAQ;IAwJhB,OAAO,CAAC,YAAY;IAgBpB,OAAO,CAAC,cAAc;YAOR,SAAS;IAYvB,OAAO,CAAC,QAAQ;YA0JF,cAAc;YAKd,cAAc;YAKd,iBAAiB;YASjB,cAAc;YAiDd,iCAAiC;YAkBjC,cAAc;IA2B5B,OAAO,CAAC,cAAc;CAqCzB"}
|
10
types/Add-on/BoolOperation.d.ts
vendored
Normal file
10
types/Add-on/BoolOperation.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
export declare class IntersectionOperation {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
export declare class UnionOperation extends IntersectionOperation {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
export declare class SubsractOperation {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=BoolOperation.d.ts.map
|
1
types/Add-on/BoolOperation.d.ts.map
Normal file
1
types/Add-on/BoolOperation.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"BoolOperation.d.ts","sourceRoot":"","sources":["../../../src/Add-on/BoolOperation.ts"],"names":[],"mappings":"AAgCA,qBAAa,qBAAqB;IAExB,IAAI;CAKb;AACD,qBAAa,cAAe,SAAQ,qBAAqB;IAE/C,IAAI;CAKb;AACD,qBAAa,iBAAiB;IAEpB,IAAI;CAeb"}
|
5
types/Add-on/Break.d.ts
vendored
Normal file
5
types/Add-on/Break.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_Break implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Break.d.ts.map
|
1
types/Add-on/Break.d.ts.map
Normal file
1
types/Add-on/Break.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Break.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Break.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAEnD,qBAAa,aAAc,YAAW,OAAO;IAEnC,IAAI;CA4Fb"}
|
5
types/Add-on/BuyMaterial.d.ts
vendored
Normal file
5
types/Add-on/BuyMaterial.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class BuyMaterial implements Command {
|
||||||
|
exec(): void;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=BuyMaterial.d.ts.map
|
1
types/Add-on/BuyMaterial.d.ts.map
Normal file
1
types/Add-on/BuyMaterial.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"BuyMaterial.d.ts","sourceRoot":"","sources":["../../../src/Add-on/BuyMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBAAa,WAAY,YAAW,OAAO;IAEvC,IAAI;CAIP"}
|
7
types/Add-on/ChangeColor.d.ts
vendored
Normal file
7
types/Add-on/ChangeColor.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class ChangeColor implements Command {
|
||||||
|
private color;
|
||||||
|
constructor(color: number);
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=ChangeColor.d.ts.map
|
1
types/Add-on/ChangeColor.d.ts.map
Normal file
1
types/Add-on/ChangeColor.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"ChangeColor.d.ts","sourceRoot":"","sources":["../../../src/Add-on/ChangeColor.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBAAa,WAAY,YAAW,OAAO;IAE3B,OAAO,CAAC,KAAK;gBAAL,KAAK,EAAE,MAAM;IAI3B,IAAI;CAYb"}
|
5
types/Add-on/ChangeColorByBoardMaterial.d.ts
vendored
Normal file
5
types/Add-on/ChangeColorByBoardMaterial.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class ChangeColorByMaterial implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=ChangeColorByBoardMaterial.d.ts.map
|
1
types/Add-on/ChangeColorByBoardMaterial.d.ts.map
Normal file
1
types/Add-on/ChangeColorByBoardMaterial.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"ChangeColorByBoardMaterial.d.ts","sourceRoot":"","sources":["../../../src/Add-on/ChangeColorByBoardMaterial.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAMnD,qBAAa,qBAAsB,YAAW,OAAO;IAE3C,IAAI;CA2Bb"}
|
10
types/Add-on/CheckHoles.d.ts
vendored
Normal file
10
types/Add-on/CheckHoles.d.ts
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class CheckHoles implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
/**
|
||||||
|
* 存在通孔
|
||||||
|
*/
|
||||||
|
private IsThough;
|
||||||
|
private IsCollsion;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=CheckHoles.d.ts.map
|
1
types/Add-on/CheckHoles.d.ts.map
Normal file
1
types/Add-on/CheckHoles.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CheckHoles.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CheckHoles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAYnD,qBAAa,UAAW,YAAW,OAAO;IAEhC,IAAI;IA8HV;;OAEG;IACH,OAAO,CAAC,QAAQ;IAIhB,OAAO,CAAC,UAAU;CAgBrB"}
|
7
types/Add-on/CheckModeling.d.ts
vendored
Normal file
7
types/Add-on/CheckModeling.d.ts
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class CheckModeling implements Command {
|
||||||
|
res: Function;
|
||||||
|
exec(): Promise<void>;
|
||||||
|
Wait(): Promise<unknown>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=CheckModeling.d.ts.map
|
1
types/Add-on/CheckModeling.d.ts.map
Normal file
1
types/Add-on/CheckModeling.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CheckModeling.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CheckModeling.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AASnD,qBAAa,aAAc,YAAW,OAAO;IAEzC,GAAG,EAAE,QAAQ,CAAC;IACR,IAAI;IA0DV,IAAI;CAIP"}
|
20
types/Add-on/CombinatAttributeBrush.d.ts
vendored
Normal file
20
types/Add-on/CombinatAttributeBrush.d.ts
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
import * as React from 'react';
|
||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
interface IBrushOption {
|
||||||
|
all: boolean;
|
||||||
|
roomName: boolean;
|
||||||
|
cabName: boolean;
|
||||||
|
name: boolean;
|
||||||
|
}
|
||||||
|
export declare class CombinatAttributeBrush implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
export declare class BrushModal extends React.Component<{
|
||||||
|
option: IBrushOption;
|
||||||
|
}> {
|
||||||
|
render(): JSX.Element;
|
||||||
|
private ok;
|
||||||
|
private cancel;
|
||||||
|
}
|
||||||
|
export {};
|
||||||
|
//# sourceMappingURL=CombinatAttributeBrush.d.ts.map
|
1
types/Add-on/CombinatAttributeBrush.d.ts.map
Normal file
1
types/Add-on/CombinatAttributeBrush.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CombinatAttributeBrush.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CombinatAttributeBrush.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAenD,UAAU,YAAY;IAElB,GAAG,EAAE,OAAO,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,OAAO,CAAC;CACjB;AAED,qBAAa,sBAAuB,YAAW,OAAO;IAE5C,IAAI;CA8Eb;AASD,qBACa,UAAW,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,MAAM,EAAE,YAAY,CAAC;CAAE,CAAC;IAC/D,MAAM;IA2Bb,OAAO,CAAC,EAAE,CAKR;IACF,OAAO,CAAC,MAAM,CAGZ;CACL"}
|
9
types/Add-on/CommandFeeding.d.ts
vendored
Normal file
9
types/Add-on/CommandFeeding.d.ts
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class FeedingCommand implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
private DrawHole;
|
||||||
|
private TestModeling;
|
||||||
|
private DrawOriginModeling;
|
||||||
|
private DateText;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=CommandFeeding.d.ts.map
|
1
types/Add-on/CommandFeeding.d.ts.map
Normal file
1
types/Add-on/CommandFeeding.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CommandFeeding.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CommandFeeding.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,cAAe,YAAW,OAAO;IAEpC,IAAI;IA0EV,OAAO,CAAC,QAAQ;IA0BhB,OAAO,CAAC,YAAY;IAapB,OAAO,CAAC,kBAAkB;IAqB1B,OAAO,CAAC,QAAQ;CAOnB"}
|
5
types/Add-on/Command_CombineEntity.d.ts
vendored
Normal file
5
types/Add-on/Command_CombineEntity.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_CombineEntity implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Command_CombineEntity.d.ts.map
|
1
types/Add-on/Command_CombineEntity.d.ts.map
Normal file
1
types/Add-on/Command_CombineEntity.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Command_CombineEntity.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Command_CombineEntity.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBAAa,qBAAsB,YAAW,OAAO;IAE3C,IAAI;CAgBb"}
|
5
types/Add-on/Command_CommandPanel.d.ts
vendored
Normal file
5
types/Add-on/Command_CommandPanel.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_CommandPanel implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Command_CommandPanel.d.ts.map
|
1
types/Add-on/Command_CommandPanel.d.ts.map
Normal file
1
types/Add-on/Command_CommandPanel.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Command_CommandPanel.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Command_CommandPanel.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,oBAAqB,YAAW,OAAO;IAE1C,IAAI;CAKb"}
|
5
types/Add-on/Command_ExportObj.d.ts
vendored
Normal file
5
types/Add-on/Command_ExportObj.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from './../Editor/CommandMachine';
|
||||||
|
export declare class Command_ExportObj implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Command_ExportObj.d.ts.map
|
1
types/Add-on/Command_ExportObj.d.ts.map
Normal file
1
types/Add-on/Command_ExportObj.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Command_ExportObj.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Command_ExportObj.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,4BAA4B,CAAC;AAIrD,qBAAa,iBAAkB,YAAW,OAAO;IAEvC,IAAI;CAUb"}
|
5
types/Add-on/Command_Option.d.ts
vendored
Normal file
5
types/Add-on/Command_Option.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_Options implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Command_Option.d.ts.map
|
1
types/Add-on/Command_Option.d.ts.map
Normal file
1
types/Add-on/Command_Option.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Command_Option.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Command_Option.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,eAAgB,YAAW,OAAO;IAErC,IAAI;CAKb"}
|
5
types/Add-on/Command_SetBRXAxis.d.ts
vendored
Normal file
5
types/Add-on/Command_SetBRXAxis.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_SetBRXAxis implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Command_SetBRXAxis.d.ts.map
|
1
types/Add-on/Command_SetBRXAxis.d.ts.map
Normal file
1
types/Add-on/Command_SetBRXAxis.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Command_SetBRXAxis.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Command_SetBRXAxis.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAInD,qBACa,kBAAmB,YAAW,OAAO;IAExC,IAAI;CA2Bb"}
|
5
types/Add-on/Conver2Polyline.d.ts
vendored
Normal file
5
types/Add-on/Conver2Polyline.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_Conver2Polyline implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Conver2Polyline.d.ts.map
|
1
types/Add-on/Conver2Polyline.d.ts.map
Normal file
1
types/Add-on/Conver2Polyline.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Conver2Polyline.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Conver2Polyline.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAGnD,qBAAa,uBAAwB,YAAW,OAAO;IAE7C,IAAI;CAcb"}
|
5
types/Add-on/Copy.d.ts
vendored
Normal file
5
types/Add-on/Copy.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from '../Editor/CommandMachine';
|
||||||
|
export declare class Command_Copy implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Copy.d.ts.map
|
1
types/Add-on/Copy.d.ts.map
Normal file
1
types/Add-on/Copy.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Copy.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Copy.ts"],"names":[],"mappings":"AAUA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAMnD,qBAAa,YAAa,YAAW,OAAO;IAElC,IAAI;CAwHb"}
|
6
types/Add-on/CopyClip.d.ts
vendored
Normal file
6
types/Add-on/CopyClip.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
export declare class CopyClip {
|
||||||
|
private _GetPoint;
|
||||||
|
constructor(_GetPoint?: boolean);
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=CopyClip.d.ts.map
|
1
types/Add-on/CopyClip.d.ts.map
Normal file
1
types/Add-on/CopyClip.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CopyClip.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CopyClip.ts"],"names":[],"mappings":"AASA,qBAAa,QAAQ;IAEL,OAAO,CAAC,SAAS;gBAAT,SAAS,GAAE,OAAe;IACxC,IAAI;CAwCb"}
|
4
types/Add-on/CopyPoint.d.ts
vendored
Normal file
4
types/Add-on/CopyPoint.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export declare class Command_CopyPoint {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=CopyPoint.d.ts.map
|
1
types/Add-on/CopyPoint.d.ts.map
Normal file
1
types/Add-on/CopyPoint.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CopyPoint.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CopyPoint.ts"],"names":[],"mappings":"AAIA,qBAAa,iBAAiB;IAEpB,IAAI;CAOb"}
|
6
types/Add-on/CostumUCS.d.ts
vendored
Normal file
6
types/Add-on/CostumUCS.d.ts
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class CustomUcs implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
private UpdateUCS;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=CostumUCS.d.ts.map
|
1
types/Add-on/CostumUCS.d.ts.map
Normal file
1
types/Add-on/CostumUCS.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CostumUCS.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CostumUCS.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,SAAU,YAAW,OAAO;IAE/B,IAAI;IA2FV,OAAO,CAAC,SAAS;CAMpB"}
|
2
types/Add-on/CreateBoardFromData.d.ts
vendored
Normal file
2
types/Add-on/CreateBoardFromData.d.ts
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export declare function CreateBoardFromData(data: Object): Promise<void>;
|
||||||
|
//# sourceMappingURL=CreateBoardFromData.d.ts.map
|
1
types/Add-on/CreateBoardFromData.d.ts.map
Normal file
1
types/Add-on/CreateBoardFromData.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"CreateBoardFromData.d.ts","sourceRoot":"","sources":["../../../src/Add-on/CreateBoardFromData.ts"],"names":[],"mappings":"AAMA,wBAAsB,mBAAmB,CAAC,IAAI,EAAE,MAAM,iBAqDrD"}
|
4
types/Add-on/DXFLoad.d.ts
vendored
Normal file
4
types/Add-on/DXFLoad.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
export declare class Command_DXFImport {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=DXFLoad.d.ts.map
|
1
types/Add-on/DXFLoad.d.ts.map
Normal file
1
types/Add-on/DXFLoad.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"DXFLoad.d.ts","sourceRoot":"","sources":["../../../src/Add-on/DXFLoad.ts"],"names":[],"mappings":"AAWA,qBAAa,iBAAiB;IAEpB,IAAI;CAyDb"}
|
5
types/Add-on/DeleteCurve.d.ts
vendored
Normal file
5
types/Add-on/DeleteCurve.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class DeleteCurve implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=DeleteCurve.d.ts.map
|
1
types/Add-on/DeleteCurve.d.ts.map
Normal file
1
types/Add-on/DeleteCurve.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"DeleteCurve.d.ts","sourceRoot":"","sources":["../../../src/Add-on/DeleteCurve.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAKnD,qBAAa,WAAY,YAAW,OAAO;IAEjC,IAAI;CAYb"}
|
5
types/Add-on/Dist.d.ts
vendored
Normal file
5
types/Add-on/Dist.d.ts
vendored
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { Command } from "../Editor/CommandMachine";
|
||||||
|
export declare class Command_Dist implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Dist.d.ts.map
|
1
types/Add-on/Dist.d.ts.map
Normal file
1
types/Add-on/Dist.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Dist.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Dist.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AAWnD,qBAAa,YAAa,YAAW,OAAO;IAElC,IAAI;CAmCb"}
|
8
types/Add-on/Divide.d.ts
vendored
Normal file
8
types/Add-on/Divide.d.ts
vendored
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
import { Command } from '../Editor/CommandMachine';
|
||||||
|
import { PromptEntityResult } from '../Editor/PromptResult';
|
||||||
|
export declare class CMD_Divide implements Command {
|
||||||
|
exec(): Promise<void>;
|
||||||
|
Divided(enRes: PromptEntityResult): Promise<void>;
|
||||||
|
Measured(): Promise<void>;
|
||||||
|
}
|
||||||
|
//# sourceMappingURL=Divide.d.ts.map
|
1
types/Add-on/Divide.d.ts.map
Normal file
1
types/Add-on/Divide.d.ts.map
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"version":3,"file":"Divide.d.ts","sourceRoot":"","sources":["../../../src/Add-on/Divide.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAgB,kBAAkB,EAAE,MAAM,wBAAwB,CAAC;AAE1E,qBAAa,UAAW,YAAW,OAAO;IAEhC,IAAI;IAmCJ,OAAO,CAAC,KAAK,EAAE,kBAAkB;IA0BjC,QAAQ;CA4BjB"}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user