@everymatrix/casino-tournaments-table 0.0.83 → 0.0.87
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.
|
@@ -175,6 +175,12 @@
|
|
|
175
175
|
block.i(local);
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
|
+
|
|
179
|
+
const globals = (typeof window !== 'undefined'
|
|
180
|
+
? window
|
|
181
|
+
: typeof globalThis !== 'undefined'
|
|
182
|
+
? globalThis
|
|
183
|
+
: global);
|
|
178
184
|
function mount_component(component, target, anchor, customElement) {
|
|
179
185
|
const { fragment, on_mount, on_destroy, after_update } = component.$$;
|
|
180
186
|
fragment && fragment.m(target, anchor);
|
|
@@ -378,17 +384,17 @@
|
|
|
378
384
|
}
|
|
379
385
|
}
|
|
380
386
|
|
|
381
|
-
var global =
|
|
387
|
+
var global$1 =
|
|
382
388
|
(typeof globalThis !== 'undefined' && globalThis) ||
|
|
383
389
|
(typeof self !== 'undefined' && self) ||
|
|
384
|
-
(typeof global !== 'undefined' && global);
|
|
390
|
+
(typeof global$1 !== 'undefined' && global$1);
|
|
385
391
|
|
|
386
392
|
var support = {
|
|
387
|
-
searchParams: 'URLSearchParams' in global,
|
|
388
|
-
iterable: 'Symbol' in global && 'iterator' in Symbol,
|
|
393
|
+
searchParams: 'URLSearchParams' in global$1,
|
|
394
|
+
iterable: 'Symbol' in global$1 && 'iterator' in Symbol,
|
|
389
395
|
blob:
|
|
390
|
-
'FileReader' in global &&
|
|
391
|
-
'Blob' in global &&
|
|
396
|
+
'FileReader' in global$1 &&
|
|
397
|
+
'Blob' in global$1 &&
|
|
392
398
|
(function() {
|
|
393
399
|
try {
|
|
394
400
|
new Blob();
|
|
@@ -397,8 +403,8 @@
|
|
|
397
403
|
return false
|
|
398
404
|
}
|
|
399
405
|
})(),
|
|
400
|
-
formData: 'FormData' in global,
|
|
401
|
-
arrayBuffer: 'ArrayBuffer' in global
|
|
406
|
+
formData: 'FormData' in global$1,
|
|
407
|
+
arrayBuffer: 'ArrayBuffer' in global$1
|
|
402
408
|
};
|
|
403
409
|
|
|
404
410
|
function isDataView(obj) {
|
|
@@ -863,7 +869,7 @@
|
|
|
863
869
|
return new Response(null, {status: status, headers: {location: url}})
|
|
864
870
|
};
|
|
865
871
|
|
|
866
|
-
var DOMException = global.DOMException;
|
|
872
|
+
var DOMException = global$1.DOMException;
|
|
867
873
|
try {
|
|
868
874
|
new DOMException();
|
|
869
875
|
} catch (err) {
|
|
@@ -924,7 +930,7 @@
|
|
|
924
930
|
|
|
925
931
|
function fixUrl(url) {
|
|
926
932
|
try {
|
|
927
|
-
return url === '' && global.location.href ? global.location.href : url
|
|
933
|
+
return url === '' && global$1.location.href ? global$1.location.href : url
|
|
928
934
|
} catch (e) {
|
|
929
935
|
return url
|
|
930
936
|
}
|
|
@@ -977,11 +983,11 @@
|
|
|
977
983
|
|
|
978
984
|
fetch.polyfill = true;
|
|
979
985
|
|
|
980
|
-
if (!global.fetch) {
|
|
981
|
-
global.fetch = fetch;
|
|
982
|
-
global.Headers = Headers;
|
|
983
|
-
global.Request = Request;
|
|
984
|
-
global.Response = Response;
|
|
986
|
+
if (!global$1.fetch) {
|
|
987
|
+
global$1.fetch = fetch;
|
|
988
|
+
global$1.Headers = Headers;
|
|
989
|
+
global$1.Request = Request;
|
|
990
|
+
global$1.Response = Response;
|
|
985
991
|
}
|
|
986
992
|
|
|
987
993
|
// the whatwg-fetch polyfill installs the fetch() function
|
|
@@ -4454,6 +4460,8 @@
|
|
|
4454
4460
|
};
|
|
4455
4461
|
|
|
4456
4462
|
/* src/CasinoTournamentsTable.svelte generated by Svelte v3.37.0 */
|
|
4463
|
+
|
|
4464
|
+
const { console: console_1 } = globals;
|
|
4457
4465
|
const file = "src/CasinoTournamentsTable.svelte";
|
|
4458
4466
|
|
|
4459
4467
|
function get_each_context_3(ctx, list, i) {
|
|
@@ -4480,7 +4488,7 @@
|
|
|
4480
4488
|
return child_ctx;
|
|
4481
4489
|
}
|
|
4482
4490
|
|
|
4483
|
-
// (
|
|
4491
|
+
// (224:4) {:else}
|
|
4484
4492
|
function create_else_block_5(ctx) {
|
|
4485
4493
|
let div;
|
|
4486
4494
|
let table;
|
|
@@ -4514,16 +4522,16 @@
|
|
|
4514
4522
|
tr1 = element("tr");
|
|
4515
4523
|
td = element("td");
|
|
4516
4524
|
td.textContent = "No winners for the time being. Be one of them!";
|
|
4517
|
-
add_location(tr0, file,
|
|
4518
|
-
add_location(thead, file,
|
|
4525
|
+
add_location(tr0, file, 227, 12, 7512);
|
|
4526
|
+
add_location(thead, file, 226, 10, 7492);
|
|
4519
4527
|
attr_dev(td, "colspan", "3");
|
|
4520
|
-
add_location(td, file,
|
|
4521
|
-
add_location(tr1, file,
|
|
4522
|
-
add_location(tbody, file,
|
|
4528
|
+
add_location(td, file, 243, 14, 7993);
|
|
4529
|
+
add_location(tr1, file, 242, 12, 7974);
|
|
4530
|
+
add_location(tbody, file, 241, 10, 7954);
|
|
4523
4531
|
attr_dev(table, "class", "LeftTable");
|
|
4524
|
-
add_location(table, file,
|
|
4532
|
+
add_location(table, file, 225, 8, 7456);
|
|
4525
4533
|
attr_dev(div, "class", "TournamentsTable");
|
|
4526
|
-
add_location(div, file,
|
|
4534
|
+
add_location(div, file, 224, 6, 7417);
|
|
4527
4535
|
},
|
|
4528
4536
|
m: function mount(target, anchor) {
|
|
4529
4537
|
insert_dev(target, div, anchor);
|
|
@@ -4575,14 +4583,14 @@
|
|
|
4575
4583
|
block,
|
|
4576
4584
|
id: create_else_block_5.name,
|
|
4577
4585
|
type: "else",
|
|
4578
|
-
source: "(
|
|
4586
|
+
source: "(224:4) {:else}",
|
|
4579
4587
|
ctx
|
|
4580
4588
|
});
|
|
4581
4589
|
|
|
4582
4590
|
return block;
|
|
4583
4591
|
}
|
|
4584
4592
|
|
|
4585
|
-
// (
|
|
4593
|
+
// (201:2) {#if isMobile(userAgent) == true}
|
|
4586
4594
|
function create_if_block_9(ctx) {
|
|
4587
4595
|
let div3;
|
|
4588
4596
|
let div0;
|
|
@@ -4616,13 +4624,13 @@
|
|
|
4616
4624
|
if (if_block1) if_block1.c();
|
|
4617
4625
|
if_block1_anchor = empty();
|
|
4618
4626
|
attr_dev(div0, "class", "Leaderboard");
|
|
4619
|
-
add_location(div0, file,
|
|
4627
|
+
add_location(div0, file, 202, 6, 6445);
|
|
4620
4628
|
attr_dev(div1, "class", "CollapseButton");
|
|
4621
|
-
add_location(div1, file,
|
|
4629
|
+
add_location(div1, file, 204, 8, 6573);
|
|
4622
4630
|
attr_dev(div2, "class", "RightButton " + (isMobile(/*userAgent*/ ctx[8]) ? "MobileClass" : ""));
|
|
4623
|
-
add_location(div2, file,
|
|
4631
|
+
add_location(div2, file, 203, 6, 6494);
|
|
4624
4632
|
attr_dev(div3, "class", "LeaderboardContainer");
|
|
4625
|
-
add_location(div3, file,
|
|
4633
|
+
add_location(div3, file, 201, 4, 6404);
|
|
4626
4634
|
},
|
|
4627
4635
|
m: function mount(target, anchor) {
|
|
4628
4636
|
insert_dev(target, div3, anchor);
|
|
@@ -4677,14 +4685,14 @@
|
|
|
4677
4685
|
block,
|
|
4678
4686
|
id: create_if_block_9.name,
|
|
4679
4687
|
type: "if",
|
|
4680
|
-
source: "(
|
|
4688
|
+
source: "(201:2) {#if isMobile(userAgent) == true}",
|
|
4681
4689
|
ctx
|
|
4682
4690
|
});
|
|
4683
4691
|
|
|
4684
4692
|
return block;
|
|
4685
4693
|
}
|
|
4686
4694
|
|
|
4687
|
-
// (
|
|
4695
|
+
// (85:0) {#if data.length > 0 || firstRowData}
|
|
4688
4696
|
function create_if_block(ctx) {
|
|
4689
4697
|
let if_block_anchor;
|
|
4690
4698
|
|
|
@@ -4718,14 +4726,14 @@
|
|
|
4718
4726
|
block,
|
|
4719
4727
|
id: create_if_block.name,
|
|
4720
4728
|
type: "if",
|
|
4721
|
-
source: "(
|
|
4729
|
+
source: "(85:0) {#if data.length > 0 || firstRowData}",
|
|
4722
4730
|
ctx
|
|
4723
4731
|
});
|
|
4724
4732
|
|
|
4725
4733
|
return block;
|
|
4726
4734
|
}
|
|
4727
4735
|
|
|
4728
|
-
// (
|
|
4736
|
+
// (235:18) {:else}
|
|
4729
4737
|
function create_else_block_6(ctx) {
|
|
4730
4738
|
let p;
|
|
4731
4739
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -4736,7 +4744,7 @@
|
|
|
4736
4744
|
p = element("p");
|
|
4737
4745
|
t = text(t_value);
|
|
4738
4746
|
attr_dev(p, "data-sort", /*sort*/ ctx[7]);
|
|
4739
|
-
add_location(p, file,
|
|
4747
|
+
add_location(p, file, 235, 20, 7806);
|
|
4740
4748
|
},
|
|
4741
4749
|
m: function mount(target, anchor) {
|
|
4742
4750
|
insert_dev(target, p, anchor);
|
|
@@ -4758,14 +4766,14 @@
|
|
|
4758
4766
|
block,
|
|
4759
4767
|
id: create_else_block_6.name,
|
|
4760
4768
|
type: "else",
|
|
4761
|
-
source: "(
|
|
4769
|
+
source: "(235:18) {:else}",
|
|
4762
4770
|
ctx
|
|
4763
4771
|
});
|
|
4764
4772
|
|
|
4765
4773
|
return block;
|
|
4766
4774
|
}
|
|
4767
4775
|
|
|
4768
|
-
// (
|
|
4776
|
+
// (231:18) {#if sortable == 'true'}
|
|
4769
4777
|
function create_if_block_12(ctx) {
|
|
4770
4778
|
let button;
|
|
4771
4779
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -4782,7 +4790,7 @@
|
|
|
4782
4790
|
button = element("button");
|
|
4783
4791
|
t = text(t_value);
|
|
4784
4792
|
attr_dev(button, "data-sort", /*sort*/ ctx[7]);
|
|
4785
|
-
add_location(button, file,
|
|
4793
|
+
add_location(button, file, 231, 20, 7641);
|
|
4786
4794
|
},
|
|
4787
4795
|
m: function mount(target, anchor) {
|
|
4788
4796
|
insert_dev(target, button, anchor);
|
|
@@ -4812,14 +4820,14 @@
|
|
|
4812
4820
|
block,
|
|
4813
4821
|
id: create_if_block_12.name,
|
|
4814
4822
|
type: "if",
|
|
4815
|
-
source: "(
|
|
4823
|
+
source: "(231:18) {#if sortable == 'true'}",
|
|
4816
4824
|
ctx
|
|
4817
4825
|
});
|
|
4818
4826
|
|
|
4819
4827
|
return block;
|
|
4820
4828
|
}
|
|
4821
4829
|
|
|
4822
|
-
// (
|
|
4830
|
+
// (229:14) {#each columns as column}
|
|
4823
4831
|
function create_each_block_3(ctx) {
|
|
4824
4832
|
let th;
|
|
4825
4833
|
let t;
|
|
@@ -4837,7 +4845,7 @@
|
|
|
4837
4845
|
th = element("th");
|
|
4838
4846
|
if_block.c();
|
|
4839
4847
|
t = space();
|
|
4840
|
-
add_location(th, file,
|
|
4848
|
+
add_location(th, file, 229, 16, 7573);
|
|
4841
4849
|
},
|
|
4842
4850
|
m: function mount(target, anchor) {
|
|
4843
4851
|
insert_dev(target, th, anchor);
|
|
@@ -4867,14 +4875,14 @@
|
|
|
4867
4875
|
block,
|
|
4868
4876
|
id: create_each_block_3.name,
|
|
4869
4877
|
type: "each",
|
|
4870
|
-
source: "(
|
|
4878
|
+
source: "(229:14) {#each columns as column}",
|
|
4871
4879
|
ctx
|
|
4872
4880
|
});
|
|
4873
4881
|
|
|
4874
4882
|
return block;
|
|
4875
4883
|
}
|
|
4876
4884
|
|
|
4877
|
-
// (
|
|
4885
|
+
// (210:10) {:else}
|
|
4878
4886
|
function create_else_block_4(ctx) {
|
|
4879
4887
|
let svg;
|
|
4880
4888
|
let path;
|
|
@@ -4884,7 +4892,7 @@
|
|
|
4884
4892
|
svg = svg_element("svg");
|
|
4885
4893
|
path = svg_element("path");
|
|
4886
4894
|
attr_dev(path, "d", "M6 9l6 6 6-6");
|
|
4887
|
-
add_location(path, file,
|
|
4895
|
+
add_location(path, file, 211, 14, 7132);
|
|
4888
4896
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
4889
4897
|
attr_dev(svg, "width", "24");
|
|
4890
4898
|
attr_dev(svg, "height", "24");
|
|
@@ -4894,7 +4902,7 @@
|
|
|
4894
4902
|
attr_dev(svg, "stroke-width", "2");
|
|
4895
4903
|
attr_dev(svg, "stroke-linecap", "round");
|
|
4896
4904
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
4897
|
-
add_location(svg, file,
|
|
4905
|
+
add_location(svg, file, 210, 12, 6941);
|
|
4898
4906
|
},
|
|
4899
4907
|
m: function mount(target, anchor) {
|
|
4900
4908
|
insert_dev(target, svg, anchor);
|
|
@@ -4909,14 +4917,14 @@
|
|
|
4909
4917
|
block,
|
|
4910
4918
|
id: create_else_block_4.name,
|
|
4911
4919
|
type: "else",
|
|
4912
|
-
source: "(
|
|
4920
|
+
source: "(210:10) {:else}",
|
|
4913
4921
|
ctx
|
|
4914
4922
|
});
|
|
4915
4923
|
|
|
4916
4924
|
return block;
|
|
4917
4925
|
}
|
|
4918
4926
|
|
|
4919
|
-
// (
|
|
4927
|
+
// (206:10) {#if showTable}
|
|
4920
4928
|
function create_if_block_11(ctx) {
|
|
4921
4929
|
let svg;
|
|
4922
4930
|
let path;
|
|
@@ -4926,7 +4934,7 @@
|
|
|
4926
4934
|
svg = svg_element("svg");
|
|
4927
4935
|
path = svg_element("path");
|
|
4928
4936
|
attr_dev(path, "d", "M18 15l-6-6-6 6");
|
|
4929
|
-
add_location(path, file,
|
|
4937
|
+
add_location(path, file, 207, 14, 6864);
|
|
4930
4938
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
4931
4939
|
attr_dev(svg, "width", "24");
|
|
4932
4940
|
attr_dev(svg, "height", "24");
|
|
@@ -4936,7 +4944,7 @@
|
|
|
4936
4944
|
attr_dev(svg, "stroke-width", "2");
|
|
4937
4945
|
attr_dev(svg, "stroke-linecap", "round");
|
|
4938
4946
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
4939
|
-
add_location(svg, file,
|
|
4947
|
+
add_location(svg, file, 206, 12, 6673);
|
|
4940
4948
|
},
|
|
4941
4949
|
m: function mount(target, anchor) {
|
|
4942
4950
|
insert_dev(target, svg, anchor);
|
|
@@ -4951,14 +4959,14 @@
|
|
|
4951
4959
|
block,
|
|
4952
4960
|
id: create_if_block_11.name,
|
|
4953
4961
|
type: "if",
|
|
4954
|
-
source: "(
|
|
4962
|
+
source: "(206:10) {#if showTable}",
|
|
4955
4963
|
ctx
|
|
4956
4964
|
});
|
|
4957
4965
|
|
|
4958
4966
|
return block;
|
|
4959
4967
|
}
|
|
4960
4968
|
|
|
4961
|
-
// (
|
|
4969
|
+
// (219:4) {#if showTable}
|
|
4962
4970
|
function create_if_block_10(ctx) {
|
|
4963
4971
|
let div1;
|
|
4964
4972
|
let div0;
|
|
@@ -4970,11 +4978,11 @@
|
|
|
4970
4978
|
div0 = element("div");
|
|
4971
4979
|
p = element("p");
|
|
4972
4980
|
p.textContent = "No winners for the time being. Be one of them!";
|
|
4973
|
-
add_location(p, file,
|
|
4981
|
+
add_location(p, file, 220, 31, 7316);
|
|
4974
4982
|
attr_dev(div0, "class", "TableUser");
|
|
4975
|
-
add_location(div0, file,
|
|
4983
|
+
add_location(div0, file, 220, 8, 7293);
|
|
4976
4984
|
attr_dev(div1, "class", "TableContent");
|
|
4977
|
-
add_location(div1, file,
|
|
4985
|
+
add_location(div1, file, 219, 6, 7258);
|
|
4978
4986
|
},
|
|
4979
4987
|
m: function mount(target, anchor) {
|
|
4980
4988
|
insert_dev(target, div1, anchor);
|
|
@@ -4990,14 +4998,14 @@
|
|
|
4990
4998
|
block,
|
|
4991
4999
|
id: create_if_block_10.name,
|
|
4992
5000
|
type: "if",
|
|
4993
|
-
source: "(
|
|
5001
|
+
source: "(219:4) {#if showTable}",
|
|
4994
5002
|
ctx
|
|
4995
5003
|
});
|
|
4996
5004
|
|
|
4997
5005
|
return block;
|
|
4998
5006
|
}
|
|
4999
5007
|
|
|
5000
|
-
// (
|
|
5008
|
+
// (148:2) {:else}
|
|
5001
5009
|
function create_else_block_1(ctx) {
|
|
5002
5010
|
let div2;
|
|
5003
5011
|
let table;
|
|
@@ -5050,17 +5058,17 @@
|
|
|
5050
5058
|
div1 = element("div");
|
|
5051
5059
|
div0 = element("div");
|
|
5052
5060
|
if_block2.c();
|
|
5053
|
-
add_location(tr, file,
|
|
5054
|
-
add_location(thead, file,
|
|
5055
|
-
add_location(tbody, file,
|
|
5061
|
+
add_location(tr, file, 151, 10, 4591);
|
|
5062
|
+
add_location(thead, file, 150, 8, 4573);
|
|
5063
|
+
add_location(tbody, file, 165, 8, 5005);
|
|
5056
5064
|
attr_dev(table, "class", "LeftTable");
|
|
5057
|
-
add_location(table, file,
|
|
5065
|
+
add_location(table, file, 149, 6, 4539);
|
|
5058
5066
|
attr_dev(div0, "class", "CollapseButton");
|
|
5059
|
-
add_location(div0, file,
|
|
5067
|
+
add_location(div0, file, 185, 8, 5690);
|
|
5060
5068
|
attr_dev(div1, "class", "RightButton");
|
|
5061
|
-
add_location(div1, file,
|
|
5069
|
+
add_location(div1, file, 184, 6, 5656);
|
|
5062
5070
|
attr_dev(div2, "class", "TournamentsTable");
|
|
5063
|
-
add_location(div2, file,
|
|
5071
|
+
add_location(div2, file, 148, 4, 4502);
|
|
5064
5072
|
},
|
|
5065
5073
|
m: function mount(target, anchor) {
|
|
5066
5074
|
insert_dev(target, div2, anchor);
|
|
@@ -5163,14 +5171,14 @@
|
|
|
5163
5171
|
block,
|
|
5164
5172
|
id: create_else_block_1.name,
|
|
5165
5173
|
type: "else",
|
|
5166
|
-
source: "(
|
|
5174
|
+
source: "(148:2) {:else}",
|
|
5167
5175
|
ctx
|
|
5168
5176
|
});
|
|
5169
5177
|
|
|
5170
5178
|
return block;
|
|
5171
5179
|
}
|
|
5172
5180
|
|
|
5173
|
-
// (
|
|
5181
|
+
// (86:2) {#if isMobile(userAgent) == true}
|
|
5174
5182
|
function create_if_block_1(ctx) {
|
|
5175
5183
|
let div3;
|
|
5176
5184
|
let div0;
|
|
@@ -5208,13 +5216,13 @@
|
|
|
5208
5216
|
if (if_block2) if_block2.c();
|
|
5209
5217
|
if_block2_anchor = empty();
|
|
5210
5218
|
attr_dev(div0, "class", "Leaderboard");
|
|
5211
|
-
add_location(div0, file,
|
|
5219
|
+
add_location(div0, file, 87, 6, 2514);
|
|
5212
5220
|
attr_dev(div1, "class", "CollapseButton");
|
|
5213
|
-
add_location(div1, file,
|
|
5221
|
+
add_location(div1, file, 89, 8, 2642);
|
|
5214
5222
|
attr_dev(div2, "class", "RightButton " + (isMobile(/*userAgent*/ ctx[8]) ? "MobileClass" : ""));
|
|
5215
|
-
add_location(div2, file,
|
|
5223
|
+
add_location(div2, file, 88, 6, 2563);
|
|
5216
5224
|
attr_dev(div3, "class", "LeaderboardContainer");
|
|
5217
|
-
add_location(div3, file,
|
|
5225
|
+
add_location(div3, file, 86, 4, 2473);
|
|
5218
5226
|
},
|
|
5219
5227
|
m: function mount(target, anchor) {
|
|
5220
5228
|
insert_dev(target, div3, anchor);
|
|
@@ -5288,14 +5296,14 @@
|
|
|
5288
5296
|
block,
|
|
5289
5297
|
id: create_if_block_1.name,
|
|
5290
5298
|
type: "if",
|
|
5291
|
-
source: "(
|
|
5299
|
+
source: "(86:2) {#if isMobile(userAgent) == true}",
|
|
5292
5300
|
ctx
|
|
5293
5301
|
});
|
|
5294
5302
|
|
|
5295
5303
|
return block;
|
|
5296
5304
|
}
|
|
5297
5305
|
|
|
5298
|
-
// (
|
|
5306
|
+
// (159:16) {:else}
|
|
5299
5307
|
function create_else_block_3(ctx) {
|
|
5300
5308
|
let p;
|
|
5301
5309
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -5306,7 +5314,7 @@
|
|
|
5306
5314
|
p = element("p");
|
|
5307
5315
|
t = text(t_value);
|
|
5308
5316
|
attr_dev(p, "data-sort", /*sort*/ ctx[7]);
|
|
5309
|
-
add_location(p, file,
|
|
5317
|
+
add_location(p, file, 159, 18, 4869);
|
|
5310
5318
|
},
|
|
5311
5319
|
m: function mount(target, anchor) {
|
|
5312
5320
|
insert_dev(target, p, anchor);
|
|
@@ -5328,14 +5336,14 @@
|
|
|
5328
5336
|
block,
|
|
5329
5337
|
id: create_else_block_3.name,
|
|
5330
5338
|
type: "else",
|
|
5331
|
-
source: "(
|
|
5339
|
+
source: "(159:16) {:else}",
|
|
5332
5340
|
ctx
|
|
5333
5341
|
});
|
|
5334
5342
|
|
|
5335
5343
|
return block;
|
|
5336
5344
|
}
|
|
5337
5345
|
|
|
5338
|
-
// (
|
|
5346
|
+
// (155:16) {#if sortable == 'true'}
|
|
5339
5347
|
function create_if_block_8(ctx) {
|
|
5340
5348
|
let button;
|
|
5341
5349
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -5352,7 +5360,7 @@
|
|
|
5352
5360
|
button = element("button");
|
|
5353
5361
|
t = text(t_value);
|
|
5354
5362
|
attr_dev(button, "data-sort", /*sort*/ ctx[7]);
|
|
5355
|
-
add_location(button, file,
|
|
5363
|
+
add_location(button, file, 155, 18, 4712);
|
|
5356
5364
|
},
|
|
5357
5365
|
m: function mount(target, anchor) {
|
|
5358
5366
|
insert_dev(target, button, anchor);
|
|
@@ -5382,14 +5390,14 @@
|
|
|
5382
5390
|
block,
|
|
5383
5391
|
id: create_if_block_8.name,
|
|
5384
5392
|
type: "if",
|
|
5385
|
-
source: "(
|
|
5393
|
+
source: "(155:16) {#if sortable == 'true'}",
|
|
5386
5394
|
ctx
|
|
5387
5395
|
});
|
|
5388
5396
|
|
|
5389
5397
|
return block;
|
|
5390
5398
|
}
|
|
5391
5399
|
|
|
5392
|
-
// (
|
|
5400
|
+
// (153:12) {#each columns as column}
|
|
5393
5401
|
function create_each_block_2(ctx) {
|
|
5394
5402
|
let th;
|
|
5395
5403
|
let t;
|
|
@@ -5407,7 +5415,7 @@
|
|
|
5407
5415
|
th = element("th");
|
|
5408
5416
|
if_block.c();
|
|
5409
5417
|
t = space();
|
|
5410
|
-
add_location(th, file,
|
|
5418
|
+
add_location(th, file, 153, 14, 4648);
|
|
5411
5419
|
},
|
|
5412
5420
|
m: function mount(target, anchor) {
|
|
5413
5421
|
insert_dev(target, th, anchor);
|
|
@@ -5437,14 +5445,14 @@
|
|
|
5437
5445
|
block,
|
|
5438
5446
|
id: create_each_block_2.name,
|
|
5439
5447
|
type: "each",
|
|
5440
|
-
source: "(
|
|
5448
|
+
source: "(153:12) {#each columns as column}",
|
|
5441
5449
|
ctx
|
|
5442
5450
|
});
|
|
5443
5451
|
|
|
5444
5452
|
return block;
|
|
5445
5453
|
}
|
|
5446
5454
|
|
|
5447
|
-
// (
|
|
5455
|
+
// (167:10) {#if firstrow == 'true' && firstRowData}
|
|
5448
5456
|
function create_if_block_7(ctx) {
|
|
5449
5457
|
let tr;
|
|
5450
5458
|
let td0;
|
|
@@ -5478,15 +5486,15 @@
|
|
|
5478
5486
|
td2 = element("td");
|
|
5479
5487
|
div = element("div");
|
|
5480
5488
|
t5 = text(t5_value);
|
|
5481
|
-
add_location(em, file,
|
|
5482
|
-
add_location(strong, file,
|
|
5483
|
-
add_location(td0, file,
|
|
5484
|
-
add_location(td1, file,
|
|
5489
|
+
add_location(em, file, 168, 26, 5125);
|
|
5490
|
+
add_location(strong, file, 168, 18, 5117);
|
|
5491
|
+
add_location(td0, file, 168, 14, 5113);
|
|
5492
|
+
add_location(td1, file, 169, 14, 5187);
|
|
5485
5493
|
attr_dev(div, "class", "Flex");
|
|
5486
|
-
add_location(div, file,
|
|
5487
|
-
add_location(td2, file,
|
|
5494
|
+
add_location(div, file, 170, 18, 5234);
|
|
5495
|
+
add_location(td2, file, 170, 14, 5230);
|
|
5488
5496
|
attr_dev(tr, "class", "FirstRow");
|
|
5489
|
-
add_location(tr, file,
|
|
5497
|
+
add_location(tr, file, 167, 12, 5076);
|
|
5490
5498
|
},
|
|
5491
5499
|
m: function mount(target, anchor) {
|
|
5492
5500
|
insert_dev(target, tr, anchor);
|
|
@@ -5517,14 +5525,14 @@
|
|
|
5517
5525
|
block,
|
|
5518
5526
|
id: create_if_block_7.name,
|
|
5519
5527
|
type: "if",
|
|
5520
|
-
source: "(
|
|
5528
|
+
source: "(167:10) {#if firstrow == 'true' && firstRowData}",
|
|
5521
5529
|
ctx
|
|
5522
5530
|
});
|
|
5523
5531
|
|
|
5524
5532
|
return block;
|
|
5525
5533
|
}
|
|
5526
5534
|
|
|
5527
|
-
// (
|
|
5535
|
+
// (174:10) {#if showTable}
|
|
5528
5536
|
function create_if_block_6(ctx) {
|
|
5529
5537
|
let each_1_anchor;
|
|
5530
5538
|
let each_value_1 = /*display*/ ctx[6];
|
|
@@ -5585,14 +5593,14 @@
|
|
|
5585
5593
|
block,
|
|
5586
5594
|
id: create_if_block_6.name,
|
|
5587
5595
|
type: "if",
|
|
5588
|
-
source: "(
|
|
5596
|
+
source: "(174:10) {#if showTable}",
|
|
5589
5597
|
ctx
|
|
5590
5598
|
});
|
|
5591
5599
|
|
|
5592
5600
|
return block;
|
|
5593
5601
|
}
|
|
5594
5602
|
|
|
5595
|
-
// (
|
|
5603
|
+
// (175:12) {#each display as row}
|
|
5596
5604
|
function create_each_block_1(ctx) {
|
|
5597
5605
|
let tr;
|
|
5598
5606
|
let td0;
|
|
@@ -5628,14 +5636,14 @@
|
|
|
5628
5636
|
div = element("div");
|
|
5629
5637
|
t5 = text(t5_value);
|
|
5630
5638
|
t6 = space();
|
|
5631
|
-
add_location(em, file,
|
|
5632
|
-
add_location(strong, file,
|
|
5633
|
-
add_location(td0, file,
|
|
5634
|
-
add_location(td1, file,
|
|
5639
|
+
add_location(em, file, 176, 28, 5426);
|
|
5640
|
+
add_location(strong, file, 176, 20, 5418);
|
|
5641
|
+
add_location(td0, file, 176, 16, 5414);
|
|
5642
|
+
add_location(td1, file, 177, 16, 5481);
|
|
5635
5643
|
attr_dev(div, "class", "Flex");
|
|
5636
|
-
add_location(div, file,
|
|
5637
|
-
add_location(td2, file,
|
|
5638
|
-
add_location(tr, file,
|
|
5644
|
+
add_location(div, file, 178, 20, 5521);
|
|
5645
|
+
add_location(td2, file, 178, 16, 5517);
|
|
5646
|
+
add_location(tr, file, 175, 14, 5393);
|
|
5639
5647
|
},
|
|
5640
5648
|
m: function mount(target, anchor) {
|
|
5641
5649
|
insert_dev(target, tr, anchor);
|
|
@@ -5667,14 +5675,14 @@
|
|
|
5667
5675
|
block,
|
|
5668
5676
|
id: create_each_block_1.name,
|
|
5669
5677
|
type: "each",
|
|
5670
|
-
source: "(
|
|
5678
|
+
source: "(175:12) {#each display as row}",
|
|
5671
5679
|
ctx
|
|
5672
5680
|
});
|
|
5673
5681
|
|
|
5674
5682
|
return block;
|
|
5675
5683
|
}
|
|
5676
5684
|
|
|
5677
|
-
// (
|
|
5685
|
+
// (191:10) {:else}
|
|
5678
5686
|
function create_else_block_2(ctx) {
|
|
5679
5687
|
let svg;
|
|
5680
5688
|
let path;
|
|
@@ -5684,7 +5692,7 @@
|
|
|
5684
5692
|
svg = svg_element("svg");
|
|
5685
5693
|
path = svg_element("path");
|
|
5686
5694
|
attr_dev(path, "d", "M6 9l6 6 6-6");
|
|
5687
|
-
add_location(path, file,
|
|
5695
|
+
add_location(path, file, 192, 14, 6249);
|
|
5688
5696
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5689
5697
|
attr_dev(svg, "width", "24");
|
|
5690
5698
|
attr_dev(svg, "height", "24");
|
|
@@ -5694,7 +5702,7 @@
|
|
|
5694
5702
|
attr_dev(svg, "stroke-width", "2");
|
|
5695
5703
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5696
5704
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5697
|
-
add_location(svg, file,
|
|
5705
|
+
add_location(svg, file, 191, 12, 6058);
|
|
5698
5706
|
},
|
|
5699
5707
|
m: function mount(target, anchor) {
|
|
5700
5708
|
insert_dev(target, svg, anchor);
|
|
@@ -5709,14 +5717,14 @@
|
|
|
5709
5717
|
block,
|
|
5710
5718
|
id: create_else_block_2.name,
|
|
5711
5719
|
type: "else",
|
|
5712
|
-
source: "(
|
|
5720
|
+
source: "(191:10) {:else}",
|
|
5713
5721
|
ctx
|
|
5714
5722
|
});
|
|
5715
5723
|
|
|
5716
5724
|
return block;
|
|
5717
5725
|
}
|
|
5718
5726
|
|
|
5719
|
-
// (
|
|
5727
|
+
// (187:10) {#if showTable}
|
|
5720
5728
|
function create_if_block_5(ctx) {
|
|
5721
5729
|
let svg;
|
|
5722
5730
|
let path;
|
|
@@ -5726,7 +5734,7 @@
|
|
|
5726
5734
|
svg = svg_element("svg");
|
|
5727
5735
|
path = svg_element("path");
|
|
5728
5736
|
attr_dev(path, "d", "M18 15l-6-6-6 6");
|
|
5729
|
-
add_location(path, file,
|
|
5737
|
+
add_location(path, file, 188, 14, 5981);
|
|
5730
5738
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5731
5739
|
attr_dev(svg, "width", "24");
|
|
5732
5740
|
attr_dev(svg, "height", "24");
|
|
@@ -5736,7 +5744,7 @@
|
|
|
5736
5744
|
attr_dev(svg, "stroke-width", "2");
|
|
5737
5745
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5738
5746
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5739
|
-
add_location(svg, file,
|
|
5747
|
+
add_location(svg, file, 187, 12, 5790);
|
|
5740
5748
|
},
|
|
5741
5749
|
m: function mount(target, anchor) {
|
|
5742
5750
|
insert_dev(target, svg, anchor);
|
|
@@ -5751,14 +5759,14 @@
|
|
|
5751
5759
|
block,
|
|
5752
5760
|
id: create_if_block_5.name,
|
|
5753
5761
|
type: "if",
|
|
5754
|
-
source: "(
|
|
5762
|
+
source: "(187:10) {#if showTable}",
|
|
5755
5763
|
ctx
|
|
5756
5764
|
});
|
|
5757
5765
|
|
|
5758
5766
|
return block;
|
|
5759
5767
|
}
|
|
5760
5768
|
|
|
5761
|
-
// (
|
|
5769
|
+
// (95:10) {:else}
|
|
5762
5770
|
function create_else_block(ctx) {
|
|
5763
5771
|
let svg;
|
|
5764
5772
|
let path;
|
|
@@ -5768,7 +5776,7 @@
|
|
|
5768
5776
|
svg = svg_element("svg");
|
|
5769
5777
|
path = svg_element("path");
|
|
5770
5778
|
attr_dev(path, "d", "M6 9l6 6 6-6");
|
|
5771
|
-
add_location(path, file,
|
|
5779
|
+
add_location(path, file, 96, 14, 3201);
|
|
5772
5780
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5773
5781
|
attr_dev(svg, "width", "24");
|
|
5774
5782
|
attr_dev(svg, "height", "24");
|
|
@@ -5778,7 +5786,7 @@
|
|
|
5778
5786
|
attr_dev(svg, "stroke-width", "2");
|
|
5779
5787
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5780
5788
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5781
|
-
add_location(svg, file,
|
|
5789
|
+
add_location(svg, file, 95, 12, 3010);
|
|
5782
5790
|
},
|
|
5783
5791
|
m: function mount(target, anchor) {
|
|
5784
5792
|
insert_dev(target, svg, anchor);
|
|
@@ -5793,14 +5801,14 @@
|
|
|
5793
5801
|
block,
|
|
5794
5802
|
id: create_else_block.name,
|
|
5795
5803
|
type: "else",
|
|
5796
|
-
source: "(
|
|
5804
|
+
source: "(95:10) {:else}",
|
|
5797
5805
|
ctx
|
|
5798
5806
|
});
|
|
5799
5807
|
|
|
5800
5808
|
return block;
|
|
5801
5809
|
}
|
|
5802
5810
|
|
|
5803
|
-
// (
|
|
5811
|
+
// (91:10) {#if showTable}
|
|
5804
5812
|
function create_if_block_4(ctx) {
|
|
5805
5813
|
let svg;
|
|
5806
5814
|
let path;
|
|
@@ -5810,7 +5818,7 @@
|
|
|
5810
5818
|
svg = svg_element("svg");
|
|
5811
5819
|
path = svg_element("path");
|
|
5812
5820
|
attr_dev(path, "d", "M18 15l-6-6-6 6");
|
|
5813
|
-
add_location(path, file,
|
|
5821
|
+
add_location(path, file, 92, 14, 2933);
|
|
5814
5822
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5815
5823
|
attr_dev(svg, "width", "24");
|
|
5816
5824
|
attr_dev(svg, "height", "24");
|
|
@@ -5820,7 +5828,7 @@
|
|
|
5820
5828
|
attr_dev(svg, "stroke-width", "2");
|
|
5821
5829
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5822
5830
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5823
|
-
add_location(svg, file,
|
|
5831
|
+
add_location(svg, file, 91, 12, 2742);
|
|
5824
5832
|
},
|
|
5825
5833
|
m: function mount(target, anchor) {
|
|
5826
5834
|
insert_dev(target, svg, anchor);
|
|
@@ -5835,16 +5843,16 @@
|
|
|
5835
5843
|
block,
|
|
5836
5844
|
id: create_if_block_4.name,
|
|
5837
5845
|
type: "if",
|
|
5838
|
-
source: "(
|
|
5846
|
+
source: "(91:10) {#if showTable}",
|
|
5839
5847
|
ctx
|
|
5840
5848
|
});
|
|
5841
5849
|
|
|
5842
5850
|
return block;
|
|
5843
5851
|
}
|
|
5844
5852
|
|
|
5845
|
-
// (
|
|
5853
|
+
// (104:4) {#if firstrow == 'true' && firstRowData}
|
|
5846
5854
|
function create_if_block_3(ctx) {
|
|
5847
|
-
let
|
|
5855
|
+
let div3;
|
|
5848
5856
|
let div0;
|
|
5849
5857
|
let span0;
|
|
5850
5858
|
let t0_value = /*firstRowData*/ ctx[4].Position + "";
|
|
@@ -5853,112 +5861,64 @@
|
|
|
5853
5861
|
let t1_value = /*firstRowData*/ ctx[4].Name + "";
|
|
5854
5862
|
let t1;
|
|
5855
5863
|
let t2;
|
|
5856
|
-
let
|
|
5864
|
+
let div2;
|
|
5857
5865
|
let div1;
|
|
5858
5866
|
let p0;
|
|
5859
5867
|
let t4;
|
|
5860
5868
|
let p1;
|
|
5861
5869
|
let t5_value = /*firstRowData*/ ctx[4].Score + "";
|
|
5862
5870
|
let t5;
|
|
5863
|
-
let t6;
|
|
5864
|
-
let div2;
|
|
5865
|
-
let p2;
|
|
5866
|
-
let t8;
|
|
5867
|
-
let p3;
|
|
5868
|
-
let t9_value = /*firstRowData*/ ctx[4].Score + "";
|
|
5869
|
-
let t9;
|
|
5870
|
-
let t10;
|
|
5871
|
-
let div3;
|
|
5872
|
-
let p4;
|
|
5873
|
-
let t12;
|
|
5874
|
-
let p5;
|
|
5875
|
-
let t13_value = /*firstRowData*/ ctx[4].Score + "";
|
|
5876
|
-
let t13;
|
|
5877
5871
|
|
|
5878
5872
|
const block = {
|
|
5879
5873
|
c: function create() {
|
|
5880
|
-
|
|
5874
|
+
div3 = element("div");
|
|
5881
5875
|
div0 = element("div");
|
|
5882
5876
|
span0 = element("span");
|
|
5883
5877
|
t0 = text(t0_value);
|
|
5884
5878
|
span1 = element("span");
|
|
5885
5879
|
t1 = text(t1_value);
|
|
5886
5880
|
t2 = space();
|
|
5887
|
-
|
|
5881
|
+
div2 = element("div");
|
|
5888
5882
|
div1 = element("div");
|
|
5889
5883
|
p0 = element("p");
|
|
5890
5884
|
p0.textContent = "Score";
|
|
5891
5885
|
t4 = space();
|
|
5892
5886
|
p1 = element("p");
|
|
5893
5887
|
t5 = text(t5_value);
|
|
5894
|
-
|
|
5895
|
-
|
|
5896
|
-
p2 = element("p");
|
|
5897
|
-
p2.textContent = "Bet Counts";
|
|
5898
|
-
t8 = space();
|
|
5899
|
-
p3 = element("p");
|
|
5900
|
-
t9 = text(t9_value);
|
|
5901
|
-
t10 = space();
|
|
5902
|
-
div3 = element("div");
|
|
5903
|
-
p4 = element("p");
|
|
5904
|
-
p4.textContent = "Qualified";
|
|
5905
|
-
t12 = space();
|
|
5906
|
-
p5 = element("p");
|
|
5907
|
-
t13 = text(t13_value);
|
|
5908
|
-
add_location(span0, file, 104, 31, 3381);
|
|
5909
|
-
add_location(span1, file, 104, 67, 3417);
|
|
5888
|
+
add_location(span0, file, 105, 31, 3431);
|
|
5889
|
+
add_location(span1, file, 105, 67, 3467);
|
|
5910
5890
|
attr_dev(div0, "class", "TableUser");
|
|
5911
|
-
add_location(div0, file,
|
|
5912
|
-
add_location(p0, file,
|
|
5913
|
-
add_location(p1, file,
|
|
5914
|
-
add_location(div1, file,
|
|
5915
|
-
|
|
5916
|
-
add_location(
|
|
5917
|
-
|
|
5918
|
-
add_location(
|
|
5919
|
-
add_location(p5, file, 117, 12, 3754);
|
|
5920
|
-
add_location(div3, file, 115, 10, 3707);
|
|
5921
|
-
attr_dev(div4, "class", "TableUserDetails");
|
|
5922
|
-
add_location(div4, file, 106, 8, 3465);
|
|
5923
|
-
attr_dev(div5, "class", "TableContent TableContentFirstRow");
|
|
5924
|
-
add_location(div5, file, 103, 6, 3302);
|
|
5891
|
+
add_location(div0, file, 105, 8, 3408);
|
|
5892
|
+
add_location(p0, file, 109, 12, 3574);
|
|
5893
|
+
add_location(p1, file, 110, 12, 3599);
|
|
5894
|
+
add_location(div1, file, 108, 10, 3556);
|
|
5895
|
+
attr_dev(div2, "class", "TableUserDetails");
|
|
5896
|
+
add_location(div2, file, 107, 8, 3515);
|
|
5897
|
+
attr_dev(div3, "class", "TableContent TableContentFirstRow");
|
|
5898
|
+
add_location(div3, file, 104, 6, 3352);
|
|
5925
5899
|
},
|
|
5926
5900
|
m: function mount(target, anchor) {
|
|
5927
|
-
insert_dev(target,
|
|
5928
|
-
append_dev(
|
|
5901
|
+
insert_dev(target, div3, anchor);
|
|
5902
|
+
append_dev(div3, div0);
|
|
5929
5903
|
append_dev(div0, span0);
|
|
5930
5904
|
append_dev(span0, t0);
|
|
5931
5905
|
append_dev(div0, span1);
|
|
5932
5906
|
append_dev(span1, t1);
|
|
5933
|
-
append_dev(
|
|
5934
|
-
append_dev(
|
|
5935
|
-
append_dev(
|
|
5907
|
+
append_dev(div3, t2);
|
|
5908
|
+
append_dev(div3, div2);
|
|
5909
|
+
append_dev(div2, div1);
|
|
5936
5910
|
append_dev(div1, p0);
|
|
5937
5911
|
append_dev(div1, t4);
|
|
5938
5912
|
append_dev(div1, p1);
|
|
5939
5913
|
append_dev(p1, t5);
|
|
5940
|
-
append_dev(div4, t6);
|
|
5941
|
-
append_dev(div4, div2);
|
|
5942
|
-
append_dev(div2, p2);
|
|
5943
|
-
append_dev(div2, t8);
|
|
5944
|
-
append_dev(div2, p3);
|
|
5945
|
-
append_dev(p3, t9);
|
|
5946
|
-
append_dev(div4, t10);
|
|
5947
|
-
append_dev(div4, div3);
|
|
5948
|
-
append_dev(div3, p4);
|
|
5949
|
-
append_dev(div3, t12);
|
|
5950
|
-
append_dev(div3, p5);
|
|
5951
|
-
append_dev(p5, t13);
|
|
5952
5914
|
},
|
|
5953
5915
|
p: function update(ctx, dirty) {
|
|
5954
5916
|
if (dirty[0] & /*firstRowData*/ 16 && t0_value !== (t0_value = /*firstRowData*/ ctx[4].Position + "")) set_data_dev(t0, t0_value);
|
|
5955
5917
|
if (dirty[0] & /*firstRowData*/ 16 && t1_value !== (t1_value = /*firstRowData*/ ctx[4].Name + "")) set_data_dev(t1, t1_value);
|
|
5956
5918
|
if (dirty[0] & /*firstRowData*/ 16 && t5_value !== (t5_value = /*firstRowData*/ ctx[4].Score + "")) set_data_dev(t5, t5_value);
|
|
5957
|
-
if (dirty[0] & /*firstRowData*/ 16 && t9_value !== (t9_value = /*firstRowData*/ ctx[4].Score + "")) set_data_dev(t9, t9_value);
|
|
5958
|
-
if (dirty[0] & /*firstRowData*/ 16 && t13_value !== (t13_value = /*firstRowData*/ ctx[4].Score + "")) set_data_dev(t13, t13_value);
|
|
5959
5919
|
},
|
|
5960
5920
|
d: function destroy(detaching) {
|
|
5961
|
-
if (detaching) detach_dev(
|
|
5921
|
+
if (detaching) detach_dev(div3);
|
|
5962
5922
|
}
|
|
5963
5923
|
};
|
|
5964
5924
|
|
|
@@ -5966,14 +5926,14 @@
|
|
|
5966
5926
|
block,
|
|
5967
5927
|
id: create_if_block_3.name,
|
|
5968
5928
|
type: "if",
|
|
5969
|
-
source: "(
|
|
5929
|
+
source: "(104:4) {#if firstrow == 'true' && firstRowData}",
|
|
5970
5930
|
ctx
|
|
5971
5931
|
});
|
|
5972
5932
|
|
|
5973
5933
|
return block;
|
|
5974
5934
|
}
|
|
5975
5935
|
|
|
5976
|
-
// (
|
|
5936
|
+
// (125:4) {#if showTable}
|
|
5977
5937
|
function create_if_block_2(ctx) {
|
|
5978
5938
|
let each_1_anchor;
|
|
5979
5939
|
let each_value = /*display*/ ctx[6];
|
|
@@ -6034,16 +5994,16 @@
|
|
|
6034
5994
|
block,
|
|
6035
5995
|
id: create_if_block_2.name,
|
|
6036
5996
|
type: "if",
|
|
6037
|
-
source: "(
|
|
5997
|
+
source: "(125:4) {#if showTable}",
|
|
6038
5998
|
ctx
|
|
6039
5999
|
});
|
|
6040
6000
|
|
|
6041
6001
|
return block;
|
|
6042
6002
|
}
|
|
6043
6003
|
|
|
6044
|
-
// (
|
|
6004
|
+
// (126:6) {#each display as row}
|
|
6045
6005
|
function create_each_block(ctx) {
|
|
6046
|
-
let
|
|
6006
|
+
let div3;
|
|
6047
6007
|
let div0;
|
|
6048
6008
|
let span0;
|
|
6049
6009
|
let t0_value = /*row*/ ctx[23].Position + "";
|
|
@@ -6052,7 +6012,7 @@
|
|
|
6052
6012
|
let t1_value = /*row*/ ctx[23].Name + "";
|
|
6053
6013
|
let t1;
|
|
6054
6014
|
let t2;
|
|
6055
|
-
let
|
|
6015
|
+
let div2;
|
|
6056
6016
|
let div1;
|
|
6057
6017
|
let p0;
|
|
6058
6018
|
let t4;
|
|
@@ -6060,31 +6020,17 @@
|
|
|
6060
6020
|
let t5_value = /*row*/ ctx[23].Score + "";
|
|
6061
6021
|
let t5;
|
|
6062
6022
|
let t6;
|
|
6063
|
-
let div2;
|
|
6064
|
-
let p2;
|
|
6065
|
-
let t8;
|
|
6066
|
-
let p3;
|
|
6067
|
-
let t9_value = /*row*/ ctx[23].Score + "";
|
|
6068
|
-
let t9;
|
|
6069
|
-
let t10;
|
|
6070
|
-
let div3;
|
|
6071
|
-
let p4;
|
|
6072
|
-
let t12;
|
|
6073
|
-
let p5;
|
|
6074
|
-
let t13_value = /*row*/ ctx[23].Score + "";
|
|
6075
|
-
let t13;
|
|
6076
|
-
let t14;
|
|
6077
6023
|
|
|
6078
6024
|
const block = {
|
|
6079
6025
|
c: function create() {
|
|
6080
|
-
|
|
6026
|
+
div3 = element("div");
|
|
6081
6027
|
div0 = element("div");
|
|
6082
6028
|
span0 = element("span");
|
|
6083
6029
|
t0 = text(t0_value);
|
|
6084
6030
|
span1 = element("span");
|
|
6085
6031
|
t1 = text(t1_value);
|
|
6086
6032
|
t2 = space();
|
|
6087
|
-
|
|
6033
|
+
div2 = element("div");
|
|
6088
6034
|
div1 = element("div");
|
|
6089
6035
|
p0 = element("p");
|
|
6090
6036
|
p0.textContent = "Score";
|
|
@@ -6092,75 +6038,41 @@
|
|
|
6092
6038
|
p1 = element("p");
|
|
6093
6039
|
t5 = text(t5_value);
|
|
6094
6040
|
t6 = space();
|
|
6095
|
-
|
|
6096
|
-
|
|
6097
|
-
p2.textContent = "Bet Counts";
|
|
6098
|
-
t8 = space();
|
|
6099
|
-
p3 = element("p");
|
|
6100
|
-
t9 = text(t9_value);
|
|
6101
|
-
t10 = space();
|
|
6102
|
-
div3 = element("div");
|
|
6103
|
-
p4 = element("p");
|
|
6104
|
-
p4.textContent = "Qualified";
|
|
6105
|
-
t12 = space();
|
|
6106
|
-
p5 = element("p");
|
|
6107
|
-
t13 = text(t13_value);
|
|
6108
|
-
t14 = space();
|
|
6109
|
-
add_location(span0, file, 126, 33, 3955);
|
|
6110
|
-
add_location(span1, file, 126, 60, 3982);
|
|
6041
|
+
add_location(span0, file, 127, 33, 4014);
|
|
6042
|
+
add_location(span1, file, 127, 60, 4041);
|
|
6111
6043
|
attr_dev(div0, "class", "TableUser");
|
|
6112
|
-
add_location(div0, file,
|
|
6113
|
-
add_location(p0, file,
|
|
6114
|
-
add_location(p1, file,
|
|
6115
|
-
add_location(div1, file,
|
|
6116
|
-
|
|
6117
|
-
add_location(
|
|
6118
|
-
|
|
6119
|
-
add_location(
|
|
6120
|
-
add_location(p5, file, 139, 14, 4316);
|
|
6121
|
-
add_location(div3, file, 137, 12, 4265);
|
|
6122
|
-
attr_dev(div4, "class", "TableUserDetails");
|
|
6123
|
-
add_location(div4, file, 128, 10, 4023);
|
|
6124
|
-
attr_dev(div5, "class", "TableContent");
|
|
6125
|
-
add_location(div5, file, 125, 8, 3895);
|
|
6044
|
+
add_location(div0, file, 127, 10, 3991);
|
|
6045
|
+
add_location(p0, file, 131, 14, 4145);
|
|
6046
|
+
add_location(p1, file, 132, 14, 4172);
|
|
6047
|
+
add_location(div1, file, 130, 12, 4125);
|
|
6048
|
+
attr_dev(div2, "class", "TableUserDetails");
|
|
6049
|
+
add_location(div2, file, 129, 10, 4082);
|
|
6050
|
+
attr_dev(div3, "class", "TableContent");
|
|
6051
|
+
add_location(div3, file, 126, 8, 3954);
|
|
6126
6052
|
},
|
|
6127
6053
|
m: function mount(target, anchor) {
|
|
6128
|
-
insert_dev(target,
|
|
6129
|
-
append_dev(
|
|
6054
|
+
insert_dev(target, div3, anchor);
|
|
6055
|
+
append_dev(div3, div0);
|
|
6130
6056
|
append_dev(div0, span0);
|
|
6131
6057
|
append_dev(span0, t0);
|
|
6132
6058
|
append_dev(div0, span1);
|
|
6133
6059
|
append_dev(span1, t1);
|
|
6134
|
-
append_dev(
|
|
6135
|
-
append_dev(
|
|
6136
|
-
append_dev(
|
|
6060
|
+
append_dev(div3, t2);
|
|
6061
|
+
append_dev(div3, div2);
|
|
6062
|
+
append_dev(div2, div1);
|
|
6137
6063
|
append_dev(div1, p0);
|
|
6138
6064
|
append_dev(div1, t4);
|
|
6139
6065
|
append_dev(div1, p1);
|
|
6140
6066
|
append_dev(p1, t5);
|
|
6141
|
-
append_dev(
|
|
6142
|
-
append_dev(div4, div2);
|
|
6143
|
-
append_dev(div2, p2);
|
|
6144
|
-
append_dev(div2, t8);
|
|
6145
|
-
append_dev(div2, p3);
|
|
6146
|
-
append_dev(p3, t9);
|
|
6147
|
-
append_dev(div4, t10);
|
|
6148
|
-
append_dev(div4, div3);
|
|
6149
|
-
append_dev(div3, p4);
|
|
6150
|
-
append_dev(div3, t12);
|
|
6151
|
-
append_dev(div3, p5);
|
|
6152
|
-
append_dev(p5, t13);
|
|
6153
|
-
append_dev(div5, t14);
|
|
6067
|
+
append_dev(div3, t6);
|
|
6154
6068
|
},
|
|
6155
6069
|
p: function update(ctx, dirty) {
|
|
6156
6070
|
if (dirty[0] & /*display*/ 64 && t0_value !== (t0_value = /*row*/ ctx[23].Position + "")) set_data_dev(t0, t0_value);
|
|
6157
6071
|
if (dirty[0] & /*display*/ 64 && t1_value !== (t1_value = /*row*/ ctx[23].Name + "")) set_data_dev(t1, t1_value);
|
|
6158
6072
|
if (dirty[0] & /*display*/ 64 && t5_value !== (t5_value = /*row*/ ctx[23].Score + "")) set_data_dev(t5, t5_value);
|
|
6159
|
-
if (dirty[0] & /*display*/ 64 && t9_value !== (t9_value = /*row*/ ctx[23].Score + "")) set_data_dev(t9, t9_value);
|
|
6160
|
-
if (dirty[0] & /*display*/ 64 && t13_value !== (t13_value = /*row*/ ctx[23].Score + "")) set_data_dev(t13, t13_value);
|
|
6161
6073
|
},
|
|
6162
6074
|
d: function destroy(detaching) {
|
|
6163
|
-
if (detaching) detach_dev(
|
|
6075
|
+
if (detaching) detach_dev(div3);
|
|
6164
6076
|
}
|
|
6165
6077
|
};
|
|
6166
6078
|
|
|
@@ -6168,7 +6080,7 @@
|
|
|
6168
6080
|
block,
|
|
6169
6081
|
id: create_each_block.name,
|
|
6170
6082
|
type: "each",
|
|
6171
|
-
source: "(
|
|
6083
|
+
source: "(126:6) {#each display as row}",
|
|
6172
6084
|
ctx
|
|
6173
6085
|
});
|
|
6174
6086
|
|
|
@@ -6325,6 +6237,7 @@
|
|
|
6325
6237
|
|
|
6326
6238
|
onMount(() => {
|
|
6327
6239
|
window.addEventListener("message", messageHandler, false);
|
|
6240
|
+
console.log("first row data ", firstRowData);
|
|
6328
6241
|
|
|
6329
6242
|
return () => {
|
|
6330
6243
|
window.removeEventListener("message", messageHandler);
|
|
@@ -6334,7 +6247,7 @@
|
|
|
6334
6247
|
const writable_props = ["sortable", "firstrow"];
|
|
6335
6248
|
|
|
6336
6249
|
Object.keys($$props).forEach(key => {
|
|
6337
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$")
|
|
6250
|
+
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console_1.warn(`<undefined> was created with unknown prop '${key}'`);
|
|
6338
6251
|
});
|
|
6339
6252
|
|
|
6340
6253
|
const click_handler = () => collapseTable();
|