igniteui-webcomponents-inputs 4.3.2 → 4.3.3-beta.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.
Files changed (42) hide show
  1. package/License +1 -1
  2. package/bundles/igniteui-webcomponents-inputs.umd.js +792 -601
  3. package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
  4. package/esm2015/lib/ButtonView_combined.js +16 -16
  5. package/esm2015/lib/CalendarView_combined.js +6 -6
  6. package/esm2015/lib/CheckboxView_combined.js +22 -22
  7. package/esm2015/lib/DatePickerView_combined.js +530 -444
  8. package/esm2015/lib/IconView_combined.js +20 -20
  9. package/esm2015/lib/InputGroupView_combined.js +31 -31
  10. package/esm2015/lib/RippleView_combined.js +1 -1
  11. package/esm2015/lib/XPopupBridge.js +40 -34
  12. package/esm2015/lib/igc-button-click-event-args.js +6 -0
  13. package/esm2015/lib/igc-button-group-selection-changed-event-args.js +6 -0
  14. package/esm2015/lib/igc-checkbox-change-event-args.js +6 -0
  15. package/esm2015/lib/igc-date-picker-component.js +72 -42
  16. package/esm2015/lib/igc-got-focus-event-args.js +6 -0
  17. package/esm2015/lib/igc-input-change-event-args.js +6 -0
  18. package/esm2015/lib/igc-lost-focus-event-args.js +6 -0
  19. package/esm2015/lib/igc-selected-value-changed-event-args.js +6 -0
  20. package/esm2015/lib/igc-x-input-group-item-component.js +3 -0
  21. package/esm5/lib/ButtonView_combined.js +16 -16
  22. package/esm5/lib/CalendarView_combined.js +6 -6
  23. package/esm5/lib/CheckboxView_combined.js +22 -22
  24. package/esm5/lib/DatePickerView_combined.js +527 -429
  25. package/esm5/lib/IconView_combined.js +20 -20
  26. package/esm5/lib/InputGroupView_combined.js +31 -31
  27. package/esm5/lib/RippleView_combined.js +1 -1
  28. package/esm5/lib/XPopupBridge.js +40 -34
  29. package/esm5/lib/igc-button-click-event-args.js +6 -0
  30. package/esm5/lib/igc-button-group-selection-changed-event-args.js +6 -0
  31. package/esm5/lib/igc-checkbox-change-event-args.js +6 -0
  32. package/esm5/lib/igc-date-picker-component.js +84 -42
  33. package/esm5/lib/igc-got-focus-event-args.js +6 -0
  34. package/esm5/lib/igc-input-change-event-args.js +6 -0
  35. package/esm5/lib/igc-lost-focus-event-args.js +6 -0
  36. package/esm5/lib/igc-selected-value-changed-event-args.js +6 -0
  37. package/esm5/lib/igc-x-input-group-item-component.js +3 -0
  38. package/fesm2015/igniteui-webcomponents-inputs.js +785 -618
  39. package/fesm5/igniteui-webcomponents-inputs.js +793 -602
  40. package/lib/DatePickerView_combined.d.ts +132 -113
  41. package/lib/igc-date-picker-component.d.ts +15 -0
  42. package/package.json +2 -2
@@ -211,29 +211,29 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
211
211
  * Gets or Sets the property name that contains the values.
212
212
  */
213
213
  get today() {
214
- return this.i.a3;
214
+ return this.i.ba;
215
215
  }
216
216
  set today(v) {
217
- this.i.a3 = v;
217
+ this.i.ba = v;
218
218
  }
219
219
  /**
220
220
  * Gets or Sets the property name that contains the label.
221
221
  */
222
222
  get label() {
223
- return this.i.bv;
223
+ return this.i.b3;
224
224
  }
225
225
  set label(v) {
226
- this.i.bv = v;
226
+ this.i.b3 = v;
227
227
  }
228
228
  /**
229
229
  * Gets or sets the color to use for the text.
230
230
  */
231
231
  get labelTextColor() {
232
- return brushToString(this.i.dh);
232
+ return brushToString(this.i.dv);
233
233
  }
234
234
  set labelTextColor(v) {
235
- this.i.dh = stringToBrush(v);
236
- this._a("labelTextColor", brushToString(this.i.dh));
235
+ this.i.dv = stringToBrush(v);
236
+ this._a("labelTextColor", brushToString(this.i.dv));
237
237
  }
238
238
  /**
239
239
  * Gets or sets the font to use for the combobox.
@@ -254,28 +254,28 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
254
254
  * Gets or Sets the property name that contains the placeholder.
255
255
  */
256
256
  get placeholder() {
257
- return this.i.b2;
257
+ return this.i.cb;
258
258
  }
259
259
  set placeholder(v) {
260
- this.i.b2 = v;
260
+ this.i.cb = v;
261
261
  }
262
262
  /**
263
263
  * Gets or Sets the property name that contains the MinDate.
264
264
  */
265
265
  get minDate() {
266
- return this.i.a2;
266
+ return this.i.a9;
267
267
  }
268
268
  set minDate(v) {
269
- this.i.a2 = v;
269
+ this.i.a9 = v;
270
270
  }
271
271
  /**
272
272
  * Gets or Sets the property name that contains the MaxDate.
273
273
  */
274
274
  get maxDate() {
275
- return this.i.a1;
275
+ return this.i.a8;
276
276
  }
277
277
  set maxDate(v) {
278
- this.i.a1 = v;
278
+ this.i.a8 = v;
279
279
  }
280
280
  /**
281
281
  * Gets or sets the display density to use for the date pcicker.
@@ -316,61 +316,61 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
316
316
  * Gets or Sets the text color
317
317
  */
318
318
  get textColor() {
319
- return brushToString(this.i.di);
319
+ return brushToString(this.i.dw);
320
320
  }
321
321
  set textColor(v) {
322
- this.i.di = stringToBrush(v);
323
- this._a("textColor", brushToString(this.i.di));
322
+ this.i.dw = stringToBrush(v);
323
+ this._a("textColor", brushToString(this.i.dw));
324
324
  }
325
325
  /**
326
326
  * Gets or Sets the text color
327
327
  */
328
328
  get iconColor() {
329
- return brushToString(this.i.dg);
329
+ return brushToString(this.i.du);
330
330
  }
331
331
  set iconColor(v) {
332
- this.i.dg = stringToBrush(v);
333
- this._a("iconColor", brushToString(this.i.dg));
332
+ this.i.du = stringToBrush(v);
333
+ this._a("iconColor", brushToString(this.i.du));
334
334
  }
335
335
  /**
336
336
  * Gets or sets the ShowClearButton property to detirmine if the clear button is shown
337
337
  */
338
338
  get showClearButton() {
339
- return this.i.at;
339
+ return this.i.az;
340
340
  }
341
341
  set showClearButton(v) {
342
- this.i.at = ensureBool(v);
343
- this._a("showClearButton", this.i.at);
342
+ this.i.az = ensureBool(v);
343
+ this._a("showClearButton", this.i.az);
344
344
  }
345
345
  /**
346
346
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
347
347
  */
348
348
  get showTodayButton() {
349
- return this.i.au;
349
+ return this.i.a0;
350
350
  }
351
351
  set showTodayButton(v) {
352
- this.i.au = ensureBool(v);
353
- this._a("showTodayButton", this.i.au);
352
+ this.i.a0 = ensureBool(v);
353
+ this._a("showTodayButton", this.i.a0);
354
354
  }
355
355
  /**
356
356
  * Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
357
357
  */
358
358
  get allowTextInput() {
359
- return this.i.aq;
359
+ return this.i.au;
360
360
  }
361
361
  set allowTextInput(v) {
362
- this.i.aq = ensureBool(v);
363
- this._a("allowTextInput", this.i.aq);
362
+ this.i.au = ensureBool(v);
363
+ this._a("allowTextInput", this.i.au);
364
364
  }
365
365
  /**
366
366
  * Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
367
367
  */
368
368
  get openOnFocus() {
369
- return this.i.as;
369
+ return this.i.ay;
370
370
  }
371
371
  set openOnFocus(v) {
372
- this.i.as = ensureBool(v);
373
- this._a("openOnFocus", this.i.as);
372
+ this.i.ay = ensureBool(v);
373
+ this._a("openOnFocus", this.i.ay);
374
374
  }
375
375
  /**
376
376
  * Gets or sets the FirstDayOfWeek property to detirmine first day of the week
@@ -396,11 +396,11 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
396
396
  * Gets or sets the ShowWeekNumbers property to detirmine if the week numbers are shown
397
397
  */
398
398
  get showWeekNumbers() {
399
- return this.i.av;
399
+ return this.i.a1;
400
400
  }
401
401
  set showWeekNumbers(v) {
402
- this.i.av = ensureBool(v);
403
- this._a("showWeekNumbers", this.i.av);
402
+ this.i.a1 = ensureBool(v);
403
+ this._a("showWeekNumbers", this.i.a1);
404
404
  }
405
405
  /**
406
406
  * Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
@@ -416,17 +416,47 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
416
416
  * Gets or sets the Format property to detirmine the format of the date in the input
417
417
  */
418
418
  get formatString() {
419
- return this.i.br;
419
+ return this.i.by;
420
420
  }
421
421
  set formatString(v) {
422
- this.i.br = v;
422
+ this.i.by = v;
423
423
  }
424
424
  get isDisabled() {
425
- return this.i.ar;
425
+ return this.i.av;
426
426
  }
427
427
  set isDisabled(v) {
428
- this.i.ar = ensureBool(v);
429
- this._a("isDisabled", this.i.ar);
428
+ this.i.av = ensureBool(v);
429
+ this._a("isDisabled", this.i.av);
430
+ }
431
+ /**
432
+ * Indicates that the calendar dropdown will position itself relative to the window instead of the document.
433
+ */
434
+ get isFixed() {
435
+ return this.i.aw;
436
+ }
437
+ set isFixed(v) {
438
+ this.i.aw = ensureBool(v);
439
+ this._a("isFixed", this.i.aw);
440
+ }
441
+ /**
442
+ * Indicates that the dropdown should open as a child of the date picker.
443
+ */
444
+ get openAsChild() {
445
+ return this.i.ax;
446
+ }
447
+ set openAsChild(v) {
448
+ this.i.ax = ensureBool(v);
449
+ this._a("openAsChild", this.i.ax);
450
+ }
451
+ /**
452
+ * Indicates that the dropdown will place itself into the browser top layer.
453
+ */
454
+ get useTopLayer() {
455
+ return this.i.a2;
456
+ }
457
+ set useTopLayer(v) {
458
+ this.i.a2 = ensureBool(v);
459
+ this._a("useTopLayer", this.i.a2);
430
460
  }
431
461
  get hasUserValues() {
432
462
  return this._hasUserValues;
@@ -482,14 +512,14 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
482
512
  this._inStyling = false;
483
513
  }
484
514
  select() {
485
- this.i.c3();
515
+ this.i.df();
486
516
  }
487
517
  /**
488
518
  * Exports visual information about the current state of the grid.
489
519
 
490
520
  */
491
521
  exportVisualModel() {
492
- let iv = this.i.a8();
522
+ let iv = this.i.bf();
493
523
  return (iv);
494
524
  }
495
525
  /**
@@ -497,7 +527,7 @@ export let IgcDatePickerComponent = /*@__PURE__*/ (() => {
497
527
 
498
528
  */
499
529
  exportSerializedVisualModel() {
500
- let iv = this.i.bo();
530
+ let iv = this.i.bv();
501
531
  return (iv);
502
532
  }
503
533
  /**
@@ -15,10 +15,16 @@ export class IgcGotFocusEventArgs {
15
15
  this._implementation = this.createImplementation();
16
16
  this._implementation.externalObject = this;
17
17
  this.onImplementationCreated();
18
+ if (this._initializeAdapters) {
19
+ this._initializeAdapters();
20
+ }
18
21
  }
19
22
  _provideImplementation(i) {
20
23
  this._implementation = i;
21
24
  this._implementation.externalObject = this;
22
25
  this.onImplementationCreated();
26
+ if (this._initializeAdapters) {
27
+ this._initializeAdapters();
28
+ }
23
29
  }
24
30
  }
@@ -16,11 +16,17 @@ export class IgcInputChangeEventArgs {
16
16
  this._implementation = this.createImplementation();
17
17
  this._implementation.externalObject = this;
18
18
  this.onImplementationCreated();
19
+ if (this._initializeAdapters) {
20
+ this._initializeAdapters();
21
+ }
19
22
  }
20
23
  _provideImplementation(i) {
21
24
  this._implementation = i;
22
25
  this._implementation.externalObject = this;
23
26
  this.onImplementationCreated();
27
+ if (this._initializeAdapters) {
28
+ this._initializeAdapters();
29
+ }
24
30
  }
25
31
  get value() {
26
32
  return this.i.value;
@@ -15,10 +15,16 @@ export class IgcLostFocusEventArgs {
15
15
  this._implementation = this.createImplementation();
16
16
  this._implementation.externalObject = this;
17
17
  this.onImplementationCreated();
18
+ if (this._initializeAdapters) {
19
+ this._initializeAdapters();
20
+ }
18
21
  }
19
22
  _provideImplementation(i) {
20
23
  this._implementation = i;
21
24
  this._implementation.externalObject = this;
22
25
  this.onImplementationCreated();
26
+ if (this._initializeAdapters) {
27
+ this._initializeAdapters();
28
+ }
23
29
  }
24
30
  }
@@ -15,11 +15,17 @@ export class IgcSelectedValueChangedEventArgs {
15
15
  this._implementation = this.createImplementation();
16
16
  this._implementation.externalObject = this;
17
17
  this.onImplementationCreated();
18
+ if (this._initializeAdapters) {
19
+ this._initializeAdapters();
20
+ }
18
21
  }
19
22
  _provideImplementation(i) {
20
23
  this._implementation = i;
21
24
  this._implementation.externalObject = this;
22
25
  this.onImplementationCreated();
26
+ if (this._initializeAdapters) {
27
+ this._initializeAdapters();
28
+ }
23
29
  }
24
30
  get oldValue() {
25
31
  return this.i.oldValue;
@@ -47,6 +47,9 @@ export let IgcXInputGroupItemComponent = /*@__PURE__*/ (() => {
47
47
  this._implementation = this.createImplementation();
48
48
  this._implementation.externalObject = this;
49
49
  this.onImplementationCreated();
50
+ if (this._initializeAdapters) {
51
+ this._initializeAdapters();
52
+ }
50
53
  }
51
54
  _enqueueSetAttribute(attrName, attrValue) {
52
55
  this._queuedSetAttributes.push({ attrName: attrName, attrValue: attrValue });
@@ -120,7 +120,7 @@ var ButtonView = /** @class */ /*@__PURE__*/ (function (_super) {
120
120
  this.n.setStyleProperty("white-space", "no-wrap");
121
121
  this.n.setStyleProperty("color", "#000");
122
122
  this.n.setStyleProperty("background", this.b.nf._fill);
123
- NativeUI.n(this.n, this.b.kr);
123
+ NativeUI.o(this.n, this.b.kr);
124
124
  this.n.setAttribute("id", this.b.hu);
125
125
  this.av();
126
126
  this.h.add(c.listen("change", runOn(this, this.x)));
@@ -1130,10 +1130,10 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
1130
1130
  if (a == null) {
1131
1131
  return;
1132
1132
  }
1133
- NativeUI.n(a, this.kr);
1134
- NativeUI.m(a, this.ng);
1133
+ NativeUI.o(a, this.kr);
1134
+ NativeUI.n(a, this.ng);
1135
1135
  if (!isNaN_(this.bf)) {
1136
- NativeUI.o(a, new Thickness(0, this.bf));
1136
+ NativeUI.p(a, new Thickness(0, this.bf));
1137
1137
  }
1138
1138
  if (this.disabled) {
1139
1139
  this.view.ax(this.cq, this.u);
@@ -1150,17 +1150,17 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
1150
1150
  }
1151
1151
  }
1152
1152
  if (this.disabled) {
1153
- NativeUI.l(a, this.nh);
1153
+ NativeUI.m(a, this.nh);
1154
1154
  }
1155
1155
  else if (this.focused && this.az) {
1156
- NativeUI.l(a, this.nk);
1156
+ NativeUI.m(a, this.nk);
1157
1157
  }
1158
1158
  else {
1159
1159
  if (this.a0 && !this.ar) {
1160
- NativeUI.l(a, this.nm);
1160
+ NativeUI.m(a, this.nm);
1161
1161
  }
1162
1162
  else {
1163
- NativeUI.l(a, this.nf);
1163
+ NativeUI.m(a, this.nf);
1164
1164
  }
1165
1165
  }
1166
1166
  this.view.aw(this.np, BrushUtil.g(0, 0, 0, 0));
@@ -1168,21 +1168,21 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
1168
1168
  this.view.az(this.aa);
1169
1169
  }
1170
1170
  if (this.disabled) {
1171
- NativeUI.p(this.view.s, this.nj);
1172
1171
  NativeUI.q(this.view.s, this.nj);
1172
+ NativeUI.r(this.view.s, this.nj);
1173
1173
  }
1174
1174
  else if (this.focused && this.az) {
1175
- NativeUI.p(this.view.s, this.nl);
1176
1175
  NativeUI.q(this.view.s, this.nl);
1176
+ NativeUI.r(this.view.s, this.nl);
1177
1177
  }
1178
1178
  else {
1179
1179
  if (this.a0 && !this.ar) {
1180
- NativeUI.p(this.view.s, this.nn);
1181
1180
  NativeUI.q(this.view.s, this.nn);
1181
+ NativeUI.r(this.view.s, this.nn);
1182
1182
  }
1183
1183
  else {
1184
- NativeUI.p(this.view.s, this.nq);
1185
1184
  NativeUI.q(this.view.s, this.nq);
1185
+ NativeUI.r(this.view.s, this.nq);
1186
1186
  }
1187
1187
  }
1188
1188
  };
@@ -3564,19 +3564,19 @@ var XButton = /** @class */ /*@__PURE__*/ (function (_super) {
3564
3564
  c.s = f[0];
3565
3565
  c.q = f[1];
3566
3566
  c.p = NativeUI.d(a);
3567
- c.t = NativeUI.j(a);
3567
+ c.t = NativeUI.k(a);
3568
3568
  c.h = this.n;
3569
3569
  c.i = this.q;
3570
- c.c = AppearanceHelper.a(NativeUI.ai(a));
3570
+ c.c = AppearanceHelper.a(NativeUI.ak(a));
3571
3571
  c.g = AppearanceHelper.a(this.nr);
3572
3572
  c.d = AppearanceHelper.a(this.no);
3573
3573
  c.a = AppearanceHelper.a(this.ne);
3574
3574
  c.u = this.ct;
3575
3575
  c.e = AppearanceHelper.a(this.np);
3576
3576
  c.ah = this.kr;
3577
- c.b = AppearanceHelper.a(NativeUI.ah(a));
3577
+ c.b = AppearanceHelper.a(NativeUI.aj(a));
3578
3578
  c.j = this.u;
3579
- c.f = AppearanceHelper.a(NativeUI.aj(b));
3579
+ c.f = AppearanceHelper.a(NativeUI.al(b));
3580
3580
  c.o = this.bf;
3581
3581
  c.x = this.fw;
3582
3582
  c.y = this.g0;
@@ -902,7 +902,7 @@ var CalendarView = /** @class */ /*@__PURE__*/ (function (_super) {
902
902
  };
903
903
  CalendarView.prototype.ah = function () {
904
904
  if (this.p != null) {
905
- this.p.parent().parent().focus(false);
905
+ this.p.parent().parent().focus(true);
906
906
  }
907
907
  };
908
908
  CalendarView.prototype.aq = function (a, b) {
@@ -2832,8 +2832,8 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2832
2832
  m.e = n[0] - d;
2833
2833
  m.d = n[1] - e;
2834
2834
  m.c = NativeUI.d(k._inner[l].parent());
2835
- m.f = NativeUI.j(k._inner[l].parent());
2836
- m.b = AppearanceHelper.a(NativeUI.aj(k._inner[l]));
2835
+ m.f = NativeUI.k(k._inner[l].parent());
2836
+ m.b = AppearanceHelper.a(NativeUI.al(k._inner[l]));
2837
2837
  m.g = k._inner[l].getText();
2838
2838
  a.k.add(m);
2839
2839
  }
@@ -2845,9 +2845,9 @@ var XCalendar = /** @class */ /*@__PURE__*/ (function (_super) {
2845
2845
  q.e = r[0] - d;
2846
2846
  q.d = r[1] - e;
2847
2847
  q.c = NativeUI.d(o._inner[p].parent());
2848
- q.f = NativeUI.j(o._inner[p].parent());
2849
- q.b = AppearanceHelper.a(NativeUI.aj(o._inner[p]));
2850
- q.a = AppearanceHelper.a(NativeUI.ai(o._inner[p]));
2848
+ q.f = NativeUI.k(o._inner[p].parent());
2849
+ q.b = AppearanceHelper.a(NativeUI.al(o._inner[p]));
2850
+ q.a = AppearanceHelper.a(NativeUI.ak(o._inner[p]));
2851
2851
  q.g = o._inner[p].getText();
2852
2852
  a.l.add(q);
2853
2853
  }
@@ -540,17 +540,17 @@ var XCheckbox = /** @class */ /*@__PURE__*/ (function (_super) {
540
540
  if (a == null) {
541
541
  return;
542
542
  }
543
- NativeUI.n(a, new CornerRadius(0, this.ao));
543
+ NativeUI.o(a, new CornerRadius(0, this.ao));
544
544
  if (!isNaN_(this.an)) {
545
- NativeUI.o(a, new Thickness(0, this.an));
545
+ NativeUI.p(a, new Thickness(0, this.an));
546
546
  }
547
547
  if (this.checked) {
548
- NativeUI.l(a, this.c8);
549
- NativeUI.m(a, this.c9);
548
+ NativeUI.m(a, this.c8);
549
+ NativeUI.n(a, this.c9);
550
550
  }
551
551
  else {
552
- NativeUI.l(a, this.db);
553
- NativeUI.m(a, this.dc);
552
+ NativeUI.m(a, this.db);
553
+ NativeUI.n(a, this.dc);
554
554
  }
555
555
  };
556
556
  XCheckbox.prototype.cw = function () {
@@ -558,8 +558,8 @@ var XCheckbox = /** @class */ /*@__PURE__*/ (function (_super) {
558
558
  if (a == null) {
559
559
  return;
560
560
  }
561
- NativeUI.y(a, this.da);
562
- NativeUI.ab(a, this.ap);
561
+ NativeUI.aa(a, this.da);
562
+ NativeUI.ad(a, this.ap);
563
563
  };
564
564
  Object.defineProperty(XCheckbox.prototype, "dl", {
565
565
  get: function () {
@@ -1114,7 +1114,7 @@ var XCheckbox = /** @class */ /*@__PURE__*/ (function (_super) {
1114
1114
  this.view.aj(BrushUtil.p(this.c8, 0.6), BrushUtil.p(this.dc, 0.1));
1115
1115
  }
1116
1116
  if (!this.indeterminate) {
1117
- NativeUI.ad(this.view.t, null);
1117
+ NativeUI.af(this.view.t, null);
1118
1118
  }
1119
1119
  if (this.z || this.indeterminate || a) {
1120
1120
  var d = this.view.s;
@@ -1131,23 +1131,23 @@ var XCheckbox = /** @class */ /*@__PURE__*/ (function (_super) {
1131
1131
  $ret.j = -_this.view.k();
1132
1132
  return $ret;
1133
1133
  })()));
1134
- NativeUI.l(d, this.c8);
1135
- NativeUI.m(d, this.c9);
1136
- NativeUI.w(e, 1);
1137
- NativeUI.aa(e, 41);
1138
- NativeUI.ad(e, f);
1134
+ NativeUI.m(d, this.c8);
1135
+ NativeUI.n(d, this.c9);
1136
+ NativeUI.y(e, 1);
1137
+ NativeUI.ac(e, 41);
1138
+ NativeUI.af(e, f);
1139
1139
  }
1140
1140
  else if (b) {
1141
- NativeUI.l(d, this.c8);
1142
- NativeUI.m(d, this.c9);
1143
- NativeUI.w(e, 1);
1144
- NativeUI.aa(e, 0);
1141
+ NativeUI.m(d, this.c8);
1142
+ NativeUI.n(d, this.c9);
1143
+ NativeUI.y(e, 1);
1144
+ NativeUI.ac(e, 0);
1145
1145
  }
1146
1146
  else {
1147
- NativeUI.l(d, this.db);
1148
- NativeUI.m(d, this.dc);
1149
- NativeUI.w(e, 0);
1150
- NativeUI.aa(e, 24);
1147
+ NativeUI.m(d, this.db);
1148
+ NativeUI.n(d, this.dc);
1149
+ NativeUI.y(e, 0);
1150
+ NativeUI.ac(e, 24);
1151
1151
  }
1152
1152
  if (this.o.playState == 1) {
1153
1153
  this.o.cancel();