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