Browse Source

auto upgrade version to 2.0.20200915150413

es6
data 4 years ago
parent
commit
555000397e
  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. 35
      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/bundle.min.css
  12. 4
      dist/bundle.min.js
  13. 2
      dist/bundle.min.js.map
  14. 2
      dist/demo.css
  15. 35
      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. 35
      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. 35
      dist/fineui_without_jquery_polyfill.js
  26. 2
      dist/fineui_without_jquery_polyfill.js.map
  27. 2
      dist/font.css
  28. 2
      dist/utils.js
  29. 2
      dist/utils.min.js
  30. 2
      package.json

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

35
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-15 09:20:14 */
/*! time: 2020-9-15 15:02:15 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -54485,7 +54485,8 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24,
});
},
_init: function () {
@ -54554,6 +54555,9 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight,
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -54648,7 +54652,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -54659,7 +54663,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -54828,7 +54832,8 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertNoBarList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -54903,6 +54908,9 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -54999,7 +55007,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -55010,7 +55018,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -55176,14 +55184,12 @@ BI.shortcut("bi.multi_select_insert_no_bar_list", BI.MultiSelectInsertNoBarList)
* Created by zcf_1 on 2017/5/2.
*/
BI.MultiSelectList = BI.inherit(BI.Widget, {
_constant: {
EDITOR_HEIGHT: 24
},
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -55236,6 +55242,9 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -55325,7 +55334,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: this._constant.EDITOR_HEIGHT
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -55336,7 +55345,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: this._constant.EDITOR_HEIGHT,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0

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/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/bundle.min.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

35
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-15 09:20:14 */
/*! time: 2020-9-15 15:02:15 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -54485,7 +54485,8 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24,
});
},
_init: function () {
@ -54554,6 +54555,9 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight,
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -54648,7 +54652,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -54659,7 +54663,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -54828,7 +54832,8 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertNoBarList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -54903,6 +54908,9 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -54999,7 +55007,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -55010,7 +55018,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -55176,14 +55184,12 @@ BI.shortcut("bi.multi_select_insert_no_bar_list", BI.MultiSelectInsertNoBarList)
* Created by zcf_1 on 2017/5/2.
*/
BI.MultiSelectList = BI.inherit(BI.Widget, {
_constant: {
EDITOR_HEIGHT: 24
},
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -55236,6 +55242,9 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -55325,7 +55334,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: this._constant.EDITOR_HEIGHT
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -55336,7 +55345,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: this._constant.EDITOR_HEIGHT,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0

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

35
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-15 09:20:14 */
/*! time: 2020-9-15 15:02:15 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -54485,7 +54485,8 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24,
});
},
_init: function () {
@ -54554,6 +54555,9 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight,
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -54648,7 +54652,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -54659,7 +54663,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -54828,7 +54832,8 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertNoBarList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -54903,6 +54908,9 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -54999,7 +55007,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -55010,7 +55018,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -55176,14 +55184,12 @@ BI.shortcut("bi.multi_select_insert_no_bar_list", BI.MultiSelectInsertNoBarList)
* Created by zcf_1 on 2017/5/2.
*/
BI.MultiSelectList = BI.inherit(BI.Widget, {
_constant: {
EDITOR_HEIGHT: 24
},
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -55236,6 +55242,9 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -55325,7 +55334,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: this._constant.EDITOR_HEIGHT
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -55336,7 +55345,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: this._constant.EDITOR_HEIGHT,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0

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

35
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-15 09:20:14 */
/*! time: 2020-9-15 15:02:15 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -50512,7 +50512,8 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24,
});
},
_init: function () {
@ -50581,6 +50582,9 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight,
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -50675,7 +50679,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -50686,7 +50690,7 @@ BI.MultiSelectInsertList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -50855,7 +50859,8 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
return BI.extend(BI.MultiSelectInsertNoBarList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-insert-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -50930,6 +50935,9 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -51026,7 +51034,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.trigger,
height: 24
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -51037,7 +51045,7 @@ BI.MultiSelectInsertNoBarList = BI.inherit(BI.Single, {
element: this,
items: [{
el: this.searcherPane,
top: 30,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0
@ -51203,14 +51211,12 @@ BI.shortcut("bi.multi_select_insert_no_bar_list", BI.MultiSelectInsertNoBarList)
* Created by zcf_1 on 2017/5/2.
*/
BI.MultiSelectList = BI.inherit(BI.Widget, {
_constant: {
EDITOR_HEIGHT: 24
},
_defaultConfig: function () {
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-multi-select-list",
itemsCreator: BI.emptyFn,
valueFormatter: BI.emptyFn
valueFormatter: BI.emptyFn,
searcherHeight: 24
});
},
_init: function () {
@ -51263,6 +51269,9 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
this.trigger = BI.createWidget({
type: "bi.searcher",
el: {
height: o.searcherHeight
},
allowSearchBlank: false,
isAutoSearch: false,
isAutoSync: false,
@ -51352,7 +51361,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.trigger,
height: this._constant.EDITOR_HEIGHT
height: o.searcherHeight
}, {
el: this.adapter,
height: "fill"
@ -51363,7 +51372,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, {
element: this,
items: [{
el: this.searcherPane,
top: this._constant.EDITOR_HEIGHT,
top: o.searcherHeight,
bottom: 0,
left: 0,
right: 0

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

2
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-9-15 09:20:14 */
/*! time: 2020-9-15 15:02:15 */
/******/ (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.20200915092120",
"version": "2.0.20200915150413",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save