@seatlayer/core 0.67.15 → 0.68.1
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/core/inventory/index.d.cts +2 -2
- package/dist/core/inventory/index.d.ts +2 -2
- package/dist/core/layout/index.d.cts +2 -2
- package/dist/core/layout/index.d.ts +2 -2
- package/dist/core/quality/index.d.cts +2 -2
- package/dist/core/quality/index.d.ts +2 -2
- package/dist/core/sections/index.d.cts +1 -1
- package/dist/core/sections/index.d.ts +1 -1
- package/dist/core/sections/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +29 -11
- package/dist/index.d.ts +29 -11
- package/dist/index.js +1 -1
- package/dist/{layout-pMOP6qgP.d.ts → layout-BdeBpWf8.d.ts} +1 -1
- package/dist/{layout-BjWtKYJY.d.cts → layout-BjkVhn52.d.cts} +1 -1
- package/dist/{renderedQuality-DoRJqHmW.d.cts → renderedQuality-C-L_RuPB.d.cts} +1 -1
- package/dist/{renderedQuality-CBmIp6_6.d.ts → renderedQuality-Dn6GyPPj.d.ts} +1 -1
- package/dist/{renderer-BpeegL9d.d.ts → renderer-BGmZn_bq.d.ts} +1 -1
- package/dist/{renderer-Dg76Jprw.d.cts → renderer-BHInJ52w.d.cts} +1 -1
- package/dist/{ticketRestrictions-KwkFXVnM.d.ts → ticketRestrictions-CtgOd-2p.d.ts} +1 -1
- package/dist/{ticketRestrictions-NNo-tPmw.d.cts → ticketRestrictions-mnICaF5t.d.cts} +1 -1
- package/dist/view3d/index.cjs +3 -3
- package/dist/view3d/index.d.cts +8 -1
- package/dist/view3d/index.d.ts +8 -1
- package/dist/view3d/index.js +4 -4
- package/package.json +1 -1
package/dist/view3d/index.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { C as ChartDoc } from '../types-BjTzKc2D.cjs';
|
|
2
2
|
import { p as EventConfigurationProductionElementKind, j as EventConfigurationOcclusion, a as EventConfigurationVersion } from '../eventConfigurations-C_dst7Ro.cjs';
|
|
3
|
-
import { E as ExpandedSeat } from '../renderer-
|
|
3
|
+
import { E as ExpandedSeat } from '../renderer-BHInJ52w.cjs';
|
|
4
4
|
import { SeatView } from './crossfade/panorama.cjs';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -682,6 +682,13 @@ interface Venue3DHandle {
|
|
|
682
682
|
state: SeatState3D;
|
|
683
683
|
}[]): void;
|
|
684
684
|
setSelection(seatIds: string[]): void;
|
|
685
|
+
/** Select what a one-finger / primary-pointer drag controls. Touch buyers can
|
|
686
|
+
* still use two fingers to move in either mode; this exists so native SDKs
|
|
687
|
+
* can expose the same explicit Rotate / Move controls as the web picker. */
|
|
688
|
+
setNavigationMode(mode: 'orbit' | 'pan'): void;
|
|
689
|
+
/** Programmatic camera controls for native/custom picker chrome. */
|
|
690
|
+
zoomIn(): void;
|
|
691
|
+
zoomOut(): void;
|
|
685
692
|
/** Fly the camera from the overview into `seatId` and dissolve into its
|
|
686
693
|
* view-from-seat panorama. Resolves at flight end; a drag cancels it, a second
|
|
687
694
|
* call retargets, dispose resolves early. Reduced-motion → a short fade. */
|
package/dist/view3d/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { C as ChartDoc } from '../types-BjTzKc2D.js';
|
|
2
2
|
import { p as EventConfigurationProductionElementKind, j as EventConfigurationOcclusion, a as EventConfigurationVersion } from '../eventConfigurations-kZpADDdx.js';
|
|
3
|
-
import { E as ExpandedSeat } from '../renderer-
|
|
3
|
+
import { E as ExpandedSeat } from '../renderer-BGmZn_bq.js';
|
|
4
4
|
import { SeatView } from './crossfade/panorama.js';
|
|
5
5
|
|
|
6
6
|
/**
|
|
@@ -682,6 +682,13 @@ interface Venue3DHandle {
|
|
|
682
682
|
state: SeatState3D;
|
|
683
683
|
}[]): void;
|
|
684
684
|
setSelection(seatIds: string[]): void;
|
|
685
|
+
/** Select what a one-finger / primary-pointer drag controls. Touch buyers can
|
|
686
|
+
* still use two fingers to move in either mode; this exists so native SDKs
|
|
687
|
+
* can expose the same explicit Rotate / Move controls as the web picker. */
|
|
688
|
+
setNavigationMode(mode: 'orbit' | 'pan'): void;
|
|
689
|
+
/** Programmatic camera controls for native/custom picker chrome. */
|
|
690
|
+
zoomIn(): void;
|
|
691
|
+
zoomOut(): void;
|
|
685
692
|
/** Fly the camera from the overview into `seatId` and dissolve into its
|
|
686
693
|
* view-from-seat panorama. Resolves at flight end; a drag cancels it, a second
|
|
687
694
|
* call retargets, dispose resolves early. Reduced-motion → a short fade. */
|