@myrmidon/gve-core 6.1.3 → 6.1.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myrmidon/gve-core",
3
- "version": "6.1.3",
3
+ "version": "6.1.5",
4
4
  "description": "Cadmus - GVE Angular frontend core components.",
5
5
  "keywords": [
6
6
  "GVE"
@@ -14,15 +14,15 @@
14
14
  "name": "Daniele Fusi"
15
15
  },
16
16
  "peerDependencies": {
17
- "@angular/common": "^20.0.0 || ^21.0.0",
18
- "@angular/core": "^20.0.0 || ^21.0.0",
19
- "@angular/material": "^20.0.0 || ^21.0.0",
17
+ "@angular/common": "^21.2.7",
18
+ "@angular/core": "^21.2.7",
19
+ "@angular/material": "^21.2.5",
20
20
  "@cisstech/nge": "^18.3.0",
21
21
  "@myrmidon/ngx-mat-tools": "^1.0.2",
22
22
  "@myrmidon/ngx-tools": "^2.0.2",
23
- "@myrmidon/gve-snapshot-rendition": "^0.0.7",
23
+ "@myrmidon/gve-snapshot-rendition": "^0.0.8",
24
24
  "gsap": "^3.14.2",
25
- "monaco-editor": "^0.34.0",
25
+ "monaco-editor": "^0.34.1",
26
26
  "nanoid": "^5.1.7"
27
27
  },
28
28
  "dependencies": {
@@ -39,5 +39,6 @@
39
39
  "types": "./types/myrmidon-gve-core.d.ts",
40
40
  "default": "./fesm2022/myrmidon-gve-core.mjs"
41
41
  }
42
- }
42
+ },
43
+ "type": "module"
43
44
  }
@@ -1222,6 +1222,12 @@ declare class SnapshotEditorComponent {
1222
1222
  * the element only exists when result() is truthy.
1223
1223
  */
1224
1224
  readonly renditionRef: _angular_core.Signal<ElementRef<GveSnapshotRendition> | undefined>;
1225
+ /**
1226
+ * Reference to the operation editor expansion panel.
1227
+ * Using viewChild signal to handle conditionally rendered element -
1228
+ * the element only exists when editedOp() is truthy.
1229
+ */
1230
+ readonly operationEditorPanelRef: _angular_core.Signal<ElementRef<any> | undefined>;
1225
1231
  /**
1226
1232
  * The snapshot to edit.
1227
1233
  */
@@ -1497,6 +1503,7 @@ declare class SnapshotTextEditorComponent implements OnInit {
1497
1503
  ngOnInit(): void;
1498
1504
  close(): void;
1499
1505
  copyToClipboard(): void;
1506
+ private trimLines;
1500
1507
  save(): void;
1501
1508
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SnapshotTextEditorComponent, [null, null, { optional: true; }, { optional: true; }]>;
1502
1509
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SnapshotTextEditorComponent, "gve-snapshot-text-editor", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; }, { "text": "textChange"; }, never, never, true, never>;