@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.
- package/dist/index.amd.js +3 -3
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +3 -3
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +3 -3
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/types/src/types/React.d.ts +7 -7
- package/package.json +1 -1
- package/src/Dictionary.ts +2 -2
- package/src/Utils.ts +1 -1
- package/src/types/React.d.ts +7 -7
package/dist/index.esm.js
CHANGED
|
@@ -4281,13 +4281,13 @@ class UtilsDictionary {
|
|
|
4281
4281
|
* 获取字典所有的键
|
|
4282
4282
|
*/
|
|
4283
4283
|
keys() {
|
|
4284
|
-
return this.items.keys()
|
|
4284
|
+
return Array.from(this.items.keys());
|
|
4285
4285
|
}
|
|
4286
4286
|
/**
|
|
4287
4287
|
* 返回字典中的所有值
|
|
4288
4288
|
*/
|
|
4289
4289
|
values() {
|
|
4290
|
-
return this.items.values()
|
|
4290
|
+
return Array.from(this.items.values());
|
|
4291
4291
|
}
|
|
4292
4292
|
/**
|
|
4293
4293
|
* 清空字典
|
|
@@ -5473,7 +5473,7 @@ class Utils {
|
|
|
5473
5473
|
this.windowApi = new WindowApi(option);
|
|
5474
5474
|
}
|
|
5475
5475
|
/** 版本号 */
|
|
5476
|
-
version = "2025.9.
|
|
5476
|
+
version = "2025.9.14";
|
|
5477
5477
|
addStyle(cssText) {
|
|
5478
5478
|
if (typeof cssText !== "string") {
|
|
5479
5479
|
throw new Error("Utils.addStyle 参数cssText 必须为String类型");
|