@seatlayer/core 0.41.0 → 0.43.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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,8 @@
5
5
  [![License: MIT](https://img.shields.io/badge/license-MIT-111827.svg)](../../LICENSE)
6
6
 
7
7
  The low-level, framework-agnostic rendering engine and shared domain model behind
8
- the SeatLayer SDKs. It is pure TypeScript with a Konva canvas renderer.
8
+ the SeatLayer SDKs. It is pure TypeScript with a hardware-accelerated canvas
9
+ renderer and an optional WebGL venue view.
9
10
 
10
11
  [Package on npm](https://www.npmjs.com/package/@seatlayer/core) ·
11
12
  [Source](https://github.com/seatlayer/seatlayer-sdk/tree/main/packages/core) ·
@@ -24,7 +25,7 @@ the SeatLayer SDKs. It is pure TypeScript with a Konva canvas renderer.
24
25
  npm install @seatlayer/core
25
26
  ```
26
27
 
27
- `konva`, `earcut`, and `ogl` are normal package dependencies and install with
28
+ Its runtime dependencies are normal package dependencies and install with
28
29
  the package.
29
30
 
30
31
  ## Use it when
@@ -44,7 +45,7 @@ For a regular checkout integration, start with the
44
45
 
45
46
  | Export | Purpose |
46
47
  | --- | --- |
47
- | `createRenderer` / `SeatmapRenderer` | Create and control the Konva seat-map renderer |
48
+ | `createRenderer` / `SeatmapRenderer` | Create and control the seat-map renderer |
48
49
  | `PickerController` | Coordinate selection and seat status with a host-supplied transport |
49
50
  | `ChartDoc`, `SeatStatus`, and domain types | Use the canonical chart and inventory contracts |
50
51
  | `expandChart` and layout helpers | Expand venue geometry into positioned bookable objects |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seatlayer/core",
3
- "version": "0.41.0",
3
+ "version": "0.43.0",
4
4
  "description": "Framework-agnostic seat-rendering engine (Konva) shared by the SeatLayer SDKs.",
5
5
  "license": "MIT",
6
6
  "homepage": "https://docs.seatlayer.io/buyer-sdk/install/",