igniteui-angular 18.2.4 → 18.2.5
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/calendar/common/calendar-view.directive.mjs +3 -2
- package/esm2022/lib/calendar/common/model.mjs +3 -2
- package/esm2022/lib/core/utils.mjs +23 -11
- package/esm2022/lib/directives/drag-drop/drag-drop.directive.mjs +20 -22
- package/esm2022/lib/directives/for-of/for_of.directive.mjs +5 -3
- package/esm2022/lib/grids/grid-base.directive.mjs +7 -2
- package/esm2022/lib/grids/moving/moving.drag.directive.mjs +3 -3
- package/esm2022/lib/grids/pivot-grid/pivot-grid.component.mjs +6 -8
- package/esm2022/lib/services/animation/angular-animation-player.mjs +4 -2
- package/esm2022/lib/tabs/tabs/tab-header.component.mjs +7 -5
- package/esm2022/lib/tabs/tabs/tabs.component.mjs +14 -10
- package/fesm2022/igniteui-angular.mjs +80 -58
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/core/styles/themes/generators/_base.scss +3 -2
- package/lib/core/styles/themes/generators/_bootstrap.scss +9 -6
- package/lib/core/styles/themes/generators/_fluent.scss +9 -6
- package/lib/core/styles/themes/generators/_indigo.scss +9 -6
- package/lib/directives/drag-drop/drag-drop.directive.d.ts +1 -0
- package/lib/grids/grid-base.directive.d.ts +1 -0
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +0 -1
- package/lib/tabs/tabs/tabs.component.d.ts +3 -1
- package/package.json +1 -1
- package/styles/igniteui-angular-dark.css +1 -1
- package/styles/igniteui-bootstrap-dark.css +1 -1
- package/styles/igniteui-dark-green.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
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
@use '../../base' as *;
|
|
7
7
|
@use '../../components' as *;
|
|
8
8
|
@use 'igniteui-theming/sass/color' as *;
|
|
9
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
9
10
|
@use 'igniteui-theming/sass/elevations' as *;
|
|
10
11
|
@use 'igniteui-theming/sass/elevations/presets' as elevations;
|
|
11
12
|
@use 'igniteui-theming/sass/utils' as *;
|
|
@@ -683,7 +684,7 @@
|
|
|
683
684
|
);
|
|
684
685
|
|
|
685
686
|
@include theme(
|
|
686
|
-
$palette: $light-palette,
|
|
687
|
+
$palette: $light-material-palette,
|
|
687
688
|
$schema: $light-material-schema,
|
|
688
689
|
$exclude: $exclude,
|
|
689
690
|
$roundness: $roundness,
|
|
@@ -716,7 +717,7 @@
|
|
|
716
717
|
);
|
|
717
718
|
|
|
718
719
|
@include theme(
|
|
719
|
-
$palette: $dark-palette,
|
|
720
|
+
$palette: $dark-material-palette,
|
|
720
721
|
$schema: $dark-material-schema,
|
|
721
722
|
$exclude: $exclude,
|
|
722
723
|
$roundness: $roundness,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use 'base' as *;
|
|
2
2
|
@use '../schemas' as *;
|
|
3
3
|
@use 'igniteui-theming/sass/color' as *;
|
|
4
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
4
5
|
|
|
5
6
|
////
|
|
6
7
|
/// @group themes
|
|
@@ -20,7 +21,8 @@
|
|
|
20
21
|
) {
|
|
21
22
|
$primary: color($palette, 'primary');
|
|
22
23
|
$secondary: color($palette, 'secondary');
|
|
23
|
-
$
|
|
24
|
+
$gray: color($light-bootstrap-palette, 'gray');
|
|
25
|
+
$surface: color($light-bootstrap-palette, 'surface');
|
|
24
26
|
$info: color($palette, 'info');
|
|
25
27
|
$success: color($palette, 'success');
|
|
26
28
|
$warn: color($palette, 'warn');
|
|
@@ -30,8 +32,8 @@
|
|
|
30
32
|
$palette: palette(
|
|
31
33
|
$primary,
|
|
32
34
|
$secondary,
|
|
33
|
-
$surface:
|
|
34
|
-
$gray:
|
|
35
|
+
$surface: $surface,
|
|
36
|
+
$gray: $gray,
|
|
35
37
|
$info: $info,
|
|
36
38
|
$success: $success,
|
|
37
39
|
$warn: $warn,
|
|
@@ -56,7 +58,8 @@
|
|
|
56
58
|
) {
|
|
57
59
|
$primary: color($palette, 'primary');
|
|
58
60
|
$secondary: color($palette, 'secondary');
|
|
59
|
-
$
|
|
61
|
+
$gray: color($dark-bootstrap-palette, 'gray');
|
|
62
|
+
$surface: color($dark-bootstrap-palette, 'surface');
|
|
60
63
|
$info: color($palette, 'info');
|
|
61
64
|
$success: color($palette, 'success');
|
|
62
65
|
$warn: color($palette, 'warn');
|
|
@@ -66,8 +69,8 @@
|
|
|
66
69
|
$palette: palette(
|
|
67
70
|
$primary,
|
|
68
71
|
$secondary,
|
|
69
|
-
$surface:
|
|
70
|
-
$gray:
|
|
72
|
+
$surface: $surface,
|
|
73
|
+
$gray: $gray,
|
|
71
74
|
$info: $info,
|
|
72
75
|
$success: $success,
|
|
73
76
|
$warn: $warn,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use 'base' as *;
|
|
2
2
|
@use '../schemas' as *;
|
|
3
3
|
@use 'igniteui-theming/sass/color' as *;
|
|
4
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
4
5
|
|
|
5
6
|
////
|
|
6
7
|
/// @group themes
|
|
@@ -20,7 +21,8 @@
|
|
|
20
21
|
) {
|
|
21
22
|
$primary: color($palette, 'primary');
|
|
22
23
|
$secondary: color($palette, 'secondary');
|
|
23
|
-
$
|
|
24
|
+
$gray: color($light-fluent-palette, 'gray');
|
|
25
|
+
$surface: color($light-fluent-palette, 'surface');
|
|
24
26
|
$info: color($palette, 'info');
|
|
25
27
|
$success: color($palette, 'success');
|
|
26
28
|
$warn: color($palette, 'warn');
|
|
@@ -30,8 +32,8 @@
|
|
|
30
32
|
$palette: palette(
|
|
31
33
|
$primary,
|
|
32
34
|
$secondary,
|
|
33
|
-
$surface:
|
|
34
|
-
$gray:
|
|
35
|
+
$surface: $surface,
|
|
36
|
+
$gray: $gray,
|
|
35
37
|
$info: $info,
|
|
36
38
|
$success: $success,
|
|
37
39
|
$warn: $warn,
|
|
@@ -56,7 +58,8 @@
|
|
|
56
58
|
) {
|
|
57
59
|
$primary: color($palette, 'primary');
|
|
58
60
|
$secondary: color($palette, 'secondary');
|
|
59
|
-
$
|
|
61
|
+
$gray: color($dark-fluent-palette, 'gray');
|
|
62
|
+
$surface: color($dark-fluent-palette, 'surface');
|
|
60
63
|
$info: color($palette, 'info');
|
|
61
64
|
$success: color($palette, 'success');
|
|
62
65
|
$warn: color($palette, 'warn');
|
|
@@ -66,8 +69,8 @@
|
|
|
66
69
|
$palette: palette(
|
|
67
70
|
$primary,
|
|
68
71
|
$secondary,
|
|
69
|
-
$surface:
|
|
70
|
-
$gray:
|
|
72
|
+
$surface: $surface,
|
|
73
|
+
$gray: $gray,
|
|
71
74
|
$info: $info,
|
|
72
75
|
$success: $success,
|
|
73
76
|
$warn: $warn,
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@use 'base' as *;
|
|
2
2
|
@use '../schemas' as *;
|
|
3
3
|
@use 'igniteui-theming/sass/color' as *;
|
|
4
|
+
@use 'igniteui-theming/sass/color/presets' as *;
|
|
4
5
|
@use 'igniteui-theming/sass/elevations/presets' as elevations;
|
|
5
6
|
|
|
6
7
|
////
|
|
@@ -21,7 +22,8 @@
|
|
|
21
22
|
) {
|
|
22
23
|
$primary: color($palette, 'primary');
|
|
23
24
|
$secondary: color($palette, 'secondary');
|
|
24
|
-
$
|
|
25
|
+
$gray: color($light-indigo-palette, 'gray');
|
|
26
|
+
$surface: color($light-indigo-palette, 'surface');
|
|
25
27
|
$info: color($palette, 'info');
|
|
26
28
|
$success: color($palette, 'success');
|
|
27
29
|
$warn: color($palette, 'warn');
|
|
@@ -31,8 +33,8 @@
|
|
|
31
33
|
$palette: palette(
|
|
32
34
|
$primary,
|
|
33
35
|
$secondary,
|
|
34
|
-
$surface:
|
|
35
|
-
$gray:
|
|
36
|
+
$surface: $surface,
|
|
37
|
+
$gray: $gray,
|
|
36
38
|
$info: $info,
|
|
37
39
|
$success: $success,
|
|
38
40
|
$warn: $warn,
|
|
@@ -58,7 +60,8 @@
|
|
|
58
60
|
) {
|
|
59
61
|
$primary: color($palette, 'primary');
|
|
60
62
|
$secondary: color($palette, 'secondary');
|
|
61
|
-
$
|
|
63
|
+
$gray: color($dark-indigo-palette, 'gray');
|
|
64
|
+
$surface: color($dark-indigo-palette, 'surface');
|
|
62
65
|
$info: color($palette, 'info');
|
|
63
66
|
$success: color($palette, 'success');
|
|
64
67
|
$warn: color($palette, 'warn');
|
|
@@ -68,8 +71,8 @@
|
|
|
68
71
|
$palette: palette(
|
|
69
72
|
$primary,
|
|
70
73
|
$secondary,
|
|
71
|
-
$surface:
|
|
72
|
-
$gray:
|
|
74
|
+
$surface: $surface,
|
|
75
|
+
$gray: $gray,
|
|
73
76
|
$info: $info,
|
|
74
77
|
$success: $success,
|
|
75
78
|
$warn: $warn,
|
|
@@ -563,6 +563,7 @@ export declare class IgxDragDirective implements AfterContentInit, OnDestroy {
|
|
|
563
563
|
* @hidden
|
|
564
564
|
*/
|
|
565
565
|
onTransitionEnd(event: any): void;
|
|
566
|
+
protected clearGhost(): void;
|
|
566
567
|
/**
|
|
567
568
|
* @hidden
|
|
568
569
|
* Create ghost element - if a Node object is provided it creates a clone of that node,
|
|
@@ -1987,6 +1987,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
1987
1987
|
private _selectRowOnClick;
|
|
1988
1988
|
private _columnSelectionMode;
|
|
1989
1989
|
private lastAddedRowIndex;
|
|
1990
|
+
protected isColumnWidthSum: boolean;
|
|
1990
1991
|
private _currencyPositionLeft;
|
|
1991
1992
|
private rowEditPositioningStrategy;
|
|
1992
1993
|
private rowEditSettings;
|
|
@@ -615,7 +615,6 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
615
615
|
/** @hidden @internal */
|
|
616
616
|
get values(): IPivotValue[];
|
|
617
617
|
toggleColumn(col: IgxColumnComponent): void;
|
|
618
|
-
protected getColumnWidthSum(): number;
|
|
619
618
|
/**
|
|
620
619
|
* @hidden @internal
|
|
621
620
|
*/
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, NgZone, OnDestroy } from '@angular/core';
|
|
2
|
+
import { PlatformUtil } from '../../core/utils';
|
|
2
3
|
import { AnimationService } from '../../services/animation/animation';
|
|
3
4
|
import { IgxDirectionality } from '../../services/direction/directionality';
|
|
4
5
|
import { IgxTabsDirective } from '../tabs.directive';
|
|
@@ -42,6 +43,7 @@ export type IgxTabsAlignment = (typeof IgxTabsAlignment)[keyof typeof IgxTabsAli
|
|
|
42
43
|
*/
|
|
43
44
|
export declare class IgxTabsComponent extends IgxTabsDirective implements AfterViewInit, OnDestroy {
|
|
44
45
|
private ngZone;
|
|
46
|
+
private platform;
|
|
45
47
|
/**
|
|
46
48
|
* Gets/Sets the tab alignment. Defaults to `start`.
|
|
47
49
|
*/
|
|
@@ -76,7 +78,7 @@ export declare class IgxTabsComponent extends IgxTabsDirective implements AfterV
|
|
|
76
78
|
protected componentName: string;
|
|
77
79
|
private _tabAlignment;
|
|
78
80
|
private _resizeObserver;
|
|
79
|
-
constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality);
|
|
81
|
+
constructor(animationService: AnimationService, cdr: ChangeDetectorRef, ngZone: NgZone, dir: IgxDirectionality, platform: PlatformUtil);
|
|
80
82
|
/** @hidden @internal */
|
|
81
83
|
ngAfterViewInit(): void;
|
|
82
84
|
/** @hidden @internal */
|
package/package.json
CHANGED