@elementor/editor-editing-panel 4.2.0-888 → 4.2.0-895
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.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +24 -24
- package/src/dynamics/dynamic-transformer.ts +6 -3
- package/src/dynamics/types.ts +5 -1
package/dist/index.mjs
CHANGED
|
@@ -6772,9 +6772,12 @@ function getDynamicValue(name, settings) {
|
|
|
6772
6772
|
return tagValue;
|
|
6773
6773
|
}
|
|
6774
6774
|
return new Promise((resolve) => {
|
|
6775
|
-
dynamicTags.refreshCacheFromServer(
|
|
6776
|
-
|
|
6777
|
-
|
|
6775
|
+
dynamicTags.refreshCacheFromServer(
|
|
6776
|
+
() => {
|
|
6777
|
+
resolve(getTagValue());
|
|
6778
|
+
},
|
|
6779
|
+
{ disableCache: true }
|
|
6780
|
+
);
|
|
6778
6781
|
});
|
|
6779
6782
|
}
|
|
6780
6783
|
|