@wix/builder-services 1.16.2 → 1.16.3

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.
@@ -5555,8 +5555,19 @@ const BusinessLoggerService = () => {
5555
5555
  reportBi: noopLog
5556
5556
  };
5557
5557
  };
5558
+ const HeadAppenderService = () => {
5559
+ const setHead = (content) => {
5560
+ if (typeof document === "undefined" || !content)
5561
+ return;
5562
+ document.head.insertAdjacentHTML("beforeend", content);
5563
+ };
5564
+ return {
5565
+ setHead
5566
+ };
5567
+ };
5558
5568
  export {
5559
5569
  BusinessLoggerService,
5570
+ HeadAppenderService,
5560
5571
  LightboxService,
5561
5572
  createServicesProvider,
5562
5573
  registerPopupReactRoot