@inweb/markup 26.10.6 → 26.11.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.
|
@@ -29,22 +29,22 @@ export interface IMarkupObject {
|
|
|
29
29
|
*/
|
|
30
30
|
setRotation(degrees: number): void;
|
|
31
31
|
/**
|
|
32
|
-
* Returns the Z-index of
|
|
32
|
+
* Returns the Z-index of an object relative to sibling objects that are in the same group.
|
|
33
33
|
*
|
|
34
34
|
* Z-Index is not absolute (like in CSS). It is relative to parent object group only:
|
|
35
35
|
*
|
|
36
|
-
* - `images` - are
|
|
37
|
-
* - `texts` - are
|
|
36
|
+
* - `images` - are always at the bottom
|
|
37
|
+
* - `texts` - are always on top
|
|
38
38
|
* - `others` - are always between images and texts
|
|
39
39
|
*/
|
|
40
40
|
getZIndex(): number;
|
|
41
41
|
/**
|
|
42
|
-
* Sets the Z-index of
|
|
42
|
+
* Sets the Z-index of an object relative to sibling objects that are in the same group.
|
|
43
43
|
*
|
|
44
44
|
* Z-Index is not absolute (like in CSS). It is relative to parent object group only:
|
|
45
45
|
*
|
|
46
|
-
* - `images` - are
|
|
47
|
-
* - `texts` - are
|
|
46
|
+
* - `images` - are always at the bottom
|
|
47
|
+
* - `texts` - are always on top
|
|
48
48
|
* - `others` - are always between images and texts
|
|
49
49
|
*
|
|
50
50
|
* @param zIndex - An integer value of Z-Index.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inweb/markup",
|
|
3
|
-
"version": "26.
|
|
3
|
+
"version": "26.11.0",
|
|
4
4
|
"description": "JavaScript 2D markups",
|
|
5
5
|
"homepage": "https://cloud.opendesign.com/docs/index.html",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"docs": "typedoc"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@inweb/eventemitter2": "~26.
|
|
30
|
-
"@inweb/viewer-core": "~26.
|
|
29
|
+
"@inweb/eventemitter2": "~26.11.0",
|
|
30
|
+
"@inweb/viewer-core": "~26.11.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"konva": "^10.0.2"
|
|
@@ -58,23 +58,23 @@ export interface IMarkupObject {
|
|
|
58
58
|
setRotation(degrees: number): void;
|
|
59
59
|
|
|
60
60
|
/**
|
|
61
|
-
* Returns the Z-index of
|
|
61
|
+
* Returns the Z-index of an object relative to sibling objects that are in the same group.
|
|
62
62
|
*
|
|
63
63
|
* Z-Index is not absolute (like in CSS). It is relative to parent object group only:
|
|
64
64
|
*
|
|
65
|
-
* - `images` - are
|
|
66
|
-
* - `texts` - are
|
|
65
|
+
* - `images` - are always at the bottom
|
|
66
|
+
* - `texts` - are always on top
|
|
67
67
|
* - `others` - are always between images and texts
|
|
68
68
|
*/
|
|
69
69
|
getZIndex(): number;
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
|
-
* Sets the Z-index of
|
|
72
|
+
* Sets the Z-index of an object relative to sibling objects that are in the same group.
|
|
73
73
|
*
|
|
74
74
|
* Z-Index is not absolute (like in CSS). It is relative to parent object group only:
|
|
75
75
|
*
|
|
76
|
-
* - `images` - are
|
|
77
|
-
* - `texts` - are
|
|
76
|
+
* - `images` - are always at the bottom
|
|
77
|
+
* - `texts` - are always on top
|
|
78
78
|
* - `others` - are always between images and texts
|
|
79
79
|
*
|
|
80
80
|
* @param zIndex - An integer value of Z-Index.
|