We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c46112 commit 62b33cdCopy full SHA for 62b33cd
src/components/tile-manager/position.ts
@@ -1,15 +1,13 @@
1
import { partition } from '../common/util.js';
2
import type IgcTileManagerComponent from './tile-manager.js';
3
-import IgcTileComponent from './tile.js';
+import type IgcTileComponent from './tile.js';
4
5
class TilesState {
6
public manager: IgcTileManagerComponent;
7
8
private get _tiles(): IgcTileComponent[] {
9
return Array.from(
10
- this.manager.querySelectorAll<IgcTileComponent>(
11
- `:scope > ${IgcTileComponent.tagName}`
12
- )
+ this.manager.querySelectorAll<IgcTileComponent>(':scope > igc-tile')
13
);
14
}
15
0 commit comments