This commit is contained in:
ChenX
2024-03-26 11:10:20 +08:00
parent 070821c353
commit 66f35d6c12
2436 changed files with 31792 additions and 3945 deletions

View File

@@ -0,0 +1,5 @@
import { Command } from "../../Editor/CommandMachine";
export declare class Command_ShareView implements Command {
exec(): Promise<void>;
}
//# sourceMappingURL=Command_ShareView.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"Command_ShareView.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/ShareView/Command_ShareView.ts"],"names":[],"mappings":"AAeA,OAAO,EAAE,OAAO,EAAE,MAAM,6BAA6B,CAAC;AAWtD,qBAAa,iBAAkB,YAAW,OAAO;IAEvC,IAAI;CAmHb"}

View File

@@ -0,0 +1,14 @@
import { CommandNames } from "../../Common/CommandNames";
import { RenderType } from "../../GraphicsSystem/RenderType";
import { ViewDirection } from "../../UI/Store/OptionInterface/OptionEnum";
export declare const ViewAngleTypes: {
command: CommandNames;
name: string;
viewDirection: ViewDirection;
}[];
export declare const ViewStyleTypes: {
title: string;
cmd: CommandNames;
renderType: RenderType;
}[];
//# sourceMappingURL=ShareViewRules.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"ShareViewRules.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/ShareView/ShareViewRules.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,iCAAiC,CAAC;AAC7D,OAAO,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAG1E,eAAO,MAAM,cAAc;;;;GAoC1B,CAAC;AAGF,eAAO,MAAM,cAAc;;;;GAoC1B,CAAC"}

View File

@@ -0,0 +1,37 @@
import { Singleton } from "../../Common/Singleton";
import { Board } from "../../DatabaseServices/Entity/Board";
import { IConfigOption } from "../../UI/Components/Board/UserConfigComponent";
import { IConfigStore } from '../../UI/Store/BoardStore';
import { ShareBoardInfConfigurationOption } from "../../UI/Store/OptionInterface/IOptionInterface";
interface IProps {
showBom?: boolean | null;
}
interface IOperations {
showDoor: boolean;
showDrawer: boolean;
showExplosion: boolean;
showCustomNumber: boolean;
showDimension: boolean;
isDoorOpen: boolean;
showCylinderHole: boolean;
}
export declare class ShareViewStore extends Singleton implements IConfigStore {
CurSelectCabinetIndexs: number[];
RoomName: string;
SelectedBoard: Board;
ViewIDErrorMsg: string;
Theme: 'light' | 'dark' | string;
ThemeLog: 'light' | 'dark' | string;
Props: IProps;
m_Option: ShareBoardInfConfigurationOption;
viewUploadProps: ShareBoardInfConfigurationOption;
configName: string;
SaveConfig(): IConfigOption<import("../../UI/Store/OptionInterface/IOptionInterface").AnyObject>;
configsNames: string[];
InitOption(): void;
UpdateOption(cof: IConfigOption<ShareBoardInfConfigurationOption>): void;
/** 隐蔽组件按钮操作 */
operations: IOperations;
}
export {};
//# sourceMappingURL=ShareViewStore.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"ShareViewStore.d.ts","sourceRoot":"","sources":["../../../../src/Add-on/ShareView/ShareViewStore.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,KAAK,EAAE,MAAM,qCAAqC,CAAC;AAE5D,OAAO,EAAE,aAAa,EAAE,MAAM,+CAA+C,CAAC;AAC9E,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AACzD,OAAO,EAAE,gCAAgC,EAAE,MAAM,iDAAiD,CAAC;AAEnG,UAAU,MAAM;IAGZ,OAAO,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CAC5B;AAED,UAAU,WAAW;IAEjB,QAAQ,EAAE,OAAO,CAAC;IAClB,UAAU,EAAE,OAAO,CAAC;IACpB,aAAa,EAAE,OAAO,CAAC;IACvB,gBAAgB,EAAE,OAAO,CAAC;IAC1B,aAAa,EAAE,OAAO,CAAC;IACvB,UAAU,EAAE,OAAO,CAAC;IACpB,gBAAgB,EAAE,OAAO,CAAC;CAC7B;AAED,qBAAa,cAAe,SAAQ,SAAU,YAAW,YAAY;IAGrD,sBAAsB,EAAE,MAAM,EAAE,CAAM;IAEtC,QAAQ,EAAE,MAAM,CAAC;IAEjB,aAAa,EAAE,KAAK,CAAQ;IAE5B,cAAc,EAAE,MAAM,CAAM;IAG5B,KAAK,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,CAAW;IAG3C,QAAQ,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,CAAM;IAGzC,KAAK,EAAE,MAAM,CAAM;IACnB,QAAQ,EAAE,gCAAgC,CAA2C;IAErF,eAAe,EAAE,gCAAgC,CAA2C;IAE5F,UAAU,SAAQ;IAC9B,UAAU;IAQE,YAAY,EAAE,MAAM,EAAE,CAAM;IACxC,UAAU;IAIV,YAAY,CAAC,GAAG,EAAE,aAAa,CAAC,gCAAgC,CAAC;IAKjE,eAAe;IACH,UAAU,EAAE,WAAW,CAQjC;CACL"}

View File

@@ -0,0 +1,14 @@
/// <reference types="react" />
import "./ColorSelect.css";
export type SelectOption = {
label: string | number;
value: string | number | any;
};
type SelectProps = {
onChange: (value: number) => void;
options: SelectOption[];
value: number;
};
export declare function ColorSelect({ value, onChange, options }: SelectProps): JSX.Element;
export {};
//# sourceMappingURL=ColorSelect.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"ColorSelect.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/ShareView/components/ColorSelect.tsx"],"names":[],"mappings":";AACA,OAAO,mBAAmB,CAAC;AAE3B,MAAM,MAAM,YAAY,GAAG;IACvB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,GAAG,CAAC;CAChC,CAAC;AAEF,KAAK,WAAW,GAAG;IACf,QAAQ,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,OAAO,EAAE,YAAY,EAAE,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,wBAAgB,WAAW,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,EAAE,WAAW,eA4GpE"}

View File

@@ -0,0 +1,13 @@
import React from "react";
import { ShareViewStore } from "../ShareViewStore";
import "./ShareBoradModal.less";
export declare class ShareBoardInfoConfiguration extends React.Component<{
store: ShareViewStore;
}, {}> {
_RemoveFun: Function;
componentDidMount(): void;
componentWillUnmount(): void;
BoardAndHadrwareToaster(): void;
render(): JSX.Element;
}
//# sourceMappingURL=ShareBoardInfoConfiguration.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"ShareBoardInfoConfiguration.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/ShareView/components/ShareBoardInfoConfiguration.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAS1B,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AAEnD,OAAO,wBAAwB,CAAC;AAEhC,qBACa,2BAA4B,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,KAAK,EAAE,cAAc,CAAC;CAAE,EAAE,EAAE,CAAC;IAE5F,UAAU,EAAE,QAAQ,CAAC;IAErB,iBAAiB;IAUjB,oBAAoB;IAKpB,uBAAuB;IASvB,MAAM;CAwGT"}