igniteui-angular 17.2.7 → 17.2.9
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 +38 -19
- package/esm2022/lib/core/utils.mjs +1 -9
- package/esm2022/lib/grids/state.directive.mjs +3 -3
- package/esm2022/lib/simple-combo/simple-combo.component.mjs +33 -8
- package/fesm2022/igniteui-angular.mjs +70 -35
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/combo/combo.common.d.ts +3 -1
- package/lib/core/styles/components/icon-button/_icon-button-theme.scss +1 -0
- package/lib/core/styles/components/navbar/_navbar-theme.scss +26 -9
- package/lib/core/utils.d.ts +0 -8
- package/package.json +2 -2
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-angular.css +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/igniteui-bootstrap-light.css +1 -1
- package/styles/igniteui-dark-green.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/igniteui-fluent-dark.css +1 -1
- package/styles/igniteui-fluent-light-excel.css +1 -1
- package/styles/igniteui-fluent-light-word.css +1 -1
- package/styles/igniteui-fluent-light.css +1 -1
- 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
|
@@ -114,7 +114,8 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
114
114
|
* <igx-combo [id]='combo1'></igx-combo>
|
|
115
115
|
* ```
|
|
116
116
|
*/
|
|
117
|
-
id: string;
|
|
117
|
+
get id(): string;
|
|
118
|
+
set id(value: string);
|
|
118
119
|
/**
|
|
119
120
|
* Sets the style width of the element
|
|
120
121
|
*
|
|
@@ -681,6 +682,7 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
681
682
|
protected _onTouchedCallback: () => void;
|
|
682
683
|
protected _onChangeCallback: (_: any) => void;
|
|
683
684
|
protected compareCollator: Intl.Collator;
|
|
685
|
+
private _id;
|
|
684
686
|
private _type;
|
|
685
687
|
private _dataType;
|
|
686
688
|
private _itemHeight;
|
|
@@ -110,21 +110,38 @@
|
|
|
110
110
|
overflow: hidden;
|
|
111
111
|
border-bottom: rem(1px) solid var-get($theme, 'border-color');
|
|
112
112
|
|
|
113
|
-
igx-avatar
|
|
114
|
-
igx-input-group,
|
|
115
|
-
[igxIconButton],
|
|
116
|
-
igc-avatar,
|
|
117
|
-
igc-input,
|
|
118
|
-
igc-icon-button {
|
|
113
|
+
igx-avatar {
|
|
119
114
|
--ig-size: 1;
|
|
120
115
|
}
|
|
121
116
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
117
|
+
@if $variant == 'material' {
|
|
118
|
+
igx-input-group {
|
|
119
|
+
--ig-size: 1;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
@if $variant == 'bootstrap' {
|
|
124
|
+
igc-input,
|
|
125
|
+
igc-icon-button {
|
|
126
|
+
--ig-size: 1;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
[igxButton],
|
|
130
|
+
igc-button,
|
|
131
|
+
[igxIconButton],
|
|
132
|
+
igx-input-group {
|
|
133
|
+
--ig-size: 2;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
@if $variant == 'fluent' {
|
|
138
|
+
igx-input-group {
|
|
139
|
+
--ig-size: 2;
|
|
140
|
+
}
|
|
125
141
|
}
|
|
126
142
|
|
|
127
143
|
@if $variant == 'indigo-design' {
|
|
144
|
+
igx-avatar,
|
|
128
145
|
igc-icon-button,
|
|
129
146
|
[igxIconButton] {
|
|
130
147
|
--ig-size: 2;
|
package/lib/core/utils.d.ts
CHANGED
|
@@ -106,14 +106,6 @@ export declare const isDate: (value: any) => value is Date;
|
|
|
106
106
|
* @hidden
|
|
107
107
|
*/
|
|
108
108
|
export declare const isEqual: (obj1: any, obj2: any) => boolean;
|
|
109
|
-
/**
|
|
110
|
-
* Checks if provided variable is the value NaN
|
|
111
|
-
*
|
|
112
|
-
* @param value Value to check
|
|
113
|
-
* @returns true if provided variable is NaN
|
|
114
|
-
* @hidden
|
|
115
|
-
*/
|
|
116
|
-
export declare const isNaNvalue: (value: any) => boolean;
|
|
117
109
|
/**
|
|
118
110
|
* Utility service taking care of various utility functions such as
|
|
119
111
|
* detecting browser features, general cross browser DOM manipulation, etc.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "17.2.
|
|
3
|
+
"version": "17.2.9",
|
|
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",
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
"igniteui-trial-watermark": "^3.0.2",
|
|
75
75
|
"lodash-es": "^4.17.21",
|
|
76
76
|
"uuid": "^9.0.0",
|
|
77
|
-
"igniteui-theming": "^6.3.
|
|
77
|
+
"igniteui-theming": "^6.3.2",
|
|
78
78
|
"@igniteui/material-icons-extended": "^3.0.0"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|