@wix/builder-services 1.16.1 → 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.
package/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # Package Overview
2
+
3
+ This package is part of the site export system provided by Wix.
4
+
5
+ It is used as a supporting dependency for React applications generated through the Wix export flow, and is installed automatically as part of that process.
6
+
7
+ ## Intended Usage
8
+
9
+ This package is designed to work within the context of:
10
+
11
+ - Applications generated via Wix site export
12
+ - The associated runtime and tooling provided by Wix
13
+
14
+ When used in this environment, it will be kept up to date and function as expected.
15
+
16
+ ## Usage Outside of Wix Export
17
+
18
+ While this package is publicly available on npm, it is not intended for standalone use.
19
+
20
+ - The API surface may change without notice
21
+ - Behavior may depend on internal Wix systems or assumptions
22
+ - Documentation is limited to the export use case
23
+
24
+ If you're not using a Wix-generated project, this package is unlikely to behave as expected.
25
+
26
+ ## Stability & Updates
27
+
28
+ This package follows the release cycle of Wix export features.
29
+
30
+ - Updates may include breaking changes
31
+ - Versioning is aligned with internal system needs
32
+ - No guarantees are made for external compatibility
33
+
34
+ Projects generated through Wix will receive compatible updates as needed.
35
+
36
+ ## Support
37
+
38
+ Support is provided for:
39
+
40
+ - Issues encountered within Wix-exported applications
41
+
42
+ Support is not provided for:
43
+
44
+ - Custom or standalone usage of this package
@@ -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