igniteui-angular 17.2.0-beta.2 → 17.2.0-rc.1
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/calendar.component.mjs +2 -1
- package/esm2022/lib/calendar/days-view/days-view.component.mjs +4 -2
- package/esm2022/lib/calendar/months-view/months-view.component.mjs +1 -1
- package/esm2022/lib/calendar/years-view/years-view.component.mjs +1 -1
- package/esm2022/lib/directives/date-time-editor/date-time-editor.directive.mjs +11 -12
- package/esm2022/lib/directives/mask/mask.directive.mjs +2 -2
- package/esm2022/lib/directives/toggle/toggle.directive.mjs +6 -6
- package/fesm2022/igniteui-angular.mjs +20 -18
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/calendar/months-view/months-view.component.d.ts +1 -1
- package/lib/calendar/years-view/years-view.component.d.ts +1 -1
- package/lib/directives/date-time-editor/date-time-editor.directive.d.ts +4 -6
- package/lib/directives/mask/mask.directive.d.ts +3 -3
- package/lib/directives/toggle/toggle.directive.d.ts +4 -4
- package/package.json +2 -2
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementRef } from "@angular/core";
|
|
2
2
|
import { IgxCalendarViewDirective } from "../common/calendar-view.directive";
|
|
3
3
|
import { ControlValueAccessor } from "@angular/forms";
|
|
4
|
-
import { DayInterval } from "../common/model";
|
|
4
|
+
import type { DayInterval } from "../common/model";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class IgxMonthsViewComponent extends IgxCalendarViewDirective implements ControlValueAccessor {
|
|
7
7
|
#private;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ElementRef } from "@angular/core";
|
|
2
2
|
import { IgxCalendarViewDirective } from "../common/calendar-view.directive";
|
|
3
3
|
import { ControlValueAccessor } from "@angular/forms";
|
|
4
|
-
import { DayInterval } from "../common/model";
|
|
4
|
+
import type { DayInterval } from "../common/model";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class IgxYearsViewComponent extends IgxCalendarViewDirective implements ControlValueAccessor {
|
|
7
7
|
#private;
|
|
@@ -115,8 +115,8 @@ export declare class IgxDateTimeEditorDirective extends IgxMaskDirective impleme
|
|
|
115
115
|
* <input igxDateTimeEditor [value]="date">
|
|
116
116
|
* ```
|
|
117
117
|
*/
|
|
118
|
-
set value(value: Date | string);
|
|
119
|
-
get value(): Date | string;
|
|
118
|
+
set value(value: Date | string | undefined | null);
|
|
119
|
+
get value(): Date | string | undefined | null;
|
|
120
120
|
/**
|
|
121
121
|
* Delta values used to increment or decrement each editor date part on spin actions.
|
|
122
122
|
* All values default to `1`.
|
|
@@ -150,16 +150,14 @@ export declare class IgxDateTimeEditorDirective extends IgxMaskDirective impleme
|
|
|
150
150
|
private _dateValue;
|
|
151
151
|
private _onClear;
|
|
152
152
|
private document;
|
|
153
|
-
private _isFocused;
|
|
154
153
|
private _defaultInputFormat;
|
|
155
|
-
private _value
|
|
154
|
+
private _value?;
|
|
156
155
|
private _minValue;
|
|
157
156
|
private _maxValue;
|
|
158
157
|
private _inputDateParts;
|
|
159
158
|
private _datePartDeltas;
|
|
160
|
-
private onTouchCallback;
|
|
161
159
|
private onChangeCallback;
|
|
162
|
-
private
|
|
160
|
+
private _onValidatorChange;
|
|
163
161
|
private get datePartDeltas();
|
|
164
162
|
private get emptyMask();
|
|
165
163
|
private get targetDatePart();
|
|
@@ -71,6 +71,7 @@ export declare class IgxMaskDirective implements OnInit, AfterViewChecked, Contr
|
|
|
71
71
|
protected get end(): number;
|
|
72
72
|
protected _composing: boolean;
|
|
73
73
|
protected _compositionStartIndex: number;
|
|
74
|
+
protected _focused: boolean;
|
|
74
75
|
private _compositionValue;
|
|
75
76
|
private _end;
|
|
76
77
|
private _start;
|
|
@@ -78,12 +79,11 @@ export declare class IgxMaskDirective implements OnInit, AfterViewChecked, Contr
|
|
|
78
79
|
private _mask;
|
|
79
80
|
private _oldText;
|
|
80
81
|
private _dataValue;
|
|
81
|
-
private _focused;
|
|
82
82
|
private _droppedData;
|
|
83
83
|
private _hasDropAction;
|
|
84
84
|
private readonly defaultMask;
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
protected _onTouchedCallback: () => void;
|
|
86
|
+
protected _onChangeCallback: (_: any) => void;
|
|
87
87
|
constructor(elementRef: ElementRef<HTMLInputElement>, maskParser: MaskParsingService, renderer: Renderer2, platform: PlatformUtil);
|
|
88
88
|
/** @hidden */
|
|
89
89
|
onKeyDown(event: KeyboardEvent): void;
|
|
@@ -29,7 +29,7 @@ export declare class IgxToggleDirective implements IToggleView, OnInit, OnDestro
|
|
|
29
29
|
* ```html
|
|
30
30
|
* <div
|
|
31
31
|
* igxToggle
|
|
32
|
-
* (
|
|
32
|
+
* (opened)='onToggleOpened($event)'>
|
|
33
33
|
* </div>
|
|
34
34
|
* ```
|
|
35
35
|
*/
|
|
@@ -46,7 +46,7 @@ export declare class IgxToggleDirective implements IToggleView, OnInit, OnDestro
|
|
|
46
46
|
* ```html
|
|
47
47
|
* <div
|
|
48
48
|
* igxToggle
|
|
49
|
-
* (
|
|
49
|
+
* (opening)='onToggleOpening($event)'>
|
|
50
50
|
* </div>
|
|
51
51
|
* ```
|
|
52
52
|
*/
|
|
@@ -63,7 +63,7 @@ export declare class IgxToggleDirective implements IToggleView, OnInit, OnDestro
|
|
|
63
63
|
* ```html
|
|
64
64
|
* <div
|
|
65
65
|
* igxToggle
|
|
66
|
-
* (
|
|
66
|
+
* (closed)='onToggleClosed($event)'>
|
|
67
67
|
* </div>
|
|
68
68
|
* ```
|
|
69
69
|
*/
|
|
@@ -97,7 +97,7 @@ export declare class IgxToggleDirective implements IToggleView, OnInit, OnDestro
|
|
|
97
97
|
* ```html
|
|
98
98
|
* <div
|
|
99
99
|
* igxToggle
|
|
100
|
-
* (
|
|
100
|
+
* (appended)='onToggleAppended()'>
|
|
101
101
|
* </div>
|
|
102
102
|
* ```
|
|
103
103
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-angular",
|
|
3
|
-
"version": "17.2.0-
|
|
3
|
+
"version": "17.2.0-rc.1",
|
|
4
4
|
"description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
|
|
5
5
|
"author": "Infragistics",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
}
|
|
95
95
|
},
|
|
96
96
|
"igxDevDependencies": {
|
|
97
|
-
"@igniteui/angular-schematics": "~17.
|
|
97
|
+
"@igniteui/angular-schematics": "~17.2.1320-rc.0"
|
|
98
98
|
},
|
|
99
99
|
"ng-update": {
|
|
100
100
|
"migrations": "./migrations/migration-collection.json",
|