Skip to content

Commit d40f374

Browse files
committed
Fix exports
1 parent ce96d19 commit d40f374

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

Diff for: projects/layout-components/src/lib/tile/tile.component.ts renamed to projects/layout-components/src/lib/tiles/tiles.component.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ import { Component, HostBinding, Input } from '@angular/core';
22
import { Gap, Padding } from '../common';
33

44
@Component({
5-
selector: 'tile',
5+
selector: 'tiles',
66
standalone: true,
77
imports: [],
88
template: `<ng-content></ng-content>`,
9-
styleUrl: './tile.component.css',
9+
styleUrl: './tiles.component.css',
1010
})
11-
export class TileComponent {
11+
export class TilesComponent {
1212
@HostBinding('style.gap') @Input() gap: Gap = '0';
1313
@HostBinding('style.grid-template-columns')
1414
@Input()

Diff for: projects/layout-components/src/public-api.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,10 @@
22
* Public API Surface of layout-components
33
*/
44

5-
export * from './lib/layout-components.service';
6-
export * from './lib/layout-components.component';
5+
export * from './lib/column/column.component';
6+
export * from './lib/columns/columns.component';
7+
export * from './lib/content-block/content-block.component';
8+
export * from './lib/inline/inline.component';
9+
export * from './lib/inset/inset.component';
10+
export * from './lib/stack/stack.component';
11+
export * from './lib/tiles/tiles.component';

0 commit comments

Comments
 (0)