@seatlayer/js 0.53.0 → 0.54.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/dist/index.d.cts CHANGED
@@ -1949,7 +1949,15 @@ declare class SeatPicker {
1949
1949
  /** Mount the full picker as a document-level modal. Resolves after render. */
1950
1950
  static open(options: Omit<SeatPickerOptions, 'container'>): Promise<SeatPicker>;
1951
1951
  constructor(options: SeatPickerOptions);
1952
+ /** Controller callbacks are wired once, before the first async chart load. */
1953
+ private wireController;
1952
1954
  render(): Promise<this>;
1955
+ /** Wire host chrome after the skeleton exists and before the renderer owns its map host. */
1956
+ private wireBuyerShell;
1957
+ /** Observe the host container rather than the viewport; embeds resize independently. */
1958
+ private observeLayout;
1959
+ /** Render the shared controller into the already-mounted canvas host. */
1960
+ private loadChart;
1953
1961
  /**
1954
1962
  * A hosted gateway returned this buyer to a page that runs the widget, with
1955
1963
  * `?order=…&status=…` in the URL. Pick the order up and finish the story.
package/dist/index.d.ts CHANGED
@@ -1949,7 +1949,15 @@ declare class SeatPicker {
1949
1949
  /** Mount the full picker as a document-level modal. Resolves after render. */
1950
1950
  static open(options: Omit<SeatPickerOptions, 'container'>): Promise<SeatPicker>;
1951
1951
  constructor(options: SeatPickerOptions);
1952
+ /** Controller callbacks are wired once, before the first async chart load. */
1953
+ private wireController;
1952
1954
  render(): Promise<this>;
1955
+ /** Wire host chrome after the skeleton exists and before the renderer owns its map host. */
1956
+ private wireBuyerShell;
1957
+ /** Observe the host container rather than the viewport; embeds resize independently. */
1958
+ private observeLayout;
1959
+ /** Render the shared controller into the already-mounted canvas host. */
1960
+ private loadChart;
1953
1961
  /**
1954
1962
  * A hosted gateway returned this buyer to a page that runs the widget, with
1955
1963
  * `?order=…&status=…` in the URL. Pick the order up and finish the story.