@seatlayer/core 0.46.0 → 0.47.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/chunk-AZODENEL.js +97 -0
- package/dist/chunk-AZODENEL.js.map +1 -0
- package/dist/chunk-FVCOOLJO.js +335 -0
- package/dist/chunk-FVCOOLJO.js.map +1 -0
- package/dist/{chunk-5MRJCIZP.js → chunk-TCTAS4Z2.js} +88 -14
- package/dist/chunk-TCTAS4Z2.js.map +1 -0
- package/dist/{de-UHAOVDS3.js → de-ST4H423D.js} +6 -3
- package/dist/{de-UHAOVDS3.js.map → de-ST4H423D.js.map} +1 -1
- package/dist/{es-6TJS2L7S.js → es-WEC5NHRT.js} +6 -3
- package/dist/{es-6TJS2L7S.js.map → es-WEC5NHRT.js.map} +1 -1
- package/dist/{fr-MMSY7FPE.js → fr-SGBFNAQV.js} +6 -3
- package/dist/{fr-MMSY7FPE.js.map → fr-SGBFNAQV.js.map} +1 -1
- package/dist/index.cjs +251 -39
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +119 -4
- package/dist/index.d.ts +119 -4
- package/dist/index.js +152 -24
- package/dist/index.js.map +1 -1
- package/dist/{types-DBnRO2hX.d.cts → types-CE63BK0j.d.cts} +88 -10
- package/dist/{types-DBnRO2hX.d.ts → types-CE63BK0j.d.ts} +88 -10
- package/dist/view/panoramaDelivery.cjs +126 -0
- package/dist/view/panoramaDelivery.cjs.map +1 -0
- package/dist/view/panoramaDelivery.d.cts +34 -0
- package/dist/view/panoramaDelivery.d.ts +34 -0
- package/dist/view/panoramaDelivery.js +17 -0
- package/dist/view/panoramaDelivery.js.map +1 -0
- package/dist/view3d/crossfade/panorama.cjs +453 -0
- package/dist/view3d/crossfade/panorama.cjs.map +1 -0
- package/dist/view3d/crossfade/panorama.d.cts +110 -0
- package/dist/view3d/crossfade/panorama.d.ts +110 -0
- package/dist/view3d/crossfade/panorama.js +30 -0
- package/dist/view3d/crossfade/panorama.js.map +1 -0
- package/dist/view3d/index.cjs +1176 -128
- package/dist/view3d/index.cjs.map +1 -1
- package/dist/view3d/index.d.cts +73 -35
- package/dist/view3d/index.d.ts +73 -35
- package/dist/view3d/index.js +960 -300
- package/dist/view3d/index.js.map +1 -1
- package/package.json +28 -1
- package/dist/chunk-5MRJCIZP.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seatlayer/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.47.1",
|
|
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/",
|
|
@@ -16,10 +16,17 @@
|
|
|
16
16
|
"main": "./dist/index.cjs",
|
|
17
17
|
"module": "./dist/index.js",
|
|
18
18
|
"types": "./dist/index.d.ts",
|
|
19
|
+
"//deep-subpaths": "`./view/panoramaDelivery` and `./view3d/crossfade/panorama` are two engine modules the buyer widget imports by their path inside the mirrored src/ tree instead of through a barrel. The app's vendored widget resolves the same two relatively (../../view/panoramaDelivery, ../../view3d/crossfade/panorama), and scripts/sync-widget.mjs rewrites '@seatlayer/core/<path>' into '../../<path>' — which lines up character for character only because dist/ mirrors src/, and src/ mirrors the app's src/. Renaming either subpath silently breaks that rewrite. NOTE: keys inside `exports` must be subpaths or conditions, so this note lives out here; a '//' key in there makes Node and TypeScript reject the whole map, which shows up as 'Cannot find module @seatlayer/core/view3d'.",
|
|
19
20
|
"typesVersions": {
|
|
20
21
|
"*": {
|
|
21
22
|
"view3d": [
|
|
22
23
|
"./dist/view3d/index.d.ts"
|
|
24
|
+
],
|
|
25
|
+
"view/panoramaDelivery": [
|
|
26
|
+
"./dist/view/panoramaDelivery.d.ts"
|
|
27
|
+
],
|
|
28
|
+
"view3d/crossfade/panorama": [
|
|
29
|
+
"./dist/view3d/crossfade/panorama.d.ts"
|
|
23
30
|
]
|
|
24
31
|
}
|
|
25
32
|
},
|
|
@@ -43,6 +50,26 @@
|
|
|
43
50
|
"types": "./dist/view3d/index.d.cts",
|
|
44
51
|
"default": "./dist/view3d/index.cjs"
|
|
45
52
|
}
|
|
53
|
+
},
|
|
54
|
+
"./view/panoramaDelivery": {
|
|
55
|
+
"import": {
|
|
56
|
+
"types": "./dist/view/panoramaDelivery.d.ts",
|
|
57
|
+
"default": "./dist/view/panoramaDelivery.js"
|
|
58
|
+
},
|
|
59
|
+
"require": {
|
|
60
|
+
"types": "./dist/view/panoramaDelivery.d.cts",
|
|
61
|
+
"default": "./dist/view/panoramaDelivery.cjs"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"./view3d/crossfade/panorama": {
|
|
65
|
+
"import": {
|
|
66
|
+
"types": "./dist/view3d/crossfade/panorama.d.ts",
|
|
67
|
+
"default": "./dist/view3d/crossfade/panorama.js"
|
|
68
|
+
},
|
|
69
|
+
"require": {
|
|
70
|
+
"types": "./dist/view3d/crossfade/panorama.d.cts",
|
|
71
|
+
"default": "./dist/view3d/crossfade/panorama.cjs"
|
|
72
|
+
}
|
|
46
73
|
}
|
|
47
74
|
},
|
|
48
75
|
"files": [
|