Browse Source

BI-34242 气泡弹窗默认direction为bottom,left

es6
windy 6 years ago
parent
commit
e836c5afa8
  1. 2
      dist/base.css
  2. 2
      dist/bundle.css
  3. 2
      dist/bundle.ie.js
  4. 4
      dist/bundle.ie.min.js
  5. 2
      dist/bundle.js
  6. 2
      dist/bundle.min.css
  7. 4
      dist/bundle.min.js
  8. 2
      dist/case.js
  9. 2
      dist/fineui.css
  10. 2
      dist/fineui.ie.js
  11. 4
      dist/fineui.ie.min.js
  12. 2
      dist/fineui.js
  13. 2
      dist/fineui.min.css
  14. 4
      dist/fineui.min.js
  15. 2
      dist/fineui_without_jquery_polyfill.js
  16. 2
      dist/utils.min.js
  17. 2
      src/case/combo/bubblecombo/combo.bubble.js
  18. 2
      src/css/base/combo/popup.css
  19. 2
      src/less/base/combo/popup.bubble.bar.less

2
dist/base.css vendored

@ -563,7 +563,7 @@
border-color: #3685f2;
}
.bi-bubble-bar-popup-view .bar-popup-container {
max-height: 656px;
max-height: 456px;
}
/*************BI.SearchEditor******************/

2
dist/bundle.css vendored

@ -2535,7 +2535,7 @@ textarea {
border-color: #3685f2;
}
.bi-bubble-bar-popup-view .bar-popup-container {
max-height: 656px;
max-height: 456px;
}
/*************BI.SearchEditor******************/

2
dist/bundle.ie.js vendored

@ -52292,7 +52292,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
baseCls: "bi-bubble-combo",
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.js vendored

@ -52696,7 +52696,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
baseCls: "bi-bubble-combo",
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

2
dist/bundle.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/case.js vendored

@ -3786,7 +3786,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
baseCls: "bi-bubble-combo",
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

2
dist/fineui.css vendored

@ -2535,7 +2535,7 @@ textarea {
border-color: #3685f2;
}
.bi-bubble-bar-popup-view .bar-popup-container {
max-height: 656px;
max-height: 456px;
}
/*************BI.SearchEditor******************/

2
dist/fineui.ie.js vendored

@ -52534,7 +52534,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
baseCls: "bi-bubble-combo",
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.js vendored

@ -52938,7 +52938,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
baseCls: "bi-bubble-combo",
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

2
dist/fineui.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui_without_jquery_polyfill.js vendored

@ -35972,7 +35972,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
baseCls: "bi-bubble-combo",
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
src/case/combo/bubblecombo/combo.bubble.js

@ -13,7 +13,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
baseCls: "bi-bubble-combo",
trigger: "click",
toggle: true,
direction: "bottom", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
direction: "bottom,left", // top||bottom||left||right||top,left||top,right||bottom,left||bottom,right
isDefaultInit: false,
destroyWhenHide: false,
isNeedAdjustHeight: true, // 是否需要高度调整

2
src/css/base/combo/popup.css

@ -1,4 +1,4 @@
.bi-bubble-bar-popup-view .bar-popup-container {
max-height: 656px;
max-height: 456px;
}

2
src/less/base/combo/popup.bubble.bar.less

@ -1,5 +1,5 @@
.bi-bubble-bar-popup-view {
& .bar-popup-container{
max-height: 656px;
max-height: 456px;
}
}
Loading…
Cancel
Save