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