Browse Source

auto upgrade version to 2.0.20201202120235

es6
data 4 years ago
parent
commit
bbb995f9a3
  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. 28
      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. 28
      dist/core.js
  13. 2
      dist/core.js.map
  14. 2
      dist/demo.css
  15. 28
      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. 28
      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. 20
      dist/fineui_without_jquery_polyfill.js
  26. 2
      dist/fineui_without_jquery_polyfill.js.map
  27. 2
      dist/font.css
  28. 2
      dist/resource.css
  29. 2
      dist/utils.js
  30. 2
      dist/utils.min.js
  31. 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

28
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-2 09:20:51 */
/*! time: 2020-12-2 12:00:30 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -88207,8 +88207,12 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
self.more.hideView();
break;
case 1:
self.setValue(self.customColorChooser.getValue());
self._dealStoreColors();
var color = self.customColorChooser.getValue();
// farbtastic选择器没有透明和自动选项,点击保存不应该设置透明
if (BI.isNotEmptyString(color)) {
self.setValue(color);
self._dealStoreColors();
}
self.more.hideView();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments);
break;
@ -91190,7 +91194,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
uniq[name] = true;
}
}
//添加访问器属性
//添加访问器属性
for (name in accessors) {
if (uniq[name]) {
continue;
@ -91937,10 +91941,11 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
}
var computedWatcherOptions = { lazy: true };
var REACTIVE = true;
function initState(vm, state) {
if (state) {
vm.$$state = observe(state).model;
vm.$$state = REACTIVE ? observe(state).model : state;
}
}
@ -92001,7 +92006,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
if (watcher.dirty) {
watcher.evaluate();
}
if (Dep.target) {
if (REACTIVE && Dep.target) {
watcher.depend();
}
return watcher.value;
@ -92213,7 +92218,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
this.init();
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
REACTIVE && initWatch(this, watch$$1);
initMethods(this, actions);
this.created && this.created();
this._destroyHandler = destroyHandler;
@ -92249,6 +92254,13 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
return Model;
}();
function config(options) {
options || (options = {});
if ("reactive" in options) {
REACTIVE = options.reactive;
}
}
function toJSON(model) {
var result = void 0;
if (_.isArray(model)) {
@ -92279,6 +92291,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.$$skipArray = $$skipArray;
exports.mixin = mixin;
exports.Model = Model;
exports.config = config;
exports.observerState = observerState;
exports.Observer = Observer;
exports.observe = observe;
@ -92294,7 +92307,6 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.__esModule = true;
});
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(52).setImmediate))
/***/ }),

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

28
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-2 09:20:51 */
/*! time: 2020-12-2 12:00:30 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -88207,8 +88207,12 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
self.more.hideView();
break;
case 1:
self.setValue(self.customColorChooser.getValue());
self._dealStoreColors();
var color = self.customColorChooser.getValue();
// farbtastic选择器没有透明和自动选项,点击保存不应该设置透明
if (BI.isNotEmptyString(color)) {
self.setValue(color);
self._dealStoreColors();
}
self.more.hideView();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments);
break;
@ -91028,7 +91032,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
uniq[name] = true;
}
}
//添加访问器属性
//添加访问器属性
for (name in accessors) {
if (uniq[name]) {
continue;
@ -91775,10 +91779,11 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
}
var computedWatcherOptions = { lazy: true };
var REACTIVE = true;
function initState(vm, state) {
if (state) {
vm.$$state = observe(state).model;
vm.$$state = REACTIVE ? observe(state).model : state;
}
}
@ -91839,7 +91844,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
if (watcher.dirty) {
watcher.evaluate();
}
if (Dep.target) {
if (REACTIVE && Dep.target) {
watcher.depend();
}
return watcher.value;
@ -92051,7 +92056,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
this.init();
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
REACTIVE && initWatch(this, watch$$1);
initMethods(this, actions);
this.created && this.created();
this._destroyHandler = destroyHandler;
@ -92087,6 +92092,13 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
return Model;
}();
function config(options) {
options || (options = {});
if ("reactive" in options) {
REACTIVE = options.reactive;
}
}
function toJSON(model) {
var result = void 0;
if (_.isArray(model)) {
@ -92117,6 +92129,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.$$skipArray = $$skipArray;
exports.mixin = mixin;
exports.Model = Model;
exports.config = config;
exports.observerState = observerState;
exports.Observer = Observer;
exports.observe = observe;
@ -92132,7 +92145,6 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.__esModule = true;
});
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(52).setImmediate))
/***/ }),

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

28
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-2 09:20:51 */
/*! time: 2020-12-2 12:00:30 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -88207,8 +88207,12 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
self.more.hideView();
break;
case 1:
self.setValue(self.customColorChooser.getValue());
self._dealStoreColors();
var color = self.customColorChooser.getValue();
// farbtastic选择器没有透明和自动选项,点击保存不应该设置透明
if (BI.isNotEmptyString(color)) {
self.setValue(color);
self._dealStoreColors();
}
self.more.hideView();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments);
break;
@ -91190,7 +91194,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
uniq[name] = true;
}
}
//添加访问器属性
//添加访问器属性
for (name in accessors) {
if (uniq[name]) {
continue;
@ -91937,10 +91941,11 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
}
var computedWatcherOptions = { lazy: true };
var REACTIVE = true;
function initState(vm, state) {
if (state) {
vm.$$state = observe(state).model;
vm.$$state = REACTIVE ? observe(state).model : state;
}
}
@ -92001,7 +92006,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
if (watcher.dirty) {
watcher.evaluate();
}
if (Dep.target) {
if (REACTIVE && Dep.target) {
watcher.depend();
}
return watcher.value;
@ -92213,7 +92218,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
this.init();
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
REACTIVE && initWatch(this, watch$$1);
initMethods(this, actions);
this.created && this.created();
this._destroyHandler = destroyHandler;
@ -92249,6 +92254,13 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
return Model;
}();
function config(options) {
options || (options = {});
if ("reactive" in options) {
REACTIVE = options.reactive;
}
}
function toJSON(model) {
var result = void 0;
if (_.isArray(model)) {
@ -92279,6 +92291,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.$$skipArray = $$skipArray;
exports.mixin = mixin;
exports.Model = Model;
exports.config = config;
exports.observerState = observerState;
exports.Observer = Observer;
exports.observe = observe;
@ -92294,7 +92307,6 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.__esModule = true;
});
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(52).setImmediate))
/***/ }),

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

28
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-2 09:20:51 */
/*! time: 2020-12-2 12:00:30 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -88207,8 +88207,12 @@ BI.HexColorChooserPopup = BI.inherit(BI.Widget, {
self.more.hideView();
break;
case 1:
self.setValue(self.customColorChooser.getValue());
self._dealStoreColors();
var color = self.customColorChooser.getValue();
// farbtastic选择器没有透明和自动选项,点击保存不应该设置透明
if (BI.isNotEmptyString(color)) {
self.setValue(color);
self._dealStoreColors();
}
self.more.hideView();
self.fireEvent(BI.ColorChooserPopup.EVENT_CHANGE, arguments);
break;
@ -91190,7 +91194,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
uniq[name] = true;
}
}
//添加访问器属性
//添加访问器属性
for (name in accessors) {
if (uniq[name]) {
continue;
@ -91937,10 +91941,11 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
}
var computedWatcherOptions = { lazy: true };
var REACTIVE = true;
function initState(vm, state) {
if (state) {
vm.$$state = observe(state).model;
vm.$$state = REACTIVE ? observe(state).model : state;
}
}
@ -92001,7 +92006,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
if (watcher.dirty) {
watcher.evaluate();
}
if (Dep.target) {
if (REACTIVE && Dep.target) {
watcher.depend();
}
return watcher.value;
@ -92213,7 +92218,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
this.init();
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
REACTIVE && initWatch(this, watch$$1);
initMethods(this, actions);
this.created && this.created();
this._destroyHandler = destroyHandler;
@ -92249,6 +92254,13 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
return Model;
}();
function config(options) {
options || (options = {});
if ("reactive" in options) {
REACTIVE = options.reactive;
}
}
function toJSON(model) {
var result = void 0;
if (_.isArray(model)) {
@ -92279,6 +92291,7 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.$$skipArray = $$skipArray;
exports.mixin = mixin;
exports.Model = Model;
exports.config = config;
exports.observerState = observerState;
exports.Observer = Observer;
exports.observe = observe;
@ -92294,7 +92307,6 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
exports.__esModule = true;
});
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(52).setImmediate))
/***/ }),

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

20
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-2 09:20:51 */
/*! time: 2020-12-2 12:00:30 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -67536,7 +67536,7 @@ exports.Model = Model;
uniq[name] = true;
}
}
//添加访问器属性
//添加访问器属性
for (name in accessors) {
if (uniq[name]) {
continue;
@ -68283,10 +68283,11 @@ exports.Model = Model;
}
var computedWatcherOptions = { lazy: true };
var REACTIVE = true;
function initState(vm, state) {
if (state) {
vm.$$state = observe(state).model;
vm.$$state = REACTIVE ? observe(state).model : state;
}
}
@ -68347,7 +68348,7 @@ exports.Model = Model;
if (watcher.dirty) {
watcher.evaluate();
}
if (Dep.target) {
if (REACTIVE && Dep.target) {
watcher.depend();
}
return watcher.value;
@ -68559,7 +68560,7 @@ exports.Model = Model;
this.init();
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
REACTIVE && initWatch(this, watch$$1);
initMethods(this, actions);
this.created && this.created();
this._destroyHandler = destroyHandler;
@ -68595,6 +68596,13 @@ exports.Model = Model;
return Model;
}();
function config(options) {
options || (options = {});
if ("reactive" in options) {
REACTIVE = options.reactive;
}
}
function toJSON(model) {
var result = void 0;
if (_.isArray(model)) {
@ -68625,6 +68633,7 @@ exports.Model = Model;
exports.$$skipArray = $$skipArray;
exports.mixin = mixin;
exports.Model = Model;
exports.config = config;
exports.observerState = observerState;
exports.Observer = Observer;
exports.observe = observe;
@ -68640,7 +68649,6 @@ exports.Model = Model;
exports.__esModule = true;
});
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(52).setImmediate))
/***/ }),

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/resource.css vendored

File diff suppressed because one or more lines are too long

2
dist/utils.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-12-2 09:20:51 */
/*! time: 2020-12-2 12:00:30 */
/******/ (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.20201202092211",
"version": "2.0.20201202120235",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save