This commit is contained in:
root
2025-11-13 19:52:28 +03:00
parent 8aeeb05b7d
commit 807dec3b6c
4646 changed files with 163445 additions and 626017 deletions

View File

@@ -1 +0,0 @@
.info-helper-panel-iframe{z-index:2;opacity:0;transition:all .6s}.info-helper-panel-iframe-show{opacity:1}.info-helper-panel-iframe,.helper-container{position:absolute;width:100%;height:100%;left:0;top:0;padding:0;border:0;margin:0}.info-helper-container{background-color:#fff}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -203,6 +203,8 @@ export class Actions
BX.onCustomEvent('BX.UI.InfoHelper:onActivateDemoLicenseSuccess', {
result: response,
});
window.location.reload();
}
});
}

View File

@@ -21,6 +21,11 @@ export class InfoHelper
static __showExternal(code, option): void
{
if (!this.sliderProviderForOldFormat)
{
this.init({});
}
this.sliderProviderForOldFormat?.__showExternal(code, option);
}

View File

@@ -48,6 +48,11 @@ export class SliderProvider extends BaseProvider
};
(new ProviderRequestFactory(providerRequestFactoryConfiguration)).getRequest()
.then((response) => {
if (!Type.isStringFilled(this.frameUrlTemplate))
{
this.frameUrlTemplate = response.data?.frameUrlTemplate ?? '';
}
frame.src = this.#buildUrl(code);
return this.#createContainerNode(this.getLoader(), frame);