@@ -48,11 +48,12 @@ export class IgxFilteringOperand {
4848 * Returns an array of names of the conditions which are visible in the filtering UI
4949 */
5050 public conditionList ( ) : string [ ] {
51- return this . operations . filter ( f => ! f . hidden && ! f . isNestedQuery ) . map ( ( element ) => element . name ) ;
51+ return this . operations . filter ( f => ! f . hidden && ! f . isNestedQuery ) . map ( ( element ) => element . name ) ;
5252 }
5353
5454 /**
5555 * Returns an array of names of the conditions which are visible in the UI, including "In" and "Not In", allowing the creation of sub-queries.
56+ * @hidden @internal
5657 */
5758 public extendedConditionList ( ) : string [ ] {
5859 return this . operations . filter ( f => ! f . hidden ) . map ( ( element ) => element . name ) ;
@@ -76,10 +77,7 @@ export class IgxFilteringOperand {
7677 this . operations . push ( operation ) ;
7778 }
7879
79- /**
80- * @hidden
81- */
82- public findValueInSet ( target : any , searchVal : Set < any > ) {
80+ protected findValueInSet ( target : any , searchVal : Set < any > ) {
8381 return searchVal . has ( target ) ;
8482 }
8583}
@@ -119,7 +117,7 @@ export class IgxBooleanFilteringOperand extends IgxFilteringOperand {
119117 iconName : 'filter_not_empty' ,
120118 logic : ( target : boolean ) => target !== null && target !== undefined
121119 } ] ;
122-
120+
123121 this . operations = newOperations . concat ( this . operations ) ;
124122 }
125123}
@@ -143,7 +141,7 @@ class IgxBaseDateTimeFilteringOperand extends IgxFilteringOperand {
143141 iconName : 'filter_not_empty' ,
144142 logic : ( target : Date ) => target !== null && target !== undefined
145143 } ] ;
146-
144+
147145 this . operations = newOperations . concat ( this . operations ) ;
148146 }
149147
@@ -189,10 +187,7 @@ class IgxBaseDateTimeFilteringOperand extends IgxFilteringOperand {
189187 return res ;
190188 }
191189
192- /**
193- * @hidden
194- */
195- public override findValueInSet ( target : any , searchVal : Set < any > ) {
190+ protected override findValueInSet ( target : any , searchVal : Set < any > ) {
196191 if ( ! target ) {
197192 return false ;
198193 }
@@ -416,11 +411,11 @@ export class IgxDateFilteringOperand extends IgxBaseDateTimeFilteringOperand {
416411 return d . year === now . year + 1 ;
417412 }
418413 } ] ;
419-
414+
420415 this . operations = newOperations . concat ( this . operations ) ;
421416 }
422417
423- public override findValueInSet ( target : any , searchVal : Set < any > ) {
418+ protected override findValueInSet ( target : any , searchVal : Set < any > ) {
424419 if ( ! target ) {
425420 return false ;
426421 }
@@ -637,7 +632,7 @@ export class IgxDateTimeFilteringOperand extends IgxBaseDateTimeFilteringOperand
637632 return d . year === now . year + 1 ;
638633 }
639634 } ] ;
640-
635+
641636 this . operations = newOperations . concat ( this . operations ) ;
642637 }
643638}
@@ -741,14 +736,11 @@ export class IgxTimeFilteringOperand extends IgxBaseDateTimeFilteringOperand {
741736 true : targetn . hours === search . hours && targetn . minutes === search . minutes && targetn . seconds > search . seconds ;
742737 }
743738 } ] ;
744-
739+
745740 this . operations = newOperations . concat ( this . operations ) ;
746741 }
747742
748- /**
749- * @hidden
750- */
751- public override findValueInSet ( target : any , searchVal : Set < any > ) {
743+ protected override findValueInSet ( target : any , searchVal : Set < any > ) {
752744 if ( ! target ) {
753745 return false ;
754746 }
@@ -806,7 +798,7 @@ export class IgxNumberFilteringOperand extends IgxFilteringOperand {
806798 iconName : 'filter_not_empty' ,
807799 logic : ( target : number ) => target !== null && target !== undefined && ! isNaN ( target )
808800 } ] ;
809-
801+
810802 this . operations = newOperations . concat ( this . operations ) ;
811803 }
812804}
@@ -885,7 +877,7 @@ export class IgxStringFilteringOperand extends IgxFilteringOperand {
885877 iconName : 'filter_not_empty' ,
886878 logic : ( target : string ) => target !== null && target !== undefined && target . length > 0
887879 } ] ;
888-
880+
889881 this . operations = newOperations . concat ( this . operations ) ;
890882 }
891883
0 commit comments