Browse Source

auto upgrade version to 2.0.20210630090225

es6
data 3 years ago
parent
commit
ae4c829cc7
  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. 34
      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. 34
      dist/core.js
  13. 2
      dist/core.js.map
  14. 2
      dist/demo.css
  15. 34
      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. 34
      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. 34
      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. 16
      dist/fineui_without_jquery_polyfill.js
  32. 2
      dist/fineui_without_jquery_polyfill.js.map
  33. 2
      dist/font.css
  34. 2
      dist/resource.css
  35. 2
      dist/utils.js
  36. 2
      dist/utils.min.js
  37. 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

34
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-28 10:56:23 */ /*! time: 2021-6-30 9:00:52 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -17569,8 +17569,18 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, {
_addElement: function (i, item) { _addElement: function (i, item) {
var o = this.options; var o = this.options;
var td; var td, width = "";
var width = o.columnSize[i] === "" ? "" : (o.columnSize[i] < 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap + o.columnSize[i]); var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width >= 1 ? null : item.width;
if (o.columnSize.length > 0) {
if (item.width >= 1 && o.columnSize[i] >= 1 && o.columnSize[i] !== item.width) {
columnSize = null;
}
}
if (columnSize > 0) {
width = columnSize < 1 ?
((columnSize * 100).toFixed(1) + "%")
: (columnSize + (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap);
}
if (!this.hasWidget(this._getChildName(i))) { if (!this.hasWidget(this._getChildName(i))) {
var w = BI._lazyCreateWidget(item); var w = BI._lazyCreateWidget(item);
w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"}); w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"});
@ -93758,7 +93768,6 @@ _.extend(BI, {
var $router, cbs = []; var $router, cbs = [];
var RouterWidget = BI.inherit(BI.Widget, { var RouterWidget = BI.inherit(BI.Widget, {
init: function () { init: function () {
this._routerRoot = this;
this._router = $router = new VueRouter({ this._router = $router = new VueRouter({
routes: this.options.routes routes: this.options.routes
}); });
@ -93771,14 +93780,17 @@ _.extend(BI, {
BI.shortcut("bi.router", RouterWidget); BI.shortcut("bi.router", RouterWidget);
var RouterView = BI.inherit(BI.Widget, { var RouterView = BI.inherit(BI.Widget, {
props: {
deps: 0
},
created: function () { created: function () {
var self = this; var self = this, o = this.options;
cbs.push(function () { cbs.push(this._callbackListener = function () {
self.tab.setSelect($router.history.current.matched[0].path || "/"); self.tab.setSelect($router.history.current.matched[o.deps].path || "/");
}); });
}, },
render: function () { render: function () {
var self = this; var self = this, o = this.options;
return { return {
type: "bi.tab", type: "bi.tab",
ref: function (_ref) { ref: function (_ref) {
@ -93790,9 +93802,12 @@ _.extend(BI, {
}, },
showIndex: false, showIndex: false,
cardCreator: function (v) { cardCreator: function (v) {
return $router.history.current.matched[0].components.default; return $router.history.current.matched[o.deps].components.default;
} }
}; };
},
destroyed: function () {
BI.remove(cbs, this._callbackListener);
} }
}); });
BI.shortcut("bi.router_view", RouterView); BI.shortcut("bi.router_view", RouterView);
@ -93801,6 +93816,7 @@ _.extend(BI, {
}))); })));
/***/ }), /***/ }),
/* 864 */ /* 864 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

34
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-28 10:56:23 */ /*! time: 2021-6-30 9:00:52 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -17569,8 +17569,18 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, {
_addElement: function (i, item) { _addElement: function (i, item) {
var o = this.options; var o = this.options;
var td; var td, width = "";
var width = o.columnSize[i] === "" ? "" : (o.columnSize[i] < 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap + o.columnSize[i]); var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width >= 1 ? null : item.width;
if (o.columnSize.length > 0) {
if (item.width >= 1 && o.columnSize[i] >= 1 && o.columnSize[i] !== item.width) {
columnSize = null;
}
}
if (columnSize > 0) {
width = columnSize < 1 ?
((columnSize * 100).toFixed(1) + "%")
: (columnSize + (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap);
}
if (!this.hasWidget(this._getChildName(i))) { if (!this.hasWidget(this._getChildName(i))) {
var w = BI._lazyCreateWidget(item); var w = BI._lazyCreateWidget(item);
w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"}); w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"});
@ -93758,7 +93768,6 @@ _.extend(BI, {
var $router, cbs = []; var $router, cbs = [];
var RouterWidget = BI.inherit(BI.Widget, { var RouterWidget = BI.inherit(BI.Widget, {
init: function () { init: function () {
this._routerRoot = this;
this._router = $router = new VueRouter({ this._router = $router = new VueRouter({
routes: this.options.routes routes: this.options.routes
}); });
@ -93771,14 +93780,17 @@ _.extend(BI, {
BI.shortcut("bi.router", RouterWidget); BI.shortcut("bi.router", RouterWidget);
var RouterView = BI.inherit(BI.Widget, { var RouterView = BI.inherit(BI.Widget, {
props: {
deps: 0
},
created: function () { created: function () {
var self = this; var self = this, o = this.options;
cbs.push(function () { cbs.push(this._callbackListener = function () {
self.tab.setSelect($router.history.current.matched[0].path || "/"); self.tab.setSelect($router.history.current.matched[o.deps].path || "/");
}); });
}, },
render: function () { render: function () {
var self = this; var self = this, o = this.options;
return { return {
type: "bi.tab", type: "bi.tab",
ref: function (_ref) { ref: function (_ref) {
@ -93790,9 +93802,12 @@ _.extend(BI, {
}, },
showIndex: false, showIndex: false,
cardCreator: function (v) { cardCreator: function (v) {
return $router.history.current.matched[0].components.default; return $router.history.current.matched[o.deps].components.default;
} }
}; };
},
destroyed: function () {
BI.remove(cbs, this._callbackListener);
} }
}); });
BI.shortcut("bi.router_view", RouterView); BI.shortcut("bi.router_view", RouterView);
@ -93801,6 +93816,7 @@ _.extend(BI, {
}))); })));
/***/ }), /***/ }),
/* 864 */ /* 864 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

34
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-28 10:56:23 */ /*! time: 2021-6-30 9:00:52 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -17569,8 +17569,18 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, {
_addElement: function (i, item) { _addElement: function (i, item) {
var o = this.options; var o = this.options;
var td; var td, width = "";
var width = o.columnSize[i] === "" ? "" : (o.columnSize[i] < 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap + o.columnSize[i]); var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width >= 1 ? null : item.width;
if (o.columnSize.length > 0) {
if (item.width >= 1 && o.columnSize[i] >= 1 && o.columnSize[i] !== item.width) {
columnSize = null;
}
}
if (columnSize > 0) {
width = columnSize < 1 ?
((columnSize * 100).toFixed(1) + "%")
: (columnSize + (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap);
}
if (!this.hasWidget(this._getChildName(i))) { if (!this.hasWidget(this._getChildName(i))) {
var w = BI._lazyCreateWidget(item); var w = BI._lazyCreateWidget(item);
w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"}); w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"});
@ -93758,7 +93768,6 @@ _.extend(BI, {
var $router, cbs = []; var $router, cbs = [];
var RouterWidget = BI.inherit(BI.Widget, { var RouterWidget = BI.inherit(BI.Widget, {
init: function () { init: function () {
this._routerRoot = this;
this._router = $router = new VueRouter({ this._router = $router = new VueRouter({
routes: this.options.routes routes: this.options.routes
}); });
@ -93771,14 +93780,17 @@ _.extend(BI, {
BI.shortcut("bi.router", RouterWidget); BI.shortcut("bi.router", RouterWidget);
var RouterView = BI.inherit(BI.Widget, { var RouterView = BI.inherit(BI.Widget, {
props: {
deps: 0
},
created: function () { created: function () {
var self = this; var self = this, o = this.options;
cbs.push(function () { cbs.push(this._callbackListener = function () {
self.tab.setSelect($router.history.current.matched[0].path || "/"); self.tab.setSelect($router.history.current.matched[o.deps].path || "/");
}); });
}, },
render: function () { render: function () {
var self = this; var self = this, o = this.options;
return { return {
type: "bi.tab", type: "bi.tab",
ref: function (_ref) { ref: function (_ref) {
@ -93790,9 +93802,12 @@ _.extend(BI, {
}, },
showIndex: false, showIndex: false,
cardCreator: function (v) { cardCreator: function (v) {
return $router.history.current.matched[0].components.default; return $router.history.current.matched[o.deps].components.default;
} }
}; };
},
destroyed: function () {
BI.remove(cbs, this._callbackListener);
} }
}); });
BI.shortcut("bi.router_view", RouterView); BI.shortcut("bi.router_view", RouterView);
@ -93801,6 +93816,7 @@ _.extend(BI, {
}))); })));
/***/ }), /***/ }),
/* 864 */ /* 864 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

34
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-28 10:56:23 */ /*! time: 2021-6-30 9:00:52 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -17569,8 +17569,18 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, {
_addElement: function (i, item) { _addElement: function (i, item) {
var o = this.options; var o = this.options;
var td; var td, width = "";
var width = o.columnSize[i] === "" ? "" : (o.columnSize[i] < 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap + o.columnSize[i]); var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width >= 1 ? null : item.width;
if (o.columnSize.length > 0) {
if (item.width >= 1 && o.columnSize[i] >= 1 && o.columnSize[i] !== item.width) {
columnSize = null;
}
}
if (columnSize > 0) {
width = columnSize < 1 ?
((columnSize * 100).toFixed(1) + "%")
: (columnSize + (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap);
}
if (!this.hasWidget(this._getChildName(i))) { if (!this.hasWidget(this._getChildName(i))) {
var w = BI._lazyCreateWidget(item); var w = BI._lazyCreateWidget(item);
w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"}); w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"});
@ -93758,7 +93768,6 @@ _.extend(BI, {
var $router, cbs = []; var $router, cbs = [];
var RouterWidget = BI.inherit(BI.Widget, { var RouterWidget = BI.inherit(BI.Widget, {
init: function () { init: function () {
this._routerRoot = this;
this._router = $router = new VueRouter({ this._router = $router = new VueRouter({
routes: this.options.routes routes: this.options.routes
}); });
@ -93771,14 +93780,17 @@ _.extend(BI, {
BI.shortcut("bi.router", RouterWidget); BI.shortcut("bi.router", RouterWidget);
var RouterView = BI.inherit(BI.Widget, { var RouterView = BI.inherit(BI.Widget, {
props: {
deps: 0
},
created: function () { created: function () {
var self = this; var self = this, o = this.options;
cbs.push(function () { cbs.push(this._callbackListener = function () {
self.tab.setSelect($router.history.current.matched[0].path || "/"); self.tab.setSelect($router.history.current.matched[o.deps].path || "/");
}); });
}, },
render: function () { render: function () {
var self = this; var self = this, o = this.options;
return { return {
type: "bi.tab", type: "bi.tab",
ref: function (_ref) { ref: function (_ref) {
@ -93790,9 +93802,12 @@ _.extend(BI, {
}, },
showIndex: false, showIndex: false,
cardCreator: function (v) { cardCreator: function (v) {
return $router.history.current.matched[0].components.default; return $router.history.current.matched[o.deps].components.default;
} }
}; };
},
destroyed: function () {
BI.remove(cbs, this._callbackListener);
} }
}); });
BI.shortcut("bi.router_view", RouterView); BI.shortcut("bi.router_view", RouterView);
@ -93801,6 +93816,7 @@ _.extend(BI, {
}))); })));
/***/ }), /***/ }),
/* 864 */ /* 864 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

34
dist/fineui.proxy.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-28 10:56:23 */ /*! time: 2021-6-30 9:00:52 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -15030,8 +15030,18 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, {
_addElement: function (i, item) { _addElement: function (i, item) {
var o = this.options; var o = this.options;
var td; var td, width = "";
var width = o.columnSize[i] === "" ? "" : (o.columnSize[i] < 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap + o.columnSize[i]); var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width >= 1 ? null : item.width;
if (o.columnSize.length > 0) {
if (item.width >= 1 && o.columnSize[i] >= 1 && o.columnSize[i] !== item.width) {
columnSize = null;
}
}
if (columnSize > 0) {
width = columnSize < 1 ?
((columnSize * 100).toFixed(1) + "%")
: (columnSize + (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap);
}
if (!this.hasWidget(this._getChildName(i))) { if (!this.hasWidget(this._getChildName(i))) {
var w = BI._lazyCreateWidget(item); var w = BI._lazyCreateWidget(item);
w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"}); w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"});
@ -91219,7 +91229,6 @@ _.extend(BI, {
var $router, cbs = []; var $router, cbs = [];
var RouterWidget = BI.inherit(BI.Widget, { var RouterWidget = BI.inherit(BI.Widget, {
init: function () { init: function () {
this._routerRoot = this;
this._router = $router = new VueRouter({ this._router = $router = new VueRouter({
routes: this.options.routes routes: this.options.routes
}); });
@ -91232,14 +91241,17 @@ _.extend(BI, {
BI.shortcut("bi.router", RouterWidget); BI.shortcut("bi.router", RouterWidget);
var RouterView = BI.inherit(BI.Widget, { var RouterView = BI.inherit(BI.Widget, {
props: {
deps: 0
},
created: function () { created: function () {
var self = this; var self = this, o = this.options;
cbs.push(function () { cbs.push(this._callbackListener = function () {
self.tab.setSelect($router.history.current.matched[0].path || "/"); self.tab.setSelect($router.history.current.matched[o.deps].path || "/");
}); });
}, },
render: function () { render: function () {
var self = this; var self = this, o = this.options;
return { return {
type: "bi.tab", type: "bi.tab",
ref: function (_ref) { ref: function (_ref) {
@ -91251,9 +91263,12 @@ _.extend(BI, {
}, },
showIndex: false, showIndex: false,
cardCreator: function (v) { cardCreator: function (v) {
return $router.history.current.matched[0].components.default; return $router.history.current.matched[o.deps].components.default;
} }
}; };
},
destroyed: function () {
BI.remove(cbs, this._callbackListener);
} }
}); });
BI.shortcut("bi.router_view", RouterView); BI.shortcut("bi.router_view", RouterView);
@ -91262,6 +91277,7 @@ _.extend(BI, {
}))); })));
/***/ }), /***/ }),
/* 864 */ /* 864 */
/***/ (function(module, exports) { /***/ (function(module, exports) {

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

16
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-6-28 10:56:23 */ /*! time: 2021-6-30 9:00:52 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ var installedModules = {};
@ -14640,8 +14640,18 @@ BI.TableAdaptLayout = BI.inherit(BI.Layout, {
_addElement: function (i, item) { _addElement: function (i, item) {
var o = this.options; var o = this.options;
var td; var td, width = "";
var width = o.columnSize[i] === "" ? "" : (o.columnSize[i] < 1 ? ((o.columnSize[i] * 100).toFixed(1) + "%") : (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap + o.columnSize[i]); var columnSize = o.columnSize.length > 0 ? o.columnSize[i] : item.width >= 1 ? null : item.width;
if (o.columnSize.length > 0) {
if (item.width >= 1 && o.columnSize[i] >= 1 && o.columnSize[i] !== item.width) {
columnSize = null;
}
}
if (columnSize > 0) {
width = columnSize < 1 ?
((columnSize * 100).toFixed(1) + "%")
: (columnSize + (i === 0 ? o.hgap : 0) + o.hgap + o.lgap + o.rgap);
}
if (!this.hasWidget(this._getChildName(i))) { if (!this.hasWidget(this._getChildName(i))) {
var w = BI._lazyCreateWidget(item); var w = BI._lazyCreateWidget(item);
w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"}); w.element.css({position: "relative", top: "0", left: "0", margin: "0px auto"});

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: 2021-6-28 10:56:23 */ /*! time: 2021-6-30 9:00:52 */
/******/ (function(modules) { // webpackBootstrap /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache /******/ // The module cache
/******/ var installedModules = {}; /******/ 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", "name": "fineui",
"version": "2.0.20210628105725", "version": "2.0.20210630090225",
"description": "fineui", "description": "fineui",
"main": "dist/fineui.min.js", "main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts", "types": "dist/lib/index.d.ts",

Loading…
Cancel
Save