@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.
@@ -5861,7 +5861,7 @@ class API {
5861
5861
  return {
5862
5862
  clientName: "@seamly/web-ui",
5863
5863
  clientVariant: this.#layoutMode,
5864
- clientVersion: "23.0.5",
5864
+ clientVersion: "23.0.6-alpha.1",
5865
5865
  currentUrl: window.location.toString(),
5866
5866
  screenResolution: `${window.screen.width}x${window.screen.height}`,
5867
5867
  timezone: getTimeZone(),
@@ -23190,6 +23190,7 @@ class ExternalApi {
23190
23190
  constructor(appConfig) {
23191
23191
  this._waitingActions = [];
23192
23192
  this._instances = {};
23193
+ this._timeoutId = undefined;
23193
23194
  this.appConfig = appConfig;
23194
23195
  this.context = {};
23195
23196
  }
@@ -23299,7 +23300,10 @@ class ExternalApi {
23299
23300
  this._instances[config.namespace] = instance;
23300
23301
  // Clear the context after creating the instance, so we do not reuse it for the next
23301
23302
  this.context = {};
23302
- instance.render();
23303
+ window.clearTimeout(this._timeoutId);
23304
+ this._timeoutId = window.setTimeout(() => {
23305
+ instance.render();
23306
+ }, 60);
23303
23307
  }
23304
23308
  }
23305
23309
  handleDestroy(actionObj) {