igniteui-angular 16.1.28 → 16.1.30
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/directives/for-of/for_of.directive.mjs +12 -1
- package/esm2022/lib/directives/tooltip/tooltip-target.directive.mjs +3 -2
- package/esm2022/lib/grids/common/crud.service.mjs +9 -6
- package/esm2022/lib/grids/grid-base.directive.mjs +5 -8
- package/esm2022/lib/grids/selection/selection.service.mjs +12 -16
- package/esm2022/lib/simple-combo/simple-combo.component.mjs +7 -6
- package/esm2022/lib/slider/slider.component.mjs +10 -8
- package/esm2022/lib/slider/thumb/thumb-slider.component.mjs +6 -2
- package/fesm2022/igniteui-angular.mjs +55 -40
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/directives/for-of/for_of.directive.d.ts +5 -0
- package/lib/slider/slider.component.d.ts +1 -1
- package/lib/slider/thumb/thumb-slider.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -379,6 +379,11 @@ export declare class IgxForOfDirective<T, U extends T[] = T[]> implements OnInit
|
|
|
379
379
|
* Function that is called when scrolling vertically
|
|
380
380
|
*/
|
|
381
381
|
protected onScroll(event: any): void;
|
|
382
|
+
/**
|
|
383
|
+
* @hidden
|
|
384
|
+
* @internal
|
|
385
|
+
*/
|
|
386
|
+
updateScroll(): void;
|
|
382
387
|
protected updateSizes(): void;
|
|
383
388
|
/**
|
|
384
389
|
* @hidden
|
|
@@ -648,7 +648,7 @@ export declare class IgxSliderComponent implements ControlValueAccessor, EditorP
|
|
|
648
648
|
*/
|
|
649
649
|
private normalizeByStep;
|
|
650
650
|
private updateTrack;
|
|
651
|
-
private
|
|
651
|
+
private subscribeToEvents;
|
|
652
652
|
private unsubscriber;
|
|
653
653
|
private hasValueChanged;
|
|
654
654
|
private emitValueChange;
|
|
@@ -22,6 +22,7 @@ export declare class IgxSliderThumbComponent implements OnInit, OnDestroy {
|
|
|
22
22
|
deactiveState: boolean;
|
|
23
23
|
thumbValueChange: EventEmitter<number>;
|
|
24
24
|
thumbChange: EventEmitter<any>;
|
|
25
|
+
thumbBlur: EventEmitter<void>;
|
|
25
26
|
hoverChange: EventEmitter<boolean>;
|
|
26
27
|
tabindex: number;
|
|
27
28
|
zIndex: number;
|
|
@@ -73,5 +74,5 @@ export declare class IgxSliderThumbComponent implements OnInit, OnDestroy {
|
|
|
73
74
|
private stepToProceed;
|
|
74
75
|
private toggleThumbIndicators;
|
|
75
76
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxSliderThumbComponent, never>;
|
|
76
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSliderThumbComponent, "igx-thumb", never, { "value": { "alias": "value"; "required": false; }; "continuous": { "alias": "continuous"; "required": false; }; "thumbLabelVisibilityDuration": { "alias": "thumbLabelVisibilityDuration"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "onPan": { "alias": "onPan"; "required": false; }; "stepDistance": { "alias": "stepDistance"; "required": false; }; "step": { "alias": "step"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "context": { "alias": "context"; "required": false; }; "type": { "alias": "type"; "required": false; }; "deactiveState": { "alias": "deactiveState"; "required": false; }; }, { "thumbValueChange": "thumbValueChange"; "thumbChange": "thumbChange"; "hoverChange": "hoverChange"; }, never, never, true, never>;
|
|
77
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSliderThumbComponent, "igx-thumb", never, { "value": { "alias": "value"; "required": false; }; "continuous": { "alias": "continuous"; "required": false; }; "thumbLabelVisibilityDuration": { "alias": "thumbLabelVisibilityDuration"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "onPan": { "alias": "onPan"; "required": false; }; "stepDistance": { "alias": "stepDistance"; "required": false; }; "step": { "alias": "step"; "required": false; }; "templateRef": { "alias": "templateRef"; "required": false; }; "context": { "alias": "context"; "required": false; }; "type": { "alias": "type"; "required": false; }; "deactiveState": { "alias": "deactiveState"; "required": false; }; }, { "thumbValueChange": "thumbValueChange"; "thumbChange": "thumbChange"; "thumbBlur": "thumbBlur"; "hoverChange": "hoverChange"; }, never, never, true, never>;
|
|
77
78
|
}
|
package/package.json
CHANGED