Skip to content

Commit 3597e68

Browse files
authored
chore(tile-manager): adjust API analyzer tags, event args interface (#1623)
1 parent 1188970 commit 3597e68

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/components/resize-container/resize-container.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import type {
1919
ResizeState,
2020
} from './types.js';
2121

22+
/** @ignore */
2223
export interface IgcResizeContainerComponentEventMap {
2324
igcResizeStart: CustomEvent<ResizeCallbackParams>;
2425
igcResize: CustomEvent<ResizeCallbackParams>;

src/components/tile-manager/tile-manager.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import { styles as shared } from './themes/shared/tile-manager.common.css.js';
2222
import { styles } from './themes/tile-manager.base.css.js';
2323
import IgcTileComponent from './tile.js';
2424

25+
/* blazorAdditionalDependency: IgcTileComponent */
2526
/**
2627
* The tile manager component enables the dynamic arrangement, resizing, and interaction of tiles.
2728
*

src/components/tile-manager/tile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ import { all } from './themes/tile.js';
4242
import { createTileDragGhost, createTileGhost } from './tile-ghost-util.js';
4343
import type IgcTileManagerComponent from './tile-manager.js';
4444

45-
export type IgcTileChangeStateEventArgs = {
45+
export interface IgcTileChangeStateEventArgs {
4646
tile: IgcTileComponent;
4747
state: boolean;
48-
};
48+
}
4949

5050
type AdornerType = 'side' | 'corner' | 'bottom';
5151

0 commit comments

Comments
 (0)