@archilogic/floor-plan-sdk 5.0.0-v5-scene-structure.0 → 5.0.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/README.md +5 -2
- package/dist/fpe.d.ts +3138 -1476
- package/dist/fpe.js +45137 -0
- package/dist/fpe.umd.cjs +9 -0
- package/dist/style.css +1 -1
- package/package.json +9 -6
- package/dist/fpe.api.json +0 -2827
- package/dist/fpe.mjs +0 -847
- package/dist/fpe.umd.js +0 -847
package/README.md
CHANGED
|
@@ -29,11 +29,14 @@ import { FloorPlanEngine } from '@archilogic/floor-plan-sdk'
|
|
|
29
29
|
|
|
30
30
|
### es module import via CDN
|
|
31
31
|
```js
|
|
32
|
-
import { FloorPlanEngine } from 'https://
|
|
32
|
+
import { FloorPlanEngine } from 'https://esm.sh/@archilogic/floor-plan-sdk'
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### umd module import via CDN
|
|
36
36
|
```html
|
|
37
|
-
<script src="https://
|
|
37
|
+
<script src="https://unpkg.com/@archilogic/floor-plan-sdk"></script>
|
|
38
|
+
<script>
|
|
39
|
+
const { FloorPlanEngine } = FloorPlanSdk
|
|
40
|
+
</script>
|
|
38
41
|
```
|
|
39
42
|
|