igniteui-webcomponents-inputs 4.0.3 → 4.2.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.
Files changed (51) hide show
  1. package/bundles/igniteui-webcomponents-inputs.umd.js +2781 -2143
  2. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +17 -17
  4. package/esm2015/lib/ButtonView_combined.js +945 -939
  5. package/esm2015/lib/CalendarView_combined.js +80 -80
  6. package/esm2015/lib/DatePickerView_combined.js +82 -64
  7. package/esm2015/lib/IconView_combined.js +250 -238
  8. package/esm2015/lib/InputGroupView_combined.js +368 -357
  9. package/esm2015/lib/NativeUIXInputsFactory.js +143 -0
  10. package/esm2015/lib/XButtonBridge.js +101 -0
  11. package/esm2015/lib/XCheckboxBridge.js +69 -0
  12. package/esm2015/lib/XComponentBridge.js +34 -0
  13. package/esm2015/lib/XIconButtonBridge.js +65 -0
  14. package/esm2015/lib/XInputBridge.js +162 -0
  15. package/esm2015/lib/igc-x-button-component.js +366 -366
  16. package/esm2015/lib/igc-x-icon-component.js +74 -63
  17. package/esm2015/lib/igc-x-input-component.js +65 -54
  18. package/esm2015/public_api.js +6 -0
  19. package/esm5/lib/ButtonGroupView_combined.js +17 -17
  20. package/esm5/lib/ButtonView_combined.js +941 -935
  21. package/esm5/lib/CalendarView_combined.js +80 -80
  22. package/esm5/lib/DatePickerView_combined.js +82 -64
  23. package/esm5/lib/IconView_combined.js +240 -224
  24. package/esm5/lib/InputGroupView_combined.js +353 -338
  25. package/esm5/lib/NativeUIXInputsFactory.js +153 -0
  26. package/esm5/lib/XButtonBridge.js +103 -0
  27. package/esm5/lib/XCheckboxBridge.js +71 -0
  28. package/esm5/lib/XComponentBridge.js +36 -0
  29. package/esm5/lib/XIconButtonBridge.js +67 -0
  30. package/esm5/lib/XInputBridge.js +164 -0
  31. package/esm5/lib/igc-x-button-component.js +366 -366
  32. package/esm5/lib/igc-x-icon-component.js +79 -64
  33. package/esm5/lib/igc-x-input-component.js +70 -55
  34. package/esm5/public_api.js +6 -0
  35. package/fesm2015/igniteui-webcomponents-inputs.js +2785 -2178
  36. package/fesm5/igniteui-webcomponents-inputs.js +2772 -2141
  37. package/lib/ButtonView_combined.d.ts +262 -260
  38. package/lib/DatePickerView_combined.d.ts +22 -21
  39. package/lib/DatePickerVisualModelExport.d.ts +1 -1
  40. package/lib/IconView_combined.d.ts +59 -56
  41. package/lib/InputGroupView_combined.d.ts +91 -89
  42. package/lib/NativeUIXInputsFactory.d.ts +22 -0
  43. package/lib/XButtonBridge.d.ts +21 -0
  44. package/lib/XCheckboxBridge.d.ts +19 -0
  45. package/lib/XComponentBridge.d.ts +17 -0
  46. package/lib/XIconButtonBridge.d.ts +16 -0
  47. package/lib/XInputBridge.d.ts +24 -0
  48. package/lib/igc-x-icon-component.d.ts +6 -1
  49. package/lib/igc-x-input-component.d.ts +6 -1
  50. package/package.json +2 -2
  51. package/public_api.d.ts +6 -0
@@ -11,7 +11,7 @@ import { XLabel } from "./XLabel";
11
11
  import { XInput } from "./XInput";
12
12
  import { XSuffix } from "./XSuffix";
13
13
  import { XIcon } from "./XIcon";
14
- import { Popup } from "igniteui-webcomponents-layouts";
14
+ import { Popup } from "igniteui-webcomponents-core";
15
15
  import { XCalendar } from "./XCalendar";
16
16
  import { Rect } from "igniteui-webcomponents-core";
17
17
  import { SRProvider } from "igniteui-webcomponents-core";
@@ -51,7 +51,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
51
51
  _this.h = null;
52
52
  return _this;
53
53
  }
54
- DatePickerView.prototype.ag = function () {
54
+ DatePickerView.prototype.ah = function () {
55
55
  };
56
56
  Object.defineProperty(DatePickerView.prototype, "n", {
57
57
  get: function () {
@@ -60,7 +60,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
60
60
  enumerable: true,
61
61
  configurable: true
62
62
  });
63
- DatePickerView.prototype.af = function (a) {
63
+ DatePickerView.prototype.ag = function (a) {
64
64
  if (a == null) {
65
65
  this.d = null;
66
66
  return;
@@ -68,15 +68,15 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
68
68
  this.d = a;
69
69
  var b = Math.round(a.rootWrapper.width());
70
70
  var c = Math.round(a.rootWrapper.height());
71
- this.z();
72
71
  this.aa();
72
+ this.ab();
73
73
  var d = this.d.rootWrapper.getChildAt(0);
74
74
  d.listen("keydown", runOn(this, this.x));
75
75
  d.listen("focusin", runOn(this, this.v));
76
76
  d.listen("focusout", runOn(this, this.w));
77
- document.addEventListener("click", runOn(this, this.ab), false);
77
+ document.addEventListener("click", runOn(this, this.ac), false);
78
78
  };
79
- DatePickerView.prototype.z = function () {
79
+ DatePickerView.prototype.aa = function () {
80
80
  if (this.d != null) {
81
81
  this.k = this.d.rootWrapper.getChildAt(0);
82
82
  this.k.setAttribute("tabIndex", "0");
@@ -99,39 +99,39 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
99
99
  this.f.setStyleProperty("width", "16px");
100
100
  this.h.setStyleProperty("height", "16px");
101
101
  this.h.setStyleProperty("width", "16px");
102
- this.f.listen("click", runOn(this, this.y));
103
- this.h.listen("click", runOn(this, this.ac));
102
+ this.f.listen("click", runOn(this, this.z));
103
+ this.h.listen("click", runOn(this, this.ad));
104
104
  }
105
105
  };
106
- DatePickerView.prototype.aj = function (a) {
106
+ DatePickerView.prototype.ak = function (a) {
107
107
  if (this.d != null) {
108
108
  var b = this.d.getSubRenderer(this.k);
109
109
  a.provideContainer(b);
110
110
  var c = this.d.getExternal(a, b.rootWrapper, this.d.getExternal(this.b, null, null));
111
111
  }
112
112
  };
113
- DatePickerView.prototype.al = function (a) {
113
+ DatePickerView.prototype.am = function (a) {
114
114
  if (this.d != null) {
115
115
  var b = this.d.getSubRenderer(this.l);
116
116
  a.provideContainer(b);
117
117
  var c = this.d.getExternal(a, b.rootWrapper, this.d.getExternal(this.b, null, null));
118
118
  }
119
119
  };
120
- DatePickerView.prototype.ak = function (a) {
120
+ DatePickerView.prototype.al = function (a) {
121
121
  if (this.d != null) {
122
122
  var b = this.d.getSubRenderer(this.j);
123
123
  a.provideContainer(b);
124
124
  var c = this.d.getExternal(a, b.rootWrapper, this.d.getExternal(this.b, null, null));
125
125
  }
126
126
  };
127
- DatePickerView.prototype.an = function (a, b) {
127
+ DatePickerView.prototype.ao = function (a, b) {
128
128
  if (this.d != null) {
129
129
  var c = this.d.getSubRenderer(b);
130
130
  a.provideContainer(c);
131
131
  var d = this.d.getExternal(a, c.rootWrapper, this.d.getExternal(this.b, null, null));
132
132
  }
133
133
  };
134
- DatePickerView.prototype.ai = function (a, b) {
134
+ DatePickerView.prototype.aj = function (a, b) {
135
135
  if (this.d != null) {
136
136
  var c = this.d.getSubRenderer(b);
137
137
  a.provideContainer(c);
@@ -156,7 +156,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
156
156
  DatePickerView.prototype.r = function () {
157
157
  return this.h;
158
158
  };
159
- DatePickerView.prototype.ap = function (a) {
159
+ DatePickerView.prototype.aq = function (a) {
160
160
  if (this.j != null) {
161
161
  if (a) {
162
162
  this.j.getChildAt(0).setAttribute("aria-expanded", "true");
@@ -166,7 +166,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
166
166
  }
167
167
  }
168
168
  };
169
- DatePickerView.prototype.aq = function (a) {
169
+ DatePickerView.prototype.ar = function (a) {
170
170
  if (a != null && a != "") {
171
171
  this.j.getChildAt(0).setAttribute("aria-label", a);
172
172
  }
@@ -174,7 +174,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
174
174
  this.j.getChildAt(0).setAttribute("aria-label", "Select a date");
175
175
  }
176
176
  };
177
- DatePickerView.prototype.ao = function () {
177
+ DatePickerView.prototype.ap = function () {
178
178
  if (this.f != null) {
179
179
  if (this.b.as == true) {
180
180
  this.f.show();
@@ -184,12 +184,12 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
184
184
  }
185
185
  }
186
186
  };
187
- DatePickerView.prototype.ad = function () {
187
+ DatePickerView.prototype.ae = function () {
188
188
  if (this.f != null) {
189
189
  this.f.hide();
190
190
  }
191
191
  };
192
- DatePickerView.prototype.aa = function () {
192
+ DatePickerView.prototype.ab = function () {
193
193
  if (this.d != null) {
194
194
  this.m = this.d.rootWrapper.getChildAt(1);
195
195
  this.e = this.d.createElement("div");
@@ -205,21 +205,37 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
205
205
  this.e.parent().parent().setStyleProperty("max-width", "232px");
206
206
  }
207
207
  if (this.b.at == true) {
208
- this.e.parent().parent().setStyleProperty("height", "270px");
208
+ this.e.parent().parent().setStyleProperty("min-height", "270px");
209
209
  }
210
210
  else {
211
- this.e.parent().parent().setStyleProperty("height", "234px");
211
+ this.e.parent().parent().setStyleProperty("min-height", "234px");
212
212
  }
213
213
  }
214
214
  };
215
- DatePickerView.prototype.am = function (a) {
215
+ DatePickerView.prototype.y = function () {
216
+ if (this.d != null) {
217
+ if (this.b.au == true) {
218
+ this.e.parent().parent().setStyleProperty("max-width", "245px");
219
+ }
220
+ else {
221
+ this.e.parent().parent().setStyleProperty("max-width", "232px");
222
+ }
223
+ if (this.b.at == true) {
224
+ this.e.parent().parent().setStyleProperty("min-height", "270px");
225
+ }
226
+ else {
227
+ this.e.parent().parent().setStyleProperty("min-height", "234px");
228
+ }
229
+ }
230
+ };
231
+ DatePickerView.prototype.an = function (a) {
216
232
  if (this.d != null) {
217
233
  var b = this.d.getSubRenderer(this.m);
218
234
  a.provideRenderer(b);
219
235
  var c = b.getExternal(a, b.rootWrapper, b.getExternal(this.b, null, null));
220
236
  }
221
237
  };
222
- DatePickerView.prototype.ah = function (a) {
238
+ DatePickerView.prototype.ai = function (a) {
223
239
  if (this.d != null) {
224
240
  var b = this.d.getSubRenderer(this.e);
225
241
  a.provideContainer(b);
@@ -229,7 +245,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
229
245
  DatePickerView.prototype.o = function () {
230
246
  return this.e;
231
247
  };
232
- DatePickerView.prototype.y = function (a) {
248
+ DatePickerView.prototype.z = function (a) {
233
249
  if (this.b.aq == true) {
234
250
  return;
235
251
  }
@@ -238,7 +254,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
238
254
  this.f.hide();
239
255
  }
240
256
  };
241
- DatePickerView.prototype.ac = function (a) {
257
+ DatePickerView.prototype.ad = function (a) {
242
258
  a.stopPropagation();
243
259
  this.b.cj();
244
260
  };
@@ -262,13 +278,13 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
262
278
  this.b.cq();
263
279
  }
264
280
  };
265
- DatePickerView.prototype.ab = function (a) {
281
+ DatePickerView.prototype.ac = function (a) {
266
282
  var b = a.target;
267
283
  if (!this.c(b)) {
268
284
  this.b.cc();
269
285
  }
270
286
  };
271
- DatePickerView.prototype.ar = function () {
287
+ DatePickerView.prototype.as = function () {
272
288
  if (this.d != null) {
273
289
  var a = this.d.rootWrapper.getNativeElement();
274
290
  var b = a.getBoundingClientRect();
@@ -293,7 +309,7 @@ var DatePickerView = /** @class */ /*@__PURE__*/ (function (_super) {
293
309
  var c = this.e.getNativeElement();
294
310
  return b.contains(a) || c.contains(a);
295
311
  };
296
- DatePickerView.prototype.ae = function () {
312
+ DatePickerView.prototype.af = function () {
297
313
  };
298
314
  DatePickerView.$t = markType(DatePickerView, 'DatePickerView');
299
315
  return DatePickerView;
@@ -357,7 +373,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
357
373
  var a = new DatePickerView();
358
374
  a.b = _this;
359
375
  _this.h = a;
360
- _this.h.ag();
376
+ _this.h.ah();
361
377
  _this.ca();
362
378
  return _this;
363
379
  }
@@ -378,7 +394,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
378
394
  this.cz();
379
395
  };
380
396
  DatePicker.prototype.notifySizeChanged = function () {
381
- this.h.ae();
397
+ this.h.af();
382
398
  };
383
399
  DatePicker.prototype.destroy = function () {
384
400
  if (this.c != null) {
@@ -390,7 +406,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
390
406
  this.provideContainer(null);
391
407
  };
392
408
  DatePicker.prototype.provideContainer = function (a) {
393
- this.h.af(a);
409
+ this.h.ag(a);
394
410
  };
395
411
  DatePicker.prototype.setName = function (a) {
396
412
  this.o.e = a;
@@ -772,8 +788,8 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
772
788
  break;
773
789
  case "Placeholder":
774
790
  if (this.o != null) {
775
- this.o.cb = this.bz;
776
- this.h.aq(this.bz);
791
+ this.o.ce = this.bz;
792
+ this.h.ar(this.bz);
777
793
  }
778
794
  break;
779
795
  case "Today":
@@ -813,8 +829,8 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
813
829
  break;
814
830
  case "ShowClearButton":
815
831
  if (this.o != null) {
816
- if (this.o.cj != "") {
817
- this.h.ao();
832
+ if (this.o.cm != "") {
833
+ this.h.ap();
818
834
  }
819
835
  }
820
836
  break;
@@ -827,6 +843,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
827
843
  case "ShowTodayButton":
828
844
  if (this.c != null) {
829
845
  this.c.ae = this.at;
846
+ this.h.y();
830
847
  }
831
848
  break;
832
849
  case "AllowTextInput":
@@ -851,6 +868,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
851
868
  case "ShowWeekNumbers":
852
869
  if (this.c != null) {
853
870
  this.c.af = this.au;
871
+ this.h.y();
854
872
  }
855
873
  break;
856
874
  case "FirstWeekOfYear":
@@ -959,7 +977,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
959
977
  };
960
978
  DatePicker.prototype.c6 = function () {
961
979
  if (this.o != null) {
962
- this.o.dy = this.de;
980
+ this.o.d1 = this.de;
963
981
  }
964
982
  if (this.m != null) {
965
983
  this.m.fill = this.dc;
@@ -978,17 +996,17 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
978
996
  };
979
997
  DatePicker.prototype.c5 = function () {
980
998
  if (this.aa != null) {
981
- this.o.ad = this.aa;
999
+ this.o.af = this.aa;
982
1000
  }
983
1001
  };
984
1002
  DatePicker.prototype.cd = function () {
985
1003
  this.q = new XInputGroup();
986
- this.h.aj(this.q);
1004
+ this.h.ak(this.q);
987
1005
  this.q.d = 0;
988
1006
  this.q.j = this.w;
989
1007
  this.q.n = this.y;
990
1008
  this.r = new XLabel();
991
- this.h.al(this.r);
1009
+ this.h.am(this.r);
992
1010
  this.r.df = this.dd;
993
1011
  this.r.y = this.ac;
994
1012
  this.q.appendContentChild(this.h.u());
@@ -997,17 +1015,17 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
997
1015
  this.q.inputs.add(this.r);
998
1016
  }
999
1017
  this.o = new XInput();
1000
- this.h.ak(this.o);
1001
- this.o.b3 = "text";
1018
+ this.h.al(this.o);
1019
+ this.o.b6 = "text";
1002
1020
  if (this.aa != null) {
1003
- this.o.ad = this.aa;
1021
+ this.o.af = this.aa;
1004
1022
  }
1005
1023
  this.o.disabled = !this.ap;
1006
- this.o.dy = this.de;
1024
+ this.o.d1 = this.de;
1007
1025
  this.q.appendContentChild(this.h.t());
1008
1026
  this.q.inputs.add(this.o);
1009
- this.o.cb = this.bz;
1010
- this.h.aq(this.bz);
1027
+ this.o.ce = this.bz;
1028
+ this.h.ar(this.bz);
1011
1029
  var a = this.o;
1012
1030
  a.change = delegateCombine(a.change, runOn(this, this.ck));
1013
1031
  var b = this.o;
@@ -1015,9 +1033,9 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1015
1033
  var c = this.o;
1016
1034
  c.keyDown = delegateCombine(c.keyDown, runOn(this, this.cm));
1017
1035
  var d = new XSuffix();
1018
- this.h.an(d, this.h.q());
1036
+ this.h.ao(d, this.h.q());
1019
1037
  this.m = new XIcon();
1020
- this.h.ai(this.m, this.h.p());
1038
+ this.h.aj(this.m, this.h.p());
1021
1039
  this.m.svgPath = DatePicker.bh;
1022
1040
  this.m.fill = this.dc;
1023
1041
  d.appendContentChild(this.h.p());
@@ -1025,9 +1043,9 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1025
1043
  this.q.inputs.add(d);
1026
1044
  this.c4();
1027
1045
  var e = new XSuffix();
1028
- this.h.an(e, this.h.s());
1046
+ this.h.ao(e, this.h.s());
1029
1047
  this.n = new XIcon();
1030
- this.h.ai(this.n, this.h.r());
1048
+ this.h.aj(this.n, this.h.r());
1031
1049
  this.n.svgPath = DatePicker.bg;
1032
1050
  this.n.fill = this.dc;
1033
1051
  e.appendContentChild(this.h.r());
@@ -1045,7 +1063,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1045
1063
  case 9:
1046
1064
  this.an = true;
1047
1065
  if (!this.ao) {
1048
- this.c8(this.o.cj);
1066
+ this.c8(this.o.cm);
1049
1067
  }
1050
1068
  this.ah = true;
1051
1069
  this.cc();
@@ -1054,7 +1072,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1054
1072
  case 13:
1055
1073
  this.an = true;
1056
1074
  if (!this.ao) {
1057
- this.c8(this.o.cj);
1075
+ this.c8(this.o.cm);
1058
1076
  }
1059
1077
  this.ah = true;
1060
1078
  this.cc();
@@ -1076,10 +1094,10 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1076
1094
  DatePicker.prototype.cl = function (a, b) {
1077
1095
  this.co(b);
1078
1096
  if (b.value.length > 0) {
1079
- this.h.ao();
1097
+ this.h.ap();
1080
1098
  }
1081
1099
  else {
1082
- this.h.ad();
1100
+ this.h.ae();
1083
1101
  }
1084
1102
  };
1085
1103
  DatePicker.prototype.ck = function (a, b) {
@@ -1210,7 +1228,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1210
1228
  }
1211
1229
  else {
1212
1230
  this.c7(ag);
1213
- this.h.ao();
1231
+ this.h.ap();
1214
1232
  }
1215
1233
  }
1216
1234
  else {
@@ -1406,12 +1424,12 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1406
1424
  }
1407
1425
  }
1408
1426
  }
1409
- this.o.cj = a;
1410
- this.h.ao();
1427
+ this.o.cm = a;
1428
+ this.h.ap();
1411
1429
  }
1412
1430
  else {
1413
- this.o.cj = "";
1414
- this.h.ad();
1431
+ this.o.cm = "";
1432
+ this.h.ae();
1415
1433
  }
1416
1434
  }
1417
1435
  };
@@ -1420,16 +1438,16 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1420
1438
  return;
1421
1439
  }
1422
1440
  if (this.o != null) {
1423
- this.o.cj = "";
1441
+ this.o.cm = "";
1424
1442
  }
1425
1443
  this.value = dateMinValue();
1426
1444
  this.c.ch();
1427
1445
  };
1428
1446
  DatePicker.prototype.ce = function () {
1429
1447
  this.u = new Popup();
1430
- this.h.am(this.u);
1448
+ this.h.an(this.u);
1431
1449
  this.c = new XCalendar();
1432
- this.h.ah(this.c);
1450
+ this.h.ai(this.c);
1433
1451
  if (+(this.a1) != +(dateMinValue())) {
1434
1452
  this.c.au = this.a1;
1435
1453
  }
@@ -1476,7 +1494,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1476
1494
  return;
1477
1495
  }
1478
1496
  if (this.u != null) {
1479
- var a = this.h.ar();
1497
+ var a = this.h.as();
1480
1498
  var b = new Rect(0, a.left + window.pageXOffset, a.top + window.pageYOffset, a.width, a.height);
1481
1499
  var c = this.h.a()[1];
1482
1500
  var d = 240;
@@ -1496,7 +1514,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1496
1514
  else {
1497
1515
  this.u.showRelativeToExclusionRect(b, 1, 0);
1498
1516
  }
1499
- this.h.ap(true);
1517
+ this.h.aq(true);
1500
1518
  }
1501
1519
  };
1502
1520
  DatePicker.prototype.cc = function () {
@@ -1507,7 +1525,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1507
1525
  if (this.c != null) {
1508
1526
  this.c.cy();
1509
1527
  }
1510
- this.h.ap(false);
1528
+ this.h.aq(false);
1511
1529
  this.ah = false;
1512
1530
  };
1513
1531
  DatePicker.prototype.focus = function (a) {
@@ -1543,7 +1561,7 @@ var DatePicker = /** @class */ /*@__PURE__*/ (function (_super) {
1543
1561
  };
1544
1562
  DatePicker.prototype.cz = function () {
1545
1563
  if (this.o != null) {
1546
- this.o.dg();
1564
+ this.o.dj();
1547
1565
  }
1548
1566
  };
1549
1567
  DatePicker.prototype.ch = function () {