Browse Source

Merging in latest from upstream (VISUAL/fineui:refs/heads/master)

* commit '256145b0810224c7ddec34193332119982bcfb06':
  JSY-31395
  打包问题
  JSY-31395 & 打包问题
  update
  无JIRA 导出code_index
research/test
fay-李丰豪 10 months ago
parent
commit
430dadeecb
  1. 1
      package.json
  2. 4
      packages/fineui/package.json
  3. 2
      packages/fineui/src/base/single/input/input.js
  4. 2
      packages/fineui/src/index.js
  5. 1
      packages/fineui/src/third/index.js
  6. 2293
      pnpm-lock.yaml

1
package.json

@ -41,6 +41,7 @@
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.7.5",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"postcss": "^8.4.21",
"postcss-loader": "^7.1.0",
"style-loader": "^3.3.1",

4
packages/fineui/package.json

@ -1,6 +1,6 @@
{
"name": "@fui/core",
"version": "3.0.20230707165537",
"version": "3.0.20230727164622",
"description": "fineui",
"main": "dist/fineui.min.js",
"module": "dist/lib/index.js",
@ -58,4 +58,4 @@
"core-js": "^3.30.2",
"cross-env": "^7.0.3"
}
}
}

2
packages/fineui/src/base/single/input/input.js

@ -144,7 +144,7 @@ export class Input extends Single {
_blur() {
const blur = () => {
if (!this.isValid() && this.options.quitChecker.apply(this, [trim(this.getValue())]) !== false) {
this.element.val(this._lastValidValue ? this._lastValidValue : "");
this.element.val(this._lastValidValue ?? this.options.value ?? "");
this._checkValidationOnValueChange();
this._defaultState();
}

2
packages/fineui/src/index.js

@ -10,10 +10,12 @@ export * from "./widget";
export * from "./component";
export * from "./fix";
export * from "./router";
export * from "./third";
export * as Popper from "@popperjs/core";
export const jQuery = jquery;
export const $ = jquery;
import * as D from "@/core/decorator";
import { Fix } from "./fix";
export const Decorators = { ...D, Model: Fix.Model };

1
packages/fineui/src/third/index.js

@ -0,0 +1 @@
export * from "./sort.gb2312";

2293
pnpm-lock.yaml

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save