@energycap/components 0.46.13 → 0.46.14-highlighting-normalized-pattern.20260702-1458

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": "@energycap/components",
3
- "version": "0.46.13",
3
+ "version": "0.46.14-highlighting-normalized-pattern.20260702-1458",
4
4
  "schematics": "./schematics/collection.json",
5
5
  "dependencies": {
6
6
  "tslib": "^2.0.0"
@@ -3993,6 +3993,8 @@ declare class TagsComponent implements OnChanges {
3993
3993
  isSubtle: boolean;
3994
3994
  /** Highlights text found in any of the tags */
3995
3995
  highlightText: string;
3996
+ /** Regex pattern string used to normalize text before highlight matching (e.g. '\\s' to ignore whitespace) */
3997
+ highlightNormalizePattern: string;
3996
3998
  /**
3997
3999
  * Emits the tag item when the tag's close button is clicked
3998
4000
  */
@@ -4015,7 +4017,7 @@ declare class TagsComponent implements OnChanges {
4015
4017
  ngOnChanges(changes: SimpleChanges): void;
4016
4018
  closeTag(tag: Tag): void;
4017
4019
  static ɵfac: i0.ɵɵFactoryDeclaration<TagsComponent, never>;
4018
- static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "ec-tags", never, { "id": { "alias": "id"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; "isCondensed": { "alias": "isCondensed"; "required": false; }; "isSubtle": { "alias": "isSubtle"; "required": false; }; "highlightText": { "alias": "highlightText"; "required": false; }; }, { "tagClosed": "tagClosed"; }, never, never, false, never>;
4020
+ static ɵcmp: i0.ɵɵComponentDeclaration<TagsComponent, "ec-tags", never, { "id": { "alias": "id"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; "wrap": { "alias": "wrap"; "required": false; }; "isCondensed": { "alias": "isCondensed"; "required": false; }; "isSubtle": { "alias": "isSubtle"; "required": false; }; "highlightText": { "alias": "highlightText"; "required": false; }; "highlightNormalizePattern": { "alias": "highlightNormalizePattern"; "required": false; }; }, { "tagClosed": "tagClosed"; }, never, never, false, never>;
4019
4021
  }
4020
4022
 
4021
4023
  declare class FormControlComponent implements OnChanges, AfterViewInit, AfterContentInit {
@@ -5344,7 +5346,8 @@ declare class ResizableComponent extends ResizableBase implements OnInit {
5344
5346
  }
5345
5347
 
5346
5348
  declare class HighlightTextPipe implements PipeTransform {
5347
- transform(value: string, searchText: string): string;
5349
+ transform(value: string, searchText: string, normalizePattern?: string): string;
5350
+ private transformNormalized;
5348
5351
  private strongWrap;
5349
5352
  private escapeRegex;
5350
5353
  static ɵfac: i0.ɵɵFactoryDeclaration<HighlightTextPipe, never>;