mirror of
https://gitee.com/hoslay/ddei-editor.git
synced 2025-12-06 17:18:36 +08:00
方法命名错误configuration
This commit is contained in:
parent
68336ed6e1
commit
5bd999d606
@ -15,7 +15,7 @@ class DDeiCoreAddFontSizeButton extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreBorderDashButton extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -14,7 +14,7 @@ class DDeiCoreBorderWeightButton extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -14,7 +14,7 @@ class DDeiCoreEditBoxButton extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreEditColorButton extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreEditFontFamilyButton extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -18,7 +18,7 @@ class DDeiCoreEditFontSizeButton extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -17,7 +17,7 @@ class DDeiCoreEditLinePointTypeButton extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -18,7 +18,7 @@ class DDeiCoreEditLineTypeButton extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreEditTextAlignButton extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -42,13 +42,13 @@ class DDeiCoreComponents extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
//解析options,只使用自己相关的
|
||||
let components = new DDeiCoreComponents(options);
|
||||
for (let i = 0; i < components.plugins?.length; i++) {
|
||||
components.plugins[i] = components.plugins[i].configuraton(options, true)
|
||||
components.plugins[i] = components.plugins[i].configuration(options, true)
|
||||
}
|
||||
return components;
|
||||
}
|
||||
|
||||
@ -57,7 +57,7 @@ class DDeiCoreControls extends DDeiPluginBase{
|
||||
return groups;
|
||||
}
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
if (options){
|
||||
let controls = new DDeiCoreControls(options);
|
||||
return controls;
|
||||
|
||||
@ -16,7 +16,7 @@ class DDeiCoreAlignDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreChangeRatioDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreChooseControlGroupDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreCloseFileConfirmDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreCollFileConfirmDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -55,12 +55,12 @@ class DDeiCoreDialogs extends DDeiPluginBase {
|
||||
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
if (options) {
|
||||
//解析options,只使用自己相关的
|
||||
let panels = new DDeiCoreDialogs(options);
|
||||
for (let i = 0; i < panels.plugins?.length; i++) {
|
||||
panels.plugins[i] = panels.plugins[i].configuraton(options, true)
|
||||
panels.plugins[i] = panels.plugins[i].configuration(options, true)
|
||||
}
|
||||
return panels;
|
||||
}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreLinePointTypeDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreLineTypeDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreManageLayersDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreMergeComposeDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCorePositionDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCorePublishFileConfirmDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreQCViewDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreQuickSetStyleDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreRotateDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreSelectBorderDashDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreSelectBorderWeightDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreSelectColorDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreSelectFontDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreSelectFontSizeDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -15,7 +15,7 @@ class DDeiCoreTextAlignDialog extends DDeiPluginBase{
|
||||
return this.plugins;
|
||||
}
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -33,7 +33,7 @@ class DDeiKeyActionAllSelect extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -33,7 +33,7 @@ class DDeiKeyActionBrushData extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -33,7 +33,7 @@ class DDeiKeyActionCancelCompose extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -32,7 +32,7 @@ class DDeiKeyActionCancelControlCreate extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -32,7 +32,7 @@ class DDeiKeyActionCancelCurrentAction extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -29,7 +29,7 @@ class DDeiKeyActionCancelQuickEdit extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -29,7 +29,7 @@ class DDeiKeyActionCancelSelect extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -30,7 +30,7 @@ class DDeiKeyActionClearBrushData extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -35,7 +35,7 @@ class DDeiKeyActionCloseDialog extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -33,7 +33,7 @@ class DDeiKeyActionCompose extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -31,7 +31,7 @@ class DDeiKeyActionCopyImage extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -32,7 +32,7 @@ class DDeiKeyActionCopy extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -32,7 +32,7 @@ class DDeiKeyActionCut extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -28,7 +28,7 @@ class DDeiKeyActionEnterQuickEdit extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -38,7 +38,7 @@ class DDeiKeyActionMoveModels extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -37,7 +37,7 @@ class DDeiKeyActionPaste extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -37,7 +37,7 @@ class DDeiKeyActionPushModels extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -20,7 +20,7 @@ class DDeiKeyActionNewRowQuickEdit extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -30,7 +30,7 @@ class DDeiKeyActionRemoveModels extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -38,7 +38,7 @@ class DDeiKeyActionReRevoke extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -38,7 +38,7 @@ class DDeiKeyActionRevoke extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -32,7 +32,7 @@ class DDeiKeyActionSaveFile extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -37,7 +37,7 @@ class DDeiKeyActionStartQuickEdit extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -30,7 +30,7 @@ class DDeiKeyActionTableNextCol extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -29,7 +29,7 @@ class DDeiKeyActionTableNextRow extends DDeiKeyAction {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -66,10 +66,10 @@ class DDeiCoreHotkeys extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
let hotkeys = new DDeiCoreHotkeys(options);
|
||||
for (let i = 0; i < hotkeys.plugins?.length;i++){
|
||||
hotkeys.plugins[i] = hotkeys.plugins[i].configuraton(options,true)
|
||||
hotkeys.plugins[i] = hotkeys.plugins[i].configuration(options,true)
|
||||
}
|
||||
return hotkeys;
|
||||
}
|
||||
|
||||
@ -130,17 +130,17 @@ class DDeiCore extends DDeiPluginBase {
|
||||
}
|
||||
}
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
let core = new DDeiCore(options);
|
||||
core.layouts = core.layouts.configuraton(options,true)
|
||||
core.panels = core.panels.configuraton(options,true)
|
||||
core.components = core.components.configuraton(options, true)
|
||||
core.dialogs = core.dialogs.configuraton(options, true)
|
||||
core.propeditors = core.propeditors.configuraton(options, true)
|
||||
core.hotkeys = core.hotkeys.configuraton(options, true)
|
||||
core.controls = core.controls.configuraton(options, true)
|
||||
core.menus = core.menus.configuraton(options, true)
|
||||
core.themes = core.themes.configuraton(options, true)
|
||||
core.layouts = core.layouts.configuration(options,true)
|
||||
core.panels = core.panels.configuration(options,true)
|
||||
core.components = core.components.configuration(options, true)
|
||||
core.dialogs = core.dialogs.configuration(options, true)
|
||||
core.propeditors = core.propeditors.configuration(options, true)
|
||||
core.hotkeys = core.hotkeys.configuration(options, true)
|
||||
core.controls = core.controls.configuration(options, true)
|
||||
core.menus = core.menus.configuration(options, true)
|
||||
core.themes = core.themes.configuration(options, true)
|
||||
return core;
|
||||
}
|
||||
}
|
||||
|
||||
@ -33,10 +33,10 @@ class DDeiCoreLayouts extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
let layouts = new DDeiCoreLayouts(options);
|
||||
for (let i = 0; i < layouts.plugins?.length;i++){
|
||||
layouts.plugins[i] = layouts.plugins[i].configuraton(options,true)
|
||||
layouts.plugins[i] = layouts.plugins[i].configuration(options,true)
|
||||
}
|
||||
return layouts;
|
||||
}
|
||||
|
||||
@ -26,7 +26,7 @@ class DDeiCoreStandLayout extends DDeiPluginBase{
|
||||
return this.plugins
|
||||
}
|
||||
|
||||
static configuraton(options,fullConfig:boolean = false ) {
|
||||
static configuration(options,fullConfig:boolean = false ) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = Object.assign({}, {}, DDeiCoreStandLayout.defaultIns.defaultOptions)
|
||||
|
||||
@ -43,10 +43,10 @@ class DDeiCoreMenus extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
let menus = new DDeiCoreMenus(options);
|
||||
for (let i = 0; i < menus.plugins?.length;i++){
|
||||
menus.plugins[i] = menus.plugins[i].configuraton(options,true)
|
||||
menus.plugins[i] = menus.plugins[i].configuration(options,true)
|
||||
}
|
||||
return menus;
|
||||
}
|
||||
|
||||
@ -22,7 +22,7 @@ class MenuCancelMergeCell extends DDeiMenuBase {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -27,7 +27,7 @@ class MenuCopySheet extends DDeiMenuBase {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -22,7 +22,7 @@ class MenuInsertCol extends DDeiMenuBase {
|
||||
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -24,7 +24,7 @@ class MenuInsertRow extends DDeiMenuBase {
|
||||
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -21,7 +21,7 @@ class MenuMergeCell extends DDeiMenuBase {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -21,7 +21,7 @@ class MenuRemoveCol extends DDeiMenuBase {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -22,7 +22,7 @@ class MenuRemoveRow extends DDeiMenuBase {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -28,7 +28,7 @@ class MenuRemoveSheet extends DDeiMenuBase {
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreChangeRatioPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -36,12 +36,12 @@ class DDeiCoreBottomPanels extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
if (options){
|
||||
//解析options,只使用自己相关的
|
||||
let panels = new DDeiCoreBottomPanels(options);
|
||||
for (let i = 0; i < panels.plugins?.length;i++){
|
||||
panels.plugins[i] = panels.plugins[i].configuraton(options,true)
|
||||
panels.plugins[i] = panels.plugins[i].configuration(options,true)
|
||||
}
|
||||
return panels;
|
||||
}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreManageLayersPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCorePlayPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreShapeCountPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreSheetsPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreSuitRatioPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -21,7 +21,7 @@ class DDeiCoreBottomMenuPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -18,7 +18,7 @@ class DDeiCoreCanvasViewPanel extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreExportAndImportPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreFileInfoPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreFileOperatePanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreFontAndTextPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -40,12 +40,12 @@ class DDeiCoreCommonPanels extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
if (options){
|
||||
//解析options,只使用自己相关的
|
||||
let panels = new DDeiCoreCommonPanels(options);
|
||||
for (let i = 0; i < panels.plugins?.length;i++){
|
||||
panels.plugins[i] = panels.plugins[i].configuraton(options,true)
|
||||
panels.plugins[i] = panels.plugins[i].configuration(options,true)
|
||||
}
|
||||
return panels;
|
||||
}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreOperatePanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreSortPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreStylePanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreToolPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -38,12 +38,12 @@ class DDeiCorePanels extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
if (options){
|
||||
//解析options,只使用自己相关的
|
||||
let panels = new DDeiCorePanels(options);
|
||||
for (let i = 0; i < panels.plugins?.length;i++){
|
||||
panels.plugins[i] = panels.plugins[i].configuraton(options,true)
|
||||
panels.plugins[i] = panels.plugins[i].configuration(options,true)
|
||||
}
|
||||
return panels;
|
||||
}
|
||||
|
||||
@ -17,7 +17,7 @@ class DDeiCoreOpenFilesViewPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -18,7 +18,7 @@ class DDeiCorePropertyViewPanel extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -16,7 +16,7 @@ class DDeiCoreQuickColorViewPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -16,7 +16,7 @@ class DDeiCoreToolboxPanel extends DDeiPluginBase{
|
||||
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -26,7 +26,7 @@ class DDeiCoreTopMenuPanel extends DDeiPluginBase{
|
||||
}
|
||||
|
||||
|
||||
static configuraton(options, fullConfig: boolean = false) {
|
||||
static configuration(options, fullConfig: boolean = false) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = {}
|
||||
|
||||
@ -50,12 +50,12 @@ class DDeiCorePVEditors extends DDeiPluginBase {
|
||||
return pves
|
||||
}
|
||||
|
||||
static configuraton(options) {
|
||||
static configuration(options) {
|
||||
if (options){
|
||||
//解析options,只使用自己相关的
|
||||
let pves = new DDeiCorePVEditors(options);
|
||||
for (let i = 0; i < pves.plugins?.length; i++) {
|
||||
pves.plugins[i] = pves.plugins[i].configuraton(options, true)
|
||||
pves.plugins[i] = pves.plugins[i].configuration(options, true)
|
||||
}
|
||||
return pves;
|
||||
}
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreAlignTypePropEditor extends DDeiPluginBase{
|
||||
return this.plugins
|
||||
}
|
||||
|
||||
static configuraton(options,fullConfig:boolean = false ) {
|
||||
static configuration(options,fullConfig:boolean = false ) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = Object.assign({}, {}, DDeiCoreAlignTypePropEditor.defaultIns.options)
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreBorderDashComboPropEditor extends DDeiPluginBase{
|
||||
return this.plugins
|
||||
}
|
||||
|
||||
static configuraton(options,fullConfig:boolean = false ) {
|
||||
static configuration(options,fullConfig:boolean = false ) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = Object.assign({}, {}, DDeiCoreBorderDashComboPropEditor.defaultIns.options)
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreBorderTypePropEditor extends DDeiPluginBase{
|
||||
return this.plugins
|
||||
}
|
||||
|
||||
static configuraton(options,fullConfig:boolean = false ) {
|
||||
static configuration(options,fullConfig:boolean = false ) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = Object.assign({}, {}, DDeiCoreBorderTypePropEditor.defaultIns.options)
|
||||
|
||||
@ -19,7 +19,7 @@ class DDeiCoreColorPropEditor extends DDeiPluginBase{
|
||||
return this.plugins
|
||||
}
|
||||
|
||||
static configuraton(options,fullConfig:boolean = false ) {
|
||||
static configuration(options,fullConfig:boolean = false ) {
|
||||
//解析options,只使用自己相关的
|
||||
if (options) {
|
||||
let newOptions = Object.assign({}, {}, DDeiCoreColorPropEditor.defaultIns.options)
|
||||
|
||||
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