mirror of
https://gitee.com/hoslay/ddei-editor.git
synced 2025-12-06 17:18:36 +08:00
为所有插件加上静态modify方法
This commit is contained in:
parent
9ace402379
commit
151d3041d1
643
package-lock.json
generated
643
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "ddei-editor",
|
||||
"version": "1.2.43-6",
|
||||
"version": "1.2.43-12",
|
||||
"private": false,
|
||||
"type": "module",
|
||||
"author": "hoslay <3697355039@qq.com>",
|
||||
@ -49,7 +49,8 @@
|
||||
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false"
|
||||
},
|
||||
"dependencies": {
|
||||
"ddei-framework": "file:///Users/hoslay/work/ddei/ddei-framework/ddei-framework-1.2.43-4.tgz"
|
||||
"lodash": "^4.17.21",
|
||||
"three": "^0.156.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tsconfig/node18": "^18.2.0",
|
||||
@ -62,6 +63,7 @@
|
||||
"typescript": "~5.1.6",
|
||||
"vite": "^4.4.6",
|
||||
"vite-plugin-compression": "^0.5.1",
|
||||
"vue-tsc": "^1.8.6"
|
||||
"vue-tsc": "^1.8.6",
|
||||
"ddei-framework": "file:///Users/hoslay/work/ddei/ddei-framework/ddei-framework-1.2.43-10.tgz"
|
||||
}
|
||||
}
|
||||
|
||||
@ -37,6 +37,10 @@ class DDeiCoreAddFontSizeButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreAddFontSizeButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreAddFontSizeButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreAddFontSizeButton
|
||||
@ -37,6 +37,10 @@ class DDeiCoreBorderDashButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreBorderDashButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreBorderDashButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreBorderDashButton
|
||||
@ -36,6 +36,10 @@ class DDeiCoreBorderWeightButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreBorderWeightButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreBorderWeightButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreBorderWeightButton
|
||||
@ -36,6 +36,10 @@ class DDeiCoreEditBoxButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreEditBoxButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreEditBoxButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreEditBoxButton
|
||||
@ -37,6 +37,10 @@ class DDeiCoreEditColorButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreEditColorButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreEditColorButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreEditColorButton
|
||||
@ -37,6 +37,10 @@ class DDeiCoreEditFontFamilyButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreEditFontFamilyButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreEditFontFamilyButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreEditFontFamilyButton
|
||||
@ -40,6 +40,10 @@ class DDeiCoreEditFontSizeButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreEditFontSizeButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreEditFontSizeButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreEditFontSizeButton
|
||||
@ -39,6 +39,10 @@ class DDeiCoreEditLinePointTypeButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreEditLinePointTypeButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreEditLinePointTypeButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreEditLinePointTypeButton
|
||||
@ -40,6 +40,10 @@ class DDeiCoreEditLineTypeButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreEditLineTypeButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreEditLineTypeButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreEditLineTypeButton
|
||||
@ -37,6 +37,10 @@ class DDeiCoreEditTextAlignButton extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreEditTextAlignButton;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreEditTextAlignButton.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreEditTextAlignButton
|
||||
@ -54,6 +54,10 @@ class DDeiCoreComponents extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreComponents;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreComponents.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export {DDeiCoreComponents,DDeiCoreAddFontSizeButton, DDeiCoreBorderDashButton, DDeiCoreBorderWeightButton
|
||||
|
||||
@ -64,6 +64,10 @@ class DDeiCoreControls extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreControls;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreControls.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export {DDeiCoreControls}
|
||||
|
||||
@ -38,6 +38,10 @@ class DDeiCoreAlignDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreAlignDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreAlignDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreAlignDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreChangeRatioDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreChangeRatioDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreChangeRatioDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreChangeRatioDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreChooseControlDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreChooseControlDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreChooseControlDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreChooseControlDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreChooseControlGroupDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreChooseControlGroupDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreChooseControlGroupDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreChooseControlGroupDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreCloseFileConfirmDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreCloseFileConfirmDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreCloseFileConfirmDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreCloseFileConfirmDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreCollFileConfirmDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreCollFileConfirmDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreCollFileConfirmDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreCollFileConfirmDialog
|
||||
@ -67,6 +67,10 @@ class DDeiCoreDialogs extends DDeiPluginBase {
|
||||
}
|
||||
return DDeiCoreDialogs;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreDialogs.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -37,6 +37,10 @@ class DDeiCoreLinePointTypeDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreLinePointTypeDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreLinePointTypeDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreLinePointTypeDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreLineTypeDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreLineTypeDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreLineTypeDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreLineTypeDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreManageLayersDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreManageLayersDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreManageLayersDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreManageLayersDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreMergeComposeDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreMergeComposeDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreMergeComposeDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreMergeComposeDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCorePositionDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCorePositionDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCorePositionDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCorePositionDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCorePublishFileConfirmDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCorePublishFileConfirmDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCorePublishFileConfirmDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCorePublishFileConfirmDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreQCViewDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreQCViewDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreQCViewDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreQCViewDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreQuickSetStyleDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreQuickSetStyleDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreQuickSetStyleDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreQuickSetStyleDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreRotateDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreRotateDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreRotateDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreRotateDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreSelectBorderDashDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSelectBorderDashDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSelectBorderDashDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSelectBorderDashDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreSelectBorderWeightDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSelectBorderWeightDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSelectBorderWeightDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSelectBorderWeightDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreSelectColorDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSelectColorDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSelectColorDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSelectColorDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreSelectFontDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSelectFontDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSelectFontDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSelectFontDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreSelectFontSizeDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSelectFontSizeDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSelectFontSizeDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSelectFontSizeDialog
|
||||
@ -37,6 +37,10 @@ class DDeiCoreTextAlignDialog extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreTextAlignDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreTextAlignDialog.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreTextAlignDialog
|
||||
@ -56,6 +56,10 @@ class DDeiKeyActionAllSelect extends DDeiKeyAction {
|
||||
return DDeiKeyActionAllSelect;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionAllSelect.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
// ============================ 方法 ===============================
|
||||
|
||||
|
||||
|
||||
@ -55,6 +55,10 @@ class DDeiKeyActionBrushData extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionBrushData;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionBrushData.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
|
||||
isActive(element: object): boolean {
|
||||
|
||||
@ -55,6 +55,10 @@ class DDeiKeyActionCancelCompose extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionCancelCompose;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCancelCompose.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
//修改当前操作控件坐标
|
||||
|
||||
@ -54,6 +54,10 @@ class DDeiKeyActionCancelControlCreate extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionCancelControlCreate;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCancelControlCreate.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei, editor: DDeiEditor): void {
|
||||
if (editor.state == DDeiEditorState.CONTROL_CREATING) {
|
||||
|
||||
@ -55,6 +55,10 @@ class DDeiKeyActionCancelCurrentAction extends DDeiKeyAction {
|
||||
return DDeiKeyActionCancelCurrentAction;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCancelCurrentAction.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei, editor: DDeiEditor): void {
|
||||
if (editor.state == DDeiEditorState.DESIGNING) {
|
||||
|
||||
@ -51,6 +51,10 @@ class DDeiKeyActionCancelQuickEdit extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionCancelQuickEdit;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCancelQuickEdit.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
if (ddInstance.stage.brushDataText) {
|
||||
|
||||
@ -51,6 +51,10 @@ class DDeiKeyActionCancelSelect extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionCancelSelect;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCancelSelect.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
//修改当前操作控件坐标
|
||||
|
||||
@ -52,6 +52,10 @@ class DDeiKeyActionClearBrushData extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionClearBrushData;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionClearBrushData.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
//记录当前格式信息,修改状态为刷子状态
|
||||
|
||||
@ -57,6 +57,10 @@ class DDeiKeyActionCloseDialog extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionCloseDialog;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCloseDialog.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
DDeiEditorUtil.closeDialogs(DDeiEditorUtil.getEditorInsByDDei(ddInstance),["bottom-dialog", "property-dialog", "top-dialog", "toolbox-dialog"])
|
||||
|
||||
@ -55,6 +55,10 @@ class DDeiKeyActionCompose extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionCompose;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCompose.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
//修改当前操作控件坐标
|
||||
|
||||
@ -53,6 +53,10 @@ class DDeiKeyActionCopyImage extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionCopyImage;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCopyImage.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei, editor: DDeiEditor): void {
|
||||
if (DDeiConfig.ALLOW_CLIPBOARD || DDeiConfig.ALLOW_CLIPBOARD == undefined) {
|
||||
|
||||
@ -66,6 +66,10 @@ class DDeiKeyActionCopy extends DDeiKeyAction {
|
||||
return DDeiKeyActionCopy;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCopy.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
|
||||
// ============================ 方法 ===============================
|
||||
async action(evt: Event, ddInstance: DDei, editor: DDeiEditor): boolean {
|
||||
|
||||
@ -54,6 +54,10 @@ class DDeiKeyActionCut extends DDeiKeyAction {
|
||||
return DDeiKeyActionCut;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionCut.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
// ============================ 方法 ===============================
|
||||
async action(evt: Event, ddInstance: DDei, editor: DDeiEditor): void {
|
||||
//修改当前操作控件坐标
|
||||
|
||||
@ -51,6 +51,10 @@ class DDeiKeyActionEnterQuickEdit extends DDeiKeyAction {
|
||||
return DDeiKeyActionEnterQuickEdit;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionEnterQuickEdit.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
let editor = DDeiEditor.ACTIVE_INSTANCE;
|
||||
|
||||
@ -62,6 +62,10 @@ class DDeiKeyActionMoveModels extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionMoveModels;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionMoveModels.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
|
||||
|
||||
@ -184,24 +188,26 @@ class DDeiKeyActionMoveModels extends DDeiKeyAction {
|
||||
}
|
||||
let stage = ddInstance.stage
|
||||
|
||||
DDeiAbstractShape.moveModels(models, deltaX, deltaY, moveOriginLines);
|
||||
let rsState = DDeiEditorUtil.invokeCallbackFunc("EVENT_CONTROL_DRAG_BEFORE", DDeiEnumOperateType.DRAG, { models: models }, ddInstance, evt)
|
||||
if (rsState == 0 || rsState == 1){
|
||||
DDeiAbstractShape.moveModels(models, deltaX, deltaY, moveOriginLines);
|
||||
|
||||
stage.layers[stage.layerIndex].opPoints = []
|
||||
if (stage.layers[stage.layerIndex].opLine?.render) {
|
||||
stage.layers[stage.layerIndex].opLine.render.enableRefreshShape()
|
||||
}
|
||||
delete stage.layers[stage.layerIndex].opLine;
|
||||
stage.render.refreshJumpLine = false
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.UpdateSelectorBounds);
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.NodifyChange);
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.AddHistroy, null, evt);
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.ClearTemplateVars);
|
||||
//渲染图形
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.RefreshShape, null, evt);
|
||||
|
||||
ddInstance.bus.executeAll();
|
||||
DDeiEditorUtil.invokeCallbackFunc("EVENT_CONTROL_DRAG_AFTER", DDeiEnumOperateType.DRAG, { models: models }, ddInstance, evt)
|
||||
stage.layers[stage.layerIndex].opPoints = []
|
||||
if (stage.layers[stage.layerIndex].opLine?.render) {
|
||||
stage.layers[stage.layerIndex].opLine.render.enableRefreshShape()
|
||||
}
|
||||
delete stage.layers[stage.layerIndex].opLine;
|
||||
stage.render.refreshJumpLine = false
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.UpdateSelectorBounds);
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.NodifyChange);
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.AddHistroy, null, evt);
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.ClearTemplateVars);
|
||||
//渲染图形
|
||||
ddInstance.bus.push(DDeiEnumBusCommandType.RefreshShape, null, evt);
|
||||
|
||||
ddInstance.bus.executeAll();
|
||||
DDeiEditorUtil.invokeCallbackFunc("EVENT_CONTROL_DRAG_AFTER", DDeiEnumOperateType.DRAG, { models: models }, ddInstance, evt)
|
||||
}
|
||||
return true
|
||||
|
||||
}
|
||||
|
||||
@ -61,6 +61,10 @@ class DDeiKeyActionPaste extends DDeiKeyAction {
|
||||
return DDeiKeyActionPaste;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionPaste.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
isActive(element: object): boolean {
|
||||
if (!element) {
|
||||
return true
|
||||
|
||||
@ -59,6 +59,10 @@ class DDeiKeyActionPushModels extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionPushModels;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionPushModels.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
|
||||
isActive(element: object): boolean {
|
||||
|
||||
@ -42,6 +42,10 @@ class DDeiKeyActionNewRowQuickEdit extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionNewRowQuickEdit;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionNewRowQuickEdit.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
let editor = DDeiEditor.ACTIVE_INSTANCE;
|
||||
|
||||
@ -53,6 +53,10 @@ class DDeiKeyActionRemoveModels extends DDeiKeyAction {
|
||||
return DDeiKeyActionRemoveModels;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionRemoveModels.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
isActive(element: object): boolean {
|
||||
if (!element) {
|
||||
return true
|
||||
|
||||
@ -60,6 +60,10 @@ class DDeiKeyActionReRevoke extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionReRevoke;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionReRevoke.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
|
||||
isActive(element: object): boolean {
|
||||
|
||||
@ -60,6 +60,10 @@ class DDeiKeyActionRevoke extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionRevoke;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionRevoke.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
|
||||
isActive(element: object): boolean {
|
||||
|
||||
@ -54,6 +54,10 @@ class DDeiKeyActionSaveFile extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionSaveFile;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionSaveFile.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
ddInstance.bus?.push(DDeiEditorEnumBusCommandType.SaveFile, {}, evt)
|
||||
|
||||
@ -59,6 +59,10 @@ class DDeiKeyActionStartQuickEdit extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionStartQuickEdit;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionStartQuickEdit.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
|
||||
isActive(element: object): boolean {
|
||||
|
||||
@ -52,6 +52,10 @@ class DDeiKeyActionTableNextCol extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionTableNextCol;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionTableNextCol.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
//修改当前操作控件坐标
|
||||
|
||||
@ -51,6 +51,10 @@ class DDeiKeyActionTableNextRow extends DDeiKeyAction {
|
||||
}
|
||||
return DDeiKeyActionTableNextRow;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiKeyActionTableNextRow.defaultIns.modify(fn)
|
||||
}
|
||||
// ============================ 方法 ===============================
|
||||
action(evt: Event, ddInstance: DDei): void {
|
||||
//修改当前操作控件坐标
|
||||
|
||||
@ -73,6 +73,10 @@ class DDeiCoreHotkeys extends DDeiPluginBase{
|
||||
}
|
||||
return hotkeys;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreHotkeys.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
export {
|
||||
DDeiCoreHotkeys, DDeiKeyActionAllSelect, DDeiKeyActionBrushData, DDeiKeyActionCancelCompose, DDeiKeyActionCancelControlCreate,
|
||||
|
||||
@ -172,6 +172,10 @@ class DDeiCore extends DDeiPluginBase {
|
||||
core.lifecycles = core.lifecycles.configuration(options, true)
|
||||
return core;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCore.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export * from "./panels"
|
||||
|
||||
@ -41,6 +41,10 @@ class DDeiCoreLayouts extends DDeiPluginBase{
|
||||
}
|
||||
return layouts;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreLayouts.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export { DDeiCoreLayouts, DDeiCoreStandLayout, DDeiCoreSimpleLayout }
|
||||
|
||||
@ -49,6 +49,10 @@ class DDeiCoreSimpleLayout extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSimpleLayout;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSimpleLayout.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSimpleLayout
|
||||
@ -50,6 +50,10 @@ class DDeiCoreStandLayout extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreStandLayout;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreStandLayout.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreStandLayout
|
||||
@ -48,6 +48,10 @@ class DDeiCoreLifeCycle extends DDeiLifeCycle {
|
||||
}
|
||||
return DDeiCoreLifeCycle;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreLifeCycle.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreLifeCycle
|
||||
@ -27,6 +27,10 @@ class DDeiCoreLifeCycles extends DDeiPluginBase {
|
||||
core.lifecyclies = core.lifecyclies.configuration(options, true)
|
||||
return core;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreLifeCycles.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export {DDeiCoreLifeCycles}
|
||||
|
||||
@ -50,6 +50,10 @@ class DDeiCoreMenus extends DDeiPluginBase{
|
||||
}
|
||||
return menus;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreMenus.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
export {
|
||||
DDeiCoreMenus, MenuCancelMergeCell, MenuCopySheet, MenuInsertCol, MenuInsertRow,
|
||||
|
||||
@ -45,6 +45,10 @@ class MenuCancelMergeCell extends DDeiMenuBase {
|
||||
return MenuCancelMergeCell;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuCancelMergeCell.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
// ============================ 方法 ===============================
|
||||
/**
|
||||
* 执行的方法
|
||||
|
||||
@ -49,6 +49,10 @@ class MenuCopySheet extends DDeiMenuBase {
|
||||
}
|
||||
return MenuCopySheet;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuCopySheet.defaultIns.modify(fn)
|
||||
}
|
||||
/**
|
||||
* 执行的方法
|
||||
*/
|
||||
|
||||
@ -44,6 +44,10 @@ class MenuInsertCol extends DDeiMenuBase {
|
||||
}
|
||||
return MenuInsertCol;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuInsertCol.defaultIns.modify(fn)
|
||||
}
|
||||
/**
|
||||
* 执行的方法
|
||||
*/
|
||||
|
||||
@ -47,6 +47,10 @@ class MenuInsertRow extends DDeiMenuBase {
|
||||
return MenuInsertRow;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuInsertRow.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 执行的方法
|
||||
|
||||
@ -43,6 +43,10 @@ class MenuMergeCell extends DDeiMenuBase {
|
||||
}
|
||||
return MenuMergeCell;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuMergeCell.defaultIns.modify(fn)
|
||||
}
|
||||
/**
|
||||
* 执行的方法
|
||||
*/
|
||||
|
||||
@ -43,6 +43,10 @@ class MenuRemoveCol extends DDeiMenuBase {
|
||||
}
|
||||
return MenuRemoveCol;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuRemoveCol.defaultIns.modify(fn)
|
||||
}
|
||||
/**
|
||||
* 执行的方法
|
||||
*/
|
||||
|
||||
@ -44,6 +44,10 @@ class MenuRemoveRow extends DDeiMenuBase {
|
||||
}
|
||||
return MenuRemoveRow;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuRemoveRow.defaultIns.modify(fn)
|
||||
}
|
||||
/**
|
||||
* 执行的方法
|
||||
*/
|
||||
|
||||
@ -51,6 +51,10 @@ class MenuRemoveSheet extends DDeiMenuBase {
|
||||
return MenuRemoveSheet;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return MenuRemoveSheet.defaultIns.modify(fn)
|
||||
}
|
||||
|
||||
|
||||
action(model: object, evt: Event): void {
|
||||
if (model.modelType == 'DDeiSheet') {
|
||||
|
||||
@ -41,6 +41,10 @@ class DDeiCoreChangeRatioPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreChangeRatioPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreChangeRatioPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreChangeRatioPanel
|
||||
@ -47,6 +47,10 @@ class DDeiCoreBottomPanels extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreBottomPanels;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreBottomPanels.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -41,6 +41,10 @@ class DDeiCoreManageLayersPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreManageLayersPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreManageLayersPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreManageLayersPanel
|
||||
@ -41,6 +41,10 @@ class DDeiCorePlayPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCorePlayPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCorePlayPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCorePlayPanel
|
||||
@ -41,6 +41,9 @@ class DDeiCoreShapeCountPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreShapeCountPanel;
|
||||
}
|
||||
static modify(fn) {
|
||||
return DDeiCoreShapeCountPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreShapeCountPanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreSheetsPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSheetsPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSheetsPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSheetsPanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreSuitRatioPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSuitRatioPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSuitRatioPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSuitRatioPanel
|
||||
@ -43,6 +43,10 @@ class DDeiCoreBottomMenuPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreBottomMenuPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreBottomMenuPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreBottomMenuPanel
|
||||
@ -40,6 +40,10 @@ class DDeiCoreCanvasViewPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreCanvasViewPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreCanvasViewPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreCanvasViewPanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreExportAndImportPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreExportAndImportPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreExportAndImportPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreExportAndImportPanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreFileInfoPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreFileInfoPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreFileInfoPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreFileInfoPanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreFileOperatePanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreFileOperatePanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreFileOperatePanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreFileOperatePanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreFontAndTextPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreFontAndTextPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreFontAndTextPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreFontAndTextPanel
|
||||
@ -51,6 +51,10 @@ class DDeiCoreCommonPanels extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreCommonPanels;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreCommonPanels.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -41,6 +41,10 @@ class DDeiCoreOperatePanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreOperatePanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreOperatePanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreOperatePanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreSortPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreSortPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSortPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreSortPanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreStylePanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreStylePanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreStylePanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreStylePanel
|
||||
@ -41,6 +41,10 @@ class DDeiCoreToolPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreToolPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreToolPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreToolPanel
|
||||
@ -50,6 +50,10 @@ class DDeiCorePanels extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCorePanels;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCorePanels.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -39,6 +39,10 @@ class DDeiCoreOpenFilesViewPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreOpenFilesViewPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreOpenFilesViewPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreOpenFilesViewPanel
|
||||
@ -40,6 +40,10 @@ class DDeiCorePropertyViewPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCorePropertyViewPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCorePropertyViewPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCorePropertyViewPanel
|
||||
@ -38,6 +38,10 @@ class DDeiCoreQuickColorViewPanel extends DDeiPluginBase{
|
||||
}
|
||||
return DDeiCoreQuickColorViewPanel;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreQuickColorViewPanel.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
export default DDeiCoreQuickColorViewPanel
|
||||
@ -42,6 +42,10 @@ class DDeiCoreSimplePanels extends DDeiPluginBase {
|
||||
}
|
||||
return DDeiCoreSimplePanels;
|
||||
}
|
||||
|
||||
static modify(fn) {
|
||||
return DDeiCoreSimplePanels.defaultIns.modify(fn)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user