@myrmidon/gve-core 6.0.0 → 6.0.2
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.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "Cadmus - GVE Angular frontend core components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"GVE"
|
|
@@ -21,7 +21,6 @@
|
|
|
21
21
|
"@myrmidon/ngx-mat-tools": "^1.0.1",
|
|
22
22
|
"@myrmidon/ngx-tools": "^2.0.2",
|
|
23
23
|
"@myrmidon/gve-snapshot-rendition": "^0.0.5",
|
|
24
|
-
"@svgdotjs/svg.js": "^3.2.5",
|
|
25
24
|
"gsap": "^3.14.2",
|
|
26
25
|
"monaco-editor": "^0.34.0",
|
|
27
26
|
"nanoid": "^5.1.6"
|
|
@@ -1039,10 +1039,10 @@ declare class FeatureSetEditorComponent implements OnInit, OnDestroy {
|
|
|
1039
1039
|
/**
|
|
1040
1040
|
* The features to edit.
|
|
1041
1041
|
*/
|
|
1042
|
-
readonly features: _angular_core.ModelSignal<
|
|
1042
|
+
readonly features: _angular_core.ModelSignal<Feature[] | OperationFeature[]>;
|
|
1043
1043
|
readonly editedFeature: _angular_core.WritableSignal<Feature | OperationFeature | undefined>;
|
|
1044
1044
|
readonly editedFeatureIndex: _angular_core.WritableSignal<number>;
|
|
1045
|
-
filteredFeatures: _angular_core.WritableSignal<
|
|
1045
|
+
filteredFeatures: _angular_core.WritableSignal<Feature[] | OperationFeature[]>;
|
|
1046
1046
|
filter: FormControl<string | null>;
|
|
1047
1047
|
constructor(formBuilder: FormBuilder);
|
|
1048
1048
|
private applyFeatureFilter;
|
|
@@ -1080,7 +1080,7 @@ declare class FeatureSetViewComponent {
|
|
|
1080
1080
|
/**
|
|
1081
1081
|
* The features.
|
|
1082
1082
|
*/
|
|
1083
|
-
readonly features: _angular_core.InputSignal<
|
|
1083
|
+
readonly features: _angular_core.InputSignal<Feature[] | OperationFeature[]>;
|
|
1084
1084
|
/**
|
|
1085
1085
|
* The list of feature names to display in the name selection.
|
|
1086
1086
|
* This is used when you have a closed list of features.
|
|
@@ -1099,7 +1099,7 @@ declare class FeatureSetViewComponent {
|
|
|
1099
1099
|
* is greater than the threshold. Default is 5.
|
|
1100
1100
|
*/
|
|
1101
1101
|
readonly filterThreshold: _angular_core.InputSignal<number>;
|
|
1102
|
-
readonly filteredFeatures: _angular_core.WritableSignal<
|
|
1102
|
+
readonly filteredFeatures: _angular_core.WritableSignal<Feature[] | OperationFeature[]>;
|
|
1103
1103
|
filter: FormControl<string | null>;
|
|
1104
1104
|
constructor(formBuilder: FormBuilder);
|
|
1105
1105
|
private applyFeatureFilter;
|
|
@@ -1224,7 +1224,6 @@ declare class SnapshotEditorComponent {
|
|
|
1224
1224
|
baseText: FormControl<CharNode[]>;
|
|
1225
1225
|
operations: FormControl<CharChainOperation[]>;
|
|
1226
1226
|
form: FormGroup;
|
|
1227
|
-
readonly showChain: FormControl<boolean>;
|
|
1228
1227
|
readonly featDetails: FormControl<boolean>;
|
|
1229
1228
|
readonly autoRun: FormControl<boolean>;
|
|
1230
1229
|
readonly chain: _angular_core.WritableSignal<CharChain | undefined>;
|
|
@@ -1393,7 +1392,6 @@ declare class SnapshotEditorComponent {
|
|
|
1393
1392
|
* all the operations, as users must be able to browse across its steps.
|
|
1394
1393
|
*/
|
|
1395
1394
|
runToLast(): void;
|
|
1396
|
-
getChainAt(index: number, lastOperation?: CharChainOperation): void;
|
|
1397
1395
|
/**
|
|
1398
1396
|
* Update the snapshot view by running the operations up to the
|
|
1399
1397
|
* currently edited operation if any.
|