Skip to content

Commit

Permalink
Merge pull request #454 from UiPath/emi/dense-grid
Browse files Browse the repository at this point in the history
Add support for High Density mode in ui-grid
  • Loading branch information
alexdudescu authored Feb 13, 2024
2 parents 2f0625a + 22372f0 commit 6c9617f
Show file tree
Hide file tree
Showing 15 changed files with 356 additions and 114 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-components",
"version": "15.1.7",
"version": "15.2.0",
"author": {
"name": "UiPath Inc",
"url": "https://uipath.com"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ export interface GridOptions<T> {
rowSize?: number;
resizeStrategy?: ResizeStrategy;
selectablePageIndex?: boolean;
hasHighDensity?: boolean;
}
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,7 @@
<ui-suggest *ngLet="(column.dropdown!.suggestValue ?? []) as suggestValue"
[disabled]="false"
[compact]="true"
[hasHighDensity]="hasHighDensity"
[multiple]="column.dropdown!.multi"
[clearable]="column.dropdown!.multi"
[searchable]="false"
Expand Down Expand Up @@ -790,6 +791,7 @@
[attr.data-cy]="getColumnName(column, 'ui-grid-search-filter')"
[multiple]="column.searchableDropdown!.multiple"
[compact]="column.searchableDropdown!.multiple"
[hasHighDensity]="hasHighDensity"
[displayCount]="column.searchableDropdown!.displayCount"
[minChars]="column.searchableDropdown?.minChars ?? 0"
[maxSelectionConfig]="{
Expand Down
Loading

0 comments on commit 6c9617f

Please sign in to comment.