igniteui-angular 19.0.6 → 19.0.8
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/fesm2022/igniteui-angular.mjs +46 -24
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/calendar/months-view/months-view.component.d.ts +4 -0
- package/lib/calendar/years-view/years-view.component.d.ts +4 -0
- package/lib/combo/combo-add-item.component.d.ts +1 -0
- package/lib/core/styles/components/combo/_combo-theme.scss +2 -1
- package/lib/core/styles/components/input/_input-group-theme.scss +3 -3
- package/package.json +1 -1
- 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
|
@@ -65,6 +65,10 @@ export declare class IgxMonthsViewComponent extends IgxCalendarViewDirective imp
|
|
|
65
65
|
*/
|
|
66
66
|
private _monthFormat;
|
|
67
67
|
constructor(el: ElementRef, dayInterval: DayInterval);
|
|
68
|
+
/**
|
|
69
|
+
* @hidden
|
|
70
|
+
*/
|
|
71
|
+
protected onMouseDown(): void;
|
|
68
72
|
/**
|
|
69
73
|
* Returns the locale representation of the month in the months view.
|
|
70
74
|
*
|
|
@@ -68,6 +68,10 @@ export declare class IgxYearsViewComponent extends IgxCalendarViewDirective impl
|
|
|
68
68
|
* @hidden
|
|
69
69
|
*/
|
|
70
70
|
protected initFormatter(): void;
|
|
71
|
+
/**
|
|
72
|
+
* @hidden
|
|
73
|
+
*/
|
|
74
|
+
protected onMouseDown(): void;
|
|
71
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxYearsViewComponent, never>;
|
|
72
76
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxYearsViewComponent, "igx-years-view", never, { "standalone": { "alias": "standalone"; "required": false; }; "yearFormat": { "alias": "yearFormat"; "required": false; }; }, {}, never, never, true, never>;
|
|
73
77
|
}
|
|
@@ -209,7 +209,8 @@
|
|
|
209
209
|
%igx-combo__add-item {
|
|
210
210
|
height: auto !important;
|
|
211
211
|
background: var-get($theme, 'empty-list-background') !important;
|
|
212
|
-
justify-content: center
|
|
212
|
+
justify-content: center;
|
|
213
|
+
outline: none !important;
|
|
213
214
|
}
|
|
214
215
|
|
|
215
216
|
%igx-combo__empty {
|
|
@@ -340,14 +340,14 @@
|
|
|
340
340
|
);
|
|
341
341
|
|
|
342
342
|
$hint-spacing-block: map.get((
|
|
343
|
-
'material': rem(
|
|
343
|
+
'material': rem(4px),
|
|
344
344
|
'fluent': rem(5px),
|
|
345
345
|
'bootstrap': rem(4px),
|
|
346
346
|
'indigo': rem(4px),
|
|
347
347
|
), $variant);
|
|
348
348
|
|
|
349
349
|
$hint-spacing-inline: map.get((
|
|
350
|
-
'material': rem(16px),
|
|
350
|
+
'material': sizable(rem(14px), rem(16px), rem(18px)),
|
|
351
351
|
'fluent': 0,
|
|
352
352
|
'bootstrap': 0,
|
|
353
353
|
'indigo': 0,
|
|
@@ -1389,7 +1389,7 @@
|
|
|
1389
1389
|
position: relative;
|
|
1390
1390
|
display: flex;
|
|
1391
1391
|
padding-block-start: $hint-spacing-block;
|
|
1392
|
-
padding-inline
|
|
1392
|
+
padding-inline: $hint-spacing-inline;
|
|
1393
1393
|
|
|
1394
1394
|
justify-content: space-between;
|
|
1395
1395
|
|
package/package.json
CHANGED