@myrmidon/gve-core 7.0.12 → 7.0.13
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
|
@@ -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<OperationFeature[] | Feature[]>;
|
|
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<OperationFeature[] | Feature[]>;
|
|
1072
|
+
readonly draftFeatures: _angular_core.WritableSignal<OperationFeature[] | Feature[]>;
|
|
1073
|
+
readonly workingFeatures: _angular_core.Signal<OperationFeature[] | Feature[]>;
|
|
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<OperationFeature[] | Feature[]>;
|
|
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<OperationFeature[] | Feature[]>;
|
|
1133
1133
|
filter: FormControl<string | null>;
|
|
1134
1134
|
constructor(formBuilder: FormBuilder);
|
|
1135
1135
|
private applyFeatureFilter;
|