platform-calendar-seatmap 2.1.13 → 2.1.15

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.
@@ -52,6 +52,8 @@ export interface CanvasElementConfig {
52
52
  iconType: T_IconType;
53
53
  /** When "full", displayLabel already contains "Row X, Seat Y" — tooltip should not add row/seat prefixes */
54
54
  separator?: 'none' | 'hyphen' | 'dot' | 'space' | 'full';
55
+ /** Cursor when not hovering over a seat (e.g. 'all-scroll' for draggable elements, 'default' for view-only) */
56
+ cursorWhenNoSeat?: 'default' | 'all-scroll';
55
57
  }
56
58
  export interface HitTestResult {
57
59
  seatId: string | number;
@@ -1,5 +1,7 @@
1
1
  import { T_Element, T_ElementType, T_Seat, T_SeatMap, T_Ticket } from 'platform-calendar-helpers';
2
2
  import { T_SelectedSeats } from 'store/reducers/elementSelector/types';
3
+ /** ticketId is a valid (assigned) ticket — not null, undefined, or the unassigned sentinel -1. */
4
+ export declare const isAssignedTicket: (ticketId: number | null | undefined) => ticketId is number;
3
5
  /**
4
6
  * Count total seats in the seatmap
5
7
  */