@archilogic/floor-plan-sdk 5.0.0-beta.1 → 5.0.0-beta.3
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/fpe.d.ts +3 -6
- package/dist/fpe.es.js +281 -244
- package/dist/fpe.umd.js +281 -244
- package/package.json +1 -1
package/dist/fpe.d.ts
CHANGED
|
@@ -859,7 +859,6 @@ declare type Theme = {
|
|
|
859
859
|
wallContours?: boolean;
|
|
860
860
|
/** render assets with textures rather than solid colors */
|
|
861
861
|
showAssetTextures?: boolean;
|
|
862
|
-
nativeLines?: boolean;
|
|
863
862
|
fontFamily?: string;
|
|
864
863
|
elements?: {
|
|
865
864
|
roomStamp?: {
|
|
@@ -1004,7 +1003,6 @@ declare class FloorPlanCore {
|
|
|
1004
1003
|
*/
|
|
1005
1004
|
destroy(): void;
|
|
1006
1005
|
}
|
|
1007
|
-
|
|
1008
1006
|
interface FpeConfig extends StartupOptions {
|
|
1009
1007
|
api?: {
|
|
1010
1008
|
accessToken?: string;
|
|
@@ -1022,10 +1020,9 @@ interface FpeConfig extends StartupOptions {
|
|
|
1022
1020
|
destroyOnDomRemove?: boolean;
|
|
1023
1021
|
}
|
|
1024
1022
|
interface ElementTheme {
|
|
1025
|
-
fill?:
|
|
1023
|
+
fill?: ShapeStyle['fill'];
|
|
1026
1024
|
fillOpacity?: number;
|
|
1027
|
-
stroke?:
|
|
1028
|
-
strokeWidth?: number;
|
|
1025
|
+
stroke?: ShapeStyle['stroke'];
|
|
1029
1026
|
}
|
|
1030
1027
|
interface SpaceTheme extends ElementTheme {
|
|
1031
1028
|
usage?: {
|
|
@@ -1444,4 +1441,4 @@ declare class FloorPlanEngine extends FloorPlanCore {
|
|
|
1444
1441
|
destroy(): void;
|
|
1445
1442
|
}
|
|
1446
1443
|
|
|
1447
|
-
export { FloorPlanEngine, Point2d, Polygon, PolygonList, Shape, polygonIntersection, polygonOffset, polygonUnion };
|
|
1444
|
+
export { FloorPlanEngine, GraphicArgs, Point2d, Polygon, PolygonList, Shape, polygonIntersection, polygonOffset, polygonUnion };
|