(e)
| 11922 | return i; |
| 11923 | } |
| 11924 | assembleGroupEncodeEntry(e) { |
| 11925 | let t = {}; |
| 11926 | return ( |
| 11927 | this.view && (t = this.assembleEncodeFromView(this.view)), |
| 11928 | e || |
| 11929 | (this.description && (t.description = Pn(this.description)), |
| 11930 | "unit" !== this.type && "layer" !== this.type) |
| 11931 | ? S(t) |
| 11932 | ? void 0 |
| 11933 | : t |
| 11934 | : { |
| 11935 | width: this.getSizeSignalRef("width"), |
| 11936 | height: this.getSizeSignalRef("height"), |
| 11937 | ...t, |
| 11938 | } |
| 11939 | ); |
| 11940 | } |
| 11941 | assembleLayout() { |
| 11942 | if (!this.layout) return; |
| 11943 | const { spacing: e, ...t } = this.layout, |
no test coverage detected