@indfnd/common 1.1.44 → 1.1.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.1.46](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.1.45...v1.1.46) (2026-02-02)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * 默认选中结点颜色支持自定义 ([e1bfbd9](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/e1bfbd9d347fb15b81efb2865087780cc8ae0873))
11
+
12
+ ### [1.1.45](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.1.44...v1.1.45) (2026-01-31)
13
+
14
+
15
+ ### Features
16
+
17
+ * agtable排序修复 ([5cb5c08](http://git.inspur.com/imp-ec/ind-front/ind-common-front/commit/5cb5c08ca0962ae574d2a02693d9714b5379b58b))
18
+
5
19
  ### [1.1.44](http://git.inspur.com/imp-ec/ind-front/ind-common-front/compare/v1.1.43...v1.1.44) (2026-01-30)
6
20
 
7
21
 
@@ -32,7 +32,7 @@ var lodash = { exports: {} };
32
32
  (function(module2, exports2) {
33
33
  (function() {
34
34
  var undefined$1;
35
- var VERSION2 = "4.17.23";
35
+ var VERSION2 = "4.17.21";
36
36
  var LARGE_ARRAY_SIZE = 200;
37
37
  var CORE_ERROR_TEXT = "Unsupported core-js use. Try https://npms.io/search?q=ponyfill.", FUNC_ERROR_TEXT = "Expected a function", INVALID_TEMPL_VAR_ERROR_TEXT = "Invalid `variable` option passed into `_.template`";
38
38
  var HASH_UNDEFINED = "__lodash_hash_undefined__";
@@ -1918,28 +1918,8 @@ var lodash = { exports: {} };
1918
1918
  }
1919
1919
  function baseUnset(object, path) {
1920
1920
  path = castPath(path, object);
1921
- var index2 = -1, length = path.length;
1922
- if (!length) {
1923
- return true;
1924
- }
1925
- var isRootPrimitive = object == null || typeof object !== "object" && typeof object !== "function";
1926
- while (++index2 < length) {
1927
- var key = path[index2];
1928
- if (typeof key !== "string") {
1929
- continue;
1930
- }
1931
- if (key === "__proto__" && !hasOwnProperty.call(object, "__proto__")) {
1932
- return false;
1933
- }
1934
- if (key === "constructor" && index2 + 1 < length && typeof path[index2 + 1] === "string" && path[index2 + 1] === "prototype") {
1935
- if (isRootPrimitive && index2 === 0) {
1936
- continue;
1937
- }
1938
- return false;
1939
- }
1940
- }
1941
- var obj = parent(object, path);
1942
- return obj == null || delete obj[toKey(last(path))];
1921
+ object = parent(object, path);
1922
+ return object == null || delete object[toKey(last(path))];
1943
1923
  }
1944
1924
  function baseUpdate(object, path, updater, customizer) {
1945
1925
  return baseSet(object, path, updater(baseGet(object, path)), customizer);
@@ -5480,7 +5460,7 @@ var lodash = { exports: {} };
5480
5460
  })(lodash, lodash.exports);
5481
5461
  var _ = lodash.exports;
5482
5462
  const name$1 = "@indfnd/common";
5483
- const version = "1.1.43";
5463
+ const version = "1.1.45";
5484
5464
  const author = "huxuetong";
5485
5465
  const publishConfig = {
5486
5466
  registry: "https://registry.npmjs.org/"
@@ -54133,10 +54113,12 @@ const __vue2_script$15 = {
54133
54113
  this.tableData = _.cloneDeep(this.value);
54134
54114
  }
54135
54115
  } else {
54116
+ let noSortCount = 0;
54136
54117
  if (this.noSortLine > -1) {
54137
- topData = this.tableData.slice(0, this.noSortLine);
54138
- restData = this.tableData.slice(this.noSortLine);
54118
+ noSortCount = this.noSortLine;
54139
54119
  }
54120
+ topData = this.tableData.slice(0, noSortCount);
54121
+ restData = this.tableData.slice(noSortCount);
54140
54122
  restData.sort((a, b) => {
54141
54123
  if (typeof a[this.sortParams.sort] == "number" && typeof b[this.sortParams.sort] == "number") {
54142
54124
  let _a = isNaN(parseFloat(a[this.sortParams.sort])) ? 0 : parseFloat(a[this.sortParams.sort]);
@@ -64054,8 +64036,8 @@ var ConditionPanel = /* @__PURE__ */ function() {
64054
64036
  return __component__$n.exports;
64055
64037
  }();
64056
64038
  /*!
64057
- * Signature Pad v4.2.0 | https://github.com/szimek/signature_pad
64058
- * (c) 2024 Szymon Nowak | Released under the MIT license
64039
+ * Signature Pad v4.1.7 | https://github.com/szimek/signature_pad
64040
+ * (c) 2023 Szymon Nowak | Released under the MIT license
64059
64041
  */
64060
64042
  class Point {
64061
64043
  constructor(x, y, pressure, time) {
@@ -64260,9 +64242,8 @@ class SignaturePad extends SignatureEventTarget {
64260
64242
  this.penColor = options.penColor || "black";
64261
64243
  this.backgroundColor = options.backgroundColor || "rgba(0,0,0,0)";
64262
64244
  this.compositeOperation = options.compositeOperation || "source-over";
64263
- this.canvasContextOptions = "canvasContextOptions" in options ? options.canvasContextOptions : {};
64264
64245
  this._strokeMoveUpdate = this.throttle ? throttle(SignaturePad.prototype._strokeUpdate, this.throttle) : SignaturePad.prototype._strokeUpdate;
64265
- this._ctx = canvas.getContext("2d", this.canvasContextOptions);
64246
+ this._ctx = canvas.getContext("2d");
64266
64247
  this.clear();
64267
64248
  this.on();
64268
64249
  }