@myrmidon/gve-core 7.0.6 → 7.0.8

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": "7.0.6",
3
+ "version": "7.0.8",
4
4
  "description": "Cadmus - GVE Angular frontend core components.",
5
5
  "keywords": [
6
6
  "GVE"
@@ -14,13 +14,13 @@
14
14
  "name": "Daniele Fusi"
15
15
  },
16
16
  "peerDependencies": {
17
- "@angular/common": "^21.2.13",
18
- "@angular/core": "^21.2.13",
19
- "@angular/material": "^21.2.11",
17
+ "@angular/common": "^21.2.14",
18
+ "@angular/core": "^21.2.14",
19
+ "@angular/material": "^21.2.12",
20
20
  "@cisstech/nge": "^18.3.0",
21
21
  "@myrmidon/ngx-mat-tools": "^1.0.2",
22
22
  "@myrmidon/ngx-tools": "^2.0.3",
23
- "@myrmidon/gve-snapshot-rendition": "^2.0.2",
23
+ "@myrmidon/gve-snapshot-rendition": "^2.0.4",
24
24
  "gsap": "^3.15.0",
25
25
  "monaco-editor": "^0.34.1",
26
26
  "nanoid": "^5.1.11"
@@ -774,6 +774,7 @@ declare class FeatureEditorComponent implements OnInit, OnDestroy {
774
774
  private readonly _currentName;
775
775
  name: FormControl<string>;
776
776
  value: FormControl<string>;
777
+ valuePrefix: FormControl<string>;
777
778
  selectedValue: FormControl<string>;
778
779
  setPolicy: FormControl<FeatureSetPolicy>;
779
780
  isNegated: FormControl<boolean>;
@@ -1618,6 +1619,7 @@ declare class SnapshotTextEditorComponent implements OnInit {
1618
1619
  * automatically selected.
1619
1620
  */
1620
1621
  declare class StepsMapComponent implements AfterViewInit {
1622
+ private _snackBar;
1621
1623
  private _viewInitialized;
1622
1624
  private _selectionProcessed;
1623
1625
  readonly lines: _angular_core.WritableSignal<{
@@ -1640,6 +1642,7 @@ declare class StepsMapComponent implements AfterViewInit {
1640
1642
  ngAfterViewInit(): void;
1641
1643
  private updateLines;
1642
1644
  onStepClick(step: ChainOperationContextStep): void;
1645
+ copyText(step: ChainOperationContextStep, event: MouseEvent): void;
1643
1646
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<StepsMapComponent, never>;
1644
1647
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<StepsMapComponent, "gve-steps-map", never, { "steps": { "alias": "steps"; "required": false; "isSignal": true; }; "selectedStep": { "alias": "selectedStep"; "required": false; "isSignal": true; }; "textFontSize": { "alias": "textFontSize"; "required": false; "isSignal": true; }; }, { "selectedStep": "selectedStepChange"; }, never, never, true, never>;
1645
1648
  }