@aibee/crc-bmap 0.13.10 → 0.13.12
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/lib/index.cjs +1 -1
- package/lib/index.esm.min.js +1 -1
- package/lib/meta.json +7 -7
- package/lib/src/config.d.ts +5 -1
- package/package.json +1 -1
package/lib/meta.json
CHANGED
|
@@ -4495,7 +4495,7 @@
|
|
|
4495
4495
|
"format": "esm"
|
|
4496
4496
|
},
|
|
4497
4497
|
"../lib/src/context/renderer.js": {
|
|
4498
|
-
"bytes":
|
|
4498
|
+
"bytes": 2299,
|
|
4499
4499
|
"imports": [
|
|
4500
4500
|
{
|
|
4501
4501
|
"path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
|
|
@@ -4656,7 +4656,7 @@
|
|
|
4656
4656
|
"format": "esm"
|
|
4657
4657
|
},
|
|
4658
4658
|
"../lib/src/config.js": {
|
|
4659
|
-
"bytes":
|
|
4659
|
+
"bytes": 2192,
|
|
4660
4660
|
"imports": [
|
|
4661
4661
|
{
|
|
4662
4662
|
"path": "lodash",
|
|
@@ -4864,7 +4864,7 @@
|
|
|
4864
4864
|
"format": "esm"
|
|
4865
4865
|
},
|
|
4866
4866
|
"../lib/src/bmap.js": {
|
|
4867
|
-
"bytes":
|
|
4867
|
+
"bytes": 22235,
|
|
4868
4868
|
"imports": [
|
|
4869
4869
|
{
|
|
4870
4870
|
"path": "../../../node_modules/.pnpm/@swc+helpers@0.5.17/node_modules/@swc/helpers/esm/_extends.js",
|
|
@@ -9238,7 +9238,7 @@
|
|
|
9238
9238
|
"bytesInOutput": 208
|
|
9239
9239
|
},
|
|
9240
9240
|
"../lib/src/bmap.js": {
|
|
9241
|
-
"bytesInOutput":
|
|
9241
|
+
"bytesInOutput": 10978
|
|
9242
9242
|
},
|
|
9243
9243
|
"../lib/src/context/context.js": {
|
|
9244
9244
|
"bytesInOutput": 8697
|
|
@@ -9544,7 +9544,7 @@
|
|
|
9544
9544
|
"bytesInOutput": 13546
|
|
9545
9545
|
},
|
|
9546
9546
|
"../lib/src/context/renderer.js": {
|
|
9547
|
-
"bytesInOutput":
|
|
9547
|
+
"bytesInOutput": 1126
|
|
9548
9548
|
},
|
|
9549
9549
|
"../lib/src/context/scene.js": {
|
|
9550
9550
|
"bytesInOutput": 202
|
|
@@ -9559,7 +9559,7 @@
|
|
|
9559
9559
|
"bytesInOutput": 2618
|
|
9560
9560
|
},
|
|
9561
9561
|
"../lib/src/config.js": {
|
|
9562
|
-
"bytesInOutput":
|
|
9562
|
+
"bytesInOutput": 1220
|
|
9563
9563
|
},
|
|
9564
9564
|
"../lib/src/loader/AibeeLoader/index.js": {
|
|
9565
9565
|
"bytesInOutput": 8825
|
|
@@ -9697,7 +9697,7 @@
|
|
|
9697
9697
|
"bytesInOutput": 433
|
|
9698
9698
|
}
|
|
9699
9699
|
},
|
|
9700
|
-
"bytes":
|
|
9700
|
+
"bytes": 401496
|
|
9701
9701
|
}
|
|
9702
9702
|
}
|
|
9703
9703
|
}
|
package/lib/src/config.d.ts
CHANGED
|
@@ -12,7 +12,10 @@ export interface Config {
|
|
|
12
12
|
loadPlaceInfo: string;
|
|
13
13
|
};
|
|
14
14
|
enableBoxSelect: boolean;
|
|
15
|
-
resizeObserver:
|
|
15
|
+
resizeObserver: {
|
|
16
|
+
enable: boolean;
|
|
17
|
+
debounceTime: number;
|
|
18
|
+
};
|
|
16
19
|
heatMap: Partial<HeatmapConfiguration>;
|
|
17
20
|
useFloorCache: boolean;
|
|
18
21
|
control: {
|
|
@@ -67,6 +70,7 @@ export interface Config {
|
|
|
67
70
|
loaderPlaceConfig: {
|
|
68
71
|
textFontSize: number;
|
|
69
72
|
};
|
|
73
|
+
renderAnimation: 'setTimeout' | 'requestAnimationFrame';
|
|
70
74
|
}
|
|
71
75
|
export declare const defaultConfig: Config;
|
|
72
76
|
export type DeepPartial<T> = {
|