ato-water-lib 0.0.122 → 0.0.124
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/constants/components-group-const.mjs +2 -2
- package/esm2020/lib/models/default-gojs-editor.model.mjs +7 -2
- package/fesm2015/ato-water-lib.mjs +7 -2
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +7 -2
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/package.json +1 -1
@@ -4655,7 +4655,7 @@ const ATO_COMPONENTS_GROUP_DATA = {
|
|
4655
4655
|
tooltip: '',
|
4656
4656
|
assetLayers: ATO_ASSET_LAYERS.FLOW,
|
4657
4657
|
extendedData: {
|
4658
|
-
visible:
|
4658
|
+
visible: false,
|
4659
4659
|
},
|
4660
4660
|
},
|
4661
4661
|
{
|
@@ -8825,9 +8825,14 @@ class AtoDefaultGojsEditor {
|
|
8825
8825
|
makeGroupImmersedUFTemplate(icon, title, size = { w: 80, h: 80 }) {
|
8826
8826
|
let node = this.$(go.Group, 'Spot', {
|
8827
8827
|
layout: this.$(go.Layout),
|
8828
|
+
selectable: false,
|
8828
8829
|
}, {
|
8829
8830
|
// minSize: new go.Size(NaN, 600),
|
8830
|
-
},
|
8831
|
+
},
|
8832
|
+
// new go.Binding('selectable', '', (x) => {
|
8833
|
+
// return x?.selectable;
|
8834
|
+
// }),
|
8835
|
+
new go.Binding('location', 'loc', go.Point.parse).makeTwoWay(go.Point.stringify), this.$(go.Panel, 'Auto', {
|
8831
8836
|
row: 0,
|
8832
8837
|
padding: new go.Margin(0, 0, 0, 0),
|
8833
8838
|
}, this.$(go.Shape, 'RoundedRectangle', {
|