igniteui-angular 18.1.1 → 18.1.3
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/divider/divider.directive.mjs +4 -5
- package/esm2022/lib/drop-down/drop-down.base.mjs +5 -2
- package/esm2022/lib/grids/common/grid.interface.mjs +1 -1
- package/esm2022/lib/grids/grid-base.directive.mjs +2 -2
- package/esm2022/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +4 -1
- package/esm2022/lib/grids/pivot-grid/pivot-grid.interface.mjs +1 -1
- package/esm2022/lib/query-builder/query-builder.component.mjs +17 -17
- package/fesm2022/igniteui-angular.mjs +27 -22
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/components/navdrawer/_navdrawer-theme.scss +6 -1
- package/lib/directives/divider/divider.directive.d.ts +1 -1
- package/lib/grids/common/grid.interface.d.ts +1 -0
- package/lib/grids/hierarchical-grid/hierarchical-grid.component.d.ts +4 -1
- package/package.json +1 -1
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-angular.css +1 -1
- package/styles/igniteui-dark-green.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
|
@@ -384,13 +384,18 @@
|
|
|
384
384
|
}
|
|
385
385
|
|
|
386
386
|
@if $variant == 'material' {
|
|
387
|
+
$reduce-size: rem(8px);
|
|
388
|
+
|
|
389
|
+
// The clip path here fixes a bug: https://github.com/IgniteUI/igniteui-angular/issues/14554
|
|
390
|
+
clip-path: inset(calc($reduce-size / 2) 0 round var-get($theme, 'item-border-radius'));
|
|
391
|
+
|
|
387
392
|
&::after {
|
|
388
393
|
content: '';
|
|
389
394
|
position: absolute;
|
|
390
395
|
width: 100%;
|
|
391
396
|
inset-block-start: rem(4px);
|
|
392
397
|
inset-inline-start: 0;
|
|
393
|
-
height: calc(100% - #{
|
|
398
|
+
height: calc(100% - #{$reduce-size});
|
|
394
399
|
border-radius: var-get($theme, 'item-border-radius');
|
|
395
400
|
z-index: -1;
|
|
396
401
|
}
|
|
@@ -78,7 +78,7 @@ export declare class IgxDividerDirective {
|
|
|
78
78
|
*/
|
|
79
79
|
get isSolid(): boolean;
|
|
80
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxDividerDirective, never>;
|
|
81
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxDividerDirective, "igx-divider", never, { "id": { "alias": "id"; "required": false; }; "role": { "alias": "role"; "required": false; }; "type": { "alias": "type"; "required": false; }; "middle": { "alias": "middle"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "
|
|
81
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxDividerDirective, "igx-divider", never, { "id": { "alias": "id"; "required": false; }; "role": { "alias": "role"; "required": false; }; "type": { "alias": "type"; "required": false; }; "middle": { "alias": "middle"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; "inset": { "alias": "inset"; "required": false; }; }, {}, never, never, true, never>;
|
|
82
82
|
static ngAcceptInputType_middle: unknown;
|
|
83
83
|
static ngAcceptInputType_vertical: unknown;
|
|
84
84
|
}
|
|
@@ -8,6 +8,9 @@ import type { IgxPaginatorComponent } from '../../paginator/paginator.component'
|
|
|
8
8
|
import { IgxGridExcelStyleFilteringComponent } from '../filtering/excel-style/excel-style-filtering.component';
|
|
9
9
|
import { IgxActionStripToken } from '../../action-strip/token';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden @internal
|
|
13
|
+
*/
|
|
11
14
|
export declare class IgxChildGridRowComponent implements AfterViewInit, OnInit {
|
|
12
15
|
readonly gridAPI: IgxHierarchicalGridAPIService;
|
|
13
16
|
element: ElementRef<HTMLElement>;
|
|
@@ -150,7 +153,7 @@ export declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBas
|
|
|
150
153
|
*/
|
|
151
154
|
parent: IgxHierarchicalGridComponent;
|
|
152
155
|
/**
|
|
153
|
-
* @hidden
|
|
156
|
+
* @hidden @internal
|
|
154
157
|
*/
|
|
155
158
|
childRow: IgxChildGridRowComponent;
|
|
156
159
|
protected actionStripComponents: QueryList<IgxActionStripToken>;
|
package/package.json
CHANGED