igniteui-angular 18.1.7 → 18.1.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 +2 -10
- package/esm2022/lib/core/i18n/grid-resources.mjs +2 -1
- package/esm2022/lib/grids/grid/grid.component.mjs +6 -5
- package/esm2022/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +6 -5
- package/esm2022/lib/grids/pivot-grid/pivot-grid-dimensions.mjs +2 -2
- package/esm2022/lib/grids/pivot-grid/pivot-grid-navigation.service.mjs +2 -2
- package/esm2022/lib/grids/pivot-grid/pivot-grid.interface.mjs +1 -1
- package/esm2022/lib/grids/state-base.directive.mjs +10 -4
- package/esm2022/lib/grids/tree-grid/tree-grid.component.mjs +6 -5
- package/esm2022/lib/services/excel/excel-files.mjs +26 -5
- package/esm2022/lib/simple-combo/simple-combo.component.mjs +16 -8
- package/fesm2022/igniteui-angular.mjs +88 -58
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/i18n/grid-resources.d.ts +1 -0
- package/lib/core/styles/components/button/_button-theme.scss +4 -4
- package/lib/core/styles/components/input/_input-group-theme.scss +10 -10
- package/lib/core/styles/components/progress/_progress-theme.scss +1 -1
- package/lib/simple-combo/simple-combo.component.d.ts +4 -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
|
@@ -110,6 +110,7 @@ export interface IGridResourceStrings {
|
|
|
110
110
|
igx_grid_pinning_uncheck_all_label?: string;
|
|
111
111
|
igx_grid_row_edit_btn_done?: string;
|
|
112
112
|
igx_grid_row_edit_btn_cancel?: string;
|
|
113
|
+
igx_grid_row_edit_text?: string;
|
|
113
114
|
igx_grid_toolbar_actions_filter_prompt?: string;
|
|
114
115
|
igx_grid_toolbar_pinning_button_tooltip?: string;
|
|
115
116
|
igx_grid_toolbar_hiding_button_tooltip?: string;
|
|
@@ -274,10 +274,10 @@
|
|
|
274
274
|
@include css-vars($fab-theme);
|
|
275
275
|
|
|
276
276
|
$time: map.get((
|
|
277
|
-
material: .1s,
|
|
278
|
-
fluent: .1s,
|
|
279
|
-
bootstrap: .15s,
|
|
280
|
-
indigo: .15s
|
|
277
|
+
'material': .1s,
|
|
278
|
+
'fluent': .1s,
|
|
279
|
+
'bootstrap': .15s,
|
|
280
|
+
'indigo': .15s
|
|
281
281
|
), $variant);
|
|
282
282
|
|
|
283
283
|
$button-transition: color $time ease-in-out,
|
|
@@ -340,17 +340,17 @@
|
|
|
340
340
|
);
|
|
341
341
|
|
|
342
342
|
$hint-spacing-block: map.get((
|
|
343
|
-
material: rem(5px),
|
|
344
|
-
fluent: rem(5px),
|
|
345
|
-
bootstrap: rem(4px),
|
|
346
|
-
indigo: rem(4px),
|
|
343
|
+
'material': rem(5px),
|
|
344
|
+
'fluent': rem(5px),
|
|
345
|
+
'bootstrap': rem(4px),
|
|
346
|
+
'indigo': rem(4px),
|
|
347
347
|
), $variant);
|
|
348
348
|
|
|
349
349
|
$hint-spacing-inline: map.get((
|
|
350
|
-
material: rem(16px),
|
|
351
|
-
fluent: 0,
|
|
352
|
-
bootstrap: 0,
|
|
353
|
-
indigo: 0,
|
|
350
|
+
'material': rem(16px),
|
|
351
|
+
'fluent': 0,
|
|
352
|
+
'bootstrap': 0,
|
|
353
|
+
'indigo': 0,
|
|
354
354
|
), $variant);
|
|
355
355
|
|
|
356
356
|
// Base Start
|
|
@@ -378,9 +378,9 @@
|
|
|
378
378
|
align-items: center;
|
|
379
379
|
|
|
380
380
|
@if $indigo-theme {
|
|
381
|
-
height: calc(100% - #{rem(1px)}) !important;
|
|
381
|
+
min-height: calc(100% - #{rem(1px)}) !important;
|
|
382
382
|
} @else {
|
|
383
|
-
height: 100% !important;
|
|
383
|
+
min-height: 100% !important;
|
|
384
384
|
}
|
|
385
385
|
transition: color $transition-timing, background $transition-timing;
|
|
386
386
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, DoCheck, ElementRef, EventEmitter, Injector } from '@angular/core';
|
|
2
|
-
import { ControlValueAccessor } from '@angular/forms';
|
|
2
|
+
import { ControlValueAccessor, FormGroupDirective } from '@angular/forms';
|
|
3
3
|
import { IgxComboAddItemComponent } from '../combo/combo-add-item.component';
|
|
4
4
|
import { IgxComboDropDownComponent } from '../combo/combo-dropdown.component';
|
|
5
5
|
import { IgxComboAPIService } from '../combo/combo.api';
|
|
@@ -43,6 +43,7 @@ export interface ISimpleComboSelectionChangingEventArgs extends CancelableEventA
|
|
|
43
43
|
*/
|
|
44
44
|
export declare class IgxSimpleComboComponent extends IgxComboBaseDirective implements ControlValueAccessor, AfterViewInit, DoCheck {
|
|
45
45
|
private platformUtil;
|
|
46
|
+
private formGroupDirective?;
|
|
46
47
|
/** @hidden @internal */
|
|
47
48
|
dropdown: IgxComboDropDownComponent;
|
|
48
49
|
/** @hidden @internal */
|
|
@@ -79,7 +80,7 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
79
80
|
set searchValue(val: string);
|
|
80
81
|
private get selectedItem();
|
|
81
82
|
protected get hasSelectedItem(): boolean;
|
|
82
|
-
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, selectionService: IgxSelectionAPIService, comboAPI: IgxComboAPIService, platformUtil: PlatformUtil, document: any, _inputGroupType: IgxInputGroupType, _injector: Injector, _iconService?: IgxIconService);
|
|
83
|
+
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, selectionService: IgxSelectionAPIService, comboAPI: IgxComboAPIService, platformUtil: PlatformUtil, document: any, _inputGroupType: IgxInputGroupType, _injector: Injector, _iconService?: IgxIconService, formGroupDirective?: FormGroupDirective);
|
|
83
84
|
/** @hidden @internal */
|
|
84
85
|
onArrowDown(event: Event): void;
|
|
85
86
|
/**
|
|
@@ -143,6 +144,6 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
143
144
|
private getElementVal;
|
|
144
145
|
private clear;
|
|
145
146
|
private isValid;
|
|
146
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IgxSimpleComboComponent, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
147
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IgxSimpleComboComponent, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
147
148
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSimpleComboComponent, "igx-simple-combo", never, {}, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix", "igx-hint, [igxHint]", "igx-suffix"], true, never>;
|
|
148
149
|
}
|
package/package.json
CHANGED