igniteui-angular 16.1.23 → 16.1.25
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/grids/common/crud.service.mjs +10 -1
- package/esm2022/lib/grids/grid/grid.component.mjs +3 -3
- package/esm2022/lib/grids/grid-base.directive.mjs +1 -1
- package/esm2022/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +3 -3
- package/esm2022/lib/grids/pivot-grid/pivot-grid.component.mjs +3 -3
- package/esm2022/lib/grids/tree-grid/tree-grid.component.mjs +3 -3
- package/esm2022/lib/slider/slider.component.mjs +5 -2
- package/fesm2022/igniteui-angular.mjs +21 -9
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/grids/grid-base.directive.d.ts +1 -1
- package/lib/slider/slider.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -2013,7 +2013,7 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
2013
2013
|
/**
|
|
2014
2014
|
* @hidden @internal
|
|
2015
2015
|
*/
|
|
2016
|
-
get template(): TemplateRef<
|
|
2016
|
+
get template(): TemplateRef<IgxGridTemplateContext>;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* @hidden @internal
|
|
2019
2019
|
*/
|
|
@@ -640,6 +640,7 @@ export declare class IgxSliderComponent implements ControlValueAccessor, EditorP
|
|
|
640
640
|
private changeThumbFocusableState;
|
|
641
641
|
private closestTo;
|
|
642
642
|
private valueToFraction;
|
|
643
|
+
private isNullishButNotZero;
|
|
643
644
|
/**
|
|
644
645
|
* @hidden
|
|
645
646
|
* Normalizе the value when two-way data bind is used and {@link this.step} is set.
|
package/package.json
CHANGED