@hatiolab/things-scene 3.4.12 → 3.4.14
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/package.json +1 -1
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.d.ts +5 -1
- package/things-scene.mjs +1 -1
package/things-scene.d.ts
CHANGED
|
@@ -19,12 +19,16 @@ declare module '@hatiolab/things-scene' {
|
|
|
19
19
|
const MODE_EDIT = 1
|
|
20
20
|
const MODE_SHIFT = 2
|
|
21
21
|
const MODE_ADD = 3
|
|
22
|
+
const MODE_PASTE_STYLE = 4
|
|
23
|
+
const MODE_PASTE_DATABIND = 5
|
|
22
24
|
|
|
23
25
|
enum SCENE_MODE {
|
|
24
26
|
VIEW = 0,
|
|
25
27
|
EDIT = 1,
|
|
26
28
|
SHIFT = 2,
|
|
27
|
-
ADD = 3
|
|
29
|
+
ADD = 3,
|
|
30
|
+
PASTE_STYLE = 4,
|
|
31
|
+
PASTE_DATABIND = 5
|
|
28
32
|
}
|
|
29
33
|
|
|
30
34
|
type FITMODE = 'both' | 'ratio' | 'width' | 'height' | 'center' | 'none'
|