@seatmap.pro/renderer 1.63.2 → 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 +6 -12
- package/lib/index.js +1 -1
- package/package.json +1 -1
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.
|
|
@@ -3033,7 +3027,7 @@ interface IAdminRendererSettings extends IRendererSettings {
|
|
|
3033
3027
|
* Extends the base Renderer with admin-specific functionality.
|
|
3034
3028
|
*/
|
|
3035
3029
|
declare class SeatmapAdminRenderer extends Renderer {
|
|
3036
|
-
static readonly VERSION
|
|
3030
|
+
static readonly VERSION: string;
|
|
3037
3031
|
protected apiClient: BookingApiClient;
|
|
3038
3032
|
/**
|
|
3039
3033
|
* Creates a new instance of the AdminRenderer.
|
|
@@ -3189,7 +3183,7 @@ interface IBookingRendererSettings extends IRendererSettings {
|
|
|
3189
3183
|
* Extends the base Renderer with booking-specific functionality.
|
|
3190
3184
|
*/
|
|
3191
3185
|
declare class SeatmapBookingRenderer extends Renderer {
|
|
3192
|
-
static readonly VERSION
|
|
3186
|
+
static readonly VERSION: string;
|
|
3193
3187
|
private apiClient;
|
|
3194
3188
|
private stats;
|
|
3195
3189
|
private tags?;
|
|
@@ -3283,7 +3277,7 @@ declare class SeatmapBookingRenderer extends Renderer {
|
|
|
3283
3277
|
* Package version information
|
|
3284
3278
|
* This file is automatically updated during the build process
|
|
3285
3279
|
*/
|
|
3286
|
-
declare const VERSION
|
|
3280
|
+
declare const VERSION: string;
|
|
3287
3281
|
|
|
3288
3282
|
declare const defaultZoomSettings: IZoomSettings;
|
|
3289
3283
|
declare const mergeSettings: (defaults: IRendererSettings, settings?: Partial<IRendererSettings>) => IRendererSettings & Partial<IRendererSettings>;
|