Browse Source

BI-29584 ie11浏览器,复合过滤组件的清空按钮会引起过滤条件样式变化

es6
windy 6 years ago
parent
commit
7e4c30a702
  1. 23
      dist/bundle.js
  2. 6
      dist/bundle.min.js
  3. 6
      dist/case.js
  4. 23
      dist/fineui.js
  5. 6
      dist/fineui.min.js
  6. 2
      dist/utils.min.js
  7. 17
      dist/widget.js
  8. 6
      src/case/calendar/calendar.js
  9. 13
      src/widget/date/calendar/picker.date.js
  10. 4
      src/widget/date/calendar/popup.calendar.date.js

23
dist/bundle.js vendored

@ -50203,7 +50203,7 @@ BI.Calendar = BI.inherit(BI.Widget, {
items: items,
layouts: [{
type: "bi.center",
lgap: 10,
hgap: 5,
vgap: 10
}]
});
@ -50228,8 +50228,8 @@ BI.Calendar = BI.inherit(BI.Widget, {
height: 24,
value: o.year + "-" + month + "-" + td.text,
disabled: td.lastMonth || td.nextMonth || td.disabled,
lgap: 10,
rgap: 0
lgap: 5,
rgap: 5
// selected: td.currentDay
});
});
@ -58497,10 +58497,15 @@ BI.DatePicker = BI.inherit(BI.Widget, {
}, {
type: "bi.center_adapt",
items: [{
type: "bi.horizontal",
width: 100,
rgap: 10,
items: [this.year, this.month]
el: {
type: "bi.horizontal",
width: 110,
rgap: 10,
items: [{
el: this.year,
lgap: 10
}, this.month]
}
}]
}, {
el: {
@ -58750,8 +58755,8 @@ BI.DateCalendarPopup = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.calendar,
left: 0,
right: 10
left: 5,
right: 5
}, {
el: {
type: "bi.layout",

6
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/case.js vendored

@ -1727,7 +1727,7 @@ BI.Calendar = BI.inherit(BI.Widget, {
items: items,
layouts: [{
type: "bi.center",
lgap: 10,
hgap: 5,
vgap: 10
}]
});
@ -1752,8 +1752,8 @@ BI.Calendar = BI.inherit(BI.Widget, {
height: 24,
value: o.year + "-" + month + "-" + td.text,
disabled: td.lastMonth || td.nextMonth || td.disabled,
lgap: 10,
rgap: 0
lgap: 5,
rgap: 5
// selected: td.currentDay
});
});

23
dist/fineui.js vendored

@ -50424,7 +50424,7 @@ BI.Calendar = BI.inherit(BI.Widget, {
items: items,
layouts: [{
type: "bi.center",
lgap: 10,
hgap: 5,
vgap: 10
}]
});
@ -50449,8 +50449,8 @@ BI.Calendar = BI.inherit(BI.Widget, {
height: 24,
value: o.year + "-" + month + "-" + td.text,
disabled: td.lastMonth || td.nextMonth || td.disabled,
lgap: 10,
rgap: 0
lgap: 5,
rgap: 5
// selected: td.currentDay
});
});
@ -58718,10 +58718,15 @@ BI.DatePicker = BI.inherit(BI.Widget, {
}, {
type: "bi.center_adapt",
items: [{
type: "bi.horizontal",
width: 100,
rgap: 10,
items: [this.year, this.month]
el: {
type: "bi.horizontal",
width: 110,
rgap: 10,
items: [{
el: this.year,
lgap: 10
}, this.month]
}
}]
}, {
el: {
@ -58971,8 +58976,8 @@ BI.DateCalendarPopup = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.calendar,
left: 0,
right: 10
left: 5,
right: 5
}, {
el: {
type: "bi.layout",

6
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

17
dist/widget.js vendored

@ -244,10 +244,15 @@ BI.DatePicker = BI.inherit(BI.Widget, {
}, {
type: "bi.center_adapt",
items: [{
type: "bi.horizontal",
width: 100,
rgap: 10,
items: [this.year, this.month]
el: {
type: "bi.horizontal",
width: 110,
rgap: 10,
items: [{
el: this.year,
lgap: 10
}, this.month]
}
}]
}, {
el: {
@ -497,8 +502,8 @@ BI.DateCalendarPopup = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.calendar,
left: 0,
right: 10
left: 5,
right: 5
}, {
el: {
type: "bi.layout",

6
src/case/calendar/calendar.js

@ -87,7 +87,7 @@ BI.Calendar = BI.inherit(BI.Widget, {
items: items,
layouts: [{
type: "bi.center",
lgap: 10,
hgap: 5,
vgap: 10
}]
});
@ -112,8 +112,8 @@ BI.Calendar = BI.inherit(BI.Widget, {
height: 24,
value: o.year + "-" + month + "-" + td.text,
disabled: td.lastMonth || td.nextMonth || td.disabled,
lgap: 10,
rgap: 0
lgap: 5,
rgap: 5
// selected: td.currentDay
});
});

13
src/widget/date/calendar/picker.date.js

@ -103,10 +103,15 @@ BI.DatePicker = BI.inherit(BI.Widget, {
}, {
type: "bi.center_adapt",
items: [{
type: "bi.horizontal",
width: 100,
rgap: 10,
items: [this.year, this.month]
el: {
type: "bi.horizontal",
width: 110,
rgap: 10,
items: [{
el: this.year,
lgap: 10
}, this.month]
}
}]
}, {
el: {

4
src/widget/date/calendar/popup.calendar.date.js

@ -86,8 +86,8 @@ BI.DateCalendarPopup = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.calendar,
left: 0,
right: 10
left: 5,
right: 5
}, {
el: {
type: "bi.layout",

Loading…
Cancel
Save