增加户型部分
This commit is contained in:
16
types/Add-on/KJL/KJLImportConfig/AddMaterial.d.ts
vendored
Normal file
16
types/Add-on/KJL/KJLImportConfig/AddMaterial.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import * as React from 'react';
|
||||
export interface IImgListProps {
|
||||
dataList?: any[];
|
||||
select?: (e: any, data: any) => void;
|
||||
selectIds?: Set<string>;
|
||||
showInfos?: boolean;
|
||||
addMaterial?: (data: {
|
||||
material_id: string;
|
||||
name: string;
|
||||
logo: string;
|
||||
}) => void;
|
||||
}
|
||||
export declare class AddMaterial extends React.Component<IImgListProps, {}> {
|
||||
render(): JSX.Element;
|
||||
}
|
||||
//# sourceMappingURL=AddMaterial.d.ts.map
|
1
types/Add-on/KJL/KJLImportConfig/AddMaterial.d.ts.map
Normal file
1
types/Add-on/KJL/KJLImportConfig/AddMaterial.d.ts.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"AddMaterial.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/KJL/KJLImportConfig/AddMaterial.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAG/B,MAAM,WAAW,aAAa;IAE1B,QAAQ,CAAC,EAAE,GAAG,EAAE,CAAC;IACjB,MAAM,CAAC,EAAE,CAAC,CAAC,KAAA,EAAE,IAAI,KAAA,KAAK,IAAI,CAAC;IAC3B,SAAS,CAAC,EAAE,GAAG,CAAC,MAAM,CAAC,CAAC;IACxB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;KAAE,KAAK,IAAI,CAAC;CACtF;AAED,qBAAa,WAAY,SAAQ,KAAK,CAAC,SAAS,CAAC,aAAa,EAAE,EAAE,CAAC;IACxD,MAAM;CAuBhB"}
|
8
types/Add-on/KJL/KJLImportConfig/KJLConfig.d.ts
vendored
Normal file
8
types/Add-on/KJL/KJLImportConfig/KJLConfig.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
import React from "react";
|
||||
import { KJLImportConfigStore } from "./KJLImportConfigStore";
|
||||
export default class KJLConfig extends React.Component<{
|
||||
store: KJLImportConfigStore;
|
||||
}> {
|
||||
render(): JSX.Element;
|
||||
}
|
||||
//# sourceMappingURL=KJLConfig.d.ts.map
|
1
types/Add-on/KJL/KJLImportConfig/KJLConfig.d.ts.map
Normal file
1
types/Add-on/KJL/KJLImportConfig/KJLConfig.d.ts.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"KJLConfig.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/KJL/KJLImportConfig/KJLConfig.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAG9D,MAAM,CAAC,OAAO,OAAO,SAAU,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,KAAK,EAAE,oBAAoB,CAAC;CAAE,CAAC;IAEpF,MAAM;CAmBT"}
|
12
types/Add-on/KJL/KJLImportConfig/KJLImportConfigModal.d.ts
vendored
Normal file
12
types/Add-on/KJL/KJLImportConfig/KJLImportConfigModal.d.ts
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
import './KJLImportConfig.less';
|
||||
import { KJLImportConfigStore } from "./KJLImportConfigStore";
|
||||
export declare type KJLTabIds = 'config' | 'material';
|
||||
export declare class KJLImportConfigModal extends React.Component<{
|
||||
store: KJLImportConfigStore;
|
||||
tabId?: KJLTabIds;
|
||||
}> {
|
||||
render(): JSX.Element;
|
||||
private Cancle;
|
||||
}
|
||||
//# sourceMappingURL=KJLImportConfigModal.d.ts.map
|
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"KJLImportConfigModal.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/KJL/KJLImportConfig/KJLImportConfigModal.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAK1B,OAAO,wBAAwB,CAAC;AAChC,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAI9D,oBAAY,SAAS,GAAG,QAAQ,GAAG,UAAU,CAAC;AAE9C,qBAAa,oBAAqB,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,KAAK,EAAE,oBAAoB,CAAC;IAAC,KAAK,CAAC,EAAE,SAAS,CAAC;CAAE,CAAC;IAE1G,MAAM;IAkCN,OAAO,CAAC,MAAM;CAIjB"}
|
25
types/Add-on/KJL/KJLImportConfig/KJLImportConfigStore.d.ts
vendored
Normal file
25
types/Add-on/KJL/KJLImportConfig/KJLImportConfigStore.d.ts
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import { Singleton } from "../../../Common/Singleton";
|
||||
import { IConfigOption } from "../../../UI/Components/Board/UserConfig";
|
||||
import { KJLImportConfigOption } from "../../../UI/Store/BoardInterface";
|
||||
import { IConfigStore } from "../../../UI/Store/BoardStore";
|
||||
export interface MaterialOption {
|
||||
keyIndex: number;
|
||||
kjlName: string;
|
||||
materialName: string;
|
||||
url: string;
|
||||
isSelect: boolean;
|
||||
}
|
||||
export declare class KJLImportConfigStore extends Singleton implements IConfigStore {
|
||||
configName: string;
|
||||
configsNames: string[];
|
||||
m_Option: KJLImportConfigOption;
|
||||
materialList: MaterialOption[];
|
||||
isloading: boolean;
|
||||
KeyIndex: number;
|
||||
selectAll: boolean;
|
||||
InitOption(): void;
|
||||
SaveConfig(): IConfigOption<import("../../../UI/Store/BoardInterface").AnyObject>;
|
||||
UpdateOption(cof: IConfigOption<KJLImportConfigOption>): void;
|
||||
LoadMaterials: () => Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=KJLImportConfigStore.d.ts.map
|
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"KJLImportConfigStore.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/KJL/KJLImportConfig/KJLImportConfigStore.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,SAAS,EAAE,MAAM,2BAA2B,CAAC;AAEtD,OAAO,EAAE,aAAa,EAAE,MAAM,yCAAyC,CAAC;AAExE,OAAO,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AACzE,OAAO,EAAE,YAAY,EAAE,MAAM,8BAA8B,CAAC;AAE5D,MAAM,WAAW,cAAc;IAE3B,QAAQ,EAAE,MAAM,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,EAAE,MAAM,CAAC;IACrB,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,OAAO,CAAC;CACrB;AACD,qBAAa,oBAAqB,SAAQ,SAAU,YAAW,YAAY;IAE3D,UAAU,EAAE,MAAM,CAAQ;IAC1B,YAAY,EAAE,MAAM,EAAE,CAAM;IAC5B,QAAQ,EAAE,qBAAqB,CAAgC;IAC/D,YAAY,EAAE,cAAc,EAAE,CAAM;IACpC,SAAS,UAAS;IAC9B,QAAQ,EAAE,MAAM,CAAK;IACT,SAAS,UAAS;IAE9B,UAAU;IAMV,UAAU;IAwBV,YAAY,CAAC,GAAG,EAAE,aAAa,CAAC,qBAAqB,CAAC;IAWtD,aAAa,sBAgCX;CACL"}
|
8
types/Add-on/KJL/KJLImportConfig/KJLImportConfigTool.d.ts
vendored
Normal file
8
types/Add-on/KJL/KJLImportConfig/KJLImportConfigTool.d.ts
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
import { Command } from "../../../Editor/CommandMachine";
|
||||
import { KJLTabIds } from "./KJLImportConfigModal";
|
||||
export declare class Command_KJLImportConfig implements Command {
|
||||
private tabId?;
|
||||
constructor(tabId?: KJLTabIds);
|
||||
exec(): Promise<void>;
|
||||
}
|
||||
//# sourceMappingURL=KJLImportConfigTool.d.ts.map
|
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"KJLImportConfigTool.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/KJL/KJLImportConfig/KJLImportConfigTool.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,gCAAgC,CAAC;AACzD,OAAO,EAAwB,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAGzE,qBAAa,uBAAwB,YAAW,OAAO;IAEvC,OAAO,CAAC,KAAK,CAAC;gBAAN,KAAK,CAAC,EAAE,SAAS;IAC/B,IAAI;CAIb"}
|
10
types/Add-on/KJL/KJLImportConfig/KJLMaterialMap.d.ts
vendored
Normal file
10
types/Add-on/KJL/KJLImportConfig/KJLMaterialMap.d.ts
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import { KJLImportConfigStore } from "./KJLImportConfigStore";
|
||||
export declare class KJLMaterialMap extends React.Component<{
|
||||
store: KJLImportConfigStore;
|
||||
}> {
|
||||
render(): JSX.Element;
|
||||
private handleSelectAll;
|
||||
private handleOnekeyDelete;
|
||||
}
|
||||
//# sourceMappingURL=KJLMaterialMap.d.ts.map
|
1
types/Add-on/KJL/KJLImportConfig/KJLMaterialMap.d.ts.map
Normal file
1
types/Add-on/KJL/KJLImportConfig/KJLMaterialMap.d.ts.map
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"KJLMaterialMap.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/KJL/KJLImportConfig/KJLMaterialMap.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAG9D,qBACa,cAAe,SAAQ,KAAK,CAAC,SAAS,CAAC;IAAE,KAAK,EAAE,oBAAoB,CAAC;CAAE,CAAC;IAEjF,MAAM;IA+DN,OAAO,CAAC,eAAe,CAUrB;IAEF,OAAO,CAAC,kBAAkB,CAmBxB;CACL"}
|
23
types/Add-on/KJL/KJLImportConfig/KJLMaterialMapData.d.ts
vendored
Normal file
23
types/Add-on/KJL/KJLImportConfig/KJLMaterialMapData.d.ts
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import React from "react";
|
||||
import { KJLImportConfigStore, MaterialOption } from "./KJLImportConfigStore";
|
||||
interface MaterialDataProps {
|
||||
store: KJLImportConfigStore;
|
||||
material: MaterialOption;
|
||||
index: number;
|
||||
}
|
||||
export declare class KJLMaterialMapData extends React.Component<MaterialDataProps> {
|
||||
private kjlNameRef;
|
||||
isOpenImgList: import("mobx").IObservableValue<boolean>;
|
||||
handleOpen: (el: HTMLElement) => void;
|
||||
AddMaterial: (data: {
|
||||
material_id: string;
|
||||
name: string;
|
||||
logo: string;
|
||||
}) => void;
|
||||
handleChangeName: () => void;
|
||||
private renderMaterialSelect;
|
||||
render(): JSX.Element;
|
||||
handleDeleteMaterial: (i: number) => Promise<void>;
|
||||
}
|
||||
export {};
|
||||
//# sourceMappingURL=KJLMaterialMapData.d.ts.map
|
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"KJLMaterialMapData.d.ts","sourceRoot":"","sources":["../../../../../src/Add-on/KJL/KJLImportConfig/KJLMaterialMapData.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,OAAO,CAAC;AAQ1B,OAAO,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE9E,UAAU,iBAAiB;IAEvB,KAAK,EAAE,oBAAoB,CAAC;IAC5B,QAAQ,EAAE,cAAc,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;CACjB;AACD,qBACa,kBAAmB,SAAQ,KAAK,CAAC,SAAS,CAAC,iBAAiB,CAAC;IAEtE,OAAO,CAAC,UAAU,CAAuC;IAClD,aAAa,2CAAyB;IAE7C,UAAU,OAAQ,WAAW,UAY3B;IACF,WAAW,SAAU;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,MAAM,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;KAAE,UAOvE;IACF,gBAAgB,aAmBd;IACF,OAAO,CAAC,oBAAoB,CA8B1B;IACF,MAAM;IA0DN,oBAAoB,MAAa,MAAM,mBAWrC;CACL"}
|
Reference in New Issue
Block a user