@whitesev/utils 2.7.8 → 2.8.0

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.
@@ -4284,13 +4284,13 @@ var Utils = (function () {
4284
4284
  * 获取字典所有的键
4285
4285
  */
4286
4286
  keys() {
4287
- return this.items.keys().toArray();
4287
+ return Array.from(this.items.keys());
4288
4288
  }
4289
4289
  /**
4290
4290
  * 返回字典中的所有值
4291
4291
  */
4292
4292
  values() {
4293
- return this.items.values().toArray();
4293
+ return Array.from(this.items.values());
4294
4294
  }
4295
4295
  /**
4296
4296
  * 清空字典
@@ -5476,7 +5476,7 @@ var Utils = (function () {
5476
5476
  this.windowApi = new WindowApi(option);
5477
5477
  }
5478
5478
  /** 版本号 */
5479
- version = "2025.9.8";
5479
+ version = "2025.9.14";
5480
5480
  addStyle(cssText) {
5481
5481
  if (typeof cssText !== "string") {
5482
5482
  throw new Error("Utils.addStyle 参数cssText 必须为String类型");