@seatmap.pro/renderer 1.64.0 → 1.65.0

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/lib/index.d.ts CHANGED
@@ -88,6 +88,8 @@ interface IBaseSector {
88
88
  labelOffsetY?: number;
89
89
  /** Label style overrides (SEAT-624) */
90
90
  labelStyle?: ILabelStyle;
91
+ /** Whether the section name label should render (SEAT-895) */
92
+ labelVisible?: boolean;
91
93
  }
92
94
  /**
93
95
  * Label style overrides for GA section labels (SEAT-624).
@@ -2096,6 +2098,7 @@ declare class OutlineLayer {
2096
2098
  */
2097
2099
  setBackgroundAsOutline(): void;
2098
2100
  private createBackgroundSectionLabelInfo;
2101
+ private createTableSectionLabelInfo;
2099
2102
  private extractSVGBackgroundOutlines;
2100
2103
  cleanSvgInlineStyles(stylesToRemove?: string[]): void;
2101
2104
  updateOutlines(): void;
@@ -3004,15 +3007,6 @@ declare class Renderer implements IRenderer {
3004
3007
  setMinimapPosition(position: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'): void;
3005
3008
  }
3006
3009
 
3007
- declare global {
3008
- interface Window {
3009
- __RUNTIME_CONFIG__?: {
3010
- SENTRY_DSN?: string;
3011
- SENTRY_ENVIRONMENT?: string;
3012
- };
3013
- }
3014
- }
3015
-
3016
3010
  interface IAdminRendererSettings extends IRendererSettings {
3017
3011
  /**
3018
3012
  * Custom API base URL that overrides the environment-based URL.