@everymatrix/casino-tournaments-table 0.0.88 → 0.0.92
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,12 +175,6 @@
|
|
|
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);
|
|
184
178
|
function mount_component(component, target, anchor, customElement) {
|
|
185
179
|
const { fragment, on_mount, on_destroy, after_update } = component.$$;
|
|
186
180
|
fragment && fragment.m(target, anchor);
|
|
@@ -384,17 +378,17 @@
|
|
|
384
378
|
}
|
|
385
379
|
}
|
|
386
380
|
|
|
387
|
-
var global
|
|
381
|
+
var global =
|
|
388
382
|
(typeof globalThis !== 'undefined' && globalThis) ||
|
|
389
383
|
(typeof self !== 'undefined' && self) ||
|
|
390
|
-
(typeof global
|
|
384
|
+
(typeof global !== 'undefined' && global);
|
|
391
385
|
|
|
392
386
|
var support = {
|
|
393
|
-
searchParams: 'URLSearchParams' in global
|
|
394
|
-
iterable: 'Symbol' in global
|
|
387
|
+
searchParams: 'URLSearchParams' in global,
|
|
388
|
+
iterable: 'Symbol' in global && 'iterator' in Symbol,
|
|
395
389
|
blob:
|
|
396
|
-
'FileReader' in global
|
|
397
|
-
'Blob' in global
|
|
390
|
+
'FileReader' in global &&
|
|
391
|
+
'Blob' in global &&
|
|
398
392
|
(function() {
|
|
399
393
|
try {
|
|
400
394
|
new Blob();
|
|
@@ -403,8 +397,8 @@
|
|
|
403
397
|
return false
|
|
404
398
|
}
|
|
405
399
|
})(),
|
|
406
|
-
formData: 'FormData' in global
|
|
407
|
-
arrayBuffer: 'ArrayBuffer' in global
|
|
400
|
+
formData: 'FormData' in global,
|
|
401
|
+
arrayBuffer: 'ArrayBuffer' in global
|
|
408
402
|
};
|
|
409
403
|
|
|
410
404
|
function isDataView(obj) {
|
|
@@ -869,7 +863,7 @@
|
|
|
869
863
|
return new Response(null, {status: status, headers: {location: url}})
|
|
870
864
|
};
|
|
871
865
|
|
|
872
|
-
var DOMException = global
|
|
866
|
+
var DOMException = global.DOMException;
|
|
873
867
|
try {
|
|
874
868
|
new DOMException();
|
|
875
869
|
} catch (err) {
|
|
@@ -930,7 +924,7 @@
|
|
|
930
924
|
|
|
931
925
|
function fixUrl(url) {
|
|
932
926
|
try {
|
|
933
|
-
return url === '' && global
|
|
927
|
+
return url === '' && global.location.href ? global.location.href : url
|
|
934
928
|
} catch (e) {
|
|
935
929
|
return url
|
|
936
930
|
}
|
|
@@ -983,11 +977,11 @@
|
|
|
983
977
|
|
|
984
978
|
fetch.polyfill = true;
|
|
985
979
|
|
|
986
|
-
if (!global
|
|
987
|
-
global
|
|
988
|
-
global
|
|
989
|
-
global
|
|
990
|
-
global
|
|
980
|
+
if (!global.fetch) {
|
|
981
|
+
global.fetch = fetch;
|
|
982
|
+
global.Headers = Headers;
|
|
983
|
+
global.Request = Request;
|
|
984
|
+
global.Response = Response;
|
|
991
985
|
}
|
|
992
986
|
|
|
993
987
|
// the whatwg-fetch polyfill installs the fetch() function
|
|
@@ -4460,8 +4454,6 @@
|
|
|
4460
4454
|
};
|
|
4461
4455
|
|
|
4462
4456
|
/* src/CasinoTournamentsTable.svelte generated by Svelte v3.37.0 */
|
|
4463
|
-
|
|
4464
|
-
const { console: console_1 } = globals;
|
|
4465
4457
|
const file = "src/CasinoTournamentsTable.svelte";
|
|
4466
4458
|
|
|
4467
4459
|
function get_each_context_3(ctx, list, i) {
|
|
@@ -4488,7 +4480,7 @@
|
|
|
4488
4480
|
return child_ctx;
|
|
4489
4481
|
}
|
|
4490
4482
|
|
|
4491
|
-
// (
|
|
4483
|
+
// (223:4) {:else}
|
|
4492
4484
|
function create_else_block_5(ctx) {
|
|
4493
4485
|
let div;
|
|
4494
4486
|
let table;
|
|
@@ -4522,16 +4514,16 @@
|
|
|
4522
4514
|
tr1 = element("tr");
|
|
4523
4515
|
td = element("td");
|
|
4524
4516
|
td.textContent = "No winners for the time being. Be one of them!";
|
|
4525
|
-
add_location(tr0, file,
|
|
4526
|
-
add_location(thead, file,
|
|
4517
|
+
add_location(tr0, file, 226, 12, 7462);
|
|
4518
|
+
add_location(thead, file, 225, 10, 7442);
|
|
4527
4519
|
attr_dev(td, "colspan", "3");
|
|
4528
|
-
add_location(td, file,
|
|
4529
|
-
add_location(tr1, file,
|
|
4530
|
-
add_location(tbody, file,
|
|
4520
|
+
add_location(td, file, 242, 14, 7943);
|
|
4521
|
+
add_location(tr1, file, 241, 12, 7924);
|
|
4522
|
+
add_location(tbody, file, 240, 10, 7904);
|
|
4531
4523
|
attr_dev(table, "class", "LeftTable");
|
|
4532
|
-
add_location(table, file,
|
|
4524
|
+
add_location(table, file, 224, 8, 7406);
|
|
4533
4525
|
attr_dev(div, "class", "TournamentsTable");
|
|
4534
|
-
add_location(div, file,
|
|
4526
|
+
add_location(div, file, 223, 6, 7367);
|
|
4535
4527
|
},
|
|
4536
4528
|
m: function mount(target, anchor) {
|
|
4537
4529
|
insert_dev(target, div, anchor);
|
|
@@ -4583,14 +4575,14 @@
|
|
|
4583
4575
|
block,
|
|
4584
4576
|
id: create_else_block_5.name,
|
|
4585
4577
|
type: "else",
|
|
4586
|
-
source: "(
|
|
4578
|
+
source: "(223:4) {:else}",
|
|
4587
4579
|
ctx
|
|
4588
4580
|
});
|
|
4589
4581
|
|
|
4590
4582
|
return block;
|
|
4591
4583
|
}
|
|
4592
4584
|
|
|
4593
|
-
// (
|
|
4585
|
+
// (200:2) {#if isMobile(userAgent) == true}
|
|
4594
4586
|
function create_if_block_9(ctx) {
|
|
4595
4587
|
let div3;
|
|
4596
4588
|
let div0;
|
|
@@ -4624,13 +4616,13 @@
|
|
|
4624
4616
|
if (if_block1) if_block1.c();
|
|
4625
4617
|
if_block1_anchor = empty();
|
|
4626
4618
|
attr_dev(div0, "class", "Leaderboard");
|
|
4627
|
-
add_location(div0, file,
|
|
4619
|
+
add_location(div0, file, 201, 6, 6395);
|
|
4628
4620
|
attr_dev(div1, "class", "CollapseButton");
|
|
4629
|
-
add_location(div1, file,
|
|
4621
|
+
add_location(div1, file, 203, 8, 6523);
|
|
4630
4622
|
attr_dev(div2, "class", "RightButton " + (isMobile(/*userAgent*/ ctx[8]) ? "MobileClass" : ""));
|
|
4631
|
-
add_location(div2, file,
|
|
4623
|
+
add_location(div2, file, 202, 6, 6444);
|
|
4632
4624
|
attr_dev(div3, "class", "LeaderboardContainer");
|
|
4633
|
-
add_location(div3, file,
|
|
4625
|
+
add_location(div3, file, 200, 4, 6354);
|
|
4634
4626
|
},
|
|
4635
4627
|
m: function mount(target, anchor) {
|
|
4636
4628
|
insert_dev(target, div3, anchor);
|
|
@@ -4685,14 +4677,14 @@
|
|
|
4685
4677
|
block,
|
|
4686
4678
|
id: create_if_block_9.name,
|
|
4687
4679
|
type: "if",
|
|
4688
|
-
source: "(
|
|
4680
|
+
source: "(200:2) {#if isMobile(userAgent) == true}",
|
|
4689
4681
|
ctx
|
|
4690
4682
|
});
|
|
4691
4683
|
|
|
4692
4684
|
return block;
|
|
4693
4685
|
}
|
|
4694
4686
|
|
|
4695
|
-
// (
|
|
4687
|
+
// (84:0) {#if data.length > 0 || firstRowData}
|
|
4696
4688
|
function create_if_block(ctx) {
|
|
4697
4689
|
let if_block_anchor;
|
|
4698
4690
|
|
|
@@ -4726,14 +4718,14 @@
|
|
|
4726
4718
|
block,
|
|
4727
4719
|
id: create_if_block.name,
|
|
4728
4720
|
type: "if",
|
|
4729
|
-
source: "(
|
|
4721
|
+
source: "(84:0) {#if data.length > 0 || firstRowData}",
|
|
4730
4722
|
ctx
|
|
4731
4723
|
});
|
|
4732
4724
|
|
|
4733
4725
|
return block;
|
|
4734
4726
|
}
|
|
4735
4727
|
|
|
4736
|
-
// (
|
|
4728
|
+
// (234:18) {:else}
|
|
4737
4729
|
function create_else_block_6(ctx) {
|
|
4738
4730
|
let p;
|
|
4739
4731
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -4744,7 +4736,7 @@
|
|
|
4744
4736
|
p = element("p");
|
|
4745
4737
|
t = text(t_value);
|
|
4746
4738
|
attr_dev(p, "data-sort", /*sort*/ ctx[7]);
|
|
4747
|
-
add_location(p, file,
|
|
4739
|
+
add_location(p, file, 234, 20, 7756);
|
|
4748
4740
|
},
|
|
4749
4741
|
m: function mount(target, anchor) {
|
|
4750
4742
|
insert_dev(target, p, anchor);
|
|
@@ -4766,14 +4758,14 @@
|
|
|
4766
4758
|
block,
|
|
4767
4759
|
id: create_else_block_6.name,
|
|
4768
4760
|
type: "else",
|
|
4769
|
-
source: "(
|
|
4761
|
+
source: "(234:18) {:else}",
|
|
4770
4762
|
ctx
|
|
4771
4763
|
});
|
|
4772
4764
|
|
|
4773
4765
|
return block;
|
|
4774
4766
|
}
|
|
4775
4767
|
|
|
4776
|
-
// (
|
|
4768
|
+
// (230:18) {#if sortable == 'true'}
|
|
4777
4769
|
function create_if_block_12(ctx) {
|
|
4778
4770
|
let button;
|
|
4779
4771
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -4790,7 +4782,7 @@
|
|
|
4790
4782
|
button = element("button");
|
|
4791
4783
|
t = text(t_value);
|
|
4792
4784
|
attr_dev(button, "data-sort", /*sort*/ ctx[7]);
|
|
4793
|
-
add_location(button, file,
|
|
4785
|
+
add_location(button, file, 230, 20, 7591);
|
|
4794
4786
|
},
|
|
4795
4787
|
m: function mount(target, anchor) {
|
|
4796
4788
|
insert_dev(target, button, anchor);
|
|
@@ -4820,14 +4812,14 @@
|
|
|
4820
4812
|
block,
|
|
4821
4813
|
id: create_if_block_12.name,
|
|
4822
4814
|
type: "if",
|
|
4823
|
-
source: "(
|
|
4815
|
+
source: "(230:18) {#if sortable == 'true'}",
|
|
4824
4816
|
ctx
|
|
4825
4817
|
});
|
|
4826
4818
|
|
|
4827
4819
|
return block;
|
|
4828
4820
|
}
|
|
4829
4821
|
|
|
4830
|
-
// (
|
|
4822
|
+
// (228:14) {#each columns as column}
|
|
4831
4823
|
function create_each_block_3(ctx) {
|
|
4832
4824
|
let th;
|
|
4833
4825
|
let t;
|
|
@@ -4845,7 +4837,7 @@
|
|
|
4845
4837
|
th = element("th");
|
|
4846
4838
|
if_block.c();
|
|
4847
4839
|
t = space();
|
|
4848
|
-
add_location(th, file,
|
|
4840
|
+
add_location(th, file, 228, 16, 7523);
|
|
4849
4841
|
},
|
|
4850
4842
|
m: function mount(target, anchor) {
|
|
4851
4843
|
insert_dev(target, th, anchor);
|
|
@@ -4875,14 +4867,14 @@
|
|
|
4875
4867
|
block,
|
|
4876
4868
|
id: create_each_block_3.name,
|
|
4877
4869
|
type: "each",
|
|
4878
|
-
source: "(
|
|
4870
|
+
source: "(228:14) {#each columns as column}",
|
|
4879
4871
|
ctx
|
|
4880
4872
|
});
|
|
4881
4873
|
|
|
4882
4874
|
return block;
|
|
4883
4875
|
}
|
|
4884
4876
|
|
|
4885
|
-
// (
|
|
4877
|
+
// (209:10) {:else}
|
|
4886
4878
|
function create_else_block_4(ctx) {
|
|
4887
4879
|
let svg;
|
|
4888
4880
|
let path;
|
|
@@ -4892,7 +4884,7 @@
|
|
|
4892
4884
|
svg = svg_element("svg");
|
|
4893
4885
|
path = svg_element("path");
|
|
4894
4886
|
attr_dev(path, "d", "M6 9l6 6 6-6");
|
|
4895
|
-
add_location(path, file,
|
|
4887
|
+
add_location(path, file, 210, 14, 7082);
|
|
4896
4888
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
4897
4889
|
attr_dev(svg, "width", "24");
|
|
4898
4890
|
attr_dev(svg, "height", "24");
|
|
@@ -4902,7 +4894,7 @@
|
|
|
4902
4894
|
attr_dev(svg, "stroke-width", "2");
|
|
4903
4895
|
attr_dev(svg, "stroke-linecap", "round");
|
|
4904
4896
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
4905
|
-
add_location(svg, file,
|
|
4897
|
+
add_location(svg, file, 209, 12, 6891);
|
|
4906
4898
|
},
|
|
4907
4899
|
m: function mount(target, anchor) {
|
|
4908
4900
|
insert_dev(target, svg, anchor);
|
|
@@ -4917,14 +4909,14 @@
|
|
|
4917
4909
|
block,
|
|
4918
4910
|
id: create_else_block_4.name,
|
|
4919
4911
|
type: "else",
|
|
4920
|
-
source: "(
|
|
4912
|
+
source: "(209:10) {:else}",
|
|
4921
4913
|
ctx
|
|
4922
4914
|
});
|
|
4923
4915
|
|
|
4924
4916
|
return block;
|
|
4925
4917
|
}
|
|
4926
4918
|
|
|
4927
|
-
// (
|
|
4919
|
+
// (205:10) {#if showTable}
|
|
4928
4920
|
function create_if_block_11(ctx) {
|
|
4929
4921
|
let svg;
|
|
4930
4922
|
let path;
|
|
@@ -4934,7 +4926,7 @@
|
|
|
4934
4926
|
svg = svg_element("svg");
|
|
4935
4927
|
path = svg_element("path");
|
|
4936
4928
|
attr_dev(path, "d", "M18 15l-6-6-6 6");
|
|
4937
|
-
add_location(path, file,
|
|
4929
|
+
add_location(path, file, 206, 14, 6814);
|
|
4938
4930
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
4939
4931
|
attr_dev(svg, "width", "24");
|
|
4940
4932
|
attr_dev(svg, "height", "24");
|
|
@@ -4944,7 +4936,7 @@
|
|
|
4944
4936
|
attr_dev(svg, "stroke-width", "2");
|
|
4945
4937
|
attr_dev(svg, "stroke-linecap", "round");
|
|
4946
4938
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
4947
|
-
add_location(svg, file,
|
|
4939
|
+
add_location(svg, file, 205, 12, 6623);
|
|
4948
4940
|
},
|
|
4949
4941
|
m: function mount(target, anchor) {
|
|
4950
4942
|
insert_dev(target, svg, anchor);
|
|
@@ -4959,14 +4951,14 @@
|
|
|
4959
4951
|
block,
|
|
4960
4952
|
id: create_if_block_11.name,
|
|
4961
4953
|
type: "if",
|
|
4962
|
-
source: "(
|
|
4954
|
+
source: "(205:10) {#if showTable}",
|
|
4963
4955
|
ctx
|
|
4964
4956
|
});
|
|
4965
4957
|
|
|
4966
4958
|
return block;
|
|
4967
4959
|
}
|
|
4968
4960
|
|
|
4969
|
-
// (
|
|
4961
|
+
// (218:4) {#if showTable}
|
|
4970
4962
|
function create_if_block_10(ctx) {
|
|
4971
4963
|
let div1;
|
|
4972
4964
|
let div0;
|
|
@@ -4978,11 +4970,11 @@
|
|
|
4978
4970
|
div0 = element("div");
|
|
4979
4971
|
p = element("p");
|
|
4980
4972
|
p.textContent = "No winners for the time being. Be one of them!";
|
|
4981
|
-
add_location(p, file,
|
|
4973
|
+
add_location(p, file, 219, 31, 7266);
|
|
4982
4974
|
attr_dev(div0, "class", "TableUser");
|
|
4983
|
-
add_location(div0, file,
|
|
4975
|
+
add_location(div0, file, 219, 8, 7243);
|
|
4984
4976
|
attr_dev(div1, "class", "TableContent");
|
|
4985
|
-
add_location(div1, file,
|
|
4977
|
+
add_location(div1, file, 218, 6, 7208);
|
|
4986
4978
|
},
|
|
4987
4979
|
m: function mount(target, anchor) {
|
|
4988
4980
|
insert_dev(target, div1, anchor);
|
|
@@ -4998,14 +4990,14 @@
|
|
|
4998
4990
|
block,
|
|
4999
4991
|
id: create_if_block_10.name,
|
|
5000
4992
|
type: "if",
|
|
5001
|
-
source: "(
|
|
4993
|
+
source: "(218:4) {#if showTable}",
|
|
5002
4994
|
ctx
|
|
5003
4995
|
});
|
|
5004
4996
|
|
|
5005
4997
|
return block;
|
|
5006
4998
|
}
|
|
5007
4999
|
|
|
5008
|
-
// (
|
|
5000
|
+
// (147:2) {:else}
|
|
5009
5001
|
function create_else_block_1(ctx) {
|
|
5010
5002
|
let div2;
|
|
5011
5003
|
let table;
|
|
@@ -5058,17 +5050,17 @@
|
|
|
5058
5050
|
div1 = element("div");
|
|
5059
5051
|
div0 = element("div");
|
|
5060
5052
|
if_block2.c();
|
|
5061
|
-
add_location(tr, file,
|
|
5062
|
-
add_location(thead, file,
|
|
5063
|
-
add_location(tbody, file,
|
|
5053
|
+
add_location(tr, file, 150, 10, 4541);
|
|
5054
|
+
add_location(thead, file, 149, 8, 4523);
|
|
5055
|
+
add_location(tbody, file, 164, 8, 4955);
|
|
5064
5056
|
attr_dev(table, "class", "LeftTable");
|
|
5065
|
-
add_location(table, file,
|
|
5057
|
+
add_location(table, file, 148, 6, 4489);
|
|
5066
5058
|
attr_dev(div0, "class", "CollapseButton");
|
|
5067
|
-
add_location(div0, file,
|
|
5059
|
+
add_location(div0, file, 184, 8, 5640);
|
|
5068
5060
|
attr_dev(div1, "class", "RightButton");
|
|
5069
|
-
add_location(div1, file,
|
|
5061
|
+
add_location(div1, file, 183, 6, 5606);
|
|
5070
5062
|
attr_dev(div2, "class", "TournamentsTable");
|
|
5071
|
-
add_location(div2, file,
|
|
5063
|
+
add_location(div2, file, 147, 4, 4452);
|
|
5072
5064
|
},
|
|
5073
5065
|
m: function mount(target, anchor) {
|
|
5074
5066
|
insert_dev(target, div2, anchor);
|
|
@@ -5171,14 +5163,14 @@
|
|
|
5171
5163
|
block,
|
|
5172
5164
|
id: create_else_block_1.name,
|
|
5173
5165
|
type: "else",
|
|
5174
|
-
source: "(
|
|
5166
|
+
source: "(147:2) {:else}",
|
|
5175
5167
|
ctx
|
|
5176
5168
|
});
|
|
5177
5169
|
|
|
5178
5170
|
return block;
|
|
5179
5171
|
}
|
|
5180
5172
|
|
|
5181
|
-
// (
|
|
5173
|
+
// (85:2) {#if isMobile(userAgent) == true}
|
|
5182
5174
|
function create_if_block_1(ctx) {
|
|
5183
5175
|
let div3;
|
|
5184
5176
|
let div0;
|
|
@@ -5216,13 +5208,13 @@
|
|
|
5216
5208
|
if (if_block2) if_block2.c();
|
|
5217
5209
|
if_block2_anchor = empty();
|
|
5218
5210
|
attr_dev(div0, "class", "Leaderboard");
|
|
5219
|
-
add_location(div0, file,
|
|
5211
|
+
add_location(div0, file, 86, 6, 2464);
|
|
5220
5212
|
attr_dev(div1, "class", "CollapseButton");
|
|
5221
|
-
add_location(div1, file,
|
|
5213
|
+
add_location(div1, file, 88, 8, 2592);
|
|
5222
5214
|
attr_dev(div2, "class", "RightButton " + (isMobile(/*userAgent*/ ctx[8]) ? "MobileClass" : ""));
|
|
5223
|
-
add_location(div2, file,
|
|
5215
|
+
add_location(div2, file, 87, 6, 2513);
|
|
5224
5216
|
attr_dev(div3, "class", "LeaderboardContainer");
|
|
5225
|
-
add_location(div3, file,
|
|
5217
|
+
add_location(div3, file, 85, 4, 2423);
|
|
5226
5218
|
},
|
|
5227
5219
|
m: function mount(target, anchor) {
|
|
5228
5220
|
insert_dev(target, div3, anchor);
|
|
@@ -5296,14 +5288,14 @@
|
|
|
5296
5288
|
block,
|
|
5297
5289
|
id: create_if_block_1.name,
|
|
5298
5290
|
type: "if",
|
|
5299
|
-
source: "(
|
|
5291
|
+
source: "(85:2) {#if isMobile(userAgent) == true}",
|
|
5300
5292
|
ctx
|
|
5301
5293
|
});
|
|
5302
5294
|
|
|
5303
5295
|
return block;
|
|
5304
5296
|
}
|
|
5305
5297
|
|
|
5306
|
-
// (
|
|
5298
|
+
// (158:16) {:else}
|
|
5307
5299
|
function create_else_block_3(ctx) {
|
|
5308
5300
|
let p;
|
|
5309
5301
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -5314,7 +5306,7 @@
|
|
|
5314
5306
|
p = element("p");
|
|
5315
5307
|
t = text(t_value);
|
|
5316
5308
|
attr_dev(p, "data-sort", /*sort*/ ctx[7]);
|
|
5317
|
-
add_location(p, file,
|
|
5309
|
+
add_location(p, file, 158, 18, 4819);
|
|
5318
5310
|
},
|
|
5319
5311
|
m: function mount(target, anchor) {
|
|
5320
5312
|
insert_dev(target, p, anchor);
|
|
@@ -5336,14 +5328,14 @@
|
|
|
5336
5328
|
block,
|
|
5337
5329
|
id: create_else_block_3.name,
|
|
5338
5330
|
type: "else",
|
|
5339
|
-
source: "(
|
|
5331
|
+
source: "(158:16) {:else}",
|
|
5340
5332
|
ctx
|
|
5341
5333
|
});
|
|
5342
5334
|
|
|
5343
5335
|
return block;
|
|
5344
5336
|
}
|
|
5345
5337
|
|
|
5346
|
-
// (
|
|
5338
|
+
// (154:16) {#if sortable == 'true'}
|
|
5347
5339
|
function create_if_block_8(ctx) {
|
|
5348
5340
|
let button;
|
|
5349
5341
|
let t_value = /*column*/ ctx[11] + "";
|
|
@@ -5360,7 +5352,7 @@
|
|
|
5360
5352
|
button = element("button");
|
|
5361
5353
|
t = text(t_value);
|
|
5362
5354
|
attr_dev(button, "data-sort", /*sort*/ ctx[7]);
|
|
5363
|
-
add_location(button, file,
|
|
5355
|
+
add_location(button, file, 154, 18, 4662);
|
|
5364
5356
|
},
|
|
5365
5357
|
m: function mount(target, anchor) {
|
|
5366
5358
|
insert_dev(target, button, anchor);
|
|
@@ -5390,14 +5382,14 @@
|
|
|
5390
5382
|
block,
|
|
5391
5383
|
id: create_if_block_8.name,
|
|
5392
5384
|
type: "if",
|
|
5393
|
-
source: "(
|
|
5385
|
+
source: "(154:16) {#if sortable == 'true'}",
|
|
5394
5386
|
ctx
|
|
5395
5387
|
});
|
|
5396
5388
|
|
|
5397
5389
|
return block;
|
|
5398
5390
|
}
|
|
5399
5391
|
|
|
5400
|
-
// (
|
|
5392
|
+
// (152:12) {#each columns as column}
|
|
5401
5393
|
function create_each_block_2(ctx) {
|
|
5402
5394
|
let th;
|
|
5403
5395
|
let t;
|
|
@@ -5415,7 +5407,7 @@
|
|
|
5415
5407
|
th = element("th");
|
|
5416
5408
|
if_block.c();
|
|
5417
5409
|
t = space();
|
|
5418
|
-
add_location(th, file,
|
|
5410
|
+
add_location(th, file, 152, 14, 4598);
|
|
5419
5411
|
},
|
|
5420
5412
|
m: function mount(target, anchor) {
|
|
5421
5413
|
insert_dev(target, th, anchor);
|
|
@@ -5445,14 +5437,14 @@
|
|
|
5445
5437
|
block,
|
|
5446
5438
|
id: create_each_block_2.name,
|
|
5447
5439
|
type: "each",
|
|
5448
|
-
source: "(
|
|
5440
|
+
source: "(152:12) {#each columns as column}",
|
|
5449
5441
|
ctx
|
|
5450
5442
|
});
|
|
5451
5443
|
|
|
5452
5444
|
return block;
|
|
5453
5445
|
}
|
|
5454
5446
|
|
|
5455
|
-
// (
|
|
5447
|
+
// (166:10) {#if firstrow == 'true' && firstRowData}
|
|
5456
5448
|
function create_if_block_7(ctx) {
|
|
5457
5449
|
let tr;
|
|
5458
5450
|
let td0;
|
|
@@ -5486,15 +5478,15 @@
|
|
|
5486
5478
|
td2 = element("td");
|
|
5487
5479
|
div = element("div");
|
|
5488
5480
|
t5 = text(t5_value);
|
|
5489
|
-
add_location(em, file,
|
|
5490
|
-
add_location(strong, file,
|
|
5491
|
-
add_location(td0, file,
|
|
5492
|
-
add_location(td1, file,
|
|
5481
|
+
add_location(em, file, 167, 26, 5075);
|
|
5482
|
+
add_location(strong, file, 167, 18, 5067);
|
|
5483
|
+
add_location(td0, file, 167, 14, 5063);
|
|
5484
|
+
add_location(td1, file, 168, 14, 5137);
|
|
5493
5485
|
attr_dev(div, "class", "Flex");
|
|
5494
|
-
add_location(div, file,
|
|
5495
|
-
add_location(td2, file,
|
|
5486
|
+
add_location(div, file, 169, 18, 5184);
|
|
5487
|
+
add_location(td2, file, 169, 14, 5180);
|
|
5496
5488
|
attr_dev(tr, "class", "FirstRow");
|
|
5497
|
-
add_location(tr, file,
|
|
5489
|
+
add_location(tr, file, 166, 12, 5026);
|
|
5498
5490
|
},
|
|
5499
5491
|
m: function mount(target, anchor) {
|
|
5500
5492
|
insert_dev(target, tr, anchor);
|
|
@@ -5525,14 +5517,14 @@
|
|
|
5525
5517
|
block,
|
|
5526
5518
|
id: create_if_block_7.name,
|
|
5527
5519
|
type: "if",
|
|
5528
|
-
source: "(
|
|
5520
|
+
source: "(166:10) {#if firstrow == 'true' && firstRowData}",
|
|
5529
5521
|
ctx
|
|
5530
5522
|
});
|
|
5531
5523
|
|
|
5532
5524
|
return block;
|
|
5533
5525
|
}
|
|
5534
5526
|
|
|
5535
|
-
// (
|
|
5527
|
+
// (173:10) {#if showTable}
|
|
5536
5528
|
function create_if_block_6(ctx) {
|
|
5537
5529
|
let each_1_anchor;
|
|
5538
5530
|
let each_value_1 = /*display*/ ctx[6];
|
|
@@ -5593,14 +5585,14 @@
|
|
|
5593
5585
|
block,
|
|
5594
5586
|
id: create_if_block_6.name,
|
|
5595
5587
|
type: "if",
|
|
5596
|
-
source: "(
|
|
5588
|
+
source: "(173:10) {#if showTable}",
|
|
5597
5589
|
ctx
|
|
5598
5590
|
});
|
|
5599
5591
|
|
|
5600
5592
|
return block;
|
|
5601
5593
|
}
|
|
5602
5594
|
|
|
5603
|
-
// (
|
|
5595
|
+
// (174:12) {#each display as row}
|
|
5604
5596
|
function create_each_block_1(ctx) {
|
|
5605
5597
|
let tr;
|
|
5606
5598
|
let td0;
|
|
@@ -5636,14 +5628,14 @@
|
|
|
5636
5628
|
div = element("div");
|
|
5637
5629
|
t5 = text(t5_value);
|
|
5638
5630
|
t6 = space();
|
|
5639
|
-
add_location(em, file,
|
|
5640
|
-
add_location(strong, file,
|
|
5641
|
-
add_location(td0, file,
|
|
5642
|
-
add_location(td1, file,
|
|
5631
|
+
add_location(em, file, 175, 28, 5376);
|
|
5632
|
+
add_location(strong, file, 175, 20, 5368);
|
|
5633
|
+
add_location(td0, file, 175, 16, 5364);
|
|
5634
|
+
add_location(td1, file, 176, 16, 5431);
|
|
5643
5635
|
attr_dev(div, "class", "Flex");
|
|
5644
|
-
add_location(div, file,
|
|
5645
|
-
add_location(td2, file,
|
|
5646
|
-
add_location(tr, file,
|
|
5636
|
+
add_location(div, file, 177, 20, 5471);
|
|
5637
|
+
add_location(td2, file, 177, 16, 5467);
|
|
5638
|
+
add_location(tr, file, 174, 14, 5343);
|
|
5647
5639
|
},
|
|
5648
5640
|
m: function mount(target, anchor) {
|
|
5649
5641
|
insert_dev(target, tr, anchor);
|
|
@@ -5675,14 +5667,14 @@
|
|
|
5675
5667
|
block,
|
|
5676
5668
|
id: create_each_block_1.name,
|
|
5677
5669
|
type: "each",
|
|
5678
|
-
source: "(
|
|
5670
|
+
source: "(174:12) {#each display as row}",
|
|
5679
5671
|
ctx
|
|
5680
5672
|
});
|
|
5681
5673
|
|
|
5682
5674
|
return block;
|
|
5683
5675
|
}
|
|
5684
5676
|
|
|
5685
|
-
// (
|
|
5677
|
+
// (190:10) {:else}
|
|
5686
5678
|
function create_else_block_2(ctx) {
|
|
5687
5679
|
let svg;
|
|
5688
5680
|
let path;
|
|
@@ -5692,7 +5684,7 @@
|
|
|
5692
5684
|
svg = svg_element("svg");
|
|
5693
5685
|
path = svg_element("path");
|
|
5694
5686
|
attr_dev(path, "d", "M6 9l6 6 6-6");
|
|
5695
|
-
add_location(path, file,
|
|
5687
|
+
add_location(path, file, 191, 14, 6199);
|
|
5696
5688
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5697
5689
|
attr_dev(svg, "width", "24");
|
|
5698
5690
|
attr_dev(svg, "height", "24");
|
|
@@ -5702,7 +5694,7 @@
|
|
|
5702
5694
|
attr_dev(svg, "stroke-width", "2");
|
|
5703
5695
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5704
5696
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5705
|
-
add_location(svg, file,
|
|
5697
|
+
add_location(svg, file, 190, 12, 6008);
|
|
5706
5698
|
},
|
|
5707
5699
|
m: function mount(target, anchor) {
|
|
5708
5700
|
insert_dev(target, svg, anchor);
|
|
@@ -5717,14 +5709,14 @@
|
|
|
5717
5709
|
block,
|
|
5718
5710
|
id: create_else_block_2.name,
|
|
5719
5711
|
type: "else",
|
|
5720
|
-
source: "(
|
|
5712
|
+
source: "(190:10) {:else}",
|
|
5721
5713
|
ctx
|
|
5722
5714
|
});
|
|
5723
5715
|
|
|
5724
5716
|
return block;
|
|
5725
5717
|
}
|
|
5726
5718
|
|
|
5727
|
-
// (
|
|
5719
|
+
// (186:10) {#if showTable}
|
|
5728
5720
|
function create_if_block_5(ctx) {
|
|
5729
5721
|
let svg;
|
|
5730
5722
|
let path;
|
|
@@ -5734,7 +5726,7 @@
|
|
|
5734
5726
|
svg = svg_element("svg");
|
|
5735
5727
|
path = svg_element("path");
|
|
5736
5728
|
attr_dev(path, "d", "M18 15l-6-6-6 6");
|
|
5737
|
-
add_location(path, file,
|
|
5729
|
+
add_location(path, file, 187, 14, 5931);
|
|
5738
5730
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5739
5731
|
attr_dev(svg, "width", "24");
|
|
5740
5732
|
attr_dev(svg, "height", "24");
|
|
@@ -5744,7 +5736,7 @@
|
|
|
5744
5736
|
attr_dev(svg, "stroke-width", "2");
|
|
5745
5737
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5746
5738
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5747
|
-
add_location(svg, file,
|
|
5739
|
+
add_location(svg, file, 186, 12, 5740);
|
|
5748
5740
|
},
|
|
5749
5741
|
m: function mount(target, anchor) {
|
|
5750
5742
|
insert_dev(target, svg, anchor);
|
|
@@ -5759,14 +5751,14 @@
|
|
|
5759
5751
|
block,
|
|
5760
5752
|
id: create_if_block_5.name,
|
|
5761
5753
|
type: "if",
|
|
5762
|
-
source: "(
|
|
5754
|
+
source: "(186:10) {#if showTable}",
|
|
5763
5755
|
ctx
|
|
5764
5756
|
});
|
|
5765
5757
|
|
|
5766
5758
|
return block;
|
|
5767
5759
|
}
|
|
5768
5760
|
|
|
5769
|
-
// (
|
|
5761
|
+
// (94:10) {:else}
|
|
5770
5762
|
function create_else_block(ctx) {
|
|
5771
5763
|
let svg;
|
|
5772
5764
|
let path;
|
|
@@ -5776,7 +5768,7 @@
|
|
|
5776
5768
|
svg = svg_element("svg");
|
|
5777
5769
|
path = svg_element("path");
|
|
5778
5770
|
attr_dev(path, "d", "M6 9l6 6 6-6");
|
|
5779
|
-
add_location(path, file,
|
|
5771
|
+
add_location(path, file, 95, 14, 3151);
|
|
5780
5772
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5781
5773
|
attr_dev(svg, "width", "24");
|
|
5782
5774
|
attr_dev(svg, "height", "24");
|
|
@@ -5786,7 +5778,7 @@
|
|
|
5786
5778
|
attr_dev(svg, "stroke-width", "2");
|
|
5787
5779
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5788
5780
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5789
|
-
add_location(svg, file,
|
|
5781
|
+
add_location(svg, file, 94, 12, 2960);
|
|
5790
5782
|
},
|
|
5791
5783
|
m: function mount(target, anchor) {
|
|
5792
5784
|
insert_dev(target, svg, anchor);
|
|
@@ -5801,14 +5793,14 @@
|
|
|
5801
5793
|
block,
|
|
5802
5794
|
id: create_else_block.name,
|
|
5803
5795
|
type: "else",
|
|
5804
|
-
source: "(
|
|
5796
|
+
source: "(94:10) {:else}",
|
|
5805
5797
|
ctx
|
|
5806
5798
|
});
|
|
5807
5799
|
|
|
5808
5800
|
return block;
|
|
5809
5801
|
}
|
|
5810
5802
|
|
|
5811
|
-
// (
|
|
5803
|
+
// (90:10) {#if showTable}
|
|
5812
5804
|
function create_if_block_4(ctx) {
|
|
5813
5805
|
let svg;
|
|
5814
5806
|
let path;
|
|
@@ -5818,7 +5810,7 @@
|
|
|
5818
5810
|
svg = svg_element("svg");
|
|
5819
5811
|
path = svg_element("path");
|
|
5820
5812
|
attr_dev(path, "d", "M18 15l-6-6-6 6");
|
|
5821
|
-
add_location(path, file,
|
|
5813
|
+
add_location(path, file, 91, 14, 2883);
|
|
5822
5814
|
attr_dev(svg, "xmlns", "http://www.w3.org/2000/svg");
|
|
5823
5815
|
attr_dev(svg, "width", "24");
|
|
5824
5816
|
attr_dev(svg, "height", "24");
|
|
@@ -5828,7 +5820,7 @@
|
|
|
5828
5820
|
attr_dev(svg, "stroke-width", "2");
|
|
5829
5821
|
attr_dev(svg, "stroke-linecap", "round");
|
|
5830
5822
|
attr_dev(svg, "stroke-linejoin", "round");
|
|
5831
|
-
add_location(svg, file,
|
|
5823
|
+
add_location(svg, file, 90, 12, 2692);
|
|
5832
5824
|
},
|
|
5833
5825
|
m: function mount(target, anchor) {
|
|
5834
5826
|
insert_dev(target, svg, anchor);
|
|
@@ -5843,14 +5835,14 @@
|
|
|
5843
5835
|
block,
|
|
5844
5836
|
id: create_if_block_4.name,
|
|
5845
5837
|
type: "if",
|
|
5846
|
-
source: "(
|
|
5838
|
+
source: "(90:10) {#if showTable}",
|
|
5847
5839
|
ctx
|
|
5848
5840
|
});
|
|
5849
5841
|
|
|
5850
5842
|
return block;
|
|
5851
5843
|
}
|
|
5852
5844
|
|
|
5853
|
-
// (
|
|
5845
|
+
// (103:4) {#if firstrow == 'true' && firstRowData}
|
|
5854
5846
|
function create_if_block_3(ctx) {
|
|
5855
5847
|
let div3;
|
|
5856
5848
|
let div0;
|
|
@@ -5885,17 +5877,17 @@
|
|
|
5885
5877
|
t4 = space();
|
|
5886
5878
|
p1 = element("p");
|
|
5887
5879
|
t5 = text(t5_value);
|
|
5888
|
-
add_location(span0, file,
|
|
5889
|
-
add_location(span1, file,
|
|
5880
|
+
add_location(span0, file, 104, 31, 3381);
|
|
5881
|
+
add_location(span1, file, 104, 67, 3417);
|
|
5890
5882
|
attr_dev(div0, "class", "TableUser");
|
|
5891
|
-
add_location(div0, file,
|
|
5892
|
-
add_location(p0, file,
|
|
5893
|
-
add_location(p1, file,
|
|
5894
|
-
add_location(div1, file,
|
|
5883
|
+
add_location(div0, file, 104, 8, 3358);
|
|
5884
|
+
add_location(p0, file, 108, 12, 3524);
|
|
5885
|
+
add_location(p1, file, 109, 12, 3549);
|
|
5886
|
+
add_location(div1, file, 107, 10, 3506);
|
|
5895
5887
|
attr_dev(div2, "class", "TableUserDetails");
|
|
5896
|
-
add_location(div2, file,
|
|
5888
|
+
add_location(div2, file, 106, 8, 3465);
|
|
5897
5889
|
attr_dev(div3, "class", "TableContent TableContentFirstRow");
|
|
5898
|
-
add_location(div3, file,
|
|
5890
|
+
add_location(div3, file, 103, 6, 3302);
|
|
5899
5891
|
},
|
|
5900
5892
|
m: function mount(target, anchor) {
|
|
5901
5893
|
insert_dev(target, div3, anchor);
|
|
@@ -5926,14 +5918,14 @@
|
|
|
5926
5918
|
block,
|
|
5927
5919
|
id: create_if_block_3.name,
|
|
5928
5920
|
type: "if",
|
|
5929
|
-
source: "(
|
|
5921
|
+
source: "(103:4) {#if firstrow == 'true' && firstRowData}",
|
|
5930
5922
|
ctx
|
|
5931
5923
|
});
|
|
5932
5924
|
|
|
5933
5925
|
return block;
|
|
5934
5926
|
}
|
|
5935
5927
|
|
|
5936
|
-
// (
|
|
5928
|
+
// (124:4) {#if showTable}
|
|
5937
5929
|
function create_if_block_2(ctx) {
|
|
5938
5930
|
let each_1_anchor;
|
|
5939
5931
|
let each_value = /*display*/ ctx[6];
|
|
@@ -5994,14 +5986,14 @@
|
|
|
5994
5986
|
block,
|
|
5995
5987
|
id: create_if_block_2.name,
|
|
5996
5988
|
type: "if",
|
|
5997
|
-
source: "(
|
|
5989
|
+
source: "(124:4) {#if showTable}",
|
|
5998
5990
|
ctx
|
|
5999
5991
|
});
|
|
6000
5992
|
|
|
6001
5993
|
return block;
|
|
6002
5994
|
}
|
|
6003
5995
|
|
|
6004
|
-
// (
|
|
5996
|
+
// (125:6) {#each display as row}
|
|
6005
5997
|
function create_each_block(ctx) {
|
|
6006
5998
|
let div3;
|
|
6007
5999
|
let div0;
|
|
@@ -6038,17 +6030,17 @@
|
|
|
6038
6030
|
p1 = element("p");
|
|
6039
6031
|
t5 = text(t5_value);
|
|
6040
6032
|
t6 = space();
|
|
6041
|
-
add_location(span0, file,
|
|
6042
|
-
add_location(span1, file,
|
|
6033
|
+
add_location(span0, file, 126, 33, 3964);
|
|
6034
|
+
add_location(span1, file, 126, 60, 3991);
|
|
6043
6035
|
attr_dev(div0, "class", "TableUser");
|
|
6044
|
-
add_location(div0, file,
|
|
6045
|
-
add_location(p0, file,
|
|
6046
|
-
add_location(p1, file,
|
|
6047
|
-
add_location(div1, file,
|
|
6036
|
+
add_location(div0, file, 126, 10, 3941);
|
|
6037
|
+
add_location(p0, file, 130, 14, 4095);
|
|
6038
|
+
add_location(p1, file, 131, 14, 4122);
|
|
6039
|
+
add_location(div1, file, 129, 12, 4075);
|
|
6048
6040
|
attr_dev(div2, "class", "TableUserDetails");
|
|
6049
|
-
add_location(div2, file,
|
|
6041
|
+
add_location(div2, file, 128, 10, 4032);
|
|
6050
6042
|
attr_dev(div3, "class", "TableContent");
|
|
6051
|
-
add_location(div3, file,
|
|
6043
|
+
add_location(div3, file, 125, 8, 3904);
|
|
6052
6044
|
},
|
|
6053
6045
|
m: function mount(target, anchor) {
|
|
6054
6046
|
insert_dev(target, div3, anchor);
|
|
@@ -6080,7 +6072,7 @@
|
|
|
6080
6072
|
block,
|
|
6081
6073
|
id: create_each_block.name,
|
|
6082
6074
|
type: "each",
|
|
6083
|
-
source: "(
|
|
6075
|
+
source: "(125:6) {#each display as row}",
|
|
6084
6076
|
ctx
|
|
6085
6077
|
});
|
|
6086
6078
|
|
|
@@ -6237,7 +6229,6 @@
|
|
|
6237
6229
|
|
|
6238
6230
|
onMount(() => {
|
|
6239
6231
|
window.addEventListener("message", messageHandler, false);
|
|
6240
|
-
console.log("first row data ", firstRowData);
|
|
6241
6232
|
|
|
6242
6233
|
return () => {
|
|
6243
6234
|
window.removeEventListener("message", messageHandler);
|
|
@@ -6247,7 +6238,7 @@
|
|
|
6247
6238
|
const writable_props = ["sortable", "firstrow"];
|
|
6248
6239
|
|
|
6249
6240
|
Object.keys($$props).forEach(key => {
|
|
6250
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$")
|
|
6241
|
+
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<undefined> was created with unknown prop '${key}'`);
|
|
6251
6242
|
});
|
|
6252
6243
|
|
|
6253
6244
|
const click_handler = () => collapseTable();
|