@energycap/components 0.46.14-highlighting-normalized-pattern.20260701-1417 → 0.46.14-highlighting-normalized-pattern.20260702-1533
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
|
@@ -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 {
|