@mml-io/mml-web-client 0.0.0-experimental-f83b2be-20250826 → 0.0.0-experimental-f410cae-20250908
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/build/index.js +9 -3
- package/build/index.js.map +2 -2
- package/package.json +5 -5
package/build/index.js
CHANGED
|
@@ -6633,18 +6633,20 @@
|
|
|
6633
6633
|
0,
|
|
6634
6634
|
defaultLabelWidth,
|
|
6635
6635
|
(newValue) => {
|
|
6636
|
-
var _a2;
|
|
6636
|
+
var _a2, _b2;
|
|
6637
6637
|
this.props.width = newValue;
|
|
6638
6638
|
(_a2 = this.labelGraphics) == null ? void 0 : _a2.setWidth(this.props.width, this.props);
|
|
6639
|
+
this.collideableHelper.updateCollider((_b2 = this.labelGraphics) == null ? void 0 : _b2.getCollisionElement());
|
|
6639
6640
|
}
|
|
6640
6641
|
],
|
|
6641
6642
|
height: [
|
|
6642
6643
|
0,
|
|
6643
6644
|
defaultLabelHeight,
|
|
6644
6645
|
(newValue) => {
|
|
6645
|
-
var _a2;
|
|
6646
|
+
var _a2, _b2;
|
|
6646
6647
|
this.props.height = newValue;
|
|
6647
6648
|
(_a2 = this.labelGraphics) == null ? void 0 : _a2.setHeight(this.props.height, this.props);
|
|
6649
|
+
this.collideableHelper.updateCollider((_b2 = this.labelGraphics) == null ? void 0 : _b2.getCollisionElement());
|
|
6648
6650
|
}
|
|
6649
6651
|
],
|
|
6650
6652
|
padding: [
|
|
@@ -6684,7 +6686,11 @@
|
|
|
6684
6686
|
disable() {
|
|
6685
6687
|
}
|
|
6686
6688
|
static get observedAttributes() {
|
|
6687
|
-
return [
|
|
6689
|
+
return [
|
|
6690
|
+
...TransformableElement.observedAttributes,
|
|
6691
|
+
..._Label2.attributeHandler.getAttributes(),
|
|
6692
|
+
...CollideableHelper.observedAttributes
|
|
6693
|
+
];
|
|
6688
6694
|
}
|
|
6689
6695
|
getContentBounds() {
|
|
6690
6696
|
if (!this.transformableElementGraphics) {
|