@seamly/web-ui 23.0.5 → 23.0.6-alpha.1
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/build/dist/lib/index.debug.js +6 -2
- package/build/dist/lib/index.debug.js.map +1 -1
- package/build/dist/lib/index.debug.min.js +1 -1
- package/build/dist/lib/index.debug.min.js.map +1 -1
- package/build/dist/lib/index.js +6 -2
- package/build/dist/lib/index.js.map +1 -1
- package/build/dist/lib/index.min.js +1 -1
- package/build/dist/lib/index.min.js.map +1 -1
- package/build/dist/lib/standalone.js +6 -2
- package/build/dist/lib/standalone.js.map +1 -1
- package/build/dist/lib/standalone.min.js +1 -1
- package/build/dist/lib/standalone.min.js.map +1 -1
- package/build/dist/lib/style-guide.js +6 -2
- package/build/dist/lib/style-guide.js.map +1 -1
- package/build/dist/lib/style-guide.min.js +1 -1
- package/build/dist/lib/style-guide.min.js.map +1 -1
- package/build/dist/lib/utils.js +6 -2
- package/build/dist/lib/utils.js.map +1 -1
- package/build/dist/lib/utils.min.js +1 -1
- package/build/dist/lib/utils.min.js.map +1 -1
- package/package.json +1 -1
- package/src/javascripts/lib/external-api/index.js +5 -1
|
@@ -5577,7 +5577,7 @@ class API {
|
|
|
5577
5577
|
return {
|
|
5578
5578
|
clientName: "@seamly/web-ui",
|
|
5579
5579
|
clientVariant: this.#layoutMode,
|
|
5580
|
-
clientVersion: "23.0.
|
|
5580
|
+
clientVersion: "23.0.6-alpha.1",
|
|
5581
5581
|
currentUrl: window.location.toString(),
|
|
5582
5582
|
screenResolution: `${window.screen.width}x${window.screen.height}`,
|
|
5583
5583
|
timezone: getTimeZone(),
|
|
@@ -22906,6 +22906,7 @@ class ExternalApi {
|
|
|
22906
22906
|
constructor(appConfig) {
|
|
22907
22907
|
this._waitingActions = [];
|
|
22908
22908
|
this._instances = {};
|
|
22909
|
+
this._timeoutId = undefined;
|
|
22909
22910
|
this.appConfig = appConfig;
|
|
22910
22911
|
this.context = {};
|
|
22911
22912
|
}
|
|
@@ -23015,7 +23016,10 @@ class ExternalApi {
|
|
|
23015
23016
|
this._instances[config.namespace] = instance;
|
|
23016
23017
|
// Clear the context after creating the instance, so we do not reuse it for the next
|
|
23017
23018
|
this.context = {};
|
|
23018
|
-
|
|
23019
|
+
window.clearTimeout(this._timeoutId);
|
|
23020
|
+
this._timeoutId = window.setTimeout(() => {
|
|
23021
|
+
instance.render();
|
|
23022
|
+
}, 60);
|
|
23019
23023
|
}
|
|
23020
23024
|
}
|
|
23021
23025
|
handleDestroy(actionObj) {
|