@mescius/wijmo 5.20251.41-nightly.d20250818.t181813 → 5.20251.41-nightly.d20250819.t183751
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/es2015-commonjs.js +2 -2
- package/es2015-esm.js +2 -2
- package/es5-esm.js +2 -2
- package/index.d.ts +4 -1
- package/index.js +2 -2
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Wijmo Library 5.20251.41-nightly.
|
|
3
|
+
* Wijmo Library 5.20251.41-nightly.d20250819.t183751
|
|
4
4
|
* https://developer.mescius.com/wijmo
|
|
5
5
|
*
|
|
6
6
|
* Copyright(c) MESCIUS inc. All rights reserved.
|
|
@@ -1081,9 +1081,12 @@ export declare function _areObjectsEqual(obj1: any, obj2: any): boolean;
|
|
|
1081
1081
|
* Creates a new unique id for an element by adding sequential
|
|
1082
1082
|
* numbers to a given base id.
|
|
1083
1083
|
*
|
|
1084
|
+
* Use getSafeUniqueId instead.
|
|
1085
|
+
*
|
|
1084
1086
|
* @param baseId String to use as a basis for generating the unique id.
|
|
1085
1087
|
*/
|
|
1086
1088
|
export declare function getUniqueId(baseId: string): string;
|
|
1089
|
+
export declare function getSafeUniqueId(baseId: string, prefix?: string, forcePrefix?: boolean): string;
|
|
1087
1090
|
/**
|
|
1088
1091
|
* Creates an unique id
|
|
1089
1092
|
*/
|