@windoc/core 0.3.16 → 0.3.17
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.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/version.ts
|
|
2
|
-
var version = "0.3.
|
|
2
|
+
var version = "0.3.17";
|
|
3
3
|
|
|
4
4
|
// src/dataset/enum/Common.ts
|
|
5
5
|
var MaxHeightRatio = /* @__PURE__ */ ((MaxHeightRatio2) => {
|
|
@@ -24784,8 +24784,8 @@ var CommandAdapt = class {
|
|
|
24784
24784
|
}
|
|
24785
24785
|
updateOptions(payload) {
|
|
24786
24786
|
const newOption = mergeOption(payload);
|
|
24787
|
-
Object.
|
|
24788
|
-
Reflect.set(this.options, key,
|
|
24787
|
+
Object.keys(payload).forEach((key) => {
|
|
24788
|
+
Reflect.set(this.options, key, newOption[key]);
|
|
24789
24789
|
});
|
|
24790
24790
|
this.forceUpdate();
|
|
24791
24791
|
}
|