@myrmidon/gve-core 7.0.10 → 7.0.12
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.
|
|
3
|
+
"version": "7.0.12",
|
|
4
4
|
"description": "Cadmus - GVE Angular frontend core components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"GVE"
|
|
@@ -14,16 +14,15 @@
|
|
|
14
14
|
"name": "Daniele Fusi"
|
|
15
15
|
},
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@angular/common": "^
|
|
18
|
-
"@angular/core": "^
|
|
19
|
-
"@angular/material": "^
|
|
17
|
+
"@angular/common": "^22.0.1",
|
|
18
|
+
"@angular/core": "^22.0.1",
|
|
19
|
+
"@angular/material": "^22.0.1",
|
|
20
20
|
"@cisstech/nge": "^18.3.0",
|
|
21
|
-
"@myrmidon/ngx-mat-tools": "^
|
|
22
|
-
"@myrmidon/ngx-tools": "^
|
|
23
|
-
"@myrmidon/gve-snapshot-rendition": "^2.0.
|
|
21
|
+
"@myrmidon/ngx-mat-tools": "^2.0.0",
|
|
22
|
+
"@myrmidon/ngx-tools": "^3.0.0",
|
|
23
|
+
"@myrmidon/gve-snapshot-rendition": "^2.0.5",
|
|
24
24
|
"gsap": "^3.15.0",
|
|
25
|
-
"
|
|
26
|
-
"nanoid": "^5.1.11"
|
|
25
|
+
"nanoid": "^5.1.16"
|
|
27
26
|
},
|
|
28
27
|
"dependencies": {
|
|
29
28
|
"tslib": "^2.3.0"
|
|
@@ -1065,12 +1065,12 @@ declare class FeatureSetEditorComponent implements OnInit, OnDestroy {
|
|
|
1065
1065
|
/**
|
|
1066
1066
|
* The features to edit.
|
|
1067
1067
|
*/
|
|
1068
|
-
readonly features: _angular_core.ModelSignal<
|
|
1068
|
+
readonly features: _angular_core.ModelSignal<Feature[] | OperationFeature[]>;
|
|
1069
1069
|
readonly editedFeature: _angular_core.WritableSignal<Feature | OperationFeature | undefined>;
|
|
1070
1070
|
readonly editedFeatureIndex: _angular_core.WritableSignal<number>;
|
|
1071
|
-
filteredFeatures: _angular_core.WritableSignal<
|
|
1072
|
-
readonly draftFeatures: _angular_core.WritableSignal<
|
|
1073
|
-
readonly workingFeatures: _angular_core.Signal<
|
|
1071
|
+
filteredFeatures: _angular_core.WritableSignal<Feature[] | OperationFeature[]>;
|
|
1072
|
+
readonly draftFeatures: _angular_core.WritableSignal<Feature[] | OperationFeature[]>;
|
|
1073
|
+
readonly workingFeatures: _angular_core.Signal<Feature[] | OperationFeature[]>;
|
|
1074
1074
|
readonly hasCloseButton: _angular_core.Signal<boolean>;
|
|
1075
1075
|
filter: FormControl<string | null>;
|
|
1076
1076
|
constructor(formBuilder: FormBuilder);
|
|
@@ -1110,7 +1110,7 @@ declare class FeatureSetViewComponent implements OnInit, OnDestroy {
|
|
|
1110
1110
|
/**
|
|
1111
1111
|
* The features.
|
|
1112
1112
|
*/
|
|
1113
|
-
readonly features: _angular_core.InputSignal<
|
|
1113
|
+
readonly features: _angular_core.InputSignal<Feature[] | OperationFeature[]>;
|
|
1114
1114
|
/**
|
|
1115
1115
|
* The list of feature names to display in the name selection.
|
|
1116
1116
|
* This is used when you have a closed list of features.
|
|
@@ -1129,7 +1129,7 @@ declare class FeatureSetViewComponent implements OnInit, OnDestroy {
|
|
|
1129
1129
|
* is greater than the threshold. Default is 5.
|
|
1130
1130
|
*/
|
|
1131
1131
|
readonly filterThreshold: _angular_core.InputSignal<number>;
|
|
1132
|
-
readonly filteredFeatures: _angular_core.WritableSignal<
|
|
1132
|
+
readonly filteredFeatures: _angular_core.WritableSignal<Feature[] | OperationFeature[]>;
|
|
1133
1133
|
filter: FormControl<string | null>;
|
|
1134
1134
|
constructor(formBuilder: FormBuilder);
|
|
1135
1135
|
private applyFeatureFilter;
|
|
@@ -1213,6 +1213,7 @@ declare class SnapshotEditorComponent {
|
|
|
1213
1213
|
private readonly _nanoid;
|
|
1214
1214
|
private _previewing?;
|
|
1215
1215
|
private _stepPickFrozen?;
|
|
1216
|
+
private _currentRunSubscription?;
|
|
1216
1217
|
/**
|
|
1217
1218
|
* Reference to the snapshot rendition web component.
|
|
1218
1219
|
* Using viewChild signal to handle conditionally rendered element -
|