diff --git a/bi/base.js b/bi/base.js index 1b93930aa..08d29be21 100644 --- a/bi/base.js +++ b/bi/base.js @@ -14254,7 +14254,7 @@ BI.FormulaCollections = ["abs","ABS","acos","ACOS","acosh","ACOSH","add2array"," BI.FormulaEditor = BI.inherit(BI.Single, { _defaultConfig: function () { return $.extend(BI.FormulaEditor.superclass._defaultConfig.apply(), { - baseCls: 'bi-formula-editor', + baseCls: 'bi-formula-editor bi-card', watermark: '', value: '', fieldTextValueMap: {}, @@ -18274,7 +18274,7 @@ BI.shortcut("bi.multifile_editor", BI.MultifileEditor);/** BI.TextAreaEditor = BI.inherit(BI.Single, { _defaultConfig: function () { return $.extend(BI.TextAreaEditor.superclass._defaultConfig.apply(), { - baseCls: 'bi-textarea-editor', + baseCls: 'bi-textarea-editor bi-card', value: '' }); }, @@ -18286,7 +18286,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { tagName: "textarea", width: "100%", height: "100%", - cls: "textarea-editor-content display-block bi-card" + cls: "textarea-editor-content display-block" }); this.content.element.css({"resize": "none"}); BI.createWidget({ diff --git a/docs/base.js b/docs/base.js index 1b93930aa..08d29be21 100644 --- a/docs/base.js +++ b/docs/base.js @@ -14254,7 +14254,7 @@ BI.FormulaCollections = ["abs","ABS","acos","ACOS","acosh","ACOSH","add2array"," BI.FormulaEditor = BI.inherit(BI.Single, { _defaultConfig: function () { return $.extend(BI.FormulaEditor.superclass._defaultConfig.apply(), { - baseCls: 'bi-formula-editor', + baseCls: 'bi-formula-editor bi-card', watermark: '', value: '', fieldTextValueMap: {}, @@ -18274,7 +18274,7 @@ BI.shortcut("bi.multifile_editor", BI.MultifileEditor);/** BI.TextAreaEditor = BI.inherit(BI.Single, { _defaultConfig: function () { return $.extend(BI.TextAreaEditor.superclass._defaultConfig.apply(), { - baseCls: 'bi-textarea-editor', + baseCls: 'bi-textarea-editor bi-card', value: '' }); }, @@ -18286,7 +18286,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { tagName: "textarea", width: "100%", height: "100%", - cls: "textarea-editor-content display-block bi-card" + cls: "textarea-editor-content display-block" }); this.content.element.css({"resize": "none"}); BI.createWidget({ diff --git a/src/base/formula/formulaeditor.js b/src/base/formula/formulaeditor.js index fa3c7de1c..9d721e420 100644 --- a/src/base/formula/formulaeditor.js +++ b/src/base/formula/formulaeditor.js @@ -6,7 +6,7 @@ BI.FormulaEditor = BI.inherit(BI.Single, { _defaultConfig: function () { return $.extend(BI.FormulaEditor.superclass._defaultConfig.apply(), { - baseCls: 'bi-formula-editor', + baseCls: 'bi-formula-editor bi-card', watermark: '', value: '', fieldTextValueMap: {}, diff --git a/src/base/single/editor/editor.textarea.js b/src/base/single/editor/editor.textarea.js index 97d94290c..5efc3fae5 100644 --- a/src/base/single/editor/editor.textarea.js +++ b/src/base/single/editor/editor.textarea.js @@ -7,7 +7,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { _defaultConfig: function () { return $.extend(BI.TextAreaEditor.superclass._defaultConfig.apply(), { - baseCls: 'bi-textarea-editor', + baseCls: 'bi-textarea-editor bi-card', value: '' }); }, @@ -19,7 +19,7 @@ BI.TextAreaEditor = BI.inherit(BI.Single, { tagName: "textarea", width: "100%", height: "100%", - cls: "textarea-editor-content display-block bi-card" + cls: "textarea-editor-content display-block" }); this.content.element.css({"resize": "none"}); BI.createWidget({