@inweb/markup 26.10.6 → 26.12.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 a object relative to sibling objects that are in the same group.
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 olways at the bottom
37
- * - `texts` - are olways on top
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 a object relative to sibling objects that are in the same group.
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 olways at the bottom
47
- * - `texts` - are olways on top
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.10.6",
3
+ "version": "26.12.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.10.6",
30
- "@inweb/viewer-core": "~26.10.6"
29
+ "@inweb/eventemitter2": "~26.12.0",
30
+ "@inweb/viewer-core": "~26.12.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 a object relative to sibling objects that are in the same group.
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 olways at the bottom
66
- * - `texts` - are olways on top
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 a object relative to sibling objects that are in the same group.
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 olways at the bottom
77
- * - `texts` - are olways on top
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.