Browse Source

Merge remote-tracking branch 'origin/master'

es6
guy 4 years ago
parent
commit
b65546cd1e
  1. 2
      dist/2.0/fineui.css
  2. 2
      dist/2.0/fineui.ie.min.js
  3. 26
      dist/2.0/fineui.js
  4. 2
      dist/2.0/fineui.js.map
  5. 2
      dist/2.0/fineui.min.css
  6. 4
      dist/2.0/fineui.min.js
  7. 2
      dist/2.0/fineui.min.js.map
  8. 2
      dist/2.0/fineui_without_normalize.css
  9. 2
      dist/2.0/fineui_without_normalize.min.css
  10. 2
      dist/bundle.min.css
  11. 4
      dist/bundle.min.js
  12. 2
      dist/bundle.min.js.map
  13. 2
      dist/demo.css
  14. 26
      dist/demo.js
  15. 2
      dist/demo.js.map
  16. 2
      dist/fineui.css
  17. 2
      dist/fineui.ie.min.js
  18. 26
      dist/fineui.js
  19. 2
      dist/fineui.js.map
  20. 2
      dist/fineui.min.css
  21. 4
      dist/fineui.min.js
  22. 2
      dist/fineui.min.js.map
  23. 26
      dist/fineui_without_jquery_polyfill.js
  24. 2
      dist/fineui_without_jquery_polyfill.js.map
  25. 2
      dist/font.css
  26. 2
      dist/utils.js
  27. 2
      dist/utils.min.js
  28. 2
      package.json

2
dist/2.0/fineui.css vendored

File diff suppressed because one or more lines are too long

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

File diff suppressed because one or more lines are too long

26
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-10-12 16:30:22 */
/*! time: 2020-10-12 18:30:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -90748,6 +90748,25 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
vm.$$context = createViewModel$1({}, props);
}
function getInjectValue(vm, key) {
var p = vm._parent;
while (p) {
if (p.$$context && key in p.$$context) {
return p.$$context[key];
}
p = p._parent;
}
}
function getInjectValues(vm) {
var inject = vm.inject || [];
var result = {};
_.each(inject, function (key) {
result[key] = getInjectValue(vm, key);
});
return result;
}
var Model = function () {
function Model() {
_classCallCheck(this, Model);
@ -90766,17 +90785,18 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
var state = _.isFunction(this.state) ? this.state() : this.state;
var computed = this.computed;
var context = this.context;
var inject = this.inject;
var childContext = this.childContext;
var watch$$1 = this.watch;
var actions = this.actions;
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(context || []);
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(inject || []).concat(context || []);
var mixins = this.mixins;
defineProps(this, keys);
childContext && defineContext(this, childContext);
this.$$model && (this.model.__ob__ = this.$$model.__ob__);
initMixins(this, mixins);
this.init();
initState(this, state);
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
initMethods(this, actions);

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

26
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-10-12 16:30:22 */
/*! time: 2020-10-12 18:30:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -90748,6 +90748,25 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
vm.$$context = createViewModel$1({}, props);
}
function getInjectValue(vm, key) {
var p = vm._parent;
while (p) {
if (p.$$context && key in p.$$context) {
return p.$$context[key];
}
p = p._parent;
}
}
function getInjectValues(vm) {
var inject = vm.inject || [];
var result = {};
_.each(inject, function (key) {
result[key] = getInjectValue(vm, key);
});
return result;
}
var Model = function () {
function Model() {
_classCallCheck(this, Model);
@ -90766,17 +90785,18 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
var state = _.isFunction(this.state) ? this.state() : this.state;
var computed = this.computed;
var context = this.context;
var inject = this.inject;
var childContext = this.childContext;
var watch$$1 = this.watch;
var actions = this.actions;
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(context || []);
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(inject || []).concat(context || []);
var mixins = this.mixins;
defineProps(this, keys);
childContext && defineContext(this, childContext);
this.$$model && (this.model.__ob__ = this.$$model.__ob__);
initMixins(this, mixins);
this.init();
initState(this, state);
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
initMethods(this, actions);

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

2
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

26
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-10-12 16:30:22 */
/*! time: 2020-10-12 18:30:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -90743,6 +90743,25 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
vm.$$context = createViewModel$1({}, props);
}
function getInjectValue(vm, key) {
var p = vm._parent;
while (p) {
if (p.$$context && key in p.$$context) {
return p.$$context[key];
}
p = p._parent;
}
}
function getInjectValues(vm) {
var inject = vm.inject || [];
var result = {};
_.each(inject, function (key) {
result[key] = getInjectValue(vm, key);
});
return result;
}
var Model = function () {
function Model() {
_classCallCheck(this, Model);
@ -90761,17 +90780,18 @@ BI.shortcut("bi.simple_tree", BI.SimpleTreeView);
var state = _.isFunction(this.state) ? this.state() : this.state;
var computed = this.computed;
var context = this.context;
var inject = this.inject;
var childContext = this.childContext;
var watch$$1 = this.watch;
var actions = this.actions;
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(context || []);
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(inject || []).concat(context || []);
var mixins = this.mixins;
defineProps(this, keys);
childContext && defineContext(this, childContext);
this.$$model && (this.model.__ob__ = this.$$model.__ob__);
initMixins(this, mixins);
this.init();
initState(this, state);
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
initMethods(this, actions);

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

26
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2020-10-12 16:30:22 */
/*! time: 2020-10-12 18:30:19 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -67941,6 +67941,25 @@ exports.Model = Model;
vm.$$context = createViewModel$1({}, props);
}
function getInjectValue(vm, key) {
var p = vm._parent;
while (p) {
if (p.$$context && key in p.$$context) {
return p.$$context[key];
}
p = p._parent;
}
}
function getInjectValues(vm) {
var inject = vm.inject || [];
var result = {};
_.each(inject, function (key) {
result[key] = getInjectValue(vm, key);
});
return result;
}
var Model = function () {
function Model() {
_classCallCheck(this, Model);
@ -67959,17 +67978,18 @@ exports.Model = Model;
var state = _.isFunction(this.state) ? this.state() : this.state;
var computed = this.computed;
var context = this.context;
var inject = this.inject;
var childContext = this.childContext;
var watch$$1 = this.watch;
var actions = this.actions;
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(context || []);
var keys = _.keys(this.$$model).concat(_.keys(state)).concat(_.keys(computed)).concat(inject || []).concat(context || []);
var mixins = this.mixins;
defineProps(this, keys);
childContext && defineContext(this, childContext);
this.$$model && (this.model.__ob__ = this.$$model.__ob__);
initMixins(this, mixins);
this.init();
initState(this, state);
initState(this, _.extend(getInjectValues(this), state));
initComputed(this, computed);
initWatch(this, watch$$1);
initMethods(this, actions);

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-10-12 16:30:22 */
/*! time: 2020-10-12 18:30:19 */
/******/ (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.20201012163249",
"version": "2.0.20201012183231",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save