@inweb/markup 26.7.0 → 26.7.2
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/markup.js +2 -2
- package/dist/markup.js.map +1 -1
- package/dist/markup.min.js +1 -1
- package/dist/markup.module.js +2 -2
- package/dist/markup.module.js.map +1 -1
- package/lib/markup/IMarkupCloud.d.ts +1 -1
- package/lib/markup/IMarkupEllipse.d.ts +2 -2
- package/lib/markup/IMarkupImage.d.ts +1 -1
- package/lib/markup/IMarkupRectangle.d.ts +1 -1
- package/lib/markup/Konva/KonvaCloud.d.ts +1 -1
- package/lib/markup/Konva/KonvaRectangle.d.ts +1 -1
- package/package.json +3 -3
- package/src/markup/IMarkupCloud.ts +1 -1
- package/src/markup/IMarkupEllipse.ts +2 -2
- package/src/markup/IMarkupImage.ts +1 -1
- package/src/markup/IMarkupRectangle.ts +1 -1
- package/src/markup/Konva/KonvaCloud.ts +1 -1
- package/src/markup/Konva/KonvaRectangle.ts +1 -1
package/dist/markup.module.js
CHANGED
|
@@ -538,7 +538,7 @@ class KonvaRectangle {
|
|
|
538
538
|
getWidth() {
|
|
539
539
|
return this._ref.width();
|
|
540
540
|
}
|
|
541
|
-
|
|
541
|
+
getHeight() {
|
|
542
542
|
return this._ref.height();
|
|
543
543
|
}
|
|
544
544
|
setWidth(w) {
|
|
@@ -1561,7 +1561,7 @@ class KonvaCloud {
|
|
|
1561
1561
|
const wcsRightLowerPoint = this._worldTransformer.screenToWorld(rightLowerPoint);
|
|
1562
1562
|
this._ref.setAttr("wcsEnd", wcsRightLowerPoint);
|
|
1563
1563
|
}
|
|
1564
|
-
|
|
1564
|
+
getHeight() {
|
|
1565
1565
|
return this._ref.height();
|
|
1566
1566
|
}
|
|
1567
1567
|
setHeight(h) {
|