* Returns an array of grid HTML elements (no placeholder) - used to iterate through our children in DOM order. * This method excludes placeholder elements and returns only actual grid items. * * @returns array of GridItemHTMLElement instances representing all grid items * * @example
()
| 1090 | * }); |
| 1091 | */ |
| 1092 | public getGridItems(): GridItemHTMLElement[] { |
| 1093 | return Array.from(this.el.children) |
| 1094 | .filter((el: HTMLElement) => el.matches('.' + this.opts.itemClass) && !el.matches('.' + this.opts.placeholderClass)) as GridItemHTMLElement[]; |
| 1095 | } |
| 1096 | |
| 1097 | /** |
| 1098 | * Returns true if change callbacks should be ignored due to column change, sizeToContent, loading, etc. |
no outgoing calls
no test coverage detected