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