igniteui-angular 18.2.14 → 18.2.15
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.component.mjs +3 -3
- package/esm2022/lib/input-group/input-group.component.mjs +2 -2
- package/esm2022/lib/time-picker/time-picker.component.mjs +5 -3
- package/fesm2022/igniteui-angular.mjs +7 -5
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/input-group/input-group.component.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ChangeDetectorRef, ElementRef, QueryList } from '@angular/core';
|
|
2
2
|
import { IInputResourceStrings } from '../core/i18n/input-resources';
|
|
3
3
|
import { PlatformUtil } from '../core/utils';
|
|
4
4
|
import { IgxHintDirective } from '../directives/hint/hint.directive';
|
|
@@ -9,7 +9,7 @@ import { IgxInputGroupBase } from './input-group.common';
|
|
|
9
9
|
import { IgxInputGroupType } from './inputGroupType';
|
|
10
10
|
import { IgxTheme, ThemeToken } from '../services/theme/theme.token';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
|
-
export declare class IgxInputGroupComponent implements IgxInputGroupBase
|
|
12
|
+
export declare class IgxInputGroupComponent implements IgxInputGroupBase {
|
|
13
13
|
element: ElementRef<HTMLElement>;
|
|
14
14
|
private _inputGroupType;
|
|
15
15
|
private document;
|
|
@@ -254,7 +254,7 @@ export declare class IgxInputGroupComponent implements IgxInputGroupBase, AfterV
|
|
|
254
254
|
set filled(val: boolean);
|
|
255
255
|
private setComponentTheme;
|
|
256
256
|
/** @hidden @internal */
|
|
257
|
-
|
|
257
|
+
ngAfterContentChecked(): void;
|
|
258
258
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxInputGroupComponent, [null, { optional: true; }, null, null, null, null]>;
|
|
259
259
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxInputGroupComponent, "igx-input-group", never, { "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "suppressInputAutofocus": { "alias": "suppressInputAutofocus"; "required": false; }; "type": { "alias": "type"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; }, {}, ["input", "hints", "_prefixes", "_suffixes"], ["igx-hint, [igxHint]", "[igxLabel]", "[igxInput]", "igx-prefix, [igxPrefix]", "igx-suffix, [igxSuffix]"], true, never>;
|
|
260
260
|
static ngAcceptInputType_suppressInputAutofocus: unknown;
|
package/package.json
CHANGED