igniteui-angular 18.0.0-rc.1 → 18.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/lib/combo/combo.common.mjs +1 -1
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/combo/combo.common.d.ts +1 -1
- package/lib/core/styles/components/navdrawer/_navdrawer-theme.scss +1 -10
- package/migrations/update-18_0_0/changes/inputs.json +0 -9
- package/migrations/update-18_0_0/index.js +0 -13
- package/package.json +2 -2
- package/styles/igniteui-indigo-dark.css +1 -1
- package/styles/igniteui-indigo-light.css +1 -1
- package/styles/maps/igniteui-angular-dark.css.map +1 -1
- package/styles/maps/igniteui-angular.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-dark.css.map +1 -1
- package/styles/maps/igniteui-bootstrap-light.css.map +1 -1
- package/styles/maps/igniteui-dark-green.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-light-word.css.map +1 -1
- package/styles/maps/igniteui-fluent-light.css.map +1 -1
- package/styles/maps/igniteui-indigo-dark.css.map +1 -1
- package/styles/maps/igniteui-indigo-light.css.map +1 -1
|
@@ -55,7 +55,7 @@ export declare const enum DataTypes {
|
|
|
55
55
|
/** The filtering criteria to be applied on data search */
|
|
56
56
|
export interface IComboFilteringOptions {
|
|
57
57
|
/** Defines filtering case-sensitivity */
|
|
58
|
-
caseSensitive
|
|
58
|
+
caseSensitive?: boolean;
|
|
59
59
|
/** Defines whether filtering is allowed */
|
|
60
60
|
filterable: boolean;
|
|
61
61
|
/** Defines optional key to filter against complex list items. Default to displayKey if provided.*/
|
|
@@ -356,18 +356,9 @@
|
|
|
356
356
|
justify-content: flex-start;
|
|
357
357
|
|
|
358
358
|
igx-icon {
|
|
359
|
-
--component-size: 3;
|
|
359
|
+
--component-size: #{if($variant == 'indigo-design', 2, 3)};
|
|
360
360
|
|
|
361
361
|
color: var-get($theme, 'item-icon-color');
|
|
362
|
-
@if $variant == 'indigo-design' {
|
|
363
|
-
margin-inline-start: rem(4px);
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
|
|
367
|
-
span {
|
|
368
|
-
@if $variant == 'indigo-design' {
|
|
369
|
-
padding-inline-start: rem(8px);
|
|
370
|
-
}
|
|
371
362
|
}
|
|
372
363
|
|
|
373
364
|
// Need this to override the igx-buttons
|
|
@@ -161,15 +161,6 @@
|
|
|
161
161
|
"selector": "igx-pivot-grid",
|
|
162
162
|
"type": "component"
|
|
163
163
|
}
|
|
164
|
-
},
|
|
165
|
-
{
|
|
166
|
-
"name": "filterable",
|
|
167
|
-
"replaceWith": "filteringOptions",
|
|
168
|
-
"valueTransform": "comboFilteringTransform",
|
|
169
|
-
"owner": {
|
|
170
|
-
"selector": "igx-combo",
|
|
171
|
-
"type": "component"
|
|
172
|
-
}
|
|
173
164
|
}
|
|
174
165
|
]
|
|
175
166
|
}
|
|
@@ -78,19 +78,6 @@ exports.default = () => (host, context) => __awaiter(void 0, void 0, void 0, fun
|
|
|
78
78
|
args.value = `{ showConfiguration: ${args.value} }`;
|
|
79
79
|
}
|
|
80
80
|
});
|
|
81
|
-
update.addValueTransform('comboFilteringTransform', (args) => {
|
|
82
|
-
args.bindingType = UpdateChanges_1.InputPropertyType.EVAL;
|
|
83
|
-
switch (args.value) {
|
|
84
|
-
case 'true':
|
|
85
|
-
args.value = '{ filterable: true }';
|
|
86
|
-
break;
|
|
87
|
-
case 'false':
|
|
88
|
-
args.value = '{ filterable: false }';
|
|
89
|
-
break;
|
|
90
|
-
default:
|
|
91
|
-
args.value = `{ filterable: ${args.value} }`;
|
|
92
|
-
}
|
|
93
|
-
});
|
|
94
81
|
const updateMainCSSFile = (host, context) => {
|
|
95
82
|
var _a, _b, _c, _d;
|
|
96
83
|
const angularConfigBuffer = host.read('angular.json');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "18.0.0
|
|
3
|
+
"version": "18.0.0",
|
|
4
4
|
"description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"igxDevDependencies": {
|
|
97
|
-
"@igniteui/angular-schematics": "~18.0.1330
|
|
97
|
+
"@igniteui/angular-schematics": "~18.0.1330"
|
|
98
98
|
},
|
|
99
99
|
"ng-update": {
|
|
100
100
|
"migrations": "./migrations/migration-collection.json",
|