Browse Source

Merge branch 'master' of ssh://code.fineres.com:7999/~claire.tang/fineui

es6
Tangjinxia 3 years ago
parent
commit
6e4160af54
  1. 2
      dist/2.0/fineui.css
  2. 4
      dist/2.0/fineui.ie.min.js
  3. 2
      dist/2.0/fineui.ie.min.js.map
  4. 33
      dist/2.0/fineui.js
  5. 2
      dist/2.0/fineui.js.map
  6. 2
      dist/2.0/fineui.min.css
  7. 4
      dist/2.0/fineui.min.js
  8. 2
      dist/2.0/fineui.min.js.map
  9. 2
      dist/2.0/fineui_without_normalize.css
  10. 2
      dist/2.0/fineui_without_normalize.min.css
  11. 2
      dist/core.css
  12. 33
      dist/core.js
  13. 2
      dist/core.js.map
  14. 2
      dist/demo.css
  15. 33
      dist/demo.js
  16. 2
      dist/demo.js.map
  17. 2
      dist/fineui.css
  18. 4
      dist/fineui.ie.min.js
  19. 2
      dist/fineui.ie.min.js.map
  20. 33
      dist/fineui.js
  21. 2
      dist/fineui.js.map
  22. 2
      dist/fineui.min.css
  23. 4
      dist/fineui.min.js
  24. 2
      dist/fineui.min.js.map
  25. 2
      dist/fineui.proxy.css
  26. 33
      dist/fineui.proxy.js
  27. 2
      dist/fineui.proxy.js.map
  28. 2
      dist/fineui.proxy.min.css
  29. 4
      dist/fineui.proxy.min.js
  30. 2
      dist/fineui.proxy.min.js.map
  31. 33
      dist/fineui_without_jquery_polyfill.js
  32. 2
      dist/fineui_without_jquery_polyfill.js.map
  33. 2
      dist/font.css
  34. 4
      dist/lib/base/single/label/icon.label.d.ts
  35. 3
      dist/lib/case/pager/pager.all.count.d.ts
  36. 2
      dist/resource.css
  37. 2
      dist/utils.js
  38. 2
      dist/utils.min.js
  39. 2
      package.json
  40. 5
      src/widget/multiselect/multiselect.loader.js
  41. 4
      src/widget/multiselect/multiselect.loader.nobar.js
  42. 4
      src/widget/searchmultitextvaluecombo/multitextvalue.loader.search.js
  43. 5
      typescript/base/single/label/icon.label.ts

2
dist/2.0/fineui.css vendored

File diff suppressed because one or more lines are too long

4
dist/2.0/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.ie.min.js.map vendored

File diff suppressed because one or more lines are too long

33
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-8 2:20:16 PM */
/*! time: 2021-6-10 11:00:18 AM */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -40963,7 +40963,8 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
curr: 1, // 初始化当前页, pages为数字时可用,
count: 1, // 总行数
rowInfoObject: null,
showRowCount: true
showRowCount: true,
showRowInfo: true,
});
},
_init: function () {
@ -41058,8 +41059,6 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
});
},
alwaysShowPager: true,
_getPagerIconCls: function () {
var o = this.options;
switch (o.pagerDirection) {
@ -41122,6 +41121,11 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
this.setPagerVisible(v > 1);
},
setShowRowInfo: function (b) {
this.options.showRowInfo = b;
this.rowCountObject.setVisible(b);
},
setValue: function (v) {
this.pager.setValue(v);
},
@ -41155,16 +41159,16 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
return this.pager.hasNext();
},
isShowPager: function () {
return this.options.showRowInfo || this.options.pages > 1;
},
setPagerVisible: function (b) {
this.editor.setVisible(b);
this.allPages.setVisible(b);
this.pager.setVisible(b);
},
setRowCountVisible: function (b) {
this.rowCountObject.setVisible(b);
},
populate: function () {
this.pager.populate();
this.setPagerVisible(this.options.pages > 1);
@ -55513,7 +55517,10 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
// arguments.length为0时对arguments[0]赋值后不同环境对其length的取值不同(nashorn)
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -55696,7 +55703,9 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -62292,7 +62301,9 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

2
dist/2.0/fineui.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/2.0/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui.min.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui_without_normalize.css vendored

File diff suppressed because one or more lines are too long

2
dist/2.0/fineui_without_normalize.min.css vendored

File diff suppressed because one or more lines are too long

2
dist/core.css vendored

File diff suppressed because one or more lines are too long

33
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-8 2:20:16 PM */
/*! time: 2021-6-10 11:00:18 AM */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -40963,7 +40963,8 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
curr: 1, // 初始化当前页, pages为数字时可用,
count: 1, // 总行数
rowInfoObject: null,
showRowCount: true
showRowCount: true,
showRowInfo: true,
});
},
_init: function () {
@ -41058,8 +41059,6 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
});
},
alwaysShowPager: true,
_getPagerIconCls: function () {
var o = this.options;
switch (o.pagerDirection) {
@ -41122,6 +41121,11 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
this.setPagerVisible(v > 1);
},
setShowRowInfo: function (b) {
this.options.showRowInfo = b;
this.rowCountObject.setVisible(b);
},
setValue: function (v) {
this.pager.setValue(v);
},
@ -41155,16 +41159,16 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
return this.pager.hasNext();
},
isShowPager: function () {
return this.options.showRowInfo || this.options.pages > 1;
},
setPagerVisible: function (b) {
this.editor.setVisible(b);
this.allPages.setVisible(b);
this.pager.setVisible(b);
},
setRowCountVisible: function (b) {
this.rowCountObject.setVisible(b);
},
populate: function () {
this.pager.populate();
this.setPagerVisible(this.options.pages > 1);
@ -55513,7 +55517,10 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
// arguments.length为0时对arguments[0]赋值后不同环境对其length的取值不同(nashorn)
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -55696,7 +55703,9 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -62292,7 +62301,9 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

2
dist/core.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/demo.css vendored

File diff suppressed because one or more lines are too long

33
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-8 2:20:16 PM */
/*! time: 2021-6-10 11:00:18 AM */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -40963,7 +40963,8 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
curr: 1, // 初始化当前页, pages为数字时可用,
count: 1, // 总行数
rowInfoObject: null,
showRowCount: true
showRowCount: true,
showRowInfo: true,
});
},
_init: function () {
@ -41058,8 +41059,6 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
});
},
alwaysShowPager: true,
_getPagerIconCls: function () {
var o = this.options;
switch (o.pagerDirection) {
@ -41122,6 +41121,11 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
this.setPagerVisible(v > 1);
},
setShowRowInfo: function (b) {
this.options.showRowInfo = b;
this.rowCountObject.setVisible(b);
},
setValue: function (v) {
this.pager.setValue(v);
},
@ -41155,16 +41159,16 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
return this.pager.hasNext();
},
isShowPager: function () {
return this.options.showRowInfo || this.options.pages > 1;
},
setPagerVisible: function (b) {
this.editor.setVisible(b);
this.allPages.setVisible(b);
this.pager.setVisible(b);
},
setRowCountVisible: function (b) {
this.rowCountObject.setVisible(b);
},
populate: function () {
this.pager.populate();
this.setPagerVisible(this.options.pages > 1);
@ -55513,7 +55517,10 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
// arguments.length为0时对arguments[0]赋值后不同环境对其length的取值不同(nashorn)
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -55696,7 +55703,9 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -62292,7 +62301,9 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.ie.min.js.map vendored

File diff suppressed because one or more lines are too long

33
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-8 2:20:16 PM */
/*! time: 2021-6-10 11:00:18 AM */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -40963,7 +40963,8 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
curr: 1, // 初始化当前页, pages为数字时可用,
count: 1, // 总行数
rowInfoObject: null,
showRowCount: true
showRowCount: true,
showRowInfo: true,
});
},
_init: function () {
@ -41058,8 +41059,6 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
});
},
alwaysShowPager: true,
_getPagerIconCls: function () {
var o = this.options;
switch (o.pagerDirection) {
@ -41122,6 +41121,11 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
this.setPagerVisible(v > 1);
},
setShowRowInfo: function (b) {
this.options.showRowInfo = b;
this.rowCountObject.setVisible(b);
},
setValue: function (v) {
this.pager.setValue(v);
},
@ -41155,16 +41159,16 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
return this.pager.hasNext();
},
isShowPager: function () {
return this.options.showRowInfo || this.options.pages > 1;
},
setPagerVisible: function (b) {
this.editor.setVisible(b);
this.allPages.setVisible(b);
this.pager.setVisible(b);
},
setRowCountVisible: function (b) {
this.rowCountObject.setVisible(b);
},
populate: function () {
this.pager.populate();
this.setPagerVisible(this.options.pages > 1);
@ -55513,7 +55517,10 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
// arguments.length为0时对arguments[0]赋值后不同环境对其length的取值不同(nashorn)
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -55696,7 +55703,9 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -62292,7 +62301,9 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

2
dist/fineui.js.map vendored

File diff suppressed because one or more lines are too long

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.min.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.proxy.css vendored

File diff suppressed because one or more lines are too long

33
dist/fineui.proxy.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-8 2:20:16 PM */
/*! time: 2021-6-10 11:00:18 AM */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -38424,7 +38424,8 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
curr: 1, // 初始化当前页, pages为数字时可用,
count: 1, // 总行数
rowInfoObject: null,
showRowCount: true
showRowCount: true,
showRowInfo: true,
});
},
_init: function () {
@ -38519,8 +38520,6 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
});
},
alwaysShowPager: true,
_getPagerIconCls: function () {
var o = this.options;
switch (o.pagerDirection) {
@ -38583,6 +38582,11 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
this.setPagerVisible(v > 1);
},
setShowRowInfo: function (b) {
this.options.showRowInfo = b;
this.rowCountObject.setVisible(b);
},
setValue: function (v) {
this.pager.setValue(v);
},
@ -38616,16 +38620,16 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
return this.pager.hasNext();
},
isShowPager: function () {
return this.options.showRowInfo || this.options.pages > 1;
},
setPagerVisible: function (b) {
this.editor.setVisible(b);
this.allPages.setVisible(b);
this.pager.setVisible(b);
},
setRowCountVisible: function (b) {
this.rowCountObject.setVisible(b);
},
populate: function () {
this.pager.populate();
this.setPagerVisible(this.options.pages > 1);
@ -52974,7 +52978,10 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
// arguments.length为0时对arguments[0]赋值后不同环境对其length的取值不同(nashorn)
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -53157,7 +53164,9 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -59753,7 +59762,9 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

2
dist/fineui.proxy.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.proxy.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/fineui.proxy.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.proxy.min.js.map vendored

File diff suppressed because one or more lines are too long

33
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-8 2:20:16 PM */
/*! time: 2021-6-10 11:00:18 AM */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -38034,7 +38034,8 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
curr: 1, // 初始化当前页, pages为数字时可用,
count: 1, // 总行数
rowInfoObject: null,
showRowCount: true
showRowCount: true,
showRowInfo: true,
});
},
_init: function () {
@ -38129,8 +38130,6 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
});
},
alwaysShowPager: true,
_getPagerIconCls: function () {
var o = this.options;
switch (o.pagerDirection) {
@ -38193,6 +38192,11 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
this.setPagerVisible(v > 1);
},
setShowRowInfo: function (b) {
this.options.showRowInfo = b;
this.rowCountObject.setVisible(b);
},
setValue: function (v) {
this.pager.setValue(v);
},
@ -38226,16 +38230,16 @@ BI.AllCountPager = BI.inherit(BI.Widget, {
return this.pager.hasNext();
},
isShowPager: function () {
return this.options.showRowInfo || this.options.pages > 1;
},
setPagerVisible: function (b) {
this.editor.setVisible(b);
this.allPages.setVisible(b);
this.pager.setVisible(b);
},
setRowCountVisible: function (b) {
this.rowCountObject.setVisible(b);
},
populate: function () {
this.pager.populate();
this.setPagerVisible(this.options.pages > 1);
@ -52584,7 +52588,10 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
// arguments.length为0时对arguments[0]赋值后不同环境对其length的取值不同(nashorn)
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -52767,7 +52774,9 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},
@ -59363,7 +59372,9 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

2
dist/fineui_without_jquery_polyfill.js.map vendored

File diff suppressed because one or more lines are too long

2
dist/font.css vendored

File diff suppressed because one or more lines are too long

4
dist/lib/base/single/label/icon.label.d.ts vendored

@ -1,4 +1,8 @@
import { Single } from '../single';
export declare class IconLabel extends Single {
static xtype: string;
props: {
iconWidth: number;
iconHeight: number;
} & Single['props'];
}

3
dist/lib/case/pager/pager.all.count.d.ts vendored

@ -11,6 +11,7 @@ export declare class AllCountPager extends Widget {
hasPrev(): boolean;
hasNext(): boolean;
setPagerVisible(v: boolean): void;
setRowCountVisible(v: boolean): void;
setShowRowInfo(v: boolean): void;
isShowPager(): boolean;
populate(): void;
}

2
dist/resource.css vendored

File diff suppressed because one or more lines are too long

2
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-8 2:20:16 PM */
/*! time: 2021-6-10 11:00:18 AM */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

2
package.json

@ -1,6 +1,6 @@
{
"name": "fineui",
"version": "2.0.20210608142119",
"version": "2.0.20210610110230",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

5
src/widget/multiselect/multiselect.loader.js

@ -172,7 +172,10 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
// arguments.length为0时对arguments[0]赋值后不同环境对其length的取值不同(nashorn)
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

4
src/widget/multiselect/multiselect.loader.nobar.js

@ -161,7 +161,9 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

4
src/widget/searchmultitextvaluecombo/multitextvalue.loader.search.js

@ -158,7 +158,9 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
if (BI.isNotNull(items)) {
arguments[0] = this._createItems(items);
}
this.button_group.populate.apply(this.button_group, arguments);
},

5
typescript/base/single/label/icon.label.ts

@ -2,4 +2,9 @@ import { Single } from '../single';
export declare class IconLabel extends Single {
static xtype: string;
props: {
iconWidth: number;
iconHeight: number;
} & Single['props'];
}

Loading…
Cancel
Save