Skip to content

Commit 4cea6e5

Browse files
committed
chore(datetime): Add descriptions public API #6271
1 parent ab0315c commit 4cea6e5

File tree

2 files changed

+116
-21
lines changed

2 files changed

+116
-21
lines changed

projects/igniteui-angular/src/lib/directives/date-time-editor/date-time-editor.directive.ts

+115-20
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,28 @@ import {
1212
} from '../../date-picker/date-picker.utils';
1313
import { IgxDateTimeEditorEventArgs, DatePartInfo, DatePart } from './date-time-editor.common';
1414

15+
/**
16+
* Date Time Editor provides a functionality to input, edit and format date and time.
17+
*
18+
* @igxModule IgxDateTimeEditorModule
19+
*
20+
* @igxKeywords date, time, editor
21+
*
22+
* @igxGroup Scheduling
23+
*
24+
* @remarks
25+
*
26+
* The Ignite UI Date Time Editor Directive makes it easy for developers to manipulate date/time user input. It requires input in a specified or
27+
* default input format which is visible in the input element as a placeholder. It allows to input only date(ex: 'dd/MM/yyyy'), only time(ex:'HH:mm tt') or both at once if needed.
28+
* Supports display format that may differ from the input format. Provides methods to increment and decrement any specific/targeted `DatePart`.
29+
*
30+
* @example
31+
* ```html
32+
* <igx-input-group>
33+
* <input type="text" igxInput [igxDateTimeEditor]="'dd/MM/yyyy'" [displayFormat]="'shortDate'" [(ngModel)]="date"/>
34+
* </igx-input-group>
35+
* ```
36+
*/
1537
@Directive({
1638
selector: '[igxDateTimeEditor]',
1739
exportAs: 'igxDateTimeEditor',
@@ -20,28 +42,65 @@ import { IgxDateTimeEditorEventArgs, DatePartInfo, DatePart } from './date-time-
2042
]
2143
})
2244
export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnInit, ControlValueAccessor {
45+
/**
46+
* An @Input property that allows you to set the locale settings used in `displayFormat`.
47+
* @example
48+
*```html
49+
* <input igxDateTimeEditor [locale]="'en'">
50+
*```
51+
*/
2352
@Input()
2453
public locale = 'en';
2554

55+
/**
56+
* An @Input property that allows you to set the minimum possible value the editor will allow.
57+
* @example
58+
*```html
59+
* <input igxDateTimeEditor [minValue]="minDate">
60+
*```
61+
*/
2662
@Input()
2763
public minValue: string | Date;
2864

65+
/**
66+
* An @Input property that allows you to set the maximum possible value the editor will allow.
67+
* @example
68+
*```html
69+
* <input igxDateTimeEditor [maxValue]="maxDate">
70+
*```
71+
*/
2972
@Input()
3073
public maxValue: string | Date;
3174

32-
@Input()
33-
public promptChar: string;
34-
75+
/**
76+
* An @Input property that allows you to specify if the currently spun date segment should loop over.
77+
* @example
78+
*```html
79+
* <input igxDateTimeEditor [isSpinLoop]="false">
80+
*```
81+
*/
3582
@Input()
3683
public isSpinLoop = true;
3784

85+
/**
86+
* An @Input property that allows you to set both pre-defined format options such as `shortDate` and `longDate`,
87+
* as well as constructed format string using characters supported by `DatePipe`, e.g. `EE/MM/yyyy`.
88+
* @example
89+
*```html
90+
* <input igxDateTimeEditor [displayFormat]="'shortDate'">
91+
*```
92+
*/
3893
@Input()
3994
public displayFormat: string;
4095

41-
public get inputFormat(): string {
42-
return this._format;
43-
}
44-
96+
/**
97+
* An @Input property that allows you to get/set the expected user input format(and placeholder).
98+
* for the editor.
99+
* @example
100+
*```html
101+
* <input [igxDateTimeEditor]="'dd/MM/yyyy'">
102+
*```
103+
*/
45104
@Input(`igxDateTimeEditor`)
46105
public set inputFormat(value: string) {
47106
if (value) {
@@ -51,19 +110,44 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
51110
this.mask = value.indexOf('tt') !== -1 ? mask.substring(0, mask.length - 2) + 'LL' : mask;
52111
}
53112

54-
public get value() {
55-
return this._value;
113+
public get inputFormat(): string {
114+
return this._format;
56115
}
57116

117+
/**
118+
* An @Input property that gets/sets the component date value.
119+
* @example
120+
* ```html
121+
* <input igxDateTimeEditor [value]="date">
122+
* ```
123+
*/
58124
@Input()
59125
public set value(value: Date) {
60126
this._value = value;
61127
this.updateMask();
62128
}
63129

130+
public get value() {
131+
return this._value;
132+
}
133+
134+
/**
135+
* Emitted when the editor's value has changed.
136+
* @example
137+
* ```html
138+
* <input igxDateTimeEditor (valueChanged)="onValueChanged($event)"/>
139+
* ```
140+
*/
64141
@Output()
65142
public valueChanged = new EventEmitter<IgxDateTimeEditorEventArgs>();
66143

144+
/**
145+
* Emitted when the editor is not within a specified range.
146+
* @example
147+
* ```html
148+
* <input igxDateTimeEditor [minValue]="minDate" [maxValue]="maxDate" (validationFailed)="onValidationFailed($event)"/>
149+
* ```
150+
*/
67151
@Output()
68152
public validationFailed = new EventEmitter<IgxDateTimeEditorEventArgs>();
69153

@@ -110,18 +194,24 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
110194
this._document = this.document as Document;
111195
}
112196

113-
/** @hidden */
197+
/** @hidden @internal */
114198
public ngOnInit(): void {
115199
this._dateTimeFormatParts = DatePickerUtil.parseDateTimeFormat(this.inputFormat);
116200
this.renderer.setAttribute(this.nativeElement, 'placeholder', this.inputFormat);
117201
this.updateMask();
118202
}
119-
203+
/**
204+
* Clear the input element value.
205+
*/
120206
public clear(): void {
121207
this.updateValue(null);
122208
this.updateMask();
123209
}
124210

211+
/**
212+
* Increment specified DatePart.
213+
* @param datePart The optional DatePart to increment. Defaults to Date or Hours(when Date is absent from the inputFormat - ex:'HH:mm').
214+
*/
125215
public increment(datePart?: DatePart): void {
126216
const newValue = datePart
127217
? this.calculateValueOnSpin(datePart, 1)
@@ -130,6 +220,11 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
130220
this.updateMask();
131221
}
132222

223+
/**
224+
* Decrement specified DatePart.
225+
*
226+
* @param datePart The optional DatePart to decrement. Defaults to Date or Hours(when Date is absent from the inputFormat - ex:'HH:mm').
227+
*/
133228
public decrement(datePart?: DatePart): void {
134229
const newValue = datePart
135230
? this.calculateValueOnSpin(datePart, -1)
@@ -138,21 +233,21 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
138233
this.updateMask();
139234
}
140235

141-
/** @hidden */
236+
/** @hidden @internal */
142237
public writeValue(value: any): void {
143238
this.value = value;
144239
}
145240

146-
/** @hidden */
241+
/** @hidden @internal */
147242
public registerOnChange(fn: any): void { this.onChangeCallback = fn; }
148243

149-
/** @hidden */
244+
/** @hidden @internal */
150245
public registerOnTouched(fn: any): void { this.onTouchCallback = fn; }
151246

152-
/** @hidden */
247+
/** @hidden @internal */
153248
public setDisabledState?(isDisabled: boolean): void { }
154249

155-
/** @hidden */
250+
/** @hidden @internal */
156251
public onKeyDown(event: KeyboardEvent) {
157252
super.onKeyDown(event);
158253
if (event.key === KEYS.UP_ARROW || event.key === KEYS.UP_ARROW_IE ||
@@ -169,15 +264,15 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
169264
this.moveCursor(event);
170265
}
171266

172-
/** @hidden */
267+
/** @hidden @internal */
173268
public onFocus(): void {
174269
this._isFocused = true;
175270
this.onTouchCallback();
176271
this.updateMask();
177272
super.onFocus();
178273
}
179274

180-
/** @hidden */
275+
/** @hidden @internal */
181276
public onBlur(event): void {
182277
this._isFocused = false;
183278
this.updateValue(this.value);
@@ -186,7 +281,7 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
186281
super.onBlur(event);
187282
}
188283

189-
/** @hidden */
284+
/** @hidden @internal */
190285
public onInputChanged(): void {
191286
// the mask must be updated before any date operations
192287
super.onInputChanged();
@@ -204,7 +299,7 @@ export class IgxDateTimeEditorDirective extends IgxMaskDirective implements OnIn
204299
}
205300
}
206301

207-
/** @hidden */
302+
/** @hidden @internal */
208303
public updateMask() {
209304
if (!this.value || !this.isValidDate(this.value)) {
210305
this.inputValue = this.emptyMask;

projects/igniteui-angular/src/lib/drop-down/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { IgxDropDownItemBaseDirective } from './drop-down-item.base';
1111

1212
export * from './drop-down.component';
1313
export * from './drop-down-item.component';
14-
export { ISelectionEventArgs, IDropDownNavigationDirective, } from './drop-down.common';
14+
export { ISelectionEventArgs, IDropDownNavigationDirective } from './drop-down.common';
1515
export * from './drop-down-navigation.directive';
1616
export * from './drop-down.base';
1717
export * from './drop-down-item.base';

0 commit comments

Comments
 (0)