@extscreen/es-core 2.2.65 → 2.2.67

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 (2) hide show
  1. package/dist/index.js +268 -264
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -2982,7 +2982,8 @@ var ESRouter = {
2982
2982
  ESLog.d(TAG$4, '#-------onESRouterBackPressed----->>>>>');
2983
2983
  }
2984
2984
  let router = this.$router;
2985
- if (router) {
2985
+ if (router && router.history && router.history.stack
2986
+ && router.history.stack.length > 0) {
2986
2987
  let route = router.currentRoute;
2987
2988
  ESRouterKeyManager$1.dispatchBackPressed(route);
2988
2989
  }
@@ -2993,7 +2994,8 @@ var ESRouter = {
2993
2994
  ESLog.d(TAG$4, '#-------onESRouterDispatchKeyEvent----->>>>>' + keyEvent);
2994
2995
  }
2995
2996
  let router = this.$router;
2996
- if (router) {
2997
+ if (router && router.history && router.history.stack
2998
+ && router.history.stack.length > 0) {
2997
2999
  let route = router.currentRoute;
2998
3000
  ESRouterKeyManager$1.dispatchKeyEvent(route, keyEvent);
2999
3001
  }
@@ -3005,7 +3007,8 @@ var ESRouter = {
3005
3007
  ESLog.d(TAG$4, '#-------onESRouterLifecycleChanged----->>>>>' + event);
3006
3008
  }
3007
3009
  let router = this.$router;
3008
- if (router) {
3010
+ if (router && router.history && router.history.stack
3011
+ && router.history.stack.length > 0) {
3009
3012
  let route = router.currentRoute;
3010
3013
  ESRouterLifecycleManager$1.onESRouterLifecycleChanged(route, event);
3011
3014
  }
@@ -3017,7 +3020,8 @@ var ESRouter = {
3017
3020
  ESLog.d(TAG$4, '#-------onESRouterLifecycleNewIntent----->>>>>' + intent);
3018
3021
  }
3019
3022
  let router = this.$router;
3020
- if (router) {
3023
+ if (router && router.history && router.history.stack
3024
+ && router.history.stack.length > 0) {
3021
3025
  let route = router.currentRoute;
3022
3026
  ESRouterLifecycleManager$1.onESRouterLifecycleNewIntent(route, intent.params);
3023
3027
  }
@@ -5286,7 +5290,7 @@ function ESSeekBarViewComponent() {
5286
5290
  }
5287
5291
 
5288
5292
  var ESProgressBar = {
5289
- render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-progress-bar-view-component',{ref:"es_seek_bar",attrs:{"maxProgress":_vm.maxProgress,"progress":_vm.progress,"secondProgress":_vm.secondaryProgress,"backgroundColor":_vm.backgroundColor,"secondColor":_vm.secondaryColor,"cornerRadius":_vm.cornerRadius,"color":_vm.primaryColor}})},
5293
+ render: function(){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('es-progress-bar-view-component',{ref:"es_progress_bar",attrs:{"maxProgress":_vm.maxProgress,"progress":_vm.progress,"secondProgress":_vm.secondaryProgress,"backgroundColor":_vm.backgroundColor,"secondColor":_vm.secondaryColor,"cornerRadius":_vm.cornerRadius,"color":_vm.primaryColor}})},
5290
5294
  staticRenderFns: [],
5291
5295
  name: "ProgressBar",
5292
5296
  props: {
@@ -5321,393 +5325,393 @@ staticRenderFns: [],
5321
5325
  },
5322
5326
  methods: {
5323
5327
  setMaxProgress(progress) {
5324
- this.$refs.es_seek_bar.setMaxProgress(progress);
5328
+ this.$refs.es_progress_bar.setMaxProgress(progress);
5325
5329
  },
5326
5330
  setProgress(progress) {
5327
- this.$refs.es_seek_bar.setProgress(progress);
5331
+ this.$refs.es_progress_bar.setProgress(progress);
5328
5332
  },
5329
5333
  setSecondProgress(progress) {
5330
- this.$refs.es_seek_bar.setSecondProgress(progress);
5334
+ this.$refs.es_progress_bar.setSecondProgress(progress);
5331
5335
  },
5332
5336
  show(value) {
5333
- this.$refs.es_seek_bar.show(value);
5337
+ this.$refs.es_progress_bar.show(value);
5334
5338
  },
5335
5339
  //------------------------------------------------------------
5336
5340
  //----------------------------------------------------------
5337
5341
  invalidateSeekBar() {
5338
- this.$refs.es_seek_bar.invalidateSeekBar();
5342
+ this.$refs.es_progress_bar.invalidateSeekBar();
5339
5343
  },
5340
5344
  setFocusable(focusable) {
5341
- this.$refs.es_seek_bar.setFocusable(focusable);
5345
+ this.$refs.es_progress_bar.setFocusable(focusable);
5342
5346
  },
5343
5347
  setClickable(clickable) {
5344
- this.$refs.es_seek_bar.setClickable(clickable);
5348
+ this.$refs.es_progress_bar.setClickable(clickable);
5345
5349
  },
5346
5350
  requestFocus() {
5347
- this.$refs.es_seek_bar.requestFocus();
5351
+ this.$refs.es_progress_bar.requestFocus();
5348
5352
  },
5349
5353
  requestLayout() {
5350
- this.$refs.es_seek_bar.requestLayout();
5354
+ this.$refs.es_progress_bar.requestLayout();
5351
5355
  },
5352
5356
  invalidate() {
5353
- this.$refs.es_seek_bar.invalidate();
5357
+ this.$refs.es_progress_bar.invalidate();
5354
5358
  },
5355
5359
  setVisible(visible) {
5356
- this.$refs.es_seek_bar.setVisible(visible);
5360
+ this.$refs.es_progress_bar.setVisible(visible);
5357
5361
  },
5358
5362
  setLeftSeekBarVisible(visible) {
5359
- this.$refs.es_seek_bar.setLeftSeekBarVisible(visible);
5363
+ this.$refs.es_progress_bar.setLeftSeekBarVisible(visible);
5360
5364
  },
5361
5365
  setRightSeekBarVisible(visible) {
5362
- this.$refs.es_seek_bar.setRightSeekBarVisible(visible);
5366
+ this.$refs.es_progress_bar.setRightSeekBarVisible(visible);
5363
5367
  },
5364
5368
  setSeekBarMode(mode) {
5365
- this.$refs.es_seek_bar.setSeekBarMode(mode);
5369
+ this.$refs.es_progress_bar.setSeekBarMode(mode);
5366
5370
  },
5367
5371
  setRangeProgress(leftValue, rightValue) {
5368
- this.$refs.es_seek_bar.setRangeProgress(leftValue, rightValue);
5372
+ this.$refs.es_progress_bar.setRangeProgress(leftValue, rightValue);
5369
5373
  },
5370
5374
  getProgress() {
5371
- this.$refs.es_seek_bar.getProgress();
5375
+ this.$refs.es_progress_bar.getProgress();
5372
5376
  },
5373
5377
  getLeftProgress() {
5374
- this.$refs.es_seek_bar.getLeftProgress();
5378
+ this.$refs.es_progress_bar.getLeftProgress();
5375
5379
  },
5376
5380
  getRightProgress() {
5377
- this.$refs.es_seek_bar.getRightProgress();
5381
+ this.$refs.es_progress_bar.getRightProgress();
5378
5382
  },
5379
5383
  setRange(min, max, minInterval) {
5380
- this.$refs.es_seek_bar.setRange(min, max, minInterval);
5384
+ this.$refs.es_progress_bar.setRange(min, max, minInterval);
5381
5385
  },
5382
5386
  setGravity(gravity) {
5383
- this.$refs.es_seek_bar.setGravity(gravity);
5387
+ this.$refs.es_progress_bar.setGravity(gravity);
5384
5388
  },
5385
5389
  setProgressWidth(progressWidth) {
5386
- this.$refs.es_seek_bar.setProgressWidth(progressWidth);
5390
+ this.$refs.es_progress_bar.setProgressWidth(progressWidth);
5387
5391
  },
5388
5392
  setProgressHeight(progressHeight) {
5389
- this.$refs.es_seek_bar.setProgressHeight(progressHeight);
5393
+ this.$refs.es_progress_bar.setProgressHeight(progressHeight);
5390
5394
  },
5391
5395
  setProgressRadius(progressRadius) {
5392
- this.$refs.es_seek_bar.setProgressRadius(progressRadius);
5396
+ this.$refs.es_progress_bar.setProgressRadius(progressRadius);
5393
5397
  },
5394
5398
  setProgressColor(progressColor) {
5395
- this.$refs.es_seek_bar.setProgressColor(progressColor);
5399
+ this.$refs.es_progress_bar.setProgressColor(progressColor);
5396
5400
  },
5397
5401
  setProgressDefaultColor(defaultProgressColor) {
5398
- this.$refs.es_seek_bar.setProgressDefaultColor(defaultProgressColor);
5402
+ this.$refs.es_progress_bar.setProgressDefaultColor(defaultProgressColor);
5399
5403
  },
5400
5404
  setProgressDrawable(progressDrawable) {
5401
- this.$refs.es_seek_bar.setProgressDrawable(progressDrawable);
5405
+ this.$refs.es_progress_bar.setProgressDrawable(progressDrawable);
5402
5406
  },
5403
5407
  setProgressDefaultDrawable(progressDefaultDrawable) {
5404
- this.$refs.es_seek_bar.setProgressDefaultDrawable(progressDefaultDrawable);
5408
+ this.$refs.es_progress_bar.setProgressDefaultDrawable(progressDefaultDrawable);
5405
5409
  },
5406
5410
  setProgressUrl(progressUrl) {
5407
- this.$refs.es_seek_bar.setProgressUrl(progressUrl);
5411
+ this.$refs.es_progress_bar.setProgressUrl(progressUrl);
5408
5412
  },
5409
5413
  setProgressDefaultUrl(progressDefaultUrl) {
5410
- this.$refs.es_seek_bar.setProgressDefaultUrl(progressDefaultUrl);
5414
+ this.$refs.es_progress_bar.setProgressDefaultUrl(progressDefaultUrl);
5411
5415
  },
5412
5416
  showIndicator(showIndicator) {
5413
- this.$refs.es_seek_bar.showIndicator(showIndicator);
5417
+ this.$refs.es_progress_bar.showIndicator(showIndicator);
5414
5418
  },
5415
5419
  showLeftIndicator(showLeftIndicator) {
5416
- this.$refs.es_seek_bar.showLeftIndicator(showLeftIndicator);
5420
+ this.$refs.es_progress_bar.showLeftIndicator(showLeftIndicator);
5417
5421
  },
5418
5422
  showRightIndicator(showRightIndicator) {
5419
- this.$refs.es_seek_bar.showRightIndicator(showRightIndicator);
5423
+ this.$refs.es_progress_bar.showRightIndicator(showRightIndicator);
5420
5424
  },
5421
5425
  setIndicatorShowMode(indicatorShowMode) {
5422
- this.$refs.es_seek_bar.setIndicatorShowMode(indicatorShowMode);
5426
+ this.$refs.es_progress_bar.setIndicatorShowMode(indicatorShowMode);
5423
5427
  },
5424
5428
  setLeftIndicatorShowMode(indicatorShowMode) {
5425
- this.$refs.es_seek_bar.setLeftIndicatorShowMode(indicatorShowMode);
5429
+ this.$refs.es_progress_bar.setLeftIndicatorShowMode(indicatorShowMode);
5426
5430
  },
5427
5431
  setRightIndicatorShowMode(indicatorShowMode) {
5428
- this.$refs.es_seek_bar.setRightIndicatorShowMode(indicatorShowMode);
5432
+ this.$refs.es_progress_bar.setRightIndicatorShowMode(indicatorShowMode);
5429
5433
  },
5430
5434
  setIndicatorWidth(indicatorWidth) {
5431
- this.$refs.es_seek_bar.setIndicatorWidth(indicatorWidth);
5435
+ this.$refs.es_progress_bar.setIndicatorWidth(indicatorWidth);
5432
5436
  },
5433
5437
  setLeftIndicatorWidth(indicatorWidth) {
5434
- this.$refs.es_seek_bar.setLeftIndicatorWidth(indicatorWidth);
5438
+ this.$refs.es_progress_bar.setLeftIndicatorWidth(indicatorWidth);
5435
5439
  },
5436
5440
  setRightIndicatorWidth(indicatorWidth) {
5437
- this.$refs.es_seek_bar.setRightIndicatorWidth(indicatorWidth);
5441
+ this.$refs.es_progress_bar.setRightIndicatorWidth(indicatorWidth);
5438
5442
  },
5439
5443
  setIndicatorHeight(indicatorHeight) {
5440
- this.$refs.es_seek_bar.setIndicatorHeight(indicatorHeight);
5444
+ this.$refs.es_progress_bar.setIndicatorHeight(indicatorHeight);
5441
5445
  },
5442
5446
  setLeftIndicatorHeight(indicatorHeight) {
5443
- this.$refs.es_seek_bar.setLeftIndicatorHeight(indicatorHeight);
5447
+ this.$refs.es_progress_bar.setLeftIndicatorHeight(indicatorHeight);
5444
5448
  },
5445
5449
  setRightIndicatorHeight(indicatorHeight) {
5446
- this.$refs.es_seek_bar.setRightIndicatorHeight(indicatorHeight);
5450
+ this.$refs.es_progress_bar.setRightIndicatorHeight(indicatorHeight);
5447
5451
  },
5448
5452
  setIndicatorTextDecimalFormat(formatPattern) {
5449
- this.$refs.es_seek_bar.setIndicatorTextDecimalFormat(formatPattern);
5453
+ this.$refs.es_progress_bar.setIndicatorTextDecimalFormat(formatPattern);
5450
5454
  },
5451
5455
  setLeftIndicatorTextDecimalFormat(formatPattern) {
5452
- this.$refs.es_seek_bar.setLeftIndicatorTextDecimalFormat(formatPattern);
5456
+ this.$refs.es_progress_bar.setLeftIndicatorTextDecimalFormat(formatPattern);
5453
5457
  },
5454
5458
  setRightIndicatorTextDecimalFormat(formatPattern) {
5455
- this.$refs.es_seek_bar.setRightIndicatorTextDecimalFormat(formatPattern);
5459
+ this.$refs.es_progress_bar.setRightIndicatorTextDecimalFormat(formatPattern);
5456
5460
  },
5457
5461
  setIndicatorTextStringFormat(formatPattern) {
5458
- this.$refs.es_seek_bar.setIndicatorTextStringFormat(formatPattern);
5462
+ this.$refs.es_progress_bar.setIndicatorTextStringFormat(formatPattern);
5459
5463
  },
5460
5464
  setLeftIndicatorTextStringFormat(formatPattern) {
5461
- this.$refs.es_seek_bar.setLeftIndicatorTextStringFormat(formatPattern);
5465
+ this.$refs.es_progress_bar.setLeftIndicatorTextStringFormat(formatPattern);
5462
5466
  },
5463
5467
  setRightIndicatorTextStringFormat(formatPattern) {
5464
- this.$refs.es_seek_bar.setRightIndicatorTextStringFormat(formatPattern);
5468
+ this.$refs.es_progress_bar.setRightIndicatorTextStringFormat(formatPattern);
5465
5469
  },
5466
5470
  setIndicatorMargin(indicatorMargin) {
5467
- this.$refs.es_seek_bar.setIndicatorMargin(indicatorMargin);
5471
+ this.$refs.es_progress_bar.setIndicatorMargin(indicatorMargin);
5468
5472
  },
5469
5473
  setLeftIndicatorMargin(indicatorMargin) {
5470
- this.$refs.es_seek_bar.setLeftIndicatorMargin(indicatorMargin);
5474
+ this.$refs.es_progress_bar.setLeftIndicatorMargin(indicatorMargin);
5471
5475
  },
5472
5476
  setRightIndicatorMargin(indicatorMargin) {
5473
- this.$refs.es_seek_bar.setRightIndicatorMargin(indicatorMargin);
5477
+ this.$refs.es_progress_bar.setRightIndicatorMargin(indicatorMargin);
5474
5478
  },
5475
5479
  setIndicatorPaddingBottom(indicatorPaddingBottom) {
5476
- this.$refs.es_seek_bar.setIndicatorPaddingBottom(indicatorPaddingBottom);
5480
+ this.$refs.es_progress_bar.setIndicatorPaddingBottom(indicatorPaddingBottom);
5477
5481
  },
5478
5482
  setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
5479
- this.$refs.es_seek_bar.setLeftIndicatorPaddingBottom(indicatorPaddingBottom);
5483
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingBottom(indicatorPaddingBottom);
5480
5484
  },
5481
5485
  setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
5482
- this.$refs.es_seek_bar.setRightIndicatorPaddingBottom(indicatorPaddingBottom);
5486
+ this.$refs.es_progress_bar.setRightIndicatorPaddingBottom(indicatorPaddingBottom);
5483
5487
  },
5484
5488
  setIndicatorPaddingTop(indicatorPaddingTop) {
5485
- this.$refs.es_seek_bar.setIndicatorPaddingTop(indicatorPaddingTop);
5489
+ this.$refs.es_progress_bar.setIndicatorPaddingTop(indicatorPaddingTop);
5486
5490
  },
5487
5491
  setLeftIndicatorPaddingTop(indicatorPaddingTop) {
5488
- this.$refs.es_seek_bar.setLeftIndicatorPaddingTop(indicatorPaddingTop);
5492
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingTop(indicatorPaddingTop);
5489
5493
  },
5490
5494
  setRightIndicatorPaddingTop(indicatorPaddingTop) {
5491
- this.$refs.es_seek_bar.setRightIndicatorPaddingTop(indicatorPaddingTop);
5495
+ this.$refs.es_progress_bar.setRightIndicatorPaddingTop(indicatorPaddingTop);
5492
5496
  },
5493
5497
  setIndicatorPaddingLeft(indicatorPaddingLeft) {
5494
- this.$refs.es_seek_bar.setIndicatorPaddingLeft(indicatorPaddingLeft);
5498
+ this.$refs.es_progress_bar.setIndicatorPaddingLeft(indicatorPaddingLeft);
5495
5499
  },
5496
5500
  setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
5497
- this.$refs.es_seek_bar.setLeftIndicatorPaddingLeft(indicatorPaddingLeft);
5501
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingLeft(indicatorPaddingLeft);
5498
5502
  },
5499
5503
  setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
5500
- this.$refs.es_seek_bar.setRightIndicatorPaddingLeft(indicatorPaddingLeft);
5504
+ this.$refs.es_progress_bar.setRightIndicatorPaddingLeft(indicatorPaddingLeft);
5501
5505
  },
5502
5506
  setIndicatorPaddingRight(indicatorPaddingRight) {
5503
- this.$refs.es_seek_bar.setIndicatorPaddingRight(indicatorPaddingRight);
5507
+ this.$refs.es_progress_bar.setIndicatorPaddingRight(indicatorPaddingRight);
5504
5508
  },
5505
5509
  setLeftIndicatorPaddingRight(indicatorPaddingRight) {
5506
- this.$refs.es_seek_bar.setLeftIndicatorPaddingRight(indicatorPaddingRight);
5510
+ this.$refs.es_progress_bar.setLeftIndicatorPaddingRight(indicatorPaddingRight);
5507
5511
  },
5508
5512
  setRightIndicatorPaddingRight(indicatorPaddingRight) {
5509
- this.$refs.es_seek_bar.setRightIndicatorPaddingRight(indicatorPaddingRight);
5513
+ this.$refs.es_progress_bar.setRightIndicatorPaddingRight(indicatorPaddingRight);
5510
5514
  },
5511
5515
  setIndicatorBackgroundColor(indicatorBackgroundColor) {
5512
- this.$refs.es_seek_bar.setIndicatorBackgroundColor(indicatorBackgroundColor);
5516
+ this.$refs.es_progress_bar.setIndicatorBackgroundColor(indicatorBackgroundColor);
5513
5517
  },
5514
5518
  setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
5515
- this.$refs.es_seek_bar.setLeftIndicatorBackgroundColor(indicatorBackgroundColor);
5519
+ this.$refs.es_progress_bar.setLeftIndicatorBackgroundColor(indicatorBackgroundColor);
5516
5520
  },
5517
5521
  setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
5518
- this.$refs.es_seek_bar.setRightIndicatorBackgroundColor(indicatorBackgroundColor);
5522
+ this.$refs.es_progress_bar.setRightIndicatorBackgroundColor(indicatorBackgroundColor);
5519
5523
  },
5520
5524
  setIndicatorRadius(indicatorRadius) {
5521
- this.$refs.es_seek_bar.setIndicatorRadius(indicatorRadius);
5525
+ this.$refs.es_progress_bar.setIndicatorRadius(indicatorRadius);
5522
5526
  },
5523
5527
  setLeftIndicatorRadius(indicatorRadius) {
5524
- this.$refs.es_seek_bar.setLeftIndicatorRadius(indicatorRadius);
5528
+ this.$refs.es_progress_bar.setLeftIndicatorRadius(indicatorRadius);
5525
5529
  },
5526
5530
  setRightIndicatorRadius(indicatorRadius) {
5527
- this.$refs.es_seek_bar.setRightIndicatorRadius(indicatorRadius);
5531
+ this.$refs.es_progress_bar.setRightIndicatorRadius(indicatorRadius);
5528
5532
  },
5529
5533
  setIndicatorTextSize(indicatorTextSize) {
5530
- this.$refs.es_seek_bar.setIndicatorTextSize(indicatorTextSize);
5534
+ this.$refs.es_progress_bar.setIndicatorTextSize(indicatorTextSize);
5531
5535
  },
5532
5536
  setLeftIndicatorTextSize(indicatorTextSize) {
5533
- this.$refs.es_seek_bar.setLeftIndicatorTextSize(indicatorTextSize);
5537
+ this.$refs.es_progress_bar.setLeftIndicatorTextSize(indicatorTextSize);
5534
5538
  },
5535
5539
  setRightIndicatorTextSize(indicatorTextSize) {
5536
- this.$refs.es_seek_bar.setRightIndicatorTextSize(indicatorTextSize);
5540
+ this.$refs.es_progress_bar.setRightIndicatorTextSize(indicatorTextSize);
5537
5541
  },
5538
5542
  setIndicatorTextColor(indicatorTextColor) {
5539
- this.$refs.es_seek_bar.setIndicatorTextColor(indicatorTextColor);
5543
+ this.$refs.es_progress_bar.setIndicatorTextColor(indicatorTextColor);
5540
5544
  },
5541
5545
  setLeftIndicatorTextColor(indicatorTextColor) {
5542
- this.$refs.es_seek_bar.setLeftIndicatorTextColor(indicatorTextColor);
5546
+ this.$refs.es_progress_bar.setLeftIndicatorTextColor(indicatorTextColor);
5543
5547
  },
5544
5548
  setRightIndicatorTextColor(indicatorTextColor) {
5545
- this.$refs.es_seek_bar.setRightIndicatorTextColor(indicatorTextColor);
5549
+ this.$refs.es_progress_bar.setRightIndicatorTextColor(indicatorTextColor);
5546
5550
  },
5547
5551
  setIndicatorArrowSize(indicatorArrowSize) {
5548
- this.$refs.es_seek_bar.setIndicatorArrowSize(indicatorArrowSize);
5552
+ this.$refs.es_progress_bar.setIndicatorArrowSize(indicatorArrowSize);
5549
5553
  },
5550
5554
  setLeftIndicatorArrowSize(indicatorArrowSize) {
5551
- this.$refs.es_seek_bar.setLeftIndicatorArrowSize(indicatorArrowSize);
5555
+ this.$refs.es_progress_bar.setLeftIndicatorArrowSize(indicatorArrowSize);
5552
5556
  },
5553
5557
  setRightIndicatorArrowSize(indicatorArrowSize) {
5554
- this.$refs.es_seek_bar.setRightIndicatorArrowSize(indicatorArrowSize);
5558
+ this.$refs.es_progress_bar.setRightIndicatorArrowSize(indicatorArrowSize);
5555
5559
  },
5556
5560
  setIndicatorDrawable(indicatorDrawable) {
5557
- this.$refs.es_seek_bar.setIndicatorDrawable(indicatorDrawable);
5561
+ this.$refs.es_progress_bar.setIndicatorDrawable(indicatorDrawable);
5558
5562
  },
5559
5563
  setLeftIndicatorDrawable(leftIndicatorDrawable) {
5560
- this.$refs.es_seek_bar.setLeftIndicatorDrawable(leftIndicatorDrawable);
5564
+ this.$refs.es_progress_bar.setLeftIndicatorDrawable(leftIndicatorDrawable);
5561
5565
  },
5562
5566
  setRightIndicatorDrawable(rightIndicatorDrawable) {
5563
- this.$refs.es_seek_bar.setRightIndicatorDrawable(rightIndicatorDrawable);
5567
+ this.$refs.es_progress_bar.setRightIndicatorDrawable(rightIndicatorDrawable);
5564
5568
  },
5565
5569
  setIndicatorUrl(indicatorUrl) {
5566
- this.$refs.es_seek_bar.setIndicatorUrl(indicatorUrl);
5570
+ this.$refs.es_progress_bar.setIndicatorUrl(indicatorUrl);
5567
5571
  },
5568
5572
  setLeftIndicatorUrl(leftIndicatorUrl) {
5569
- this.$refs.es_seek_bar.setLeftIndicatorUrl(leftIndicatorUrl);
5573
+ this.$refs.es_progress_bar.setLeftIndicatorUrl(leftIndicatorUrl);
5570
5574
  },
5571
5575
  setRightIndicatorUrl(rightIndicatorUrl) {
5572
- this.$refs.es_seek_bar.setRightIndicatorUrl(rightIndicatorUrl);
5576
+ this.$refs.es_progress_bar.setRightIndicatorUrl(rightIndicatorUrl);
5573
5577
  },
5574
5578
  setThumbWidth(thumbWidth) {
5575
- this.$refs.es_seek_bar.setThumbWidth(thumbWidth);
5579
+ this.$refs.es_progress_bar.setThumbWidth(thumbWidth);
5576
5580
  },
5577
5581
  setLeftThumbWidth(thumbWidth) {
5578
- this.$refs.es_seek_bar.setLeftThumbWidth(thumbWidth);
5582
+ this.$refs.es_progress_bar.setLeftThumbWidth(thumbWidth);
5579
5583
  },
5580
5584
  setRightThumbWidth(thumbWidth) {
5581
- this.$refs.es_seek_bar.setRightThumbWidth(thumbWidth);
5585
+ this.$refs.es_progress_bar.setRightThumbWidth(thumbWidth);
5582
5586
  },
5583
5587
  setThumbHeight(thumbHeight) {
5584
- this.$refs.es_seek_bar.setThumbHeight(thumbHeight);
5588
+ this.$refs.es_progress_bar.setThumbHeight(thumbHeight);
5585
5589
  },
5586
5590
  setLeftThumbHeight(thumbHeight) {
5587
- this.$refs.es_seek_bar.setLeftThumbHeight(thumbHeight);
5591
+ this.$refs.es_progress_bar.setLeftThumbHeight(thumbHeight);
5588
5592
  },
5589
5593
  setRightThumbHeight(thumbHeight) {
5590
- this.$refs.es_seek_bar.setRightThumbHeight(thumbHeight);
5594
+ this.$refs.es_progress_bar.setRightThumbHeight(thumbHeight);
5591
5595
  },
5592
5596
  scaleThumb() {
5593
- this.$refs.es_seek_bar.scaleThumb();
5597
+ this.$refs.es_progress_bar.scaleThumb();
5594
5598
  },
5595
5599
  scaleLeftThumb() {
5596
- this.$refs.es_seek_bar.scaleLeftThumb();
5600
+ this.$refs.es_progress_bar.scaleLeftThumb();
5597
5601
  },
5598
5602
  scaleRightThumb() {
5599
- this.$refs.es_seek_bar.scaleRightThumb();
5603
+ this.$refs.es_progress_bar.scaleRightThumb();
5600
5604
  },
5601
5605
  resetThumb() {
5602
- this.$refs.es_seek_bar.resetThumb();
5606
+ this.$refs.es_progress_bar.resetThumb();
5603
5607
  },
5604
5608
  resetLeftThumb() {
5605
- this.$refs.es_seek_bar.resetLeftThumb();
5609
+ this.$refs.es_progress_bar.resetLeftThumb();
5606
5610
  },
5607
5611
  resetRightThumb() {
5608
- this.$refs.es_seek_bar.resetRightThumb();
5612
+ this.$refs.es_progress_bar.resetRightThumb();
5609
5613
  },
5610
5614
  setThumbScaleRatio(thumbScaleRatio) {
5611
- this.$refs.es_seek_bar.setThumbScaleRatio(thumbScaleRatio);
5615
+ this.$refs.es_progress_bar.setThumbScaleRatio(thumbScaleRatio);
5612
5616
  },
5613
5617
  setLeftThumbScaleRatio(thumbScaleRatio) {
5614
- this.$refs.es_seek_bar.setLeftThumbScaleRatio(thumbScaleRatio);
5618
+ this.$refs.es_progress_bar.setLeftThumbScaleRatio(thumbScaleRatio);
5615
5619
  },
5616
5620
  setRightThumbScaleRatio(thumbScaleRatio) {
5617
- this.$refs.es_seek_bar.setRightThumbScaleRatio(thumbScaleRatio);
5621
+ this.$refs.es_progress_bar.setRightThumbScaleRatio(thumbScaleRatio);
5618
5622
  },
5619
5623
  setThumbActivate(activate) {
5620
- this.$refs.es_seek_bar.setThumbActivate(activate);
5624
+ this.$refs.es_progress_bar.setThumbActivate(activate);
5621
5625
  },
5622
5626
  setLeftThumbActivate(activate) {
5623
- this.$refs.es_seek_bar.setLeftThumbActivate(activate);
5627
+ this.$refs.es_progress_bar.setLeftThumbActivate(activate);
5624
5628
  },
5625
5629
  setRightThumbActivate(activate) {
5626
- this.$refs.es_seek_bar.setRightThumbActivate(activate);
5630
+ this.$refs.es_progress_bar.setRightThumbActivate(activate);
5627
5631
  },
5628
5632
  setThumbDrawable(drawable) {
5629
- this.$refs.es_seek_bar.setThumbDrawable(drawable);
5633
+ this.$refs.es_progress_bar.setThumbDrawable(drawable);
5630
5634
  },
5631
5635
  setLeftThumbDrawable(drawable) {
5632
- this.$refs.es_seek_bar.setLeftThumbDrawable(drawable);
5636
+ this.$refs.es_progress_bar.setLeftThumbDrawable(drawable);
5633
5637
  },
5634
5638
  setRightThumbDrawable(drawable) {
5635
- this.$refs.es_seek_bar.setRightThumbDrawable(drawable);
5639
+ this.$refs.es_progress_bar.setRightThumbDrawable(drawable);
5636
5640
  },
5637
5641
  setThumbUrl(url) {
5638
- this.$refs.es_seek_bar.setThumbUrl(url);
5642
+ this.$refs.es_progress_bar.setThumbUrl(url);
5639
5643
  },
5640
5644
  setLeftThumbUrl(url) {
5641
- this.$refs.es_seek_bar.setLeftThumbUrl(url);
5645
+ this.$refs.es_progress_bar.setLeftThumbUrl(url);
5642
5646
  },
5643
5647
  setRightThumbUrl(url) {
5644
- this.$refs.es_seek_bar.setRightThumbUrl(url);
5648
+ this.$refs.es_progress_bar.setRightThumbUrl(url);
5645
5649
  },
5646
5650
  setThumbInactivatedDrawable(drawable) {
5647
- this.$refs.es_seek_bar.setThumbInactivatedDrawable(drawable);
5651
+ this.$refs.es_progress_bar.setThumbInactivatedDrawable(drawable);
5648
5652
  },
5649
5653
  setLeftThumbInactivatedDrawable(drawable) {
5650
- this.$refs.es_seek_bar.setLeftThumbInactivatedDrawable(drawable);
5654
+ this.$refs.es_progress_bar.setLeftThumbInactivatedDrawable(drawable);
5651
5655
  },
5652
5656
  setRightThumbInactivatedDrawable(drawable) {
5653
- this.$refs.es_seek_bar.setRightThumbInactivatedDrawable(drawable);
5657
+ this.$refs.es_progress_bar.setRightThumbInactivatedDrawable(drawable);
5654
5658
  },
5655
5659
  setThumbInactivatedUrl(url) {
5656
- this.$refs.es_seek_bar.setThumbInactivatedUrl(url);
5660
+ this.$refs.es_progress_bar.setThumbInactivatedUrl(url);
5657
5661
  },
5658
5662
  setLeftThumbInactivatedUrl(url) {
5659
- this.$refs.es_seek_bar.setLeftThumbInactivatedUrl(url);
5663
+ this.$refs.es_progress_bar.setLeftThumbInactivatedUrl(url);
5660
5664
  },
5661
5665
  setRightThumbInactivatedUrl(url) {
5662
- this.$refs.es_seek_bar.setRightThumbInactivatedUrl(url);
5666
+ this.$refs.es_progress_bar.setRightThumbInactivatedUrl(url);
5663
5667
  },
5664
5668
  setTickMarkMode(tickMarkMode) {
5665
- this.$refs.es_seek_bar.setTickMarkMode(tickMarkMode);
5669
+ this.$refs.es_progress_bar.setTickMarkMode(tickMarkMode);
5666
5670
  },
5667
5671
  setTickMarkGravity(tickMarkGravity) {
5668
- this.$refs.es_seek_bar.setTickMarkGravity(tickMarkGravity);
5672
+ this.$refs.es_progress_bar.setTickMarkGravity(tickMarkGravity);
5669
5673
  },
5670
5674
  setTickMarkLayoutGravity(tickMarkLayoutGravity) {
5671
- this.$refs.es_seek_bar.setTickMarkLayoutGravity(tickMarkLayoutGravity);
5675
+ this.$refs.es_progress_bar.setTickMarkLayoutGravity(tickMarkLayoutGravity);
5672
5676
  },
5673
5677
  setTickMarkTextArray(tickMarkTextArray) {
5674
- this.$refs.es_seek_bar.setTickMarkTextArray(tickMarkTextArray);
5678
+ this.$refs.es_progress_bar.setTickMarkTextArray(tickMarkTextArray);
5675
5679
  },
5676
5680
  setTickMarkTextMargin(tickMarkTextMargin) {
5677
- this.$refs.es_seek_bar.setTickMarkTextMargin(tickMarkTextMargin);
5681
+ this.$refs.es_progress_bar.setTickMarkTextMargin(tickMarkTextMargin);
5678
5682
  },
5679
5683
  setTickMarkTextSize(tickMarkTextSize) {
5680
- this.$refs.es_seek_bar.setTickMarkTextSize(tickMarkTextSize);
5684
+ this.$refs.es_progress_bar.setTickMarkTextSize(tickMarkTextSize);
5681
5685
  },
5682
5686
  setTickMarkTextColor(tickMarkTextColor) {
5683
- this.$refs.es_seek_bar.setTickMarkTextColor(tickMarkTextColor);
5687
+ this.$refs.es_progress_bar.setTickMarkTextColor(tickMarkTextColor);
5684
5688
  },
5685
5689
  setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
5686
- this.$refs.es_seek_bar.setTickMarkInRangeTextColor(tickMarkInRangeTextColor);
5690
+ this.$refs.es_progress_bar.setTickMarkInRangeTextColor(tickMarkInRangeTextColor);
5687
5691
  },
5688
5692
  setSteps(steps) {
5689
- this.$refs.es_seek_bar.setSteps(steps);
5693
+ this.$refs.es_progress_bar.setSteps(steps);
5690
5694
  },
5691
5695
  setStepsWidth(stepsWidth) {
5692
- this.$refs.es_seek_bar.setStepsWidth(stepsWidth);
5696
+ this.$refs.es_progress_bar.setStepsWidth(stepsWidth);
5693
5697
  },
5694
5698
  setStepsHeight(stepsHeight) {
5695
- this.$refs.es_seek_bar.setStepsHeight(stepsHeight);
5699
+ this.$refs.es_progress_bar.setStepsHeight(stepsHeight);
5696
5700
  },
5697
5701
  setStepsRadius(stepsRadius) {
5698
- this.$refs.es_seek_bar.setStepsRadius(stepsRadius);
5702
+ this.$refs.es_progress_bar.setStepsRadius(stepsRadius);
5699
5703
  },
5700
5704
  setStepsColor(stepsColor) {
5701
- this.$refs.es_seek_bar.setStepsColor(stepsColor);
5705
+ this.$refs.es_progress_bar.setStepsColor(stepsColor);
5702
5706
  },
5703
5707
  setStepsAutoBonding(stepsAutoBonding) {
5704
- this.$refs.es_seek_bar.setStepsAutoBonding(stepsAutoBonding);
5708
+ this.$refs.es_progress_bar.setStepsAutoBonding(stepsAutoBonding);
5705
5709
  },
5706
5710
  setStepsDrawable(drawableArray) {
5707
- this.$refs.es_seek_bar.setStepsDrawable(drawableArray);
5711
+ this.$refs.es_progress_bar.setStepsDrawable(drawableArray);
5708
5712
  },
5709
5713
  setStepsUrl(urlArray) {
5710
- this.$refs.es_seek_bar.setStepsUrl(urlArray);
5714
+ this.$refs.es_progress_bar.setStepsUrl(urlArray);
5711
5715
  },
5712
5716
  }
5713
5717
  };
@@ -5736,649 +5740,649 @@ function ESProgressBarViewComponent() {
5736
5740
  Vue.component('es-progress-bar-view-component', {
5737
5741
  methods: {
5738
5742
  invalidateSeekBar() {
5739
- Vue.Native.callUIFunction(this.$refs.seekbar,
5743
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5740
5744
  'invalidateSeekBar', [], (res) => {
5741
5745
  });
5742
5746
  },
5743
5747
  setFocusable(focusable) {
5744
- Vue.Native.callUIFunction(this.$refs.seekbar,
5748
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5745
5749
  'setFocusable', [focusable], (res) => {
5746
5750
  });
5747
5751
  },
5748
5752
  setClickable(clickable) {
5749
- Vue.Native.callUIFunction(this.$refs.seekbar,
5753
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5750
5754
  'setClickable', [clickable], (res) => {
5751
5755
  });
5752
5756
  },
5753
5757
  requestFocus() {
5754
- Vue.Native.callUIFunction(this.$refs.seekbar,
5758
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5755
5759
  'requestFocus', [], (res) => {
5756
5760
  });
5757
5761
  },
5758
5762
  requestLayout() {
5759
- Vue.Native.callUIFunction(this.$refs.seekbar,
5763
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5760
5764
  'requestLayout', [], (res) => {
5761
5765
  });
5762
5766
  },
5763
5767
  invalidate() {
5764
- Vue.Native.callUIFunction(this.$refs.seekbar,
5768
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5765
5769
  'invalidate', [], (res) => {
5766
5770
  });
5767
5771
  },
5768
5772
  setVisible(visible) {
5769
- Vue.Native.callUIFunction(this.$refs.seekbar,
5773
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5770
5774
  'setVisible', [visible], (res) => {
5771
5775
  });
5772
5776
  },
5773
5777
  setLeftSeekBarVisible(visible) {
5774
- Vue.Native.callUIFunction(this.$refs.seekbar,
5778
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5775
5779
  'setLeftSeekBarVisible', [visible], (res) => {
5776
5780
  });
5777
5781
  },
5778
5782
  setRightSeekBarVisible(visible) {
5779
- Vue.Native.callUIFunction(this.$refs.seekbar,
5783
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5780
5784
  'setRightSeekBarVisible', [visible], (res) => {
5781
5785
  });
5782
5786
  },
5783
5787
  setSeekBarMode(mode) {
5784
- Vue.Native.callUIFunction(this.$refs.seekbar,
5788
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5785
5789
  'setSeekBarMode', [mode], (res) => {
5786
5790
  });
5787
5791
  },
5788
5792
  setProgress(progress) {
5789
- Vue.Native.callUIFunction(this.$refs.seekbar,
5793
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5790
5794
  'setProgress', [progress], (res) => {
5791
5795
  });
5792
5796
  },
5793
5797
  setRangeProgress(leftValue, rightValue) {
5794
- Vue.Native.callUIFunction(this.$refs.seekbar,
5798
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5795
5799
  'setProgress', [leftValue, rightValue], (res) => {
5796
5800
  });
5797
5801
  },
5798
5802
  getProgress() {
5799
- Vue.Native.callUIFunction(this.$refs.seekbar,
5803
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5800
5804
  'getProgress', [], (progress) => {
5801
5805
  });
5802
5806
  },
5803
5807
  getLeftProgress() {
5804
- Vue.Native.callUIFunction(this.$refs.seekbar,
5808
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5805
5809
  'getLeftProgress', [], (progress) => {
5806
5810
  });
5807
5811
  },
5808
5812
  getRightProgress() {
5809
- Vue.Native.callUIFunction(this.$refs.seekbar,
5813
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5810
5814
  'getRightProgress', [], (progress) => {
5811
5815
  });
5812
5816
  },
5813
5817
  setRange(min, max, minInterval) {
5814
- Vue.Native.callUIFunction(this.$refs.seekbar,
5818
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5815
5819
  'setRange', [min, max, minInterval], (value) => {
5816
5820
  });
5817
5821
  },
5818
5822
  setGravity(gravity) {
5819
- Vue.Native.callUIFunction(this.$refs.seekbar,
5823
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5820
5824
  'setGravity', [gravity], (value) => {
5821
5825
  });
5822
5826
  },
5823
5827
  setProgressWidth(progressWidth) {
5824
- Vue.Native.callUIFunction(this.$refs.seekbar,
5828
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5825
5829
  'setProgressWidth', [progressWidth], (value) => {
5826
5830
  });
5827
5831
  },
5828
5832
  setProgressHeight(progressHeight) {
5829
- Vue.Native.callUIFunction(this.$refs.seekbar,
5833
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5830
5834
  'setProgressHeight', [progressHeight], (value) => {
5831
5835
  });
5832
5836
  },
5833
5837
  setProgressRadius(progressRadius) {
5834
- Vue.Native.callUIFunction(this.$refs.seekbar,
5838
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5835
5839
  'setProgressRadius', [progressRadius], (value) => {
5836
5840
  });
5837
5841
  },
5838
5842
  setProgressColor(progressColor) {
5839
- Vue.Native.callUIFunction(this.$refs.seekbar,
5843
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5840
5844
  'setProgressColor', [progressColor], (value) => {
5841
5845
  });
5842
5846
  },
5843
5847
  setProgressDefaultColor(defaultProgressColor) {
5844
- Vue.Native.callUIFunction(this.$refs.seekbar,
5848
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5845
5849
  'setProgressDefaultColor', [defaultProgressColor], (value) => {
5846
5850
  });
5847
5851
  },
5848
5852
  setProgressDrawable(progressDrawable) {
5849
- Vue.Native.callUIFunction(this.$refs.seekbar,
5853
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5850
5854
  'setProgressDrawable', [progressDrawable], (value) => {
5851
5855
  });
5852
5856
  },
5853
5857
  setProgressDefaultDrawable(progressDefaultDrawable) {
5854
- Vue.Native.callUIFunction(this.$refs.seekbar,
5858
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5855
5859
  'setProgressDefaultDrawable', [progressDefaultDrawable], (value) => {
5856
5860
  });
5857
5861
  },
5858
5862
  setProgressUrl(progressUrl) {
5859
- Vue.Native.callUIFunction(this.$refs.seekbar,
5863
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5860
5864
  'setProgressUrl', [progressUrl], (value) => {
5861
5865
  });
5862
5866
  },
5863
5867
  setProgressDefaultUrl(progressDefaultUrl) {
5864
- Vue.Native.callUIFunction(this.$refs.seekbar,
5868
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5865
5869
  'setProgressDefaultUrl', [progressDefaultUrl], (value) => {
5866
5870
  });
5867
5871
  },
5868
5872
  showIndicator(showIndicator) {
5869
- Vue.Native.callUIFunction(this.$refs.seekbar,
5873
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5870
5874
  'showIndicator', [showIndicator], (value) => {
5871
5875
  });
5872
5876
  },
5873
5877
  showLeftIndicator(showLeftIndicator) {
5874
- Vue.Native.callUIFunction(this.$refs.seekbar,
5878
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5875
5879
  'showLeftIndicator', [showLeftIndicator], (value) => {
5876
5880
  });
5877
5881
  },
5878
5882
  showRightIndicator(showRightIndicator) {
5879
- Vue.Native.callUIFunction(this.$refs.seekbar,
5883
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5880
5884
  'showRightIndicator', [showRightIndicator], (value) => {
5881
5885
  });
5882
5886
  },
5883
5887
  setIndicatorShowMode(indicatorShowMode) {
5884
- Vue.Native.callUIFunction(this.$refs.seekbar,
5888
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5885
5889
  'setIndicatorShowMode', [indicatorShowMode], (value) => {
5886
5890
  });
5887
5891
  },
5888
5892
  setLeftIndicatorShowMode(indicatorShowMode) {
5889
- Vue.Native.callUIFunction(this.$refs.seekbar,
5893
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5890
5894
  'setLeftIndicatorShowMode', [indicatorShowMode], (value) => {
5891
5895
  });
5892
5896
  },
5893
5897
  setRightIndicatorShowMode(indicatorShowMode) {
5894
- Vue.Native.callUIFunction(this.$refs.seekbar,
5898
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5895
5899
  'setRightIndicatorShowMode', [indicatorShowMode], (value) => {
5896
5900
  });
5897
5901
  },
5898
5902
  setIndicatorWidth(indicatorWidth) {
5899
- Vue.Native.callUIFunction(this.$refs.seekbar,
5903
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5900
5904
  'setIndicatorWidth', [indicatorWidth], (value) => {
5901
5905
  });
5902
5906
  },
5903
5907
  setLeftIndicatorWidth(indicatorWidth) {
5904
- Vue.Native.callUIFunction(this.$refs.seekbar,
5908
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5905
5909
  'setLeftIndicatorWidth', [indicatorWidth], (value) => {
5906
5910
  });
5907
5911
  },
5908
5912
  setRightIndicatorWidth(indicatorWidth) {
5909
- Vue.Native.callUIFunction(this.$refs.seekbar,
5913
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5910
5914
  'setRightIndicatorWidth', [indicatorWidth], (value) => {
5911
5915
  });
5912
5916
  },
5913
5917
 
5914
5918
  setIndicatorHeight(indicatorHeight) {
5915
- Vue.Native.callUIFunction(this.$refs.seekbar,
5919
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5916
5920
  'setIndicatorHeight', [indicatorHeight], (value) => {
5917
5921
  });
5918
5922
  },
5919
5923
  setLeftIndicatorHeight(indicatorHeight) {
5920
- Vue.Native.callUIFunction(this.$refs.seekbar,
5924
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5921
5925
  'setLeftIndicatorHeight', [indicatorHeight], (value) => {
5922
5926
  });
5923
5927
  },
5924
5928
  setRightIndicatorHeight(indicatorHeight) {
5925
- Vue.Native.callUIFunction(this.$refs.seekbar,
5929
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5926
5930
  'setRightIndicatorHeight', [indicatorHeight], (value) => {
5927
5931
  });
5928
5932
  },
5929
5933
  setIndicatorTextDecimalFormat(formatPattern) {
5930
- Vue.Native.callUIFunction(this.$refs.seekbar,
5934
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5931
5935
  'setIndicatorTextDecimalFormat', [formatPattern], (value) => {
5932
5936
  });
5933
5937
  },
5934
5938
  setLeftIndicatorTextDecimalFormat(formatPattern) {
5935
- Vue.Native.callUIFunction(this.$refs.seekbar,
5939
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5936
5940
  'setLeftIndicatorTextDecimalFormat', [formatPattern], (value) => {
5937
5941
  });
5938
5942
  },
5939
5943
  setRightIndicatorTextDecimalFormat(formatPattern) {
5940
- Vue.Native.callUIFunction(this.$refs.seekbar,
5944
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5941
5945
  'setRightIndicatorTextDecimalFormat', [formatPattern], (value) => {
5942
5946
  });
5943
5947
  },
5944
5948
  setIndicatorTextStringFormat(formatPattern) {
5945
- Vue.Native.callUIFunction(this.$refs.seekbar,
5949
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5946
5950
  'setIndicatorTextStringFormat', [formatPattern], (value) => {
5947
5951
  });
5948
5952
  },
5949
5953
  setLeftIndicatorTextStringFormat(formatPattern) {
5950
- Vue.Native.callUIFunction(this.$refs.seekbar,
5954
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5951
5955
  'setLeftIndicatorTextStringFormat', [formatPattern], (value) => {
5952
5956
  });
5953
5957
  },
5954
5958
  setRightIndicatorTextStringFormat(formatPattern) {
5955
- Vue.Native.callUIFunction(this.$refs.seekbar,
5959
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5956
5960
  'setRightIndicatorTextStringFormat', [formatPattern], (value) => {
5957
5961
  });
5958
5962
  },
5959
5963
  setIndicatorMargin(indicatorMargin) {
5960
- Vue.Native.callUIFunction(this.$refs.seekbar,
5964
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5961
5965
  'setIndicatorMargin', [indicatorMargin], (value) => {
5962
5966
  });
5963
5967
  },
5964
5968
  setLeftIndicatorMargin(indicatorMargin) {
5965
- Vue.Native.callUIFunction(this.$refs.seekbar,
5969
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5966
5970
  'setLeftIndicatorMargin', [indicatorMargin], (value) => {
5967
5971
  });
5968
5972
  },
5969
5973
  setRightIndicatorMargin(indicatorMargin) {
5970
- Vue.Native.callUIFunction(this.$refs.seekbar,
5974
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5971
5975
  'setRightIndicatorMargin', [indicatorMargin], (value) => {
5972
5976
  });
5973
5977
  },
5974
5978
  setIndicatorPaddingBottom(indicatorPaddingBottom) {
5975
- Vue.Native.callUIFunction(this.$refs.seekbar,
5979
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5976
5980
  'setIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
5977
5981
  });
5978
5982
  },
5979
5983
  setLeftIndicatorPaddingBottom(indicatorPaddingBottom) {
5980
- Vue.Native.callUIFunction(this.$refs.seekbar,
5984
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5981
5985
  'setLeftIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
5982
5986
  });
5983
5987
  },
5984
5988
  setRightIndicatorPaddingBottom(indicatorPaddingBottom) {
5985
- Vue.Native.callUIFunction(this.$refs.seekbar,
5989
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5986
5990
  'setRightIndicatorPaddingBottom', [indicatorPaddingBottom], (value) => {
5987
5991
  });
5988
5992
  },
5989
5993
  setIndicatorPaddingTop(indicatorPaddingTop) {
5990
- Vue.Native.callUIFunction(this.$refs.seekbar,
5994
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5991
5995
  'setIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
5992
5996
  });
5993
5997
  },
5994
5998
  setLeftIndicatorPaddingTop(indicatorPaddingTop) {
5995
- Vue.Native.callUIFunction(this.$refs.seekbar,
5999
+ Vue.Native.callUIFunction(this.$refs.progressbar,
5996
6000
  'setLeftIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
5997
6001
  });
5998
6002
  },
5999
6003
  setRightIndicatorPaddingTop(indicatorPaddingTop) {
6000
- Vue.Native.callUIFunction(this.$refs.seekbar,
6004
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6001
6005
  'setRightIndicatorPaddingTop', [indicatorPaddingTop], (value) => {
6002
6006
  });
6003
6007
  },
6004
6008
 
6005
6009
  setIndicatorPaddingLeft(indicatorPaddingLeft) {
6006
- Vue.Native.callUIFunction(this.$refs.seekbar,
6010
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6007
6011
  'setIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
6008
6012
  });
6009
6013
  },
6010
6014
  setLeftIndicatorPaddingLeft(indicatorPaddingLeft) {
6011
- Vue.Native.callUIFunction(this.$refs.seekbar,
6015
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6012
6016
  'setLeftIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
6013
6017
  });
6014
6018
  },
6015
6019
  setRightIndicatorPaddingLeft(indicatorPaddingLeft) {
6016
- Vue.Native.callUIFunction(this.$refs.seekbar,
6020
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6017
6021
  'setRightIndicatorPaddingLeft', [indicatorPaddingLeft], (value) => {
6018
6022
  });
6019
6023
  },
6020
6024
  setIndicatorPaddingRight(indicatorPaddingRight) {
6021
- Vue.Native.callUIFunction(this.$refs.seekbar,
6025
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6022
6026
  'setIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
6023
6027
  });
6024
6028
  },
6025
6029
  setLeftIndicatorPaddingRight(indicatorPaddingRight) {
6026
- Vue.Native.callUIFunction(this.$refs.seekbar,
6030
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6027
6031
  'setLeftIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
6028
6032
  });
6029
6033
  },
6030
6034
  setRightIndicatorPaddingRight(indicatorPaddingRight) {
6031
- Vue.Native.callUIFunction(this.$refs.seekbar,
6035
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6032
6036
  'setRightIndicatorPaddingRight', [indicatorPaddingRight], (value) => {
6033
6037
  });
6034
6038
  },
6035
6039
  setIndicatorBackgroundColor(indicatorBackgroundColor) {
6036
- Vue.Native.callUIFunction(this.$refs.seekbar,
6040
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6037
6041
  'setIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
6038
6042
  });
6039
6043
  },
6040
6044
  setLeftIndicatorBackgroundColor(indicatorBackgroundColor) {
6041
- Vue.Native.callUIFunction(this.$refs.seekbar,
6045
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6042
6046
  'setLeftIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
6043
6047
  });
6044
6048
  },
6045
6049
  setRightIndicatorBackgroundColor(indicatorBackgroundColor) {
6046
- Vue.Native.callUIFunction(this.$refs.seekbar,
6050
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6047
6051
  'setRightIndicatorBackgroundColor', [indicatorBackgroundColor], (value) => {
6048
6052
  });
6049
6053
  },
6050
6054
  setIndicatorRadius(indicatorRadius) {
6051
- Vue.Native.callUIFunction(this.$refs.seekbar,
6055
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6052
6056
  'setIndicatorRadius', [indicatorRadius], (value) => {
6053
6057
  });
6054
6058
  },
6055
6059
  setLeftIndicatorRadius(indicatorRadius) {
6056
- Vue.Native.callUIFunction(this.$refs.seekbar,
6060
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6057
6061
  'setLeftIndicatorRadius', [indicatorRadius], (value) => {
6058
6062
  });
6059
6063
  },
6060
6064
  setRightIndicatorRadius(indicatorRadius) {
6061
- Vue.Native.callUIFunction(this.$refs.seekbar,
6065
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6062
6066
  'setRightIndicatorRadius', [indicatorRadius], (value) => {
6063
6067
  });
6064
6068
  },
6065
6069
  setIndicatorTextSize(indicatorTextSize) {
6066
- Vue.Native.callUIFunction(this.$refs.seekbar,
6070
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6067
6071
  'setIndicatorTextSize', [indicatorTextSize], (value) => {
6068
6072
  });
6069
6073
  },
6070
6074
  setLeftIndicatorTextSize(indicatorTextSize) {
6071
- Vue.Native.callUIFunction(this.$refs.seekbar,
6075
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6072
6076
  'setLeftIndicatorTextSize', [indicatorTextSize], (value) => {
6073
6077
  });
6074
6078
  },
6075
6079
  setRightIndicatorTextSize(indicatorTextSize) {
6076
- Vue.Native.callUIFunction(this.$refs.seekbar,
6080
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6077
6081
  'setRightIndicatorTextSize', [indicatorTextSize], (value) => {
6078
6082
  });
6079
6083
  },
6080
6084
  setIndicatorTextColor(indicatorTextColor) {
6081
- Vue.Native.callUIFunction(this.$refs.seekbar,
6085
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6082
6086
  'setIndicatorTextColor', [indicatorTextColor], (value) => {
6083
6087
  });
6084
6088
  },
6085
6089
  setLeftIndicatorTextColor(indicatorTextColor) {
6086
- Vue.Native.callUIFunction(this.$refs.seekbar,
6090
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6087
6091
  'setLeftIndicatorTextColor', [indicatorTextColor], (value) => {
6088
6092
  });
6089
6093
  },
6090
6094
  setRightIndicatorTextColor(indicatorTextColor) {
6091
- Vue.Native.callUIFunction(this.$refs.seekbar,
6095
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6092
6096
  'setRightIndicatorTextColor', [indicatorTextColor], (value) => {
6093
6097
  });
6094
6098
  },
6095
6099
  setIndicatorArrowSize(indicatorArrowSize) {
6096
- Vue.Native.callUIFunction(this.$refs.seekbar,
6100
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6097
6101
  'setIndicatorArrowSize', [indicatorArrowSize], (value) => {
6098
6102
  });
6099
6103
  },
6100
6104
  setLeftIndicatorArrowSize(indicatorArrowSize) {
6101
- Vue.Native.callUIFunction(this.$refs.seekbar,
6105
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6102
6106
  'setLeftIndicatorArrowSize', [indicatorArrowSize], (value) => {
6103
6107
  });
6104
6108
  },
6105
6109
  setRightIndicatorArrowSize(indicatorArrowSize) {
6106
- Vue.Native.callUIFunction(this.$refs.seekbar,
6110
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6107
6111
  'setRightIndicatorArrowSize', [indicatorArrowSize], (value) => {
6108
6112
  });
6109
6113
  },
6110
6114
  setIndicatorDrawable(indicatorDrawable) {
6111
- Vue.Native.callUIFunction(this.$refs.seekbar,
6115
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6112
6116
  'setIndicatorDrawable', [indicatorDrawable], (value) => {
6113
6117
  });
6114
6118
  },
6115
6119
  setLeftIndicatorDrawable(leftIndicatorDrawable) {
6116
- Vue.Native.callUIFunction(this.$refs.seekbar,
6120
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6117
6121
  'setLeftIndicatorDrawable', [leftIndicatorDrawable], (value) => {
6118
6122
  });
6119
6123
  },
6120
6124
  setRightIndicatorDrawable(rightIndicatorDrawable) {
6121
- Vue.Native.callUIFunction(this.$refs.seekbar,
6125
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6122
6126
  'setRightIndicatorDrawable', [rightIndicatorDrawable], (value) => {
6123
6127
  });
6124
6128
  },
6125
6129
  setIndicatorUrl(indicatorUrl) {
6126
- Vue.Native.callUIFunction(this.$refs.seekbar,
6130
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6127
6131
  'setIndicatorUrl', [indicatorUrl], (value) => {
6128
6132
  });
6129
6133
  },
6130
6134
  setLeftIndicatorUrl(leftIndicatorUrl) {
6131
- Vue.Native.callUIFunction(this.$refs.seekbar,
6135
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6132
6136
  'setLeftIndicatorUrl', [leftIndicatorUrl], (value) => {
6133
6137
  });
6134
6138
  },
6135
6139
  setRightIndicatorUrl(rightIndicatorUrl) {
6136
- Vue.Native.callUIFunction(this.$refs.seekbar,
6140
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6137
6141
  'setRightIndicatorUrl', [rightIndicatorUrl], (value) => {
6138
6142
  });
6139
6143
  },
6140
6144
  setThumbWidth(thumbWidth) {
6141
- Vue.Native.callUIFunction(this.$refs.seekbar,
6145
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6142
6146
  'setThumbWidth', [thumbWidth], (value) => {
6143
6147
  });
6144
6148
  },
6145
6149
  setLeftThumbWidth(thumbWidth) {
6146
- Vue.Native.callUIFunction(this.$refs.seekbar,
6150
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6147
6151
  'setLeftThumbWidth', [thumbWidth], (value) => {
6148
6152
  });
6149
6153
  },
6150
6154
  setRightThumbWidth(thumbWidth) {
6151
- Vue.Native.callUIFunction(this.$refs.seekbar,
6155
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6152
6156
  'setRightThumbWidth', [thumbWidth], (value) => {
6153
6157
  });
6154
6158
  },
6155
6159
  setThumbHeight(thumbHeight) {
6156
- Vue.Native.callUIFunction(this.$refs.seekbar,
6160
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6157
6161
  'setThumbHeight', [thumbHeight], (value) => {
6158
6162
  });
6159
6163
  },
6160
6164
  setLeftThumbHeight(thumbHeight) {
6161
- Vue.Native.callUIFunction(this.$refs.seekbar,
6165
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6162
6166
  'setLeftThumbHeight', [thumbHeight], (value) => {
6163
6167
  });
6164
6168
  },
6165
6169
  setRightThumbHeight(thumbHeight) {
6166
- Vue.Native.callUIFunction(this.$refs.seekbar,
6170
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6167
6171
  'setRightThumbHeight', [thumbHeight], (value) => {
6168
6172
  });
6169
6173
  },
6170
6174
  scaleThumb() {
6171
- Vue.Native.callUIFunction(this.$refs.seekbar,
6175
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6172
6176
  'scaleThumb', [], (value) => {
6173
6177
  });
6174
6178
  },
6175
6179
  scaleLeftThumb() {
6176
- Vue.Native.callUIFunction(this.$refs.seekbar,
6180
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6177
6181
  'scaleLeftThumb', [], (value) => {
6178
6182
  });
6179
6183
  },
6180
6184
  scaleRightThumb() {
6181
- Vue.Native.callUIFunction(this.$refs.seekbar,
6185
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6182
6186
  'scaleLeftThumb', [], (value) => {
6183
6187
  });
6184
6188
  },
6185
6189
  resetThumb() {
6186
- Vue.Native.callUIFunction(this.$refs.seekbar,
6190
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6187
6191
  'resetThumb', [], (value) => {
6188
6192
  });
6189
6193
  },
6190
6194
  resetLeftThumb() {
6191
- Vue.Native.callUIFunction(this.$refs.seekbar,
6195
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6192
6196
  'resetLeftThumb', [], (value) => {
6193
6197
  });
6194
6198
  },
6195
6199
  resetRightThumb() {
6196
- Vue.Native.callUIFunction(this.$refs.seekbar,
6200
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6197
6201
  'resetRightThumb', [], (value) => {
6198
6202
  });
6199
6203
  },
6200
6204
  setThumbScaleRatio(thumbScaleRatio) {
6201
- Vue.Native.callUIFunction(this.$refs.seekbar,
6205
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6202
6206
  'setThumbScaleRatio', [thumbScaleRatio], (value) => {
6203
6207
  });
6204
6208
  },
6205
6209
  setLeftThumbScaleRatio(thumbScaleRatio) {
6206
- Vue.Native.callUIFunction(this.$refs.seekbar,
6210
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6207
6211
  'setLeftThumbScaleRatio', [thumbScaleRatio], (value) => {
6208
6212
  });
6209
6213
  },
6210
6214
  setRightThumbScaleRatio(thumbScaleRatio) {
6211
- Vue.Native.callUIFunction(this.$refs.seekbar,
6215
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6212
6216
  'setRightThumbScaleRatio', [thumbScaleRatio], (value) => {
6213
6217
  });
6214
6218
  },
6215
6219
  setThumbActivate(activate) {
6216
- Vue.Native.callUIFunction(this.$refs.seekbar,
6220
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6217
6221
  'setThumbActivate', [activate], (value) => {
6218
6222
  });
6219
6223
  },
6220
6224
  setLeftThumbActivate(activate) {
6221
- Vue.Native.callUIFunction(this.$refs.seekbar,
6225
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6222
6226
  'setLeftThumbActivate', [activate], (value) => {
6223
6227
  });
6224
6228
  },
6225
6229
  setRightThumbActivate(activate) {
6226
- Vue.Native.callUIFunction(this.$refs.seekbar,
6230
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6227
6231
  'setRightThumbActivate', [activate], (value) => {
6228
6232
  });
6229
6233
  },
6230
6234
  setThumbDrawable(drawable) {
6231
- Vue.Native.callUIFunction(this.$refs.seekbar,
6235
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6232
6236
  'setThumbDrawable', [drawable], (value) => {
6233
6237
  });
6234
6238
  },
6235
6239
  setLeftThumbDrawable(drawable) {
6236
- Vue.Native.callUIFunction(this.$refs.seekbar,
6240
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6237
6241
  'setLeftThumbDrawable', [drawable], (value) => {
6238
6242
  });
6239
6243
  },
6240
6244
  setRightThumbDrawable(drawable) {
6241
- Vue.Native.callUIFunction(this.$refs.seekbar,
6245
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6242
6246
  'setRightThumbDrawable', [drawable], (value) => {
6243
6247
  });
6244
6248
  },
6245
6249
  setThumbUrl(url) {
6246
- Vue.Native.callUIFunction(this.$refs.seekbar,
6250
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6247
6251
  'setThumbUrl', [url], (value) => {
6248
6252
  });
6249
6253
  },
6250
6254
  setLeftThumbUrl(url) {
6251
- Vue.Native.callUIFunction(this.$refs.seekbar,
6255
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6252
6256
  'setLeftThumbUrl', [url], (value) => {
6253
6257
  });
6254
6258
  },
6255
6259
  setRightThumbUrl(url) {
6256
- Vue.Native.callUIFunction(this.$refs.seekbar,
6260
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6257
6261
  'setRightThumbUrl', [url], (value) => {
6258
6262
  });
6259
6263
  },
6260
6264
  setThumbInactivatedDrawable(drawable) {
6261
- Vue.Native.callUIFunction(this.$refs.seekbar,
6265
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6262
6266
  'setThumbInactivatedDrawable', [drawable], (value) => {
6263
6267
  });
6264
6268
  },
6265
6269
  setLeftThumbInactivatedDrawable(drawable) {
6266
- Vue.Native.callUIFunction(this.$refs.seekbar,
6270
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6267
6271
  'setLeftThumbInactivatedDrawable', [drawable], (value) => {
6268
6272
  });
6269
6273
  },
6270
6274
  setRightThumbInactivatedDrawable(drawable) {
6271
- Vue.Native.callUIFunction(this.$refs.seekbar,
6275
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6272
6276
  'setRightThumbInactivatedDrawable', [drawable], (value) => {
6273
6277
  });
6274
6278
  },
6275
6279
  setThumbInactivatedUrl(url) {
6276
- Vue.Native.callUIFunction(this.$refs.seekbar,
6280
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6277
6281
  'setThumbInactivatedUrl', [url], (value) => {
6278
6282
  });
6279
6283
  },
6280
6284
  setLeftThumbInactivatedUrl(url) {
6281
- Vue.Native.callUIFunction(this.$refs.seekbar,
6285
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6282
6286
  'setLeftThumbInactivatedUrl', [url], (value) => {
6283
6287
  });
6284
6288
  },
6285
6289
  setRightThumbInactivatedUrl(url) {
6286
- Vue.Native.callUIFunction(this.$refs.seekbar,
6290
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6287
6291
  'setRightThumbInactivatedUrl', [url], (value) => {
6288
6292
  });
6289
6293
  },
6290
6294
  setTickMarkMode(tickMarkMode) {
6291
- Vue.Native.callUIFunction(this.$refs.seekbar,
6295
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6292
6296
  'setTickMarkMode', [tickMarkMode], (value) => {
6293
6297
  });
6294
6298
  },
6295
6299
  setTickMarkGravity(tickMarkGravity) {
6296
- Vue.Native.callUIFunction(this.$refs.seekbar,
6300
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6297
6301
  'setTickMarkGravity', [tickMarkGravity], (value) => {
6298
6302
  });
6299
6303
  },
6300
6304
  setTickMarkLayoutGravity(tickMarkLayoutGravity) {
6301
- Vue.Native.callUIFunction(this.$refs.seekbar,
6305
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6302
6306
  'setTickMarkLayoutGravity', [tickMarkLayoutGravity], (value) => {
6303
6307
  });
6304
6308
  },
6305
6309
  setTickMarkTextArray(tickMarkTextArray) {
6306
- Vue.Native.callUIFunction(this.$refs.seekbar,
6310
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6307
6311
  'setTickMarkTextArray', [tickMarkTextArray], (value) => {
6308
6312
  });
6309
6313
  },
6310
6314
  setTickMarkTextMargin(tickMarkTextMargin) {
6311
- Vue.Native.callUIFunction(this.$refs.seekbar,
6315
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6312
6316
  'setTickMarkTextMargin', [tickMarkTextMargin], (value) => {
6313
6317
  });
6314
6318
  },
6315
6319
  setTickMarkTextSize(tickMarkTextSize) {
6316
- Vue.Native.callUIFunction(this.$refs.seekbar,
6320
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6317
6321
  'setTickMarkTextSize', [tickMarkTextSize], (value) => {
6318
6322
  });
6319
6323
  },
6320
6324
  setTickMarkTextColor(tickMarkTextColor) {
6321
- Vue.Native.callUIFunction(this.$refs.seekbar,
6325
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6322
6326
  'setTickMarkTextColor', [tickMarkTextColor], (value) => {
6323
6327
  });
6324
6328
  },
6325
6329
  setTickMarkInRangeTextColor(tickMarkInRangeTextColor) {
6326
- Vue.Native.callUIFunction(this.$refs.seekbar,
6330
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6327
6331
  'setTickMarkInRangeTextColor', [tickMarkInRangeTextColor], (value) => {
6328
6332
  });
6329
6333
  },
6330
6334
  setSteps(steps) {
6331
- Vue.Native.callUIFunction(this.$refs.seekbar,
6335
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6332
6336
  'setSteps', [steps], (value) => {
6333
6337
  });
6334
6338
  },
6335
6339
  setStepsWidth(stepsWidth) {
6336
- Vue.Native.callUIFunction(this.$refs.seekbar,
6340
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6337
6341
  'setStepsWidth', [stepsWidth], (value) => {
6338
6342
  });
6339
6343
  },
6340
6344
  setStepsHeight(stepsHeight) {
6341
- Vue.Native.callUIFunction(this.$refs.seekbar,
6345
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6342
6346
  'setStepsHeight', [stepsHeight], (value) => {
6343
6347
  });
6344
6348
  },
6345
6349
  setStepsRadius(stepsRadius) {
6346
- Vue.Native.callUIFunction(this.$refs.seekbar,
6350
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6347
6351
  'setStepsRadius', [stepsRadius], (value) => {
6348
6352
  });
6349
6353
  },
6350
6354
  setStepsColor(stepsColor) {
6351
- Vue.Native.callUIFunction(this.$refs.seekbar,
6355
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6352
6356
  'setStepsColor', [stepsColor], (value) => {
6353
6357
  });
6354
6358
  },
6355
6359
  setStepsAutoBonding(stepsAutoBonding) {
6356
- Vue.Native.callUIFunction(this.$refs.seekbar,
6360
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6357
6361
  'setStepsAutoBonding', [stepsAutoBonding], (value) => {
6358
6362
  });
6359
6363
  },
6360
6364
  setStepsDrawable(drawableArray) {
6361
- Vue.Native.callUIFunction(this.$refs.seekbar,
6365
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6362
6366
  'setStepsDrawable', [drawableArray], (value) => {
6363
6367
  });
6364
6368
  },
6365
6369
  setStepsUrl(urlArray) {
6366
- Vue.Native.callUIFunction(this.$refs.seekbar,
6370
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6367
6371
  'setStepsUrl', [urlArray], (value) => {
6368
6372
  });
6369
6373
  },
6370
6374
  setMaxProgress(progress) {
6371
- Vue.Native.callUIFunction(this.$refs.seekbar,
6375
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6372
6376
  'setMaxProgress', [progress], (res) => {
6373
6377
  });
6374
6378
  },
6375
6379
  setSecondProgress(progress) {
6376
- Vue.Native.callUIFunction(this.$refs.seekbar,
6380
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6377
6381
  'setSecondProgress', [progress], (res) => {
6378
6382
  });
6379
6383
  },
6380
6384
  show(value) {
6381
- Vue.Native.callUIFunction(this.$refs.seekbar,
6385
+ Vue.Native.callUIFunction(this.$refs.progressbar,
6382
6386
  'show', [value], (res) => {
6383
6387
  });
6384
6388
  },
@@ -6393,7 +6397,7 @@ function ESProgressBarViewComponent() {
6393
6397
  return h('TVProgressBarViewComponent',
6394
6398
  {
6395
6399
  on,
6396
- ref: 'seekbar'
6400
+ ref: 'progressbar'
6397
6401
  }, this.$slots.default
6398
6402
  );
6399
6403
  }