Skip to content

Commit 5616dbb

Browse files
committed
Merge branch 'mtsvyatkova/feat-1379-tile-manager' of https://github.com/IgniteUI/igniteui-webcomponents into mtsvyatkova/feat-1379-tile-manager
2 parents 44bcbec + 059e421 commit 5616dbb

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

src/components/tile-manager/themes/tile-header.base.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111

1212
::slotted([slot='title']) {
1313
@include type-style('h6');
14+
@include ellipsis();
1415

1516
margin-bottom: 0;
17+
min-width: 2ch;
1618
}
1719

1820
[part='actions'] {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ export default class IgcTileManagerComponent extends EventEmitterMixin<
131131
}
132132

133133
@property({ type: Number })
134-
public minColumnWidth = 150;
134+
public minColumnWidth = 200;
135135

136136
@property({ type: Number })
137-
public minRowHeight = 200;
137+
public minRowHeight = 40;
138138

139139
/**
140140
* Gets the tiles sorted by their position in the layout.

stories/tile-manager.stories.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ const metadata: Meta<IgcTileManagerComponent> = {
8484
minColumnWidth: {
8585
type: 'number',
8686
control: 'number',
87-
table: { defaultValue: { summary: '150' } },
87+
table: { defaultValue: { summary: '200' } },
8888
},
8989
minRowHeight: {
9090
type: 'number',
9191
control: 'number',
92-
table: { defaultValue: { summary: '200' } },
92+
table: { defaultValue: { summary: '40' } },
9393
},
9494
},
95-
args: { dragMode: 'slide', minColumnWidth: 150, minRowHeight: 200 },
95+
args: { dragMode: 'slide', minColumnWidth: 200, minRowHeight: 40 },
9696
};
9797

9898
export default metadata;

0 commit comments

Comments
 (0)