@minmaps-dev/mm-web-sdk 1.0.0-rc.30 → 1.0.0-rc.31
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +25 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +1 -1
- package/dist/react.cjs.map +1 -1
- package/dist/react.d.ts +6 -0
- package/dist/react.js +1 -1
- package/dist/react.js.map +1 -1
- package/package.json +2 -2
- package/src/themes/alt3-hybrid-style.json +91 -48
package/dist/react.d.ts
CHANGED
|
@@ -72,6 +72,12 @@ interface SDKOptions {
|
|
|
72
72
|
enableInteractions?: boolean;
|
|
73
73
|
customSprite?: string;
|
|
74
74
|
minIndoorZoom?: number;
|
|
75
|
+
/**
|
|
76
|
+
* Interior unit-wall thickness in feet (default 1). Each wall is built by
|
|
77
|
+
* insetting a ring into each unit by `wallThickness / 2`, so adjacent units
|
|
78
|
+
* share a wall (their rings abut at the common edge). Floored at 0.5 — a
|
|
79
|
+
* thinner value collapses the negative buffer and drops the wall.
|
|
80
|
+
*/
|
|
75
81
|
wallThickness?: number;
|
|
76
82
|
boundsPadding?: BoundsPadding;
|
|
77
83
|
/**
|