Skip to content

Commit

Permalink
Merge pull request #3488 from IgniteUI/update-to-rc.1
Browse files Browse the repository at this point in the history
Update to rc.1
  • Loading branch information
ChronosSF authored Jun 6, 2024
2 parents 7a93778 + a7809e9 commit 2053d61
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 45 deletions.
80 changes: 40 additions & 40 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"bootstrap": "5.3.2",
"file-saver": "^2.0.2",
"hammerjs": "^2.0.8",
"igniteui-angular": "^18.0.0-rc.0",
"igniteui-angular": "^18.0.0-rc.1",
"igniteui-angular-charts": "^17.2.1",
"igniteui-angular-core": "^17.2.1",
"igniteui-angular-extras": "^18.0.1",
Expand All @@ -88,7 +88,7 @@
"@angular/cli": "^18.0.2",
"@angular/compiler-cli": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@igniteui/angular-schematics": "18.0.1330-beta.2",
"@igniteui/angular-schematics": "18.0.1330-rc.0",
"@juggle/resize-observer": "^3.3.1",
"@types/jasmine": "^5.1.2",
"@types/jasminewd2": "^2.0.13",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

<igx-combo #combo class="combo" [data]="lData" [displayKey]="'field'" [valueKey]="'field'"
placeholder="Location(s)" searchPlaceholder="Search..." [allowCustomValues]="customValues"
(addition)="handleAddition($event)" [filterable]="filterable"
(addition)="handleAddition($event)" [filteringOptions]="{ filterable: filterable, caseSensitive: false }"
[showSearchCaseIcon]="showSearchCaseIcon" [itemsMaxHeight]="255" [disabled]="disabled">
</igx-combo>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
(closing)="onClosing()" (opened)="onOpened()"
(closed)="onClosed()"
placeholder="Location(s)"
[filterable]="true">
[filteringOptions]="{ filterable: true, caseSensitive: false }">
</igx-combo>
<igx-toast #loadingToast></igx-toast>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="control-wrapper">
<igx-combo [width]="'430px'" [data]="weaponsData" [displayKey]="'field'" [valueKey]="'field'" [overlaySettings]="{outlet: elem}"
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filterable]="true"
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filteringOptions]="{ filterable: true, caseSensitive: false }"
[itemsMaxHeight]="255" (selectionChanging)="setWeaponsLimit($event)">
</igx-combo>

Expand Down

0 comments on commit 2053d61

Please sign in to comment.