igniteui-angular 19.0.5 → 19.0.7
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/fesm2022/igniteui-angular.mjs +73 -48
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/calendar/months-view/months-view.component.d.ts +4 -0
- package/lib/calendar/years-view/years-view.component.d.ts +4 -0
- package/lib/carousel/carousel-base.d.ts +31 -2
- package/lib/carousel/carousel.component.d.ts +2 -2
- package/lib/carousel/slide.component.d.ts +2 -3
- package/lib/core/styles/components/checkbox/_checkbox-theme.scss +1 -2
- package/lib/core/styles/components/radio/_radio-theme.scss +0 -2
- package/lib/core/styles/components/switch/_switch-theme.scss +0 -2
- package/lib/grids/filtering/excel-style/excel-style-custom-dialog.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-bootstrap-dark.css +1 -1
- package/styles/igniteui-bootstrap-light.css +1 -1
- package/styles/igniteui-dark-green.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/igniteui-fluent-dark.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
|
@@ -65,6 +65,10 @@ export declare class IgxMonthsViewComponent extends IgxCalendarViewDirective imp
|
|
|
65
65
|
*/
|
|
66
66
|
private _monthFormat;
|
|
67
67
|
constructor(el: ElementRef, dayInterval: DayInterval);
|
|
68
|
+
/**
|
|
69
|
+
* @hidden
|
|
70
|
+
*/
|
|
71
|
+
protected onMouseDown(): void;
|
|
68
72
|
/**
|
|
69
73
|
* Returns the locale representation of the month in the months view.
|
|
70
74
|
*
|
|
@@ -68,6 +68,10 @@ export declare class IgxYearsViewComponent extends IgxCalendarViewDirective impl
|
|
|
68
68
|
* @hidden
|
|
69
69
|
*/
|
|
70
70
|
protected initFormatter(): void;
|
|
71
|
+
/**
|
|
72
|
+
* @hidden
|
|
73
|
+
*/
|
|
74
|
+
protected onMouseDown(): void;
|
|
71
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxYearsViewComponent, never>;
|
|
72
76
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxYearsViewComponent, "igx-years-view", never, { "standalone": { "alias": "standalone"; "required": false; }; "yearFormat": { "alias": "yearFormat"; "required": false; }; }, {}, never, never, true, never>;
|
|
73
77
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AnimationReferenceMetadata } from '@angular/animations';
|
|
2
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
2
|
+
import { ChangeDetectorRef, EventEmitter, InjectionToken } from '@angular/core';
|
|
3
3
|
import { AnimationPlayer, AnimationService } from '../services/animation/animation';
|
|
4
|
-
import { CarouselAnimationType } from './enums';
|
|
4
|
+
import { CarouselAnimationType, CarouselIndicatorsOrientation } from './enums';
|
|
5
5
|
export declare enum Direction {
|
|
6
6
|
NONE = 0,
|
|
7
7
|
NEXT = 1,
|
|
@@ -11,6 +11,35 @@ export interface CarouselAnimationSettings {
|
|
|
11
11
|
enterAnimation: AnimationReferenceMetadata;
|
|
12
12
|
leaveAnimation: AnimationReferenceMetadata;
|
|
13
13
|
}
|
|
14
|
+
export interface ICarouselComponentBase {
|
|
15
|
+
id: string;
|
|
16
|
+
role: string;
|
|
17
|
+
cssClass: string;
|
|
18
|
+
loop: boolean;
|
|
19
|
+
pause: boolean;
|
|
20
|
+
navigation: boolean;
|
|
21
|
+
indicators: boolean;
|
|
22
|
+
vertical: boolean;
|
|
23
|
+
keyboardSupport: boolean;
|
|
24
|
+
gesturesSupport: boolean;
|
|
25
|
+
maximumIndicatorsCount: number;
|
|
26
|
+
indicatorsOrientation: CarouselIndicatorsOrientation;
|
|
27
|
+
animationType: CarouselAnimationType;
|
|
28
|
+
total: number;
|
|
29
|
+
current: number;
|
|
30
|
+
interval: number;
|
|
31
|
+
slideChanged: EventEmitter<any>;
|
|
32
|
+
slideAdded: EventEmitter<any>;
|
|
33
|
+
slideRemoved: EventEmitter<any>;
|
|
34
|
+
carouselPaused: EventEmitter<any>;
|
|
35
|
+
carouselPlaying: EventEmitter<any>;
|
|
36
|
+
next(): void;
|
|
37
|
+
prev(): void;
|
|
38
|
+
play(): void;
|
|
39
|
+
stop(): void;
|
|
40
|
+
}
|
|
41
|
+
/** @hidden */
|
|
42
|
+
export declare const IGX_CAROUSEL_COMPONENT: InjectionToken<ICarouselComponentBase>;
|
|
14
43
|
/** @hidden */
|
|
15
44
|
export interface IgxSlideComponentBase {
|
|
16
45
|
direction: Direction;
|
|
@@ -3,7 +3,7 @@ import { HammerGestureConfig } from '@angular/platform-browser';
|
|
|
3
3
|
import { ICarouselResourceStrings } from '../core/i18n/carousel-resources';
|
|
4
4
|
import { IBaseEventArgs, PlatformUtil } from '../core/utils';
|
|
5
5
|
import { AnimationService } from '../services/animation/animation';
|
|
6
|
-
import { Direction, IgxCarouselComponentBase } from './carousel-base';
|
|
6
|
+
import { Direction, ICarouselComponentBase, IgxCarouselComponentBase } from './carousel-base';
|
|
7
7
|
import { IgxSlideComponent } from './slide.component';
|
|
8
8
|
import { CarouselAnimationType, CarouselIndicatorsOrientation } from './enums';
|
|
9
9
|
import { IgxDirectionality } from '../services/direction/directionality';
|
|
@@ -38,7 +38,7 @@ export declare class CarouselHammerConfig extends HammerGestureConfig {
|
|
|
38
38
|
* </igx-carousel>
|
|
39
39
|
* ```
|
|
40
40
|
*/
|
|
41
|
-
export declare class IgxCarouselComponent extends IgxCarouselComponentBase implements OnDestroy, AfterContentInit {
|
|
41
|
+
export declare class IgxCarouselComponent extends IgxCarouselComponentBase implements ICarouselComponentBase, OnDestroy, AfterContentInit {
|
|
42
42
|
private element;
|
|
43
43
|
private iterableDiffers;
|
|
44
44
|
private platformUtil;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { OnDestroy, EventEmitter, ElementRef, AfterContentChecked } from '@angular/core';
|
|
2
2
|
import { Subject } from 'rxjs';
|
|
3
|
-
import { Direction, IgxSlideComponentBase } from './carousel-base';
|
|
4
|
-
import { IgxCarouselComponent } from './carousel.component';
|
|
3
|
+
import { Direction, ICarouselComponentBase, IgxSlideComponentBase } from './carousel-base';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
5
|
/**
|
|
7
6
|
* A slide component that usually holds an image and/or a caption text.
|
|
@@ -98,7 +97,7 @@ export declare class IgxSlideComponent implements AfterContentChecked, OnDestroy
|
|
|
98
97
|
activeChange: EventEmitter<boolean>;
|
|
99
98
|
private _active;
|
|
100
99
|
private _destroy$;
|
|
101
|
-
constructor(elementRef: ElementRef, carousel:
|
|
100
|
+
constructor(elementRef: ElementRef, carousel: ICarouselComponentBase);
|
|
102
101
|
/**
|
|
103
102
|
* Returns a reference to the carousel element in the DOM.
|
|
104
103
|
* ```typescript
|
|
@@ -172,6 +172,7 @@
|
|
|
172
172
|
flex-flow: row nowrap;
|
|
173
173
|
align-items: center;
|
|
174
174
|
outline-style: none;
|
|
175
|
+
cursor: pointer;
|
|
175
176
|
}
|
|
176
177
|
|
|
177
178
|
%cbx-display--disabled {
|
|
@@ -208,7 +209,6 @@
|
|
|
208
209
|
%cbx-composite {
|
|
209
210
|
position: relative;
|
|
210
211
|
display: inline-block;
|
|
211
|
-
cursor: pointer;
|
|
212
212
|
width: $size;
|
|
213
213
|
height: $size;
|
|
214
214
|
min-width: $size;
|
|
@@ -482,7 +482,6 @@
|
|
|
482
482
|
%cbx-label {
|
|
483
483
|
display: inline-block;
|
|
484
484
|
color: var-get($theme, 'label-color');
|
|
485
|
-
cursor: pointer;
|
|
486
485
|
user-select: none;
|
|
487
486
|
word-wrap: break-all;
|
|
488
487
|
transition: color .2s $ease-out-quad;
|
|
@@ -212,7 +212,6 @@
|
|
|
212
212
|
height: $size;
|
|
213
213
|
min-width: $size;
|
|
214
214
|
line-height: $size;
|
|
215
|
-
cursor: pointer;
|
|
216
215
|
color: var-get($theme, 'label-color');
|
|
217
216
|
user-select: none;
|
|
218
217
|
|
|
@@ -400,7 +399,6 @@
|
|
|
400
399
|
|
|
401
400
|
%radio-label {
|
|
402
401
|
color: var-get($theme, 'label-color');
|
|
403
|
-
cursor: pointer;
|
|
404
402
|
user-select: none;
|
|
405
403
|
word-wrap: break-all;
|
|
406
404
|
|
|
@@ -290,7 +290,6 @@
|
|
|
290
290
|
border: rem(1px) solid var-get($theme, 'border-color');
|
|
291
291
|
border-radius: var-get($theme, 'border-radius-track');
|
|
292
292
|
background: var-get($theme, 'track-off-color');
|
|
293
|
-
cursor: pointer;
|
|
294
293
|
user-select: none;
|
|
295
294
|
transition: $input-transition;
|
|
296
295
|
|
|
@@ -557,7 +556,6 @@
|
|
|
557
556
|
%switch-label {
|
|
558
557
|
display: inline-block;
|
|
559
558
|
color: var-get($theme, 'label-color');
|
|
560
|
-
cursor: pointer;
|
|
561
559
|
user-select: none;
|
|
562
560
|
word-wrap: break-all;
|
|
563
561
|
|
|
@@ -6,6 +6,7 @@ import { PlatformUtil } from '../../../core/utils';
|
|
|
6
6
|
import { ExpressionUI } from './common';
|
|
7
7
|
import { ColumnType } from '../../common/grid.interface';
|
|
8
8
|
import { IgxOverlayService } from '../../../services/overlay/overlay';
|
|
9
|
+
import { BaseFilteringComponent } from './base-filtering.component';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
/**
|
|
11
12
|
* @hidden
|
|
@@ -14,6 +15,7 @@ export declare class IgxExcelStyleCustomDialogComponent implements AfterViewInit
|
|
|
14
15
|
protected overlayService: IgxOverlayService;
|
|
15
16
|
private cdr;
|
|
16
17
|
protected platform: PlatformUtil;
|
|
18
|
+
esf: BaseFilteringComponent;
|
|
17
19
|
expressionsList: ExpressionUI[];
|
|
18
20
|
column: ColumnType;
|
|
19
21
|
selectedOperator: string;
|
|
@@ -27,7 +29,7 @@ export declare class IgxExcelStyleCustomDialogComponent implements AfterViewInit
|
|
|
27
29
|
private expressionDateComponents;
|
|
28
30
|
private _customDialogPositionSettings;
|
|
29
31
|
private _customDialogOverlaySettings;
|
|
30
|
-
constructor(overlayService: IgxOverlayService, cdr: ChangeDetectorRef, platform: PlatformUtil);
|
|
32
|
+
constructor(overlayService: IgxOverlayService, cdr: ChangeDetectorRef, platform: PlatformUtil, esf: BaseFilteringComponent);
|
|
31
33
|
ngAfterViewInit(): void;
|
|
32
34
|
get template(): TemplateRef<any>;
|
|
33
35
|
get grid(): any;
|
|
@@ -36,6 +38,7 @@ export declare class IgxExcelStyleCustomDialogComponent implements AfterViewInit
|
|
|
36
38
|
open(esf: any): void;
|
|
37
39
|
onClearButtonClick(): void;
|
|
38
40
|
closeDialog(): void;
|
|
41
|
+
cancelDialog(): void;
|
|
39
42
|
onApplyButtonClick(): void;
|
|
40
43
|
onAddButtonClick(): void;
|
|
41
44
|
onExpressionRemoved(event: ExpressionUI): void;
|
package/package.json
CHANGED