Browse Source

BI-25097

es6
windy 6 years ago
parent
commit
5e656dc91a
  1. 5
      demo/version.js
  2. 40
      dist/_fineui.min.js
  3. 7
      dist/bundle.js
  4. 2
      dist/bundle.min.css
  5. 34
      dist/bundle.min.js
  6. 2
      dist/case.js
  7. 5
      dist/config.js
  8. 7
      dist/fineui.js
  9. 2
      dist/fineui.min.css
  10. 40
      dist/fineui.min.js
  11. 5
      public/js/index.js
  12. 1
      src/case/richeditor/plugins/backgroundchooser/trigger.backgroundchooser.js
  13. 1
      src/case/richeditor/plugins/colorchooser/trigger.colorchooser.js
  14. 5
      ui/js/index.js

5
demo/version.js

@ -166,5 +166,8 @@ BI.i18n = {
"BI-More_And_Equal": "大于等于",
"BI-Please_Enter_SQL": "请输入SQL",
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"",
"BI-Basic_Please_Select": "请选择"
"BI-Basic_Please_Select": "请选择",
"BI-Basic_Font_Color": "文字颜色",
"BI-Basic_Background_Color": "背景色",
"BI-Basic_Underline": "下划线"
};

40
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/bundle.js vendored

@ -83527,6 +83527,7 @@ BI.RichEditorBackgroundChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Background_Color"),
cls: "text-background-font"
});
@ -83846,6 +83847,7 @@ BI.RichEditorColorChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Font_Color"),
cls: "text-color-font"
});
@ -114764,5 +114766,8 @@ BI.i18n = {
"BI-More_And_Equal": "大于等于",
"BI-Please_Enter_SQL": "请输入SQL",
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"",
"BI-Basic_Please_Select": "请选择"
"BI-Basic_Please_Select": "请选择",
"BI-Basic_Font_Color": "文字颜色",
"BI-Basic_Background_Color": "背景色",
"BI-Basic_Underline": "下划线"
};

2
dist/bundle.min.css vendored

File diff suppressed because one or more lines are too long

34
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/case.js vendored

@ -11048,6 +11048,7 @@ BI.RichEditorBackgroundChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Background_Color"),
cls: "text-background-font"
});
@ -11367,6 +11368,7 @@ BI.RichEditorColorChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Font_Color"),
cls: "text-color-font"
});

5
dist/config.js vendored

@ -166,5 +166,8 @@ BI.i18n = {
"BI-More_And_Equal": "大于等于",
"BI-Please_Enter_SQL": "请输入SQL",
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"",
"BI-Basic_Please_Select": "请选择"
"BI-Basic_Please_Select": "请选择",
"BI-Basic_Font_Color": "文字颜色",
"BI-Basic_Background_Color": "背景色",
"BI-Basic_Underline": "下划线"
};

7
dist/fineui.js vendored

@ -83770,6 +83770,7 @@ BI.RichEditorBackgroundChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Background_Color"),
cls: "text-background-font"
});
@ -84089,6 +84090,7 @@ BI.RichEditorColorChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Font_Color"),
cls: "text-color-font"
});
@ -115007,5 +115009,8 @@ BI.i18n = {
"BI-More_And_Equal": "大于等于",
"BI-Please_Enter_SQL": "请输入SQL",
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"",
"BI-Basic_Please_Select": "请选择"
"BI-Basic_Please_Select": "请选择",
"BI-Basic_Font_Color": "文字颜色",
"BI-Basic_Background_Color": "背景色",
"BI-Basic_Underline": "下划线"
};

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

40
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

5
public/js/index.js

@ -166,5 +166,8 @@ BI.i18n = {
"BI-More_And_Equal": "大于等于",
"BI-Please_Enter_SQL": "请输入SQL",
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"",
"BI-Basic_Please_Select": "请选择"
"BI-Basic_Please_Select": "请选择",
"BI-Basic_Font_Color": "文字颜色",
"BI-Basic_Background_Color": "背景色",
"BI-Basic_Underline": "下划线"
};

1
src/case/richeditor/plugins/backgroundchooser/trigger.backgroundchooser.js

@ -19,6 +19,7 @@ BI.RichEditorBackgroundChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Background_Color"),
cls: "text-background-font"
});

1
src/case/richeditor/plugins/colorchooser/trigger.colorchooser.js

@ -19,6 +19,7 @@ BI.RichEditorColorChooserTrigger = BI.inherit(BI.Widget, {
this.font = BI.createWidget({
type: "bi.icon_button",
element: this,
title: BI.i18nText("BI-Basic_Font_Color"),
cls: "text-color-font"
});

5
ui/js/index.js

@ -166,5 +166,8 @@ BI.i18n = {
"BI-More_And_Equal": "大于等于",
"BI-Please_Enter_SQL": "请输入SQL",
"BI-Basic_Click_To_Add_Text": "点击新增\"{R1}\"",
"BI-Basic_Please_Select": "请选择"
"BI-Basic_Please_Select": "请选择",
"BI-Basic_Font_Color": "文字颜色",
"BI-Basic_Background_Color": "背景色",
"BI-Basic_Underline": "下划线"
};
Loading…
Cancel
Save