@myrmidon/gve-core 6.0.4 → 6.1.0

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.4",
3
+ "version": "6.1.0",
4
4
  "description": "Cadmus - GVE Angular frontend core components.",
5
5
  "keywords": [
6
6
  "GVE"
@@ -706,7 +706,7 @@ interface FeatureMap {
706
706
  declare class FeatureEditorComponent implements OnInit, OnDestroy {
707
707
  private _sub?;
708
708
  private _frozen?;
709
- nameControl?: ElementRef;
709
+ readonly nameControl: _angular_core.Signal<ElementRef<any> | undefined>;
710
710
  /**
711
711
  * The list of feature names to display in the name selection.
712
712
  * This is used when you have a closed list of features.
@@ -1054,10 +1054,10 @@ declare class FeatureSetEditorComponent implements OnInit, OnDestroy {
1054
1054
  /**
1055
1055
  * The features to edit.
1056
1056
  */
1057
- readonly features: _angular_core.ModelSignal<Feature[] | OperationFeature[]>;
1057
+ readonly features: _angular_core.ModelSignal<OperationFeature[] | Feature[]>;
1058
1058
  readonly editedFeature: _angular_core.WritableSignal<Feature | OperationFeature | undefined>;
1059
1059
  readonly editedFeatureIndex: _angular_core.WritableSignal<number>;
1060
- filteredFeatures: _angular_core.WritableSignal<Feature[] | OperationFeature[]>;
1060
+ filteredFeatures: _angular_core.WritableSignal<OperationFeature[] | Feature[]>;
1061
1061
  filter: FormControl<string | null>;
1062
1062
  constructor(formBuilder: FormBuilder);
1063
1063
  private applyFeatureFilter;
@@ -1090,12 +1090,12 @@ declare class FeatureSetEditorComponent implements OnInit, OnDestroy {
1090
1090
  * it is always invisible; otherwise, it gets visible when the number of features
1091
1091
  * is greater than the threshold. Default is 5.
1092
1092
  */
1093
- declare class FeatureSetViewComponent {
1093
+ declare class FeatureSetViewComponent implements OnInit, OnDestroy {
1094
1094
  private _sub?;
1095
1095
  /**
1096
1096
  * The features.
1097
1097
  */
1098
- readonly features: _angular_core.InputSignal<Feature[] | OperationFeature[]>;
1098
+ readonly features: _angular_core.InputSignal<OperationFeature[] | Feature[]>;
1099
1099
  /**
1100
1100
  * The list of feature names to display in the name selection.
1101
1101
  * This is used when you have a closed list of features.
@@ -1114,7 +1114,7 @@ declare class FeatureSetViewComponent {
1114
1114
  * is greater than the threshold. Default is 5.
1115
1115
  */
1116
1116
  readonly filterThreshold: _angular_core.InputSignal<number>;
1117
- readonly filteredFeatures: _angular_core.WritableSignal<Feature[] | OperationFeature[]>;
1117
+ readonly filteredFeatures: _angular_core.WritableSignal<OperationFeature[] | Feature[]>;
1118
1118
  filter: FormControl<string | null>;
1119
1119
  constructor(formBuilder: FormBuilder);
1120
1120
  private applyFeatureFilter;