Skip to content

Commit 2053d61

Browse files
authored
Merge pull request #3488 from IgniteUI/update-to-rc.1
Update to rc.1
2 parents 7a93778 + a7809e9 commit 2053d61

File tree

5 files changed

+45
-45
lines changed

5 files changed

+45
-45
lines changed

package-lock.json

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"bootstrap": "5.3.2",
6666
"file-saver": "^2.0.2",
6767
"hammerjs": "^2.0.8",
68-
"igniteui-angular": "^18.0.0-rc.0",
68+
"igniteui-angular": "^18.0.0-rc.1",
6969
"igniteui-angular-charts": "^17.2.1",
7070
"igniteui-angular-core": "^17.2.1",
7171
"igniteui-angular-extras": "^18.0.1",
@@ -88,7 +88,7 @@
8888
"@angular/cli": "^18.0.2",
8989
"@angular/compiler-cli": "^18.0.1",
9090
"@angular/language-service": "^18.0.1",
91-
"@igniteui/angular-schematics": "18.0.1330-beta.2",
91+
"@igniteui/angular-schematics": "18.0.1330-rc.0",
9292
"@juggle/resize-observer": "^3.3.1",
9393
"@types/jasmine": "^5.1.2",
9494
"@types/jasminewd2": "^2.0.13",

src/app/lists/combo/combo-features/combo-features.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

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

src/app/lists/combo/combo-remote/combo-remote.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
(closing)="onClosing()" (opened)="onOpened()"
1111
(closed)="onClosed()"
1212
placeholder="Location(s)"
13-
[filterable]="true">
13+
[filteringOptions]="{ filterable: true, caseSensitive: false }">
1414
</igx-combo>
1515
<igx-toast #loadingToast></igx-toast>

src/app/lists/combo/combo-styling/combo-styling.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="control-wrapper">
22
<igx-combo [width]="'430px'" [data]="weaponsData" [displayKey]="'field'" [valueKey]="'field'" [overlaySettings]="{outlet: elem}"
3-
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filterable]="true"
3+
[groupKey]="'weaponRange'" placeholder="Pick up two weapons" searchPlaceholder="Search..." [filteringOptions]="{ filterable: true, caseSensitive: false }"
44
[itemsMaxHeight]="255" (selectionChanging)="setWeaponsLimit($event)">
55
</igx-combo>
66

0 commit comments

Comments
 (0)