Browse Source

Merge pull request #812 in VISUAL/fineui from ~ZHENFEI.LI/fineui:master to master

* commit 'b9ec59bfd5c00dd80b8ee99a378a9ebec33901fb':
  BI-38400 分页组件,布局调整,为了使总页数的宽度自适应
es6
Zhenfei.Li 6 years ago
parent
commit
70c4b2cd8c
  1. 8
      dist/bundle.ie.js
  2. 4
      dist/bundle.ie.min.js
  3. 8
      dist/bundle.js
  4. 2
      dist/bundle.min.css
  5. 4
      dist/bundle.min.js
  6. 8
      dist/case.js
  7. 25
      dist/demo.js
  8. 8
      dist/fineui.ie.js
  9. 4
      dist/fineui.ie.min.js
  10. 8
      dist/fineui.js
  11. 2
      dist/fineui.min.css
  12. 4
      dist/fineui.min.js
  13. 8
      dist/fineui_without_jquery_polyfill.js
  14. 2
      dist/utils.min.js
  15. 8
      src/case/pager/pager.all.count.js

8
dist/bundle.ie.js vendored

@ -57323,10 +57323,12 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
}]
});
BI.createWidget({
type: "bi.center_adapt",
type: "bi.left_right_vertical_adapt",
element: this,
columnSize: ["", 40, 20, 58],
items: [count, this.editor, this.allPages, this.pager]
items: {
left: [count],
right: [this.editor, this.allPages, this.pager]
}
});
},

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

8
dist/bundle.js vendored

@ -57727,10 +57727,12 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
}]
});
BI.createWidget({
type: "bi.center_adapt",
type: "bi.left_right_vertical_adapt",
element: this,
columnSize: ["", 40, 20, 58],
items: [count, this.editor, this.allPages, this.pager]
items: {
left: [count],
right: [this.editor, this.allPages, this.pager]
}
});
},

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

8
dist/case.js vendored

@ -8123,10 +8123,12 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
}]
});
BI.createWidget({
type: "bi.center_adapt",
type: "bi.left_right_vertical_adapt",
element: this,
columnSize: ["", 40, 20, 58],
items: [count, this.editor, this.allPages, this.pager]
items: {
left: [count],
right: [this.editor, this.allPages, this.pager]
}
});
},

25
dist/demo.js vendored

@ -6158,30 +6158,7 @@ Demo.HtapeLayout = BI.inherit(BI.Widget, {
};
}
});
BI.shortcut("demo.htape", Demo.HtapeLayout);Demo.InlineVerticalLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-absolute"
},
render: function () {
return {
type: "bi.inline_vertical_adapt",
items: [{
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 200
}, {
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 100
}]
};
}
});
BI.shortcut("demo.inline_vertical", Demo.InlineVerticalLayout);/**
BI.shortcut("demo.htape", Demo.HtapeLayout);/**
* Created by User on 2017/3/22.
*/
Demo.LeftRightVerticalAdaptLayout = BI.inherit(BI.Widget, {

8
dist/fineui.ie.js vendored

@ -57568,10 +57568,12 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
}]
});
BI.createWidget({
type: "bi.center_adapt",
type: "bi.left_right_vertical_adapt",
element: this,
columnSize: ["", 40, 20, 58],
items: [count, this.editor, this.allPages, this.pager]
items: {
left: [count],
right: [this.editor, this.allPages, this.pager]
}
});
},

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

8
dist/fineui.js vendored

@ -57972,10 +57972,12 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
}]
});
BI.createWidget({
type: "bi.center_adapt",
type: "bi.left_right_vertical_adapt",
element: this,
columnSize: ["", 40, 20, 58],
items: [count, this.editor, this.allPages, this.pager]
items: {
left: [count],
right: [this.editor, this.allPages, this.pager]
}
});
},

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

8
dist/fineui_without_jquery_polyfill.js vendored

@ -40985,10 +40985,12 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
}]
});
BI.createWidget({
type: "bi.center_adapt",
type: "bi.left_right_vertical_adapt",
element: this,
columnSize: ["", 40, 20, 58],
items: [count, this.editor, this.allPages, this.pager]
items: {
left: [count],
right: [this.editor, this.allPages, this.pager]
}
});
},

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

8
src/case/pager/pager.all.count.js

@ -115,10 +115,12 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
}]
});
BI.createWidget({
type: "bi.center_adapt",
type: "bi.left_right_vertical_adapt",
element: this,
columnSize: ["", 40, 20, 58],
items: [count, this.editor, this.allPages, this.pager]
items: {
left: [count],
right: [this.editor, this.allPages, this.pager]
}
});
},

Loading…
Cancel
Save