@insure-os/client 0.0.31 → 0.0.33

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/dist/index.d.ts CHANGED
@@ -663,6 +663,13 @@ type BaseMountConfig = ClientConfig & {
663
663
  enablePolyfills?: boolean;
664
664
  /** Enable performance monitoring (default: false) */
665
665
  enablePerformanceMonitoring?: boolean;
666
+ /**
667
+ * Isolate styles from host page CSS (default: false)
668
+ * When enabled, applies a CSS reset to the InsureOS container to prevent
669
+ * host page styles from bleeding in. Useful when embedding on sites with
670
+ * aggressive global CSS rules.
671
+ */
672
+ isolateStyles?: boolean;
666
673
  };
667
674
  type QuoteMountConfig = BaseMountConfig & {
668
675
  mode?: 'quote' | undefined;