@@ -13,7 +13,7 @@ export interface IMergeByResult {
1313 * Merge strategy interface.
1414 */
1515export interface IGridMergeStrategy {
16- /* blazorSuppress */
16+ /* blazorCSSuppress */
1717 /**
1818 * Function that processes merging of the whole data per merged field.
1919 * Returns collection where object has reference to the original record and map of the cell merge metadata per field.
@@ -49,7 +49,7 @@ export class DefaultMergeStrategy implements IGridMergeStrategy {
4949 return this . _instance || ( this . _instance = new this ( ) ) ;
5050 }
5151
52- /* blazorSuppress */
52+ /* blazorCSSuppress */
5353 public merge (
5454 data : any [ ] ,
5555 field : string ,
@@ -90,7 +90,7 @@ export class DefaultMergeStrategy implements IGridMergeStrategy {
9090 return result ;
9191 }
9292
93- /* blazorSuppress */
93+ /* blazorCSSuppress */
9494 public comparer ( prevRecord : any , record : any , field : string , isDate = false , isTime = false ) : boolean {
9595 const a = this . getFieldValue ( prevRecord , field , isDate , isTime ) ;
9696 const b = this . getFieldValue ( record , field , isDate , isTime ) ;
@@ -145,7 +145,7 @@ export class DefaultMergeStrategy implements IGridMergeStrategy {
145145
146146
147147export class DefaultTreeGridMergeStrategy extends DefaultMergeStrategy {
148- /* blazorSuppress */
148+ /* blazorCSSuppress */
149149 public override comparer ( prevRecord : any , record : any , field : string , isDate = false , isTime = false ) : boolean {
150150 const a = this . getFieldValue ( prevRecord . data , field , isDate , isTime ) ;
151151 const b = this . getFieldValue ( record . data , field , isDate , isTime ) ;
@@ -164,7 +164,7 @@ export class DefaultTreeGridMergeStrategy extends DefaultMergeStrategy {
164164}
165165
166166export class ByLevelTreeGridMergeStrategy extends DefaultMergeStrategy {
167- /* blazorSuppress */
167+ /* blazorCSSuppress */
168168 public override comparer ( prevRecord : any , record : any , field : string , isDate = false , isTime = false ) : boolean {
169169 const a = this . getFieldValue ( prevRecord . data , field , isDate , isTime ) ;
170170 const b = this . getFieldValue ( record . data , field , isDate , isTime ) ;
0 commit comments