@progress/kendo-angular-dateinputs 15.1.0 → 15.1.1-develop.2
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/calendar/calendar.component.d.ts +8 -6
- package/calendar/multiview-calendar.component.d.ts +9 -7
- package/dateinput/dateinput.component.d.ts +8 -48
- package/datepicker/datepicker.component.d.ts +9 -43
- package/daterange/date-range-popup.component.d.ts +11 -10
- package/datetimepicker/datetimepicker.component.d.ts +10 -10
- package/esm2020/calendar/calendar.component.mjs +8 -6
- package/esm2020/calendar/multiview-calendar.component.mjs +9 -7
- package/esm2020/dateinput/dateinput.component.mjs +8 -48
- package/esm2020/datepicker/datepicker.component.mjs +9 -43
- package/esm2020/daterange/date-range-popup.component.mjs +11 -10
- package/esm2020/datetimepicker/datetimepicker.component.mjs +10 -10
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/timepicker/timepicker.component.mjs +10 -49
- package/fesm2015/progress-kendo-angular-dateinputs.mjs +67 -175
- package/fesm2020/progress-kendo-angular-dateinputs.mjs +67 -175
- package/package.json +11 -11
- package/timepicker/timepicker.component.d.ts +10 -49
|
@@ -169,69 +169,30 @@ export class TimePickerComponent {
|
|
|
169
169
|
*/
|
|
170
170
|
this.adaptiveMode = 'none';
|
|
171
171
|
/**
|
|
172
|
-
* Fires each time the user selects a new value
|
|
173
|
-
*
|
|
174
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
172
|
+
* Fires each time the user selects a new value
|
|
173
|
+
* ([see example](slug:events_timepicker)).
|
|
175
174
|
*/
|
|
176
175
|
this.valueChange = new EventEmitter();
|
|
177
176
|
/**
|
|
178
|
-
* Fires each time the user focuses the input element
|
|
179
|
-
*
|
|
180
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
181
|
-
*
|
|
182
|
-
* > To wire the event programmatically, use the `onFocus` property.
|
|
183
|
-
*
|
|
184
|
-
* @example
|
|
185
|
-
* ```ts
|
|
186
|
-
* _@Component({
|
|
187
|
-
* selector: 'my-app',
|
|
188
|
-
* template: `
|
|
189
|
-
* <kendo-timepicker (focus)="handleFocus()"></kendo-timepicker>
|
|
190
|
-
* `
|
|
191
|
-
* })
|
|
192
|
-
* export class AppComponent {
|
|
193
|
-
* public handleFocus(): void {
|
|
194
|
-
* console.log("Component is focused");
|
|
195
|
-
* }
|
|
196
|
-
* }
|
|
197
|
-
* ```
|
|
177
|
+
* Fires each time the user focuses the input element
|
|
178
|
+
* ([see example](slug:events_timepicker)).
|
|
198
179
|
*/
|
|
199
180
|
this.onFocus = new EventEmitter();
|
|
200
181
|
/**
|
|
201
|
-
* Fires each time the input element gets blurred
|
|
202
|
-
*
|
|
203
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
204
|
-
*
|
|
205
|
-
* > To wire the event programmatically, use the `onBlur` property.
|
|
206
|
-
*
|
|
207
|
-
* @example
|
|
208
|
-
* ```ts
|
|
209
|
-
* _@Component({
|
|
210
|
-
* selector: 'my-app',
|
|
211
|
-
* template: `
|
|
212
|
-
* <kendo-timepicker (blur)="handleBlur()"></kendo-timepicker>
|
|
213
|
-
* `
|
|
214
|
-
* })
|
|
215
|
-
* export class AppComponent {
|
|
216
|
-
* public handleBlur(): void {
|
|
217
|
-
* console.log("Component is blurred");
|
|
218
|
-
* }
|
|
219
|
-
* }
|
|
220
|
-
* ```
|
|
182
|
+
* Fires each time the input element gets blurred
|
|
183
|
+
* ([see example](slug:events_timepicker)).
|
|
221
184
|
*/
|
|
222
185
|
this.onBlur = new EventEmitter();
|
|
223
186
|
/**
|
|
224
|
-
* Fires each time the popup is about to open
|
|
187
|
+
* Fires each time the popup is about to open
|
|
188
|
+
* ([see example](slug:events_timepicker)).
|
|
225
189
|
* This event is preventable. If you cancel the event, the popup will remain closed.
|
|
226
|
-
* For more information, refer to the section on
|
|
227
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
228
190
|
*/
|
|
229
191
|
this.open = new EventEmitter();
|
|
230
192
|
/**
|
|
231
|
-
* Fires each time the popup is about to close
|
|
193
|
+
* Fires each time the popup is about to close
|
|
194
|
+
* ([see example](slug:events_timepicker)).
|
|
232
195
|
* This event is preventable. If you cancel the event, the popup will remain open.
|
|
233
|
-
* For more information, refer to the section on
|
|
234
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
235
196
|
*/
|
|
236
197
|
this.close = new EventEmitter();
|
|
237
198
|
/**
|
|
@@ -37,8 +37,8 @@ const packageMetadata = {
|
|
|
37
37
|
name: '@progress/kendo-angular-dateinputs',
|
|
38
38
|
productName: 'Kendo UI for Angular',
|
|
39
39
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
40
|
-
publishDate:
|
|
41
|
-
version: '15.1.
|
|
40
|
+
publishDate: 1708935126,
|
|
41
|
+
version: '15.1.1-develop.2',
|
|
42
42
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
43
43
|
};
|
|
44
44
|
|
|
@@ -3382,35 +3382,37 @@ class MultiViewCalendarComponent {
|
|
|
3382
3382
|
this.orientation = 'horizontal';
|
|
3383
3383
|
/**
|
|
3384
3384
|
* Fires when the active view is changed
|
|
3385
|
-
* ([
|
|
3385
|
+
* ([see example](slug:events_multiviewcalendar)).
|
|
3386
3386
|
*/
|
|
3387
3387
|
this.activeViewChange = new EventEmitter();
|
|
3388
3388
|
/**
|
|
3389
3389
|
* Fires when navigating in the currently active view
|
|
3390
|
-
* ([
|
|
3390
|
+
* ([see example](slug:events_multiviewcalendar)).
|
|
3391
3391
|
*/
|
|
3392
3392
|
this.navigate = new EventEmitter();
|
|
3393
3393
|
/**
|
|
3394
3394
|
* Fires when a view cell is entered
|
|
3395
|
-
* ([
|
|
3395
|
+
* ([see example](slug:events_multiviewcalendar)).
|
|
3396
3396
|
*/
|
|
3397
3397
|
this.cellEnter = new EventEmitter();
|
|
3398
3398
|
/**
|
|
3399
3399
|
* Fires when a view cell is leaved
|
|
3400
|
-
* ([
|
|
3400
|
+
* ([see example](slug:events_multiviewcalendar)).
|
|
3401
3401
|
*/
|
|
3402
3402
|
this.cellLeave = new EventEmitter();
|
|
3403
3403
|
/**
|
|
3404
3404
|
* Fires when the value is changed
|
|
3405
|
-
* ([
|
|
3405
|
+
* ([see example](slug:events_multiviewcalendar)).
|
|
3406
3406
|
*/
|
|
3407
3407
|
this.valueChange = new EventEmitter();
|
|
3408
3408
|
/**
|
|
3409
|
-
* Fires each time the MultiViewCalendar gets blurred
|
|
3409
|
+
* Fires each time the MultiViewCalendar gets blurred
|
|
3410
|
+
* ([see example](slug:events_multiviewcalendar)).
|
|
3410
3411
|
*/
|
|
3411
3412
|
this.blurEvent = new EventEmitter();
|
|
3412
3413
|
/**
|
|
3413
|
-
* Fires each time the MultiViewCalendar gets focused
|
|
3414
|
+
* Fires each time the MultiViewCalendar gets focused
|
|
3415
|
+
* ([see example](slug:events_multiviewcalendar)).
|
|
3414
3416
|
*/
|
|
3415
3417
|
this.focusEvent = new EventEmitter();
|
|
3416
3418
|
/**
|
|
@@ -5878,31 +5880,33 @@ class CalendarComponent {
|
|
|
5878
5880
|
this.weekNumber = false;
|
|
5879
5881
|
/**
|
|
5880
5882
|
* Fires when the active view is changed
|
|
5881
|
-
* ([
|
|
5883
|
+
* ([see example](slug:events_calendar)).
|
|
5882
5884
|
*/
|
|
5883
5885
|
this.activeViewChange = new EventEmitter();
|
|
5884
5886
|
/**
|
|
5885
5887
|
* Fires when navigating in the currently active view
|
|
5886
|
-
* ([
|
|
5888
|
+
* ([see example](slug:events_calendar)).
|
|
5887
5889
|
*/
|
|
5888
5890
|
this.navigate = new EventEmitter();
|
|
5889
5891
|
/**
|
|
5890
5892
|
* Fires when the active view date is changed
|
|
5891
|
-
* ([
|
|
5893
|
+
* ([see example](slug:events_calendar)).
|
|
5892
5894
|
* Applies to the [`infinite`]({% slug api_dateinputs_calendarcomponent %}#toc-type) Calendar only.
|
|
5893
5895
|
*/
|
|
5894
5896
|
this.activeViewDateChange = new EventEmitter();
|
|
5895
5897
|
/**
|
|
5896
|
-
* Fires each time the Calendar gets blurred
|
|
5898
|
+
* Fires each time the Calendar gets blurred
|
|
5899
|
+
* ([see example](slug:events_calendar)).
|
|
5897
5900
|
*/
|
|
5898
5901
|
this.onBlur = new EventEmitter();
|
|
5899
5902
|
/**
|
|
5900
|
-
* Fires each time the Calendar gets focused
|
|
5903
|
+
* Fires each time the Calendar gets focused
|
|
5904
|
+
* ([see example](slug:events_calendar)).
|
|
5901
5905
|
*/
|
|
5902
5906
|
this.onFocus = new EventEmitter();
|
|
5903
5907
|
/**
|
|
5904
5908
|
* Fires when the value is changed
|
|
5905
|
-
* ([
|
|
5909
|
+
* ([see example](slug:events_calendar)).
|
|
5906
5910
|
*/
|
|
5907
5911
|
this.valueChange = new EventEmitter();
|
|
5908
5912
|
this._size = DEFAULT_SIZE;
|
|
@@ -7317,64 +7321,24 @@ class DateInputComponent {
|
|
|
7317
7321
|
*/
|
|
7318
7322
|
this.spinners = false;
|
|
7319
7323
|
/**
|
|
7320
|
-
* Fires each time the user selects a new value
|
|
7321
|
-
*
|
|
7322
|
-
* [events]({% slug overview_dateinput %}#toc-events).
|
|
7324
|
+
* Fires each time the user selects a new value
|
|
7325
|
+
* ([see example](slug:events_dateinput)).
|
|
7323
7326
|
*/
|
|
7324
7327
|
this.valueChange = new EventEmitter();
|
|
7325
7328
|
/**
|
|
7326
7329
|
* @hidden
|
|
7327
|
-
* Fires each time the user selects a new value
|
|
7328
|
-
*
|
|
7329
|
-
* [events]({% slug overview_dateinput %}#toc-events).
|
|
7330
|
+
* Fires each time the user selects a new value
|
|
7331
|
+
* ([see example](slug:events_dateinput)).
|
|
7330
7332
|
*/
|
|
7331
7333
|
this.valueUpdate = new EventEmitter();
|
|
7332
7334
|
/**
|
|
7333
|
-
* Fires each time the user focuses the input element
|
|
7334
|
-
*
|
|
7335
|
-
* [events]({% slug overview_dateinput %}#toc-events).
|
|
7336
|
-
*
|
|
7337
|
-
* > To wire the event programmatically, use the `onFocus` property.
|
|
7338
|
-
*
|
|
7339
|
-
* @example
|
|
7340
|
-
* ```ts
|
|
7341
|
-
* _@Component({
|
|
7342
|
-
* selector: 'my-app',
|
|
7343
|
-
* template: `
|
|
7344
|
-
* <kendo-dateinput (focus)="handleFocus()"></kendo-dateinput>
|
|
7345
|
-
* `
|
|
7346
|
-
* })
|
|
7347
|
-
* export class AppComponent {
|
|
7348
|
-
* public handleFocus(): void {
|
|
7349
|
-
* console.log("Component is focused");
|
|
7350
|
-
* }
|
|
7351
|
-
* }
|
|
7352
|
-
* ```
|
|
7353
|
-
*
|
|
7335
|
+
* Fires each time the user focuses the input element
|
|
7336
|
+
* ([see example](slug:events_dateinput)).
|
|
7354
7337
|
*/
|
|
7355
7338
|
this.onFocus = new EventEmitter();
|
|
7356
7339
|
/**
|
|
7357
|
-
* Fires each time the input element gets blurred
|
|
7358
|
-
*
|
|
7359
|
-
* [events]({% slug overview_dateinput %}#toc-events).
|
|
7360
|
-
*
|
|
7361
|
-
* > To wire the event programmatically, use the `onBlur` property.
|
|
7362
|
-
*
|
|
7363
|
-
* @example
|
|
7364
|
-
* ```ts
|
|
7365
|
-
* _@Component({
|
|
7366
|
-
* selector: 'my-app',
|
|
7367
|
-
* template: `
|
|
7368
|
-
* <kendo-dateinput (blur)="handleBlur()"></kendo-dateinput>
|
|
7369
|
-
* `
|
|
7370
|
-
* })
|
|
7371
|
-
* export class AppComponent {
|
|
7372
|
-
* public handleBlur(): void {
|
|
7373
|
-
* console.log("Component is blurred");
|
|
7374
|
-
* }
|
|
7375
|
-
* }
|
|
7376
|
-
* ```
|
|
7377
|
-
*
|
|
7340
|
+
* Fires each time the input element gets blurred
|
|
7341
|
+
* ([see example](slug:events_dateinput)).
|
|
7378
7342
|
*/
|
|
7379
7343
|
this.onBlur = new EventEmitter();
|
|
7380
7344
|
this.arrow = Arrow;
|
|
@@ -8541,63 +8505,29 @@ class DatePickerComponent {
|
|
|
8541
8505
|
this.adaptiveMode = 'none';
|
|
8542
8506
|
/**
|
|
8543
8507
|
* Fires each time the user selects a new value
|
|
8544
|
-
* ([
|
|
8508
|
+
* ([see example](slug:events_datepicker)).
|
|
8545
8509
|
*/
|
|
8546
8510
|
this.valueChange = new EventEmitter();
|
|
8547
8511
|
/**
|
|
8548
8512
|
* Fires each time the user focuses the input element
|
|
8549
|
-
* ([
|
|
8550
|
-
*
|
|
8551
|
-
* > To wire the event programmatically, use the `onFocus` property.
|
|
8552
|
-
*
|
|
8553
|
-
* @example
|
|
8554
|
-
* ```ts
|
|
8555
|
-
* _@Component({
|
|
8556
|
-
* selector: 'my-app',
|
|
8557
|
-
* template: `
|
|
8558
|
-
* <kendo-datepicker (focus)="handleFocus()"></kendo-datepicker>
|
|
8559
|
-
* `
|
|
8560
|
-
* })
|
|
8561
|
-
* export class AppComponent {
|
|
8562
|
-
* public handleFocus(): void {
|
|
8563
|
-
* console.log("Component is focused");
|
|
8564
|
-
* }
|
|
8565
|
-
* }
|
|
8566
|
-
* ```
|
|
8513
|
+
* ([see example](slug:events_datepicker)).
|
|
8567
8514
|
*/
|
|
8568
8515
|
this.onFocus = new EventEmitter();
|
|
8569
8516
|
/**
|
|
8570
8517
|
* Fires each time the input element gets blurred
|
|
8571
|
-
* ([
|
|
8572
|
-
*
|
|
8573
|
-
* > To wire the event programmatically, use the `onBlur` property.
|
|
8574
|
-
*
|
|
8575
|
-
* @example
|
|
8576
|
-
* ```ts
|
|
8577
|
-
* _@Component({
|
|
8578
|
-
* selector: 'my-app',
|
|
8579
|
-
* template: `
|
|
8580
|
-
* <kendo-datepicker (blur)="handleBlur()"></kendo-datepicker>
|
|
8581
|
-
* `
|
|
8582
|
-
* })
|
|
8583
|
-
* export class AppComponent {
|
|
8584
|
-
* public handleBlur(): void {
|
|
8585
|
-
* console.log("Component is blurred");
|
|
8586
|
-
* }
|
|
8587
|
-
* }
|
|
8588
|
-
* ```
|
|
8518
|
+
* ([see example](slug:events_datepicker)).
|
|
8589
8519
|
*/
|
|
8590
8520
|
this.onBlur = new EventEmitter();
|
|
8591
8521
|
/**
|
|
8592
|
-
* Fires each time the popup is about to open
|
|
8593
|
-
*
|
|
8594
|
-
*
|
|
8522
|
+
* Fires each time the popup is about to open
|
|
8523
|
+
* ([see example](slug:events_datepicker)).
|
|
8524
|
+
* This event is preventable. If you cancel the event, the popup will remain closed.
|
|
8595
8525
|
*/
|
|
8596
8526
|
this.open = new EventEmitter();
|
|
8597
8527
|
/**
|
|
8598
|
-
* Fires each time the popup is about to close
|
|
8599
|
-
*
|
|
8600
|
-
*
|
|
8528
|
+
* Fires each time the popup is about to close
|
|
8529
|
+
* ([see example](slug:events_datepicker)).
|
|
8530
|
+
* This event is preventable. If you cancel the event, the popup will remain open.
|
|
8601
8531
|
*/
|
|
8602
8532
|
this.close = new EventEmitter();
|
|
8603
8533
|
/**
|
|
@@ -11888,69 +11818,30 @@ class TimePickerComponent {
|
|
|
11888
11818
|
*/
|
|
11889
11819
|
this.adaptiveMode = 'none';
|
|
11890
11820
|
/**
|
|
11891
|
-
* Fires each time the user selects a new value
|
|
11892
|
-
*
|
|
11893
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
11821
|
+
* Fires each time the user selects a new value
|
|
11822
|
+
* ([see example](slug:events_timepicker)).
|
|
11894
11823
|
*/
|
|
11895
11824
|
this.valueChange = new EventEmitter();
|
|
11896
11825
|
/**
|
|
11897
|
-
* Fires each time the user focuses the input element
|
|
11898
|
-
*
|
|
11899
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
11900
|
-
*
|
|
11901
|
-
* > To wire the event programmatically, use the `onFocus` property.
|
|
11902
|
-
*
|
|
11903
|
-
* @example
|
|
11904
|
-
* ```ts
|
|
11905
|
-
* _@Component({
|
|
11906
|
-
* selector: 'my-app',
|
|
11907
|
-
* template: `
|
|
11908
|
-
* <kendo-timepicker (focus)="handleFocus()"></kendo-timepicker>
|
|
11909
|
-
* `
|
|
11910
|
-
* })
|
|
11911
|
-
* export class AppComponent {
|
|
11912
|
-
* public handleFocus(): void {
|
|
11913
|
-
* console.log("Component is focused");
|
|
11914
|
-
* }
|
|
11915
|
-
* }
|
|
11916
|
-
* ```
|
|
11826
|
+
* Fires each time the user focuses the input element
|
|
11827
|
+
* ([see example](slug:events_timepicker)).
|
|
11917
11828
|
*/
|
|
11918
11829
|
this.onFocus = new EventEmitter();
|
|
11919
11830
|
/**
|
|
11920
|
-
* Fires each time the input element gets blurred
|
|
11921
|
-
*
|
|
11922
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
11923
|
-
*
|
|
11924
|
-
* > To wire the event programmatically, use the `onBlur` property.
|
|
11925
|
-
*
|
|
11926
|
-
* @example
|
|
11927
|
-
* ```ts
|
|
11928
|
-
* _@Component({
|
|
11929
|
-
* selector: 'my-app',
|
|
11930
|
-
* template: `
|
|
11931
|
-
* <kendo-timepicker (blur)="handleBlur()"></kendo-timepicker>
|
|
11932
|
-
* `
|
|
11933
|
-
* })
|
|
11934
|
-
* export class AppComponent {
|
|
11935
|
-
* public handleBlur(): void {
|
|
11936
|
-
* console.log("Component is blurred");
|
|
11937
|
-
* }
|
|
11938
|
-
* }
|
|
11939
|
-
* ```
|
|
11831
|
+
* Fires each time the input element gets blurred
|
|
11832
|
+
* ([see example](slug:events_timepicker)).
|
|
11940
11833
|
*/
|
|
11941
11834
|
this.onBlur = new EventEmitter();
|
|
11942
11835
|
/**
|
|
11943
|
-
* Fires each time the popup is about to open
|
|
11836
|
+
* Fires each time the popup is about to open
|
|
11837
|
+
* ([see example](slug:events_timepicker)).
|
|
11944
11838
|
* This event is preventable. If you cancel the event, the popup will remain closed.
|
|
11945
|
-
* For more information, refer to the section on
|
|
11946
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
11947
11839
|
*/
|
|
11948
11840
|
this.open = new EventEmitter();
|
|
11949
11841
|
/**
|
|
11950
|
-
* Fires each time the popup is about to close
|
|
11842
|
+
* Fires each time the popup is about to close
|
|
11843
|
+
* ([see example](slug:events_timepicker)).
|
|
11951
11844
|
* This event is preventable. If you cancel the event, the popup will remain open.
|
|
11952
|
-
* For more information, refer to the section on
|
|
11953
|
-
* [events]({% slug overview_timepicker %}#toc-events).
|
|
11954
11845
|
*/
|
|
11955
11846
|
this.close = new EventEmitter();
|
|
11956
11847
|
/**
|
|
@@ -13486,30 +13377,30 @@ class DateTimePickerComponent {
|
|
|
13486
13377
|
*/
|
|
13487
13378
|
this.adaptiveMode = 'none';
|
|
13488
13379
|
/**
|
|
13489
|
-
* Fires each time the user selects a new value
|
|
13490
|
-
* ([
|
|
13380
|
+
* Fires each time the user selects a new value
|
|
13381
|
+
* ([see example](slug:events_datetimepicker)).
|
|
13491
13382
|
*/
|
|
13492
13383
|
this.valueChange = new EventEmitter();
|
|
13493
13384
|
/**
|
|
13494
|
-
* Fires each time the popup is about to open
|
|
13385
|
+
* Fires each time the popup is about to open
|
|
13386
|
+
* ([see example](slug:events_datetimepicker)).
|
|
13495
13387
|
* This event is preventable. If you cancel the event by setting `event.preventDefault()`, the popup will remain closed.
|
|
13496
|
-
* ([more information and example]({% slug overview_datetimepicker %}#toc-methods-and-events)).
|
|
13497
13388
|
*/
|
|
13498
13389
|
this.open = new EventEmitter();
|
|
13499
13390
|
/**
|
|
13500
|
-
* Fires each time the popup is about to close
|
|
13391
|
+
* Fires each time the popup is about to close
|
|
13392
|
+
* ([see example](slug:events_datetimepicker)).
|
|
13501
13393
|
* This event is preventable. If you cancel the event by setting `event.preventDefault()`, the popup will remain open.
|
|
13502
|
-
* ([more information and example]({% slug overview_datetimepicker %}#toc-methods-and-events)).
|
|
13503
13394
|
*/
|
|
13504
13395
|
this.close = new EventEmitter();
|
|
13505
13396
|
/**
|
|
13506
|
-
* Fires each time the user focuses the component
|
|
13507
|
-
* ([
|
|
13397
|
+
* Fires each time the user focuses the component
|
|
13398
|
+
* ([see example](slug:events_datetimepicker)).
|
|
13508
13399
|
*/
|
|
13509
13400
|
this.onFocus = new EventEmitter();
|
|
13510
13401
|
/**
|
|
13511
|
-
* Fires each time the user blurs the component
|
|
13512
|
-
* ([
|
|
13402
|
+
* Fires each time the user blurs the component
|
|
13403
|
+
* ([see example](slug:events_datetimepicker)).
|
|
13513
13404
|
*/
|
|
13514
13405
|
this.onBlur = new EventEmitter();
|
|
13515
13406
|
/**
|
|
@@ -15981,29 +15872,30 @@ class DateRangePopupComponent {
|
|
|
15981
15872
|
*/
|
|
15982
15873
|
this.title = "";
|
|
15983
15874
|
/**
|
|
15984
|
-
* Fires each time the popup is about to open
|
|
15875
|
+
* Fires each time the popup is about to open
|
|
15876
|
+
* ([see example](slug:popup_daterange#toc-events)).
|
|
15985
15877
|
* This event is preventable. If you cancel the event, the popup will remain closed.
|
|
15986
|
-
* For more information, refer to the section on
|
|
15987
|
-
* [events]({% slug overview_datepicker %}#toc-events).
|
|
15988
15878
|
*/
|
|
15989
15879
|
this.open = new EventEmitter();
|
|
15990
15880
|
/**
|
|
15991
|
-
* Fires each time the popup is about to close
|
|
15881
|
+
* Fires each time the popup is about to close
|
|
15882
|
+
* ([see example](slug:popup_daterange#toc-events)).
|
|
15992
15883
|
* This event is preventable. If you cancel the event, the popup will remain open.
|
|
15993
|
-
* For more information, refer to the section on
|
|
15994
|
-
* [events]({% slug overview_datepicker %}#toc-events).
|
|
15995
15884
|
*/
|
|
15996
15885
|
this.close = new EventEmitter();
|
|
15997
15886
|
/**
|
|
15998
|
-
* Fires each time the calendar element is blurred
|
|
15887
|
+
* Fires each time the calendar element is blurred
|
|
15888
|
+
* ([see example](slug:popup_daterange#toc-events)).
|
|
15999
15889
|
*/
|
|
16000
15890
|
this.onBlur = new EventEmitter();
|
|
16001
15891
|
/**
|
|
16002
|
-
* Fires each time the calendar element is focused
|
|
15892
|
+
* Fires each time the calendar element is focused
|
|
15893
|
+
* ([see example](slug:popup_daterange#toc-events)).
|
|
16003
15894
|
*/
|
|
16004
15895
|
this.onFocus = new EventEmitter();
|
|
16005
15896
|
/**
|
|
16006
|
-
* Fires each time the popup is closed either on `ESC` keypress or on leaving the viewport
|
|
15897
|
+
* Fires each time the popup is closed either on `ESC` keypress or on leaving the viewport
|
|
15898
|
+
* ([see example](slug:popup_daterange#toc-events)).
|
|
16007
15899
|
*/
|
|
16008
15900
|
this.cancel = new EventEmitter();
|
|
16009
15901
|
/**
|
|
@@ -16030,7 +15922,7 @@ class DateRangePopupComponent {
|
|
|
16030
15922
|
return this._subtitle;
|
|
16031
15923
|
}
|
|
16032
15924
|
/**
|
|
16033
|
-
* The active calendar that is visible in the popup
|
|
15925
|
+
* The active calendar that is visible in the popup
|
|
16034
15926
|
*
|
|
16035
15927
|
* > When the popup is closed, the property returns `null`.
|
|
16036
15928
|
*/
|