Browse Source

auto upgrade version to 2.0.20210218170233

es6
data 3 years ago
parent
commit
8ac10b4cc7
  1. 4
      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. 22
      dist/2.0/fineui.js
  5. 2
      dist/2.0/fineui.js.map
  6. 4
      dist/2.0/fineui.min.css
  7. 4
      dist/2.0/fineui.min.js
  8. 2
      dist/2.0/fineui.min.js.map
  9. 4
      dist/2.0/fineui_without_normalize.css
  10. 4
      dist/2.0/fineui_without_normalize.min.css
  11. 4
      dist/core.css
  12. 22
      dist/core.js
  13. 2
      dist/core.js.map
  14. 4
      dist/demo.css
  15. 22
      dist/demo.js
  16. 2
      dist/demo.js.map
  17. 4
      dist/fineui.css
  18. 4
      dist/fineui.ie.min.js
  19. 2
      dist/fineui.ie.min.js.map
  20. 22
      dist/fineui.js
  21. 2
      dist/fineui.js.map
  22. 4
      dist/fineui.min.css
  23. 4
      dist/fineui.min.js
  24. 2
      dist/fineui.min.js.map
  25. 22
      dist/fineui_without_jquery_polyfill.js
  26. 2
      dist/fineui_without_jquery_polyfill.js.map
  27. 4
      dist/font.css
  28. 4
      dist/resource.css
  29. 2
      dist/utils.js
  30. 2
      dist/utils.min.js
  31. 2
      package.json

4
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

22
dist/2.0/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-2-18 09:50:39 */
/*! time: 2021-2-18 17:00:32 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -18970,7 +18970,7 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (BI.contains([BI.HorizontalAlign.Left, BI.HorizontalAlign.Right, BI.HorizontalAlign.Center], o.horizontalAlign)) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19117,7 +19117,7 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19322,7 +19322,7 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.horizontalAlign === BI.HorizontalAlign.Left || o.horizontalAlign === BI.HorizontalAlign.Right) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19477,7 +19477,7 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -31471,6 +31471,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: "bi.center_adapt",
height: o.height,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31483,6 +31484,7 @@ BI.shortcut("bi.radio", BI.Radio);
}
BI.createWidget({ // 1.2
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31505,6 +31507,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31539,6 +31542,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31549,6 +31553,7 @@ BI.shortcut("bi.radio", BI.Radio);
json.maxWidth = o.textWidth;
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31571,6 +31576,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: true,
element: this,
items: [this.text]
@ -31607,6 +31613,7 @@ BI.shortcut("bi.radio", BI.Radio);
}));
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
items: [this.text]
});
@ -31623,6 +31630,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
height: o.height,
scrollable: o.whiteSpace === "normal",
element: this,
@ -31637,6 +31645,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.2
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31674,6 +31683,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.4
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31693,6 +31703,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.5
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31741,6 +31752,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
scrollable: o.whiteSpace === "normal",
items: [this.text]

2
dist/2.0/fineui.js.map vendored

File diff suppressed because one or more lines are too long

4
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

4
dist/2.0/fineui_without_normalize.css vendored

File diff suppressed because one or more lines are too long

4
dist/2.0/fineui_without_normalize.min.css vendored

File diff suppressed because one or more lines are too long

4
dist/core.css vendored

File diff suppressed because one or more lines are too long

22
dist/core.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-2-18 09:50:39 */
/*! time: 2021-2-18 17:00:32 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -18970,7 +18970,7 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (BI.contains([BI.HorizontalAlign.Left, BI.HorizontalAlign.Right, BI.HorizontalAlign.Center], o.horizontalAlign)) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19117,7 +19117,7 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19322,7 +19322,7 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.horizontalAlign === BI.HorizontalAlign.Left || o.horizontalAlign === BI.HorizontalAlign.Right) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19477,7 +19477,7 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -31471,6 +31471,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: "bi.center_adapt",
height: o.height,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31483,6 +31484,7 @@ BI.shortcut("bi.radio", BI.Radio);
}
BI.createWidget({ // 1.2
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31505,6 +31507,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31539,6 +31542,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31549,6 +31553,7 @@ BI.shortcut("bi.radio", BI.Radio);
json.maxWidth = o.textWidth;
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31571,6 +31576,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: true,
element: this,
items: [this.text]
@ -31607,6 +31613,7 @@ BI.shortcut("bi.radio", BI.Radio);
}));
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
items: [this.text]
});
@ -31623,6 +31630,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
height: o.height,
scrollable: o.whiteSpace === "normal",
element: this,
@ -31637,6 +31645,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.2
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31674,6 +31683,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.4
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31693,6 +31703,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.5
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31741,6 +31752,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
scrollable: o.whiteSpace === "normal",
items: [this.text]

2
dist/core.js.map vendored

File diff suppressed because one or more lines are too long

4
dist/demo.css vendored

File diff suppressed because one or more lines are too long

22
dist/demo.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-2-18 09:50:39 */
/*! time: 2021-2-18 17:00:32 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -18970,7 +18970,7 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (BI.contains([BI.HorizontalAlign.Left, BI.HorizontalAlign.Right, BI.HorizontalAlign.Center], o.horizontalAlign)) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19117,7 +19117,7 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19322,7 +19322,7 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.horizontalAlign === BI.HorizontalAlign.Left || o.horizontalAlign === BI.HorizontalAlign.Right) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19477,7 +19477,7 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -31471,6 +31471,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: "bi.center_adapt",
height: o.height,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31483,6 +31484,7 @@ BI.shortcut("bi.radio", BI.Radio);
}
BI.createWidget({ // 1.2
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31505,6 +31507,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31539,6 +31542,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31549,6 +31553,7 @@ BI.shortcut("bi.radio", BI.Radio);
json.maxWidth = o.textWidth;
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31571,6 +31576,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: true,
element: this,
items: [this.text]
@ -31607,6 +31613,7 @@ BI.shortcut("bi.radio", BI.Radio);
}));
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
items: [this.text]
});
@ -31623,6 +31630,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
height: o.height,
scrollable: o.whiteSpace === "normal",
element: this,
@ -31637,6 +31645,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.2
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31674,6 +31683,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.4
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31693,6 +31703,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.5
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31741,6 +31752,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
scrollable: o.whiteSpace === "normal",
items: [this.text]

2
dist/demo.js.map vendored

File diff suppressed because one or more lines are too long

4
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

22
dist/fineui.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-2-18 09:50:39 */
/*! time: 2021-2-18 17:00:32 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -18970,7 +18970,7 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (BI.contains([BI.HorizontalAlign.Left, BI.HorizontalAlign.Right, BI.HorizontalAlign.Center], o.horizontalAlign)) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19117,7 +19117,7 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19322,7 +19322,7 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.horizontalAlign === BI.HorizontalAlign.Left || o.horizontalAlign === BI.HorizontalAlign.Right) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -19477,7 +19477,7 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -31471,6 +31471,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: "bi.center_adapt",
height: o.height,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31483,6 +31484,7 @@ BI.shortcut("bi.radio", BI.Radio);
}
BI.createWidget({ // 1.2
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31505,6 +31507,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31539,6 +31542,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -31549,6 +31553,7 @@ BI.shortcut("bi.radio", BI.Radio);
json.maxWidth = o.textWidth;
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -31571,6 +31576,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: true,
element: this,
items: [this.text]
@ -31607,6 +31613,7 @@ BI.shortcut("bi.radio", BI.Radio);
}));
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
items: [this.text]
});
@ -31623,6 +31630,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
height: o.height,
scrollable: o.whiteSpace === "normal",
element: this,
@ -31637,6 +31645,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.2
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31674,6 +31683,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.4
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31693,6 +31703,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.5
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -31741,6 +31752,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
scrollable: o.whiteSpace === "normal",
items: [this.text]

2
dist/fineui.js.map vendored

File diff suppressed because one or more lines are too long

4
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

22
dist/fineui_without_jquery_polyfill.js vendored

@ -1,4 +1,4 @@
/*! time: 2021-2-18 09:50:39 */
/*! time: 2021-2-18 17:00:32 */
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
@ -14992,7 +14992,7 @@ BI.FlexHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (BI.contains([BI.HorizontalAlign.Left, BI.HorizontalAlign.Right, BI.HorizontalAlign.Center], o.horizontalAlign)) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -15139,7 +15139,7 @@ BI.FlexVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -15344,7 +15344,7 @@ BI.FlexWrapperHorizontalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.horizontalAlign === BI.HorizontalAlign.Left || o.horizontalAlign === BI.HorizontalAlign.Right) {
if (o.horizontalAlign !== BI.HorizontalAlign.Stretch && o.columnSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -15499,7 +15499,7 @@ BI.FlexWrapperVerticalLayout = BI.inherit(BI.Layout, {
w.element.css({
position: "relative"
});
if (o.verticalAlign === BI.VerticalAlign.Top || o.verticalAlign === BI.VerticalAlign.Bottom) {
if (o.verticalAlign !== BI.VerticalAlign.Stretch && o.rowSize[i] !== "auto") {
w.element.css({
"flex-shrink": "0"
});
@ -27493,6 +27493,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: "bi.center_adapt",
height: o.height,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -27505,6 +27506,7 @@ BI.shortcut("bi.radio", BI.Radio);
}
BI.createWidget({ // 1.2
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -27527,6 +27529,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -27561,6 +27564,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [this.text]
@ -27571,6 +27575,7 @@ BI.shortcut("bi.radio", BI.Radio);
json.maxWidth = o.textWidth;
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
element: this,
items: [
@ -27593,6 +27598,7 @@ BI.shortcut("bi.radio", BI.Radio);
this.text = BI.createWidget(json);
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: true,
element: this,
items: [this.text]
@ -27629,6 +27635,7 @@ BI.shortcut("bi.radio", BI.Radio);
}));
BI.createWidget({
type: "bi.center_adapt",
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
items: [this.text]
});
@ -27645,6 +27652,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
height: o.height,
scrollable: o.whiteSpace === "normal",
element: this,
@ -27659,6 +27667,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.2
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -27696,6 +27705,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.4
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -27715,6 +27725,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({ // 2.5
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
scrollable: o.whiteSpace === "normal",
hgap: o.hgap,
vgap: o.vgap,
@ -27763,6 +27774,7 @@ BI.shortcut("bi.radio", BI.Radio);
BI.createWidget({
type: adaptLayout,
horizontalAlign: o.textAlign,
columnSize: [o.whiteSpace === "normal" ? "auto" : ""], // important! 让文字在normal下shrink为1
element: this,
scrollable: o.whiteSpace === "normal",
items: [this.text]

2
dist/fineui_without_jquery_polyfill.js.map vendored

File diff suppressed because one or more lines are too long

4
dist/font.css vendored

File diff suppressed because one or more lines are too long

4
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-2-18 09:50:39 */
/*! time: 2021-2-18 17:00:32 */
/******/ (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.20210218095218",
"version": "2.0.20210218170233",
"description": "fineui",
"main": "dist/fineui.min.js",
"types": "dist/lib/index.d.ts",

Loading…
Cancel
Save